
/* Header Starts */ 

:root {
  --header-height: 115px;
}

body {
  padding-top: var(--header-height);
}

.header {
  position: fixed;
  z-index: 50;
  background: var(--bg-header);
  color: var(--header-font-color);
  padding: 15px 0;
  left: 0;
  top: 0;
  width: 100%;
  min-height: var(--header-height);
  /* border-bottom: 1px solid var(--border-color); */
  transition: all .4s ease-in-out;
}

.header.is-fixed:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(75deg, rgba(0, 52, 43, 0.38) 27.27%, rgba(9, 139, 118, 0.50) 60.44%, rgba(40, 185, 124, 0.50) 93.62%);
  z-index: -1;
}
.header.is-fixed{
  padding: 5px 0;
}
.header__grid {
  align-items: center;
  margin-left: -20px;
}

.header__grid > * {
  padding-left: 20px;
}

.ng-star-inserted .header {
  position: relative;
}


.header__col--center {
  text-align: right;
}

.header__logo {
  width: var(--logo-width);
  height: var(--logo-height);
  display: inline-block;
  align-items: center;
  color: var(--header-font-color);
}

.header.is-fixed .header__logo{
  width:91px; height:93px;
}

.header__logo-second {
  width: var(--second-logo-width);
  height: var(--second-logo-height);
}


.header__logo > * {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__logo:hover, .header__logo:focus {
  color: inherit;
  opacity: .6;
} 

body.is-module-avail .header {
  padding: 5px 0;
}

body.is-module-avail .header__logo {
  max-width: 91px;
  height: auto;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  font: var(--header-fonts);
  color: var(--header-font-color);
  font-weight: 400;
  margin-left: 20px;
}

.header__phone > .template-icon {
  margin-right: 13px;
  font-size: 112.5%;
}

.header__phone-label {
  display: block;
  margin-right: 5px;
}

.header__phone-text > .template-icon {
  display: none;
}

.header__phone-text {
  display: block;
  color: var(--header-font-color);

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.43px;
}

.header__phone-text:hover,
.header__phone-text:focus{
  color: var(--inverse-font-color);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-color: var(--highlight-color);
}

.navmenu__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 30px;
}

.navmenu__list-item {
  position: relative;
}

.navmenu__list-item:last-child {
  margin-right: 0;
}

.navmenu__list-link {
  display: inline-flex;
  padding: 0;
  position: relative;
  font: var(--header-fonts);
  text-transform: var(--header-fonts-text-transform);
  color: var(--header-font-color);
  letter-spacing: 0.4px;

  display: inline-flex;
  padding: 5px 0px;
  text-align: left;
  letter-spacing: 1.43px;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  font-family: var(--text-fonts);
  font-size: 13px;
  line-height: 1.75;
  align-items: center;
  position: relative;
  font-weight: 500;
  background: transparent;
}

.navmenu__list-link:hover,
.navmenu__list-link:focus-visible {
  color: var(--inverse-font-color);
}
.navmenu-dropmenu__link:hover,
.navmenu-dropmenu__link:focus-visible{
  color: var(--primary-color);
}
.navmenu-dropmenu__link:hover, 
.navmenu-dropmenu__link:focus-visible  {
  opacity:0.7;
  text-decoration: underline;
}

.navmenu-dropmenu__link.navON {
  text-decoration: underline;
}

/*.navmenu-dropmenu__link.navON:not(.is-page-active) {
text-decoration: none;
}*/

.navmenu__list-link:after {
  content: '';
  height: 3px;
  background: var(--highlight-color);
  opacity: 1;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  transition: all .4s ease;
}
.navmenu__list-link:hover:after, .navmenu__list-link:focus-visible:after, .navmenu__list-link[aria-expanded="true"]:after, .navmenu__list-link.navON:after {
  opacity: 1;
}


.navmenu-dropmenu {
  padding: 20px 20px 15px 20px;
  margin: 0;
  min-width: 230px;
  background: var(--bg-alt-1);
  overflow: auto;
  max-height: 70vh;
  --uk-position-offset: 0;
  text-align: left;
  list-style: none;
  text-align:center;
  display:none;
}
.navmenu-dropmenu__link {
  display: block;
  padding: 0 0 20px;
  text-transform: var(--header-fonts-text-transform);
  font: var(--header-fonts);
  color: var(--primary-color);
  font-weight: 500;
}

.navmenu-dropmenu__link.uk-disabled {
  opacity: .2;
}


/*========new css=========*/
.header__second-logo {
  margin-left: 40px;
  padding-left: 40px;
}

.header__second-logo:before {
  content: "";
  height: 57px;
  width: 1px;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header__address {
  font: var(--header-fonts);
  font-size: 14px;
  font-weight: normal;
  color: inherit;
}
.header__top--row a:hover, .header__top--row a:focus {
  text-decoration: underline;
  color: inherit;
}
.header__top--row {
  margin-bottom: 0;
}
.header__booknow-button {
  margin-left: 20px;
  display: flex;
  align-items: center;
  column-gap: 30px;
  position: relative;
}
.header__booknow-button:before {
  content: "";
  border-left: 3px solid var(--secondary-color);
  display: block;
  position: absolute;
  width: auto;
  height: 40px;
}
.onscroll-booking, .header.is-fixed .before-scroll-booking{
  display:none;
}
.header.is-fixed .onscroll-booking{
  display:block;
}
.header.is-fixed .onscroll-booking.uk-button-primary{
  background-color: var(--primary-color);
  color: var(--inverse-font-color);
  border: 1px solid var(--primary-color);
}
.header.is-fixed .onscroll-booking.uk-button-primary:hover{
  background-color: var(--primary-cta-color);
  color: var(--primary-cta-font-color);
  border: 1px solid var(--primary-cta-color);
}
@media(min-width: 768px) {
  .header__toggler,
  .navmenu__list-item--onlymob,
  .navmenu__list-link--btn, .insideNav__header, .sub-menulist, .insideNav_booknow_button {
    display:none!important
  }

  .header {
    display: flex;
    align-items: center;
  }
  .header__container {
    flex-grow: 1;
  }

}

@media(min-width: 768px) and (max-width: 959.98px) {
  .navmenu__list-item:last-child ul.uk-dropdown {
    left: auto !important;
    right: 0;
  }
  .header__booknow-button:before{
    background:none; border-left:0;
  }
}

@media (max-width: 1399.98px) {
  .header__booknow-button {
    margin-left: 20px;
  }

}

@media (max-width: 1199.98px) {

  .header__logo {
    width: var(--mob-logo-width);
    height: var(--mob-logo-height); 
  }
  .header__logo-second {
    width: var(--mob-second-logo-width);
    height: var(--mob-second-logo-height);
  }

  .header__address {line-height:normal;}
  .header__bookstay {
    font-size: 12px;
    padding: 10px 15px;
  }
  .navmenu__list {
    column-gap: 20px;
  }

}

@media (max-width: 1023.98px) {

  .header__second-logo {
    margin-left: 15px;
    padding-left: 15px;
  }
  .header__top--row {
    margin-bottom: 5px;
  }
  .header__phone,
  .navmenu__list-link,
  .navmenu-dropmenu__link, .header__address {
    font-size: 12px;
  }
}

@media (max-width: 959.98px) {
  .header .onscroll-booking.uk-button-primary{
    display:block;     display: block;
    background-color: var(--primary-color);
  }
  .header .before-scroll-booking,
  .header.is-fixed .onscroll-booking .header__phone-text{
    display:none;
  }
  .header__booknow-button {
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .header__booknow-button:before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    /*  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0) 77.45%); */
    height: 116px;
    pointer-events: none;
  }
  .header__bookstay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--secondary-cta-font-color);
    color: var(--inverse-font-color);
    font: var(--primary-cta-fonts);
    border-color: var(--inverse-font-color);
    z-index: 1;
  }
}

@media (max-width: 767.98px) {
  .has-transparent-header .hero-banner-with-slider:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* background: linear-gradient(180deg, rgba(0, 118, 99, 1) 0%, rgba(102, 102, 102, 0) 63.73%); */
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 82, 67, 0) 0%, rgba(9, 139, 118, 0) 54.22%, #005243 100%);
  }
  .has-transparent-header .header:not(.is-fixed){
    background: transparent;
    border-bottom-color: transparent;
  }
  .header__booknow-button:before{
    border:0;
  }
  .header__phone-text{
    font-size: 20px;
    line-height: 30px;
  }
  .header__toggler{
    display: flex;
    column-gap: 15px;
  }
  .header__bookstay{
    left: 0;
    bottom: 0;
    width: 100%;
    height: 58px;
    line-height: 40px;
  }
  :root {
    /*--header-height: 64px;*/
    --header-height: 114px;
  }
  body {
    padding-top: var(--header-height);
  }
  .header {
    min-height: var(--header-height);
    z-index: 101;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .header__container {
    width: 100%;
  }

  .header__second-logo:before {
    height: 36px;
  }

  .is-bookstay-active .header__bookstay {
    display: none;
  }
  .header__address {
    display: none;
  }

  .header__toggler-btn {
    background: transparent;
    border: 0;
    display: flex;
    padding: 3px 0;
    margin: 0;
    font-size: 17px;
    line-height: 1;
    color: var(--header-font-color);
    cursor: pointer;
    align-items: center;
    min-width: 24px;
    justify-content: flex-end;
  }

  .header__toggler-btn .is-togglemenu-active {
    display: none;
  }

  .header__toggler-btn .is-togglemenu-close {
    display: block;
  }

  .is-header-active {
    overflow: hidden
  }

  .is-header-active .header__toggler-btn .is-togglemenu-active {
    display: block;
    font-size: 24px;
    min-width: 40px;
  }

  .is-header-active .header__toggler-btn .is-togglemenu-close {
    display: none;
  }

  .header__top--row {
    margin: 0;
    display: flex;
    column-gap: 20px;
    align-items: center;
  }

  .header__phone-label {
    display: none;
  }

  .header__phone-text > .template-icon {
    display: block;
    font-size: 23px;
    font-weight: normal;
    margin: 0;
  }
  .header__top--row a:hover, .header__top--row a:focus {
    text-decoration: none;
  }
  .header__grid {
    margin-left: -30px;
  }

  .header__grid > * {
    padding-left: 30px;
  }

  .header-collapsible {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height:100vh;
    z-index:11;
    /* overflow: hidden;*/
    -webkit-overflow-scrolling: touch;
    background-color: var(--bg-alt-1);
    border-top: 1px solid var(--border-color);
    transition: left .4s ease;
    padding-top: 0;
    padding-bottom: 70px;
  }

  .is-header-active .header-collapsible {
    left: 0;
  }

  .navmenu__list {
    display: block;
    position: relative;
    z-index: 10;
    padding:25px 0;
  }

  .navmenu__list-link {
    display: flex;
    padding: 15px 20px;
    font: var(--mob-header-fonts);
    text-transform: none;
    text-align: left;
    justify-content: flex-start;
    font-weight: 400;
    color: var(--body-font-color);
  }
  .navmenu__list-link:hover, .navmenu__list-link:focus-visible, .navmenu-dropmenu__link:hover, .navmenu-dropmenu__link:focus-visible {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
  }

  .navmenu-dropmenu__link:hover{
    color: var(--primary-color);
  }

  .navmenu__list-link:after {
    width: 45px;
    left: 0;
    right: auto;
    bottom: 12px;
  }
  .navmenu-dropmenu {
    position: relative !important;
    box-shadow: none !important;
    background: transparent;
    padding: 0 0 10px;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    max-width: 100% !important;
    list-style: none;
  }

  .navmenu-dropmenu__link {
    font: var(--body-text-fonts);
    padding: 7px 0;
    text-transform: capitalize;
    text-align: left;
    color: var(--primary-color);
  }

  .navmenu__list-link.navON,
  .navmenu__more-link.navON {
    color: var(--primary-color) !important;
  }

  .header__top-left,
  .header__top-right {
    width: 60px;
  }

  .header__top-center {
    width: calc(100% - 60px*2);
    width: -webkit-calc(100% - 60px*2);
    max-width: calc(100% - 60px*2);
    max-width: -webkit-calc(100% - 60px*2);
  }

  .navmenu__dropdown > a {
    padding-right: 0;
  }

  .navmenu__dropdown > a:before {
    content: "\e976";
    font-family: var(--icon-fonts);
    position: absolute;
    top: 22px;
    right: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background-size: contain;
    transition: all .4s ease;
    font-size: 14px;
    color: inherit;
  }

  .navmenu__dropdown > a[aria-expanded="true"]:before {
    content: "\e977";
  }
  .is-header-active .header {
    background: var(--bg-header) !important;
  }

  .is-header-active .header__phone, 
  .is-header-active .header__phone-text, 
  .is-header-active .header__toggler-btn {
    color: var(--inverse-font-color) !important;
  }
  .navmenu__list-link:after{
    display:none;
  }


  .is-header-active .insideNav__header {
    position: relative;
    background: var(--bg-header);
    color: var(--header-font-color);
    padding: 12px 15px;
    left: 0;
    top: 0;
    width: 100%;
    min-height: var(--header-height);
    border-bottom: 1px solid var(--border-color);
  }


  .navmenu__list_parent {
    height: calc(100vh - 145px);
    overflow: auto;
  }


  .navmenu__list_parent {
    height: calc(100vh - 132px);
    overflow: auto;
  }

  ul.sub-menulist {
    list-style: none;
    padding: 60px 20px 50px;
    text-align: left;
    display: flex;
    flex-direction: column;
    row-gap: 0;
    margin-bottom: 50px;
    position: relative;
  }
  ul.sub-menulist:before{
    position: absolute;
    background-image: url(https://assets.milestoneinternet.com/quality-inn-marietta/no-index/bg-pattern.svg);
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    height: 100%;
    bottom: 0;
    z-index: -2;
    opacity: 1;
    top: 0;
    left: 0;
  }
  .sub-menulist-item {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.1px;
  }
  .sub-menulist-item a{
    font-size: 10px;
    text-transform: uppercase;
    color: var(--body-font-color);
    font-family: var(--text-fonts);
    font-weight: 500;
    letter-spacing: 1.1px;
  }
  .sub-menulist-item .navON {
    text-decoration: underline;
  }


  .header__booknow-button.insideNav_booknow_button {
    bottom: 0;
    position: absolute;
  }
  .navmenu__list li.navmenu__list-item.submenulist .navmenu-dropmenu {
    list-style: disc;
    padding-left: 40px;
    color: var(--primary-color);
  }

  .navmenu__list li.navmenu__list-item.submenulist.active_menu .navmenu-dropmenu {
    display: block;        list-style: disc;
    padding-left: 40px;
    color: var(--primary-color);
  }
  .navmenu__dropdown.active_menu a{
    color: var(--primary-color);
  }
  .navmenu-dropmenu:before {
    content: '';
    width: 5px;
    background: var(--primary-color);
    left: 0;
    top: -35px;
    position: absolute;
    height: calc(100% + 15px);
  }
}

/* Header Ends */

/* Transparent Header Starts */

@media (min-width: 768px) {
  .has-transparent-header {
    padding-top: 0;
  }
  .has-transparent-header .header:not(.is-fixed) {
    background: transparent;
    border-bottom-color: transparent;
  }
  .has-transparent-header .header:not(.is-fixed) .navmenu__list-link:after, .has-transparent-header .header:not(.is-fixed)  .header__second-logo:before {
    background: var(--highlight-color);
  }
  .has-transparent-header .header:not(.is-fixed) .navmenu__list-link,
  .has-transparent-header .header:not(.is-fixed) .navmenu__dropdown > a:before,
  .has-transparent-header .header:not(.is-fixed) .header__phone,
  .has-transparent-header .header:not(.is-fixed) .header__phone-text,
  .has-transparent-header .header:not(.is-fixed) .header__logo, 
  .has-transparent-header .header:not(.is-fixed) .header__address {
    color: var(--inverse-font-color);
    filter: opacity(1);
  }

  .has-transparent-header .hero-banner-with-slider:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /*background: linear-gradient(180deg, rgba(0, 118, 99, 1) 0%, rgba(102, 102, 102, 0) 63.73%);*/
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 82, 67, 0) 0%, rgba(9, 139, 118, 0) 54.22%, #005243 100%);
  }
  .has-transparent-header .header:not(.is-fixed) * :focus-visible {
    outline-color: var(--inverse-font-color);
    outline: 1px solid var(--inverse-font-color);
    box-shadow: 0 0 2px var(--inverse-font-color) inset;
    -webkit-box-shadow: 0 0 2px var(--inverse-font-color) inset;
    -ms-box-shadow: 0 0 2px var(--inverse-font-color) inset;
    -moz-box-shadow: 0 0 2px var(--inverse-font-color) inset;
  }
}

.has-transparent-header .header:not(.is-fixed) .header__bookstay,
.header:not(.is-fixed) .header__bookstay{
  filter: opacity(1);
}

@media (min-width: 960px) {
  .has-transparent-header .header:not(.is-fixed) .header__bookstay,
  .header:not(.is-fixed) .header__bookstay{
    background-color: transparent;
    color: var(--inverse-font-color);
    border: 0;
    border-left: 3px solid var(--highlight-color);
    padding-left: 20px;
    border-radius: 0;
    text-transform: none;
  }
  .has-transparent-header .header:not(.is-fixed) .header__bookstay:hover, .has-transparent-header .header:not(.is-fixed) .header__bookstay:focus-visible {
    border-color: transparent;
    background: transparent;
    color: var(--secondary-color);
    border-left: 3px solid var(--highlight-color);
  }
}

@media (max-width: 1199.98px) {
}

@media (max-width: 1023.98px) {
  .header {
    padding: 13px 0;
  }
}

@media (max-width: 959.98px) {
  .navmenu-dropmenu {
    min-width: 190px;
  }
}

@media (max-width: 767.98px) {

  /* .has-transparent-header .header:not(.is-fixed) .header__toggler-btn {
  color: var(--inverse-font-color);
  filter: opacity(1);
}*/

}

@media (max-width: 639.98px) {
}

@media (max-width: 575px) {
}


/* Transparent Header Ends */

/* Page Studio Editor + Header Starts */
.page-component-mi-block .header {
  /* position: static;*/
  background: var(--bg-header) !important;
  color: var(--header-font-color) !important;
  border-bottom: 0!important;
}

.page-component-mi-block .navmenu__list-link, 
.page-component-mi-block .navmenu__dropdown>a:before, 
.page-component-mi-block .header__phone, 
.page-component-mi-block .header__phone-text, 
.page-component-mi-block .header__bookstay, 
.page-component-mi-block .header__logo,
.page-component-mi-block .header__address {
  color: var(--header-font-color) !important;
}

.page-component-mi-block .header__bookstay {
  /*background-color: var(--primary-cta-color) !important;
  color: var(--primary-cta-font-color) !important;*/
  /*border-color:var(--primary-cta-color) !important;*/
}

.page-component-mi-block .header__bookstay:hover, .page-component-mi-block .header__bookstay:focus {
  background-color: var(--primary-cta-hover-color) !important;
  color: var(--primary-cta-font-hover-color) !important;
  border-color: var(--primary-cta-font-hover-color) !important;
}
.page-component-mi-block .navmenu__list-link::after {
  /*background: #000 !important;*/
}
.page-component-mi-block .header__second-logo:before { background: #000 !important;}
/* Page Studio Editor + Header Ends */

@media all and (min-width: 959.98px){
  .navmenu__list-item:nth-of-type(4)> ul {
    left: -70px !important;
  }
}
.footer-widget{
  background: var(--bg-footer); 
  color: var(--footer-color);
  padding: 60px 100px 80px;
  position: relative;
}
.footer-widget:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 190px;
  background-image: url(https://assets.milestoneinternet.com/quality-inn-northlake/no-index/footer-pattern.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;  
}

.footer-widget:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(75deg, rgba(0, 52, 43, 0.50) 27.39%, rgba(9, 139, 118, 0.50) 68.57%, rgba(40, 185, 124, 0.50) 109.75%);
  z-index: 1;
  pointer-events: none;
}
.footer-widget__container{
  position: relative;
  z-index: 3;
}
.footer__logo{
  margin-bottom: 64px; 
  text-align: center;
}
.footer-widget__col--logo {
  width: 264px; 
}
.footer__logo a{
  color: var(--footer-color); 
}
.footer__logo a:hover,
.footer__logo a:focus{
  color: var(--footer-color); 
}
.footer__logo a:focus,
.footer__logo a:focus-visible{
  outline: 1px solid var(--footer-color); 
}
.footer__title:focus,
.footer__title:focus-visible{
  outline: 1px solid var(--footer-color);
}
.footer-widget__contact{
  justify-content: center;
  align-items: center; 
  padding-bottom: 15px;
}
.footer-widget__sponsor-logo .footer__sponsor-logo{
  display: flex; 
  justify-content: flex-end;
}
.footer__sponsor-logo-item a:focus-visible,
.footer__choice-logo-item a:focus-visible,
.footer__phone:focus-visible,
.footer__fax:focus-visible,
.footer9__copyright:focus-visible,
.footer9__copyright:focus-visible, .footer__copyright:focus-visible {
  outline: 1px solid var(--footer-color);
}
.footer-widget__submenu-item a:hover,
.footer-widget__submenu-item a:focus, .footer-widget__submenu-item .navON {
  /*color: var(--secondary-color);*/
  text-decoration: underline;
}

.footer-widget__submenu-item .navON:hover,.footer-widget__submenu-item .navON:focus {text-decoration: none;}
.milestone .footer__copyright--home {
  display: block;
}
.footer9__copygrid {
  justify-content: center;
  text-align: center;
  column-gap: 5px;
}

.footer__copyright--home {
  display: none;
  margin-top: 0px !important;
  padding-left: 0px;
  font-size:12px;
}
.footer-widget__col--address{
  line-height: 31px; 
}
.center-footer__social-item {
  display: flex;
  justify-content: space-between;
  max-width: 159px;
  margin: 20px auto 0;
}
.center-footer__social-item a{
  color: var(--footer-color);
}


.center-footer__social-item a:hover, .center-footer__social-item a:focus {
  color: var(--secondary-color);
}
.center-footer__social-item a:focus {
  outline: 1px solid var(--secondary-color);
}

.center-footer__social-item span.template-icon-foursquare {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(https://assets.milestoneinternet.com/quality-inn-northlake/website-assets/icons/foursquare-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.center-footer__social-item a:hover span.template-icon-foursquare,
.center-footer__social-item a:focus span.template-icon-foursquare{
  background-image: url(https://assets.milestoneinternet.com/quality-inn-northlake/website-assets/icons/foursquare-icon-hovered.svg);
}

.center-footer__social-item a:hover {
  text-decoration: none !important;
}

.center-footer__social-item {
  justify-content: center;
  align-items: center;
  line-height: 1;
  gap: 20px;
}

.footer-widget__col--address .footer__title{
  font: var(--footer-fonts);
  color: var(--footer-color);
  letter-spacing:  0;
}
.footer-widget__col--address a{
  color: var(--footer-color);
}
footer-widget__col--address a:focus-visible{
  outline: 1px solid var(--footer-color); 
}
.footer-widget__col--address a:hover,
.footer-widget__col--address a:focus{
  color: var(--secondary-color);
  text-decoration: underline;
}
.footer-widget__submenu{
  display: flex;
  align-items: center;
  column-gap: 36px;
  justify-content: center;
}
.footer-widget__submenu-item a{
  color: var(--footer-color); 
  font-size: 13px;
  /*text-transform: uppercase;
  letter-spacing: 0.4px;*/
  letter-spacing: 1.43px;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-widget__bottom {
  align-items: center; 
}
.footer__choice-logo a {
  display: block;
}
.footer__choice-logo img {
  width: auto; 
}
.footer__choice-logo {
  display: flex;
  align-items: center;
  column-gap: 60px;
  padding: 0;
  list-style: none;
}
.footer-widget__hr{
  margin: 33px 0; 
  border-top: 1px solid rgba(255, 255, 255, 20%);
}
.footer9__copyright{
  font-size: 12px;
  letter-spacing: 0.4px;
}

@media (max-width:  1200px) {
  .footer-widget{
    padding: 80px 50px; 
  }
  .footer-widget__col--logo{
    width:180px;  
  }
}

@media (max-width:  959.98px) {
  .footer-widget {
    padding: 80px 30px 100px 30px;
  }
  .footer-widget__contact{
    padding-bottom: 15px; 
  }
  .footer-widget__bottom,
  .footer-widget__submenu{
    justify-content: center; 
  }
  .footer-widget__bottom .uk-width-expand{
    flex-basis: 100%; 
  }
  .footer-widget.addBg:before{
    height: 24%;
  }
  .footer-widget__submenu{
    flex-wrap: wrap;
    row-gap: 36px;
  }
}
@media (max-width:  767px) {
  .footer-widget__bottom .footer__bottom-left-grid{
    order: 2;
    width: 50%;
  }
  .footer-widget__bottom .uk-width-expand{
    order:1;
  }
  .footer-widget__bottom .footer__bottom-right-grid{
    order: 3;
    width: 50%;
  }
  .footer-widget__submenu{
    row-gap: 8px;
  }
  .footer-widget__submenu-item {
    width: 100%;
    text-align: center;
  }
  .footer-widget:before{
    background-size: cover;
  }
  .footer-widget{
    padding: 60px 0 80px; 
  }
  .footer-widget.addBg:before{
    display: none;
  }
  .footer-widget__contact{
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
  .footer-widget__contact > div {
    width: 100%;
  }
  .footer__logo{
    margin-bottom: 40px;  
  }
  .footer-widget__col--logo {
    width: 159px;
    margin: 0 auto;
    padding-left: 0;
    margin-bottom: 24px;
  }
  .footer-widget__col--address{
    margin-top: 0 !important;
    margin-bottom: 0;
    padding-left: 0;
    text-align: center;
  }
  .footer-widget__sponsor-logo {
    margin-top: 40px;
    padding-left: 0;
  }
  .footer-widget__sponsor-logo .footer__sponsor-logo{
    justify-content: center;
  }
  .footer-widget__bottom 
  .footer-widget__sponsor-logo .footer__sponsor-logo {
    justify-content: center;
  }

  .footer-widget__bottom .uk-width-auto{
    margin-top: 50px; 
  }
}
.hero-banner-with-slider{
  position: relative; 
  overflow: hidden;
}
.hero-banner-slideshow__media>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-slideshow {
  height: 100vh;
  min-height: 600px;
}
.hero-banner-slideshow__items {
  min-height: 100% !important;
  height: 100%;
}

.slider-nav-arrows-container {
  max-width: 1280px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 100%;
}

.hero-banner-with-slider .slider-nav-arrows {
  position: absolute;
  bottom: 0;
  left: 20px;
  z-index: 2;
}


/*

.slideshow-navigation {
position: absolute;
width: calc(100% - 40px);
height: 24px;
top: 30px;
left: 20px;
}
.slideshow-navigation .uk-slidenav {
padding: 0;
width: 24px;
height: 24px;
margin: 0;
color: var(--primary-color);
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
position: absolute !important;
top: 50%;
transform: translateY(-50%);
}

.slideshow__counter {
position: absolute;
left: 0;
right: 0;
width: 47px;
display: block;
text-align: center;
bottom: 4px;
font-size: 14px;
font-weight: 600;
right: 0;
margin: 0 auto;
line-height: 100%;
}

*/
.hero-banner-slideshow__media {
  position: relative;
  height: 100%;
}
@media (max-width: 959.98px) {
  .hero-banner-slideshow {
    height: calc(100vh - 96px);
  }
}

@media (min-width: 768.98px) {

}
@media (max-width: 767.98px) {
  .hero-banner-slideshow {
    height: 406px;
    min-height: 100%;
  }
  .slider-nav-arrows-container{
    right: 0;
    transform: none;
    left: auto; 
  }
  .hero-banner-with-slider .slider-nav-arrows {
    right: 0;
    left: auto;
  }
  .hero-banner-with-slider{
    margin-top: -114px;
  }
}


.faq1-widget.inverse-content {
  background: var(--highlight-color);
}
.faq1-widget {
  padding: 112px 0;
}
.faq1-widget__title {
  text-align: center;
  margin-bottom: 40px;
}

.faq1-widget__container {
  max-width: 1070px;
  position: relative;
  z-index: 1;
}

.faq1-widget__accordion {
  border-top: 1px none;
  padding-bottom: 0px;
}

.faq1-widget__que {
  /*
  margin-bottom: 0;
  text-transform: inherit;
  text-decoration: none !important;
  font-weight: normal;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  */
}
.faq1-widget.inverse-content .faq1-widget__que:hover, .faq1-widget.inverse-content .faq1-widget__que:focus {
  color: var(--secondary-color);
}

.uk-accordion-content.text-editor {
  margin-bottom: 0;
}


@media (max-width: 1399.98px) {
}

@media (max-width: 1199.98px) {
}

@media (max-width: 1023.98px) {
}

@media (max-width: 959.98px) {
  .faq1-widget {
    padding: 60px 0;
  }
  .VComponent:has(.snippet-with-bg)+.VComponent:has(.inverse-content) .faq1-widget {
    padding-top: 0;
  }
}

@media (max-width: 767.98px) {
  .faq1-widget__title {
    margin-bottom: 20px;
  }
  .faq1-widget__accordion {
    padding-top: 15px;
    padding-bottom: 0px;
  }
}

@media (max-width: 639.98px) {
  .home-faq-right {
    padding-top: 40px;
  }
}

@media (max-width: 575px) {
}

/* Home headline section start */
.before-title-line{
  position: relative;
  padding: 45px 0 0px;
}
.before-title-line:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 66px;
  height: 3px;
  background: var(--secondary-color);
}
.home-headline-section {
  position: relative;
  z-index: 0;
}
.home-headline-left-wrapper {
  padding: 70px 0px 230px;
}
.home-headline-amenities {
  padding-top: 80px;
}
.home-headline-info {
  padding: 60px 0 100px;
}
.secondary-title {
  font-size: 20px;
  font-family: var(--text-fonts);
  color: var(--dark-color);
  font-weight: 400;
  text-transform: capitalize;
}
.home-headline-description {
  padding-top: 25px;
}

.home-headline-section.addBG:after {
  position: absolute;
  background-image: url('https://assets.milestoneinternet.com/quality-inn-northlake/no-index/bg-pattern.svg');
  width: 100%;
  background-position: center;
  /*background-repeat: no-repeat;*/
  background-size: contain;
  content: '';
  height: 189px;
  bottom: 0;
  z-index: -1;
  opacity: 0.4;
  background-attachment: fixed;
}
.home-headline-wrapper{
  position: relative;
  padding: 30px 0 100px;
  z-index: 1;
}
.home-headline-wrapper:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: var(--bg-alt-1);
  width: 42%;
  height: calc(100% - 100px);
  z-index: -1;
}
.home-headline-wrapper:after {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  background: #fff;
  width: 65%;
  height: calc(100% - 175px);
  z-index: 1;
}
.home-headline-container{
  position: relative;
  z-index: 2;
}
.home-headline-amenities-box {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}
.home-headline-amenities-box:last-child{
  padding-bottom: 0px;
}
.home-headline-amenities-img {
  width: 40px;
  text-align: center;
  margin-right: 20px;
}
.home-headline-amenities-name {
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  font-family: var(--text-fonts);
  text-transform: capitalize;
  color:var(--text-color);
}
.home-headline-amenities-img img {
  max-height: 42px;
}
.home-headline-mobile{
  display: none;
}
.homereadmore {
    margin-bottom: 20px;
}
@media (min-width: 1500px){
  .home-headline-wrapper:after{
    width: 61%;
  }
}
@media (min-width: 768px){
  .home-headline-container{
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1030px;
  }
  .home-headline-left{
    width: 39.5%;
  }
}
@media (max-width: 1200px){
  .home-headline-wrapper:after{
    width: 70%;
  }
}
@media (max-width: 960px){
  .home-headline-left {
    width: 50%;
  }
  .home-headline-wrapper:after{
    width: 58%;
  }
  .home-headline-wrapper:before{
    width: 50%;
  }
  .home-headline-info {
    padding: 20px 0 100px;
  }
  .secondary-title{
    font-size: 20px !important;
  }
}
@media (max-width: 767px){
  .home-headline-amenities:after{
  	width:100%;
  }
  .home-headline-mobile{
    display: block;
    padding: 50px 0px 25px;
  }
  .home-headline-right{
    display: none;
  }
  .home-headline-left {
    width: 100%;
  }
  .home-headline-description {
    padding-top: 15px;
  }
  .home-headline-info {
    padding: 20px 0 0px;
  }
  .home-headline-wrapper:after, .home-headline-wrapper:before{
    display: none;
  }
  .home-headline-left-wrapper {
    padding: 40px 0px 0px;
  }
  .home-headline-amenities {
    padding: 30px 40px 30px;
    position: relative;
  }
  .home-headline-amenities:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-alt-1);
    z-index: -1;
  }
  .home-headline-section.addBG:after{
    background-attachment: initial;
    background-size: cover;
  }
}
/* Home headline section end */
/* Home Rooms Sec Start */
.home-rooms-container {
  /*max-width: 1136px;*/
  max-width: 1170px;
}
.home-rooms-section {
  padding: 115px 0 0px;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
}
.home-rooms-listing {
  padding-top: 90px;
  padding-bottom: 5px;
}
.home-room-action {
  text-align: center;
  padding-top: 80px;
}
/*.home-room-name {
font-size: 20px;
font-weight: 400;
text-transform: capitalize;
letter-spacing: 0;
}*/
.home-room-info{
  padding-top: 40px;
}

.home-room-info h3{
  font-family: 'Gotham';
  color: var(--body-font-color);
  margin-bottom: 20px;
}

.home-room-starting-price-text {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 1.43px;
  margin: 20px 0px 15px;
  line-height: 18px;
  font-family: 'Gotham';
}
.home-room-description {
  margin-bottom: 25px;
  font-size: 14px;
}
.home-rooms-section.addBG:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 460px;
  background: linear-gradient(75deg, rgba(0, 52, 43, 0.50) 27.39%, rgba(9, 139, 118, 0.50) 68.57%, rgba(40, 185, 124, 0.50) 109.75%);
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
}
.home-rooms-overview-title{
  width: 50%;
  margin: 0 auto;
  color: var(--inverse-font-color);
  line-height: 50px;
  filter: opacity(1);
}

/*************/
/*.home-rooms-container-wrap {
max-width: 1312px;
margin: 0 auto;
border: 3px solid var(--secondary-color);
border-top: 0;
position: relative;
}

.home-rooms-container-wrap::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 30%;
height: 3px;
background: var(--secondary-color);
}

.home-rooms-container-wrap::after {
content: "";
position: absolute;
right: 0;
top: 0;
width: 30%;
height: 3px;
background: var(--secondary-color);
}

.home-rooms-container-wrap .section-border-heading {
top: -20px;
}

.home-rooms-container-wrap .home-room-action {
position: relative;
top: 21px;
}

.home-rooms-section.section-border-wrapper::after {
border: 0;
}

.home-rooms-section .section-border-heading:before, .home-rooms-section .section-border-heading:after{
border: 0;
}
*/
/*************/
@media (max-width: 1024px){
  .home-rooms-section{
    background-size: auto 400px;
    background-position: top;
  }
}
@media (max-width: 960px){
  .home-rooms-listing-items{
    width: 45%;
  }
  .home-room-media img{
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px){
  .home-rooms-section{
    background-size: auto 460px;
  }
  .home-rooms-overview-title{
    font-size: 30px;
    line-height: 36px;
  }
  .home-rooms-section {
    padding: 100px 0 0px;
    background-position: 53% 0px;
    background-size: 235% 42%;
  }
  .home-rooms-listing-items {
    width: 85%;
  }
  .home-rooms-listing-grid{
    margin-left: -25px;
  }
  .home-rooms-listing-grid > *{
    padding-left: 25px;
  }
  .home-rooms-listing {
    padding-top: 50px;
    padding-left: 45px;
  }
  .home-rooms-overview-title{
    width: 60%;
  }
  .home-room-action {
    padding-top: 35px;
  }
  .home-rooms-container {
    padding: 0;
  }
  .home-rooms-section.addBG:before{
    height: 42%;
  }
}

@media all and (max-width: 639.98px){
  .home-rooms-section{
    background-position: 35% 0px;
    background-size: 145% 42%;
  }
}
/* Home Rooms Sec End */
/* Home dining section start */
.home-dining-section {
  padding:130px 0px 185px;
  position: relative;
  z-index: 0;
}
.home-dining-container{
  max-width: 1030px;
}
.home-dining-content-wrapper {
  padding-top: 65px;
}
.home-dining-description {
  margin: 25px 0px;
}
.home-dining-info {
  padding-bottom: 95px;
}
.home-dining-spots-title {
  font-family: var(--text-fonts);
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.43px;
  text-transform: uppercase;
  color: var(--primary-color);
}
.restaurant-list-with-distance {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  text-transform: capitalize;
  padding-top: 22px;
}
.restaurant-list-with-distance .restaurant-name{
  font-weight: 500;
}
.home-dining-spots-wrapper {
  padding-top: 50px;
  padding-left: 100px;
}
.home-dining-section:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: calc(0px + 108px);
  width: 54%;
  height: 59%;
  background: var(--bg-alt-1);
  z-index: -1;
}
.home-dining-section.addBG:after {
  position: absolute;
  background-image: url(https://assets.milestoneinternet.com/quality-inn-northlake/no-index/bg-pattern.svg);
  width: 100%;
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
  content: '';
  height: 189px;
  bottom: 0;
  z-index: -2;
  opacity: 0.4;
  background-attachment: fixed;
}
@media (min-width: 640px){
  .home-dining-left{
    width: 43%;
  }
  .home-dining-info {
    padding-right: 45px;
  }
}
@media (max-width: 960px){
  .home-dining-info {
    padding-right: 0;
  }
  .home-dining-spots-wrapper {
    padding-top: 50px;
    padding-left: 50px;
  }
}
@media (max-width: 767px){
  .home-dining-section {
    padding: 60px 0px 100px;
  }
  .home-dining-section.addBG:after{
    background-attachment: initial;
    background-size: cover;
  }
}
@media (max-width: 640px){
  .home-dining-container {
    padding: 0;
  }
  .home-dining-media img {
    height: 360px;
    object-fit: cover;
  }
  .home-dining-content-wrapper {
    padding: 50px 0px 0px;
  }
  .home-dining-info{
    padding: 0 20px 50px;
  }
  .home-dining-spots-wrapper {
    padding: 60px 50px 70px;
    background: var(--bg-alt-1);
    margin-left: 20px; margin-right:20px;
  }
  .home-dining-section:before{
    display: none;
  }
}
/* Home dining section start */
/* Home Offer Sec Start */
.home-offer-section {
  padding: 120px 0px 0px;
}
.home-offer-container {
  max-width: 1030px;
  max-width: 1065px;
}
.home-offer-listing {
  padding-top: 80px;
}
.home-offer-description {
  margin-bottom: 25px;
  font-size: 14px;
}
.home-offer-starting-price-text {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 1.43px;
  margin: 20px 0px 15px;
  line-height: 18px;
}
.home-offer-overview-title{
  width: 65%;
  margin: 0 auto;
}
.home-offer-info {
  padding: 40px 0px;
  margin: 0 auto;
}

.home-offer-info h3{
  color: var(--body-font-color);
  margin-bottom: 15px;
}

.home-offer-info h3,
.home-offer-info h4{
  font-family: 'Gotham';
}

.home-offer-action {
  text-align: center;
  padding-top: 40px;
}
.home-offer-section.section-border-wrapper:after{
  width: calc(1030px + 170px);
  top: 144px;
  height: calc(100% - 166px);
}
@media (min-width: 640px){
  .home-offer-info {
    max-width: 310px;
  }
}
@media (max-width: 960px){
  .home-offer-listing {
    padding-top: 60px;
  }
  .home-offer-action{
    padding-top: 15px;
  }
}
@media (max-width: 640px){
  .home-offer-overview-title{
  	        font-size: 30px;
        line-height: 30px;
  }
  .home-offer-listing .uk-grid > div:last-child{
    display: none;
  }
  .home-offer-media img{
    width: 100%;
  }
}
/* Home Offer Sec End */
/* Home Attraction start */
.attractions {
  position: relative;
  z-index: 0;
  margin-top: 120px;
}
.attractions__container{
  max-width:1085px;
}
.attractions__wrapper {
  padding: 50px 0px 150px;
}
.attractions__info{
  padding-top: 65px;
}
.attractions__info .before-title-line{
  padding: 34px 0 0px;
}
.attractions__list-wrapper {
  padding-top: 60px; position:relative;
}
.attractions__list-title{
  font-family: var(--text-fonts);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.43px;
  text-transform: uppercase;
  color: var(--primary-color);
}
.attractions__list-with-distance {
  font-family: var(--text-fonts);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  padding-top: 18px;
}
.attractions__list-with-distance .attractions__name{
  font-weight: 500;
  text-transform: capitalize;
}
.attractions__description {
  margin: 60px 0 21px;
}
.attractions:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 36%;
  height: 100%;
  background: var(--bg-alt-1);
}
@media (min-width: 1200px){
  .attractions__grid {
    margin-left: -20px;
  }
  .attractions__grid > * {
    padding-left: 20px;
  }
}
@media (min-width: 960px){
  .attractions__left{
    width: 43%;
  }
  .attractions__description {
    max-width: 384px;
  }
}
@media (min-width: 640px){
  .attractions__list-wrapper.attractions__list-mobile-data{
    display: none;
  }
}
@media (max-width: 1180px){
  .attractions__left {
    width: 50%;
  }
  .attractions:before{
    width: 40%;
  }
  .attractions{
    margin-top: 85px;
  }
}
@media (max-width: 640px){
  .attractions__left {
    width: 100%;
  }
  .attractions__wrapper {
    padding: 0;
  }
  .attractions__info {
    padding-top: 0px;
    padding-bottom: 40px;
  }
  .attractions__list-wrapper.attractions__list-desktop-data{
    display: none;
  }
  .attractions__info .before-title-line {
    padding: 30px 0 40px;
  }
  .attractions:before{
    display: none;
  }
  .attractions__description {
    margin: 35px 0 21px;
  }
  .attractions__container {
    padding: 0;
  }
  .attractions__info, .attractions__right-content{
    padding: 0 20px;
  }
  .attractions__list-wrapper.attractions__list-mobile-data {
    margin: 50px 20px 0 20px;
    background: var(--bg-alt-1);
    padding: 50px 20px 70px 40px;
  }
}

/* Home Attraction End */
/* Home Map Start */

.home-map-media img {
  max-height: 460px;
}
.home-map-section {
  margin-top: -63px;
}
.home-map-media.cms6{
  position: relative;
}
.home-map-media.cms6 .ms_cms_editbar_component{
  	position: absolute;
	top: 0px;
  	left: 50%;
  	
}

@media (max-width: 640px){
  .home-map-container{
    padding: 0;
  }
  .home-map-media img{
    height: 460px;
    object-fit: cover;
  }
}

/* Home Map End */