@font-face {
    font-family: helvetica-neue;
    src: local(helvetica-neue),
    url('../fonts/helvetica-neue.ttf') format('truetype');
}

@font-face {
    font-family: helvetica-neue-bold;
    src: local(helvetica-neue-bold),
    url('../fonts/helvetica-neue-bold.ttf') format('truetype');
}

@font-face {
    font-family: helvetica-neue-thin;
    src: local(helvetica-neue-thin),
    url('../fonts/helvetica-neue-thin.ttf') format('truetype');
}

@font-face {
    font-family: sfProDisplay-Regular;
    src: local(sfProDisplay-Regular),
    url('../fonts/sfProDisplay-Regular.otf') format('opentype');
}

/* font-family: 'Archivo', sans-serif;
font-family: 'Barlow', sans-serif; */

/* All common codes for desktop and mobile version */

html,
body {
    min-height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
}

a {
    cursor: pointer;
}

a:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none;
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1190px;
    }
}

@media only screen and (min-width: 1500px) {
    .container.big {
        max-width: 1360px;
    }
}

html.scroll-snap {
    height: 100%;
    scroll-snap-type: y mandatory;
}

body.homepage-wrapper {
    position: relative;
    height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

.homepage-snap-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* overflow-y: scroll;
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory; */
}

.home-panel {
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

@media only screen and (max-width: 767px) {
    /* body {
		background: black;
	} */
    html.scroll-snap {
        margin: 0;
        height: 100%;
        overflow: hidden;
    }

    body.homepage-wrapper {
        margin: 0;
        height: 100%;
        overflow: hidden !important;
    }

    .homepage-snap-wrapper {
        overflow-y: scroll;
        scroll-behavior: smooth;
        scroll-snap-type: y mandatory;
    }

    .homepage-snap-wrapper.menu-open {
        overflow-y: hidden;
    }
}

/* Top Bar */

.limited-top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px 17px 15px;
    background: #fff;
}

.limited-top-bar > a {
    display: flex;
    align-items: center;
    justify-content: center;
    font: 500 16px / 19px 'Barlow', sans-serif;
    color: #000532;
    text-align: center;
}

.limited-top-bar a .text {
    text-decoration: underline;
}

.limited-top-bar a b {
    font-weight: 700;
}

.limited-top-bar a svg {
    display: block;
    width: 13px;
    margin-left: 20px;
}

@media only screen and (max-width: 767px) {
    .limited-top-bar > a {
        font-size: 14px;
    }

    .limited-top-bar a svg {
        margin-left: 10px;
    }
}

@media only screen and (max-width: 360px) {
    .limited-top-bar > a {
        font-size: 13px;
    }

    .limited-top-bar a svg {
        margin-left: 7px;
    }
}

/* Menu bar animation css */

.main-menu > .container {
    width: 100%;
    max-width: 1480px;
}

.main-menu {
    transition: all 0.3s ease-in;
}

.main-menu.white-bg {
    background: #fff;
}

.navbar {
    padding-left: 0;
    padding-right: 0;
}

.navbar .navbar-toggler {
    border: none;
    padding: 9px 14px;
    background: rgba(0, 5, 50, 0.7);
    border-radius: 12px;
}

.navbar .navbar-toggler svg {
    display: block;
    overflow: visible;
    width: 12px;
    height: 10px;
}

.navbar .navbar-toggler svg line {
    stroke: #fff;
}

.mobile-menu-inner {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-header {
    display: none;
}

.main-menu {
    padding: 12px 0;
}

.main-menu .navbar {
    padding: 0;
}

.main-menu > .container {
    width: 100%;
    max-width: 1470px;
}

.main-menu .navbar-brand {
    padding: 0;
    margin-right: 152px;
}

.main-menu .logo {
    display: block;
    height: 31px;
    transition: all 0.3s ease-in;
}

.main-menu .overlay-parent {
    position: relative;
}

.main-menu .menu-overlay {
    position: absolute;
    z-index: 1;
    transition: all 0.3s ease-in;
    opacity: 0;
    background: #f0f0f0;
    border-radius: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.main-menu .menu-overlay.active {
    opacity: 1;
}

.main-menu .mobile-menu-wrapper {
    margin-left: auto;
    margin-right: auto;
    z-index: 5;
}

.main-menu .navbar-nav > li {
    margin-right: 56px;
}

.main-menu .navbar-nav > li:last-child {
    margin-right: 0;
}

.main-menu .navbar-nav > li.no-mr {
    margin-right: 0;
}

.main-menu .navbar-nav .nav-link {
    padding: 5px 13px;
    color: #000532;
    letter-spacing: 0.05em;
    font: 500 16px / 17px 'Archivo', sans-serif;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in;
}

.main-menu .nav-link > svg {
    margin-left: 10px;
    width: 11px;
    margin-top: 2px;
    transition: all 0.3s ease-in;
}

.main-menu .dropdown.show .nav-link > svg {
    transform: rotate(180deg);
}

.main-menu .btn-help {
    background: rgba(0, 5, 50, 0.7);
    border-radius: 12px;
    padding: 10px 20px;
    font: 600 13px / 14px 'Archivo', sans-serif;
    text-transform: capitalize;
    color: #fff;
    margin-left: 24px;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in;
}

.main-menu .btn-help svg {
    margin-left: 9px;
}

.main-menu .btn-help:hover,
.main-menu .btn-help:focus {
    color: #fff;
    background: #000532;
}

.main-menu .menu-right-wrapper {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.main-menu .btn-menu-desktop {
    border-radius: 6px;
    padding: 5px 13px;
    color: #000532;
    letter-spacing: 0.05em;
    font: 500 16px / 17px 'Archivo', sans-serif;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in;
}

.main-menu .btn-menu-desktop:hover {
    color: #000532;
    background: #f0f0f0;
}

.main-menu .btn-menu-desktop > svg {
    display: block;
    width: 12px;
    margin-left: 9px;
}

.main-menu .btn-menu-desktop > svg path {
    transition: all 0.3s ease-in;
}

.main-menu .dropdown-toggle::after {
    display: none;
}

.main-menu .dropdown-menu {
    border: none;
    min-width: 90px;
    margin-top: 0;
    border-radius: 12px;
    background: #fff;
    padding: 9px 0;
}

.main-menu .dropdown-item {
    padding: 6px 14px;
    color: #000532;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    font: 500 16px / 17px 'Archivo', sans-serif;
}

.main-menu .navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}

.main-menu .navbar-nav li.dropdown:hover .nav-link > svg {
    transform: rotate(180deg);
}

.main-menu .dropdown-item:hover,
.main-menu .dropdown-item:focus,
.main-menu .dropdown-item:active {
    background: #e9ecef;
    color: #000532;
}

.main-menu .dropdown-item .coming-soon {
    margin-left: 15px;
    font-size: 12px;
    font-weight: 200;
    background: #2f3140;
    padding: 3px 10px;
    border-radius: 9px;
    color: #979797;
    text-transform: lowercase;
}

.home-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 30;
    width: 100%;
}

.secondary-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 995;
    transition: all 0.15s ease-in;
}

.secondary-menu.white-bg {
    background: #fff;
}

.secondary-menu.secondary-white-bg {
    background: #fff;
}

.secondary-menu.white-bg .btn-help {
    background: rgba(0, 5, 50, 1);
}

@media only screen and (min-width: 768px) {
    .secondary-menu.white-text .navbar-nav .nav-link,
    .secondary-menu.white-text .btn-menu-desktop {
        color: #fff;
    }

    .secondary-menu.white-text .btn-menu-desktop > svg path {
        stroke: #fff;
    }

    .secondary-menu.white-text .navbar-nav .nav-link:hover,
    .secondary-menu.white-text .navbar-nav .nav-link:focus,
    .secondary-menu.white-text .navbar-nav .nav-link:active {
        color: #000532;
    }

    .secondary-menu.white-text.white-bg .navbar-nav .nav-link,
    .secondary-menu.white-text.white-bg .btn-menu-desktop {
        color: #000532;
    }

    .secondary-menu.white-text .btn-menu-desktop:hover,
    .secondary-menu.white-text .btn-menu-desktop:focus,
    .secondary-menu.white-text .btn-menu-desktop:active {
        color: #000532;
    }

    .secondary-menu.white-text.white-bg .btn-menu-desktop > svg path {
        stroke: #000532;
    }

    .secondary-menu.white-text .btn-menu-desktop:hover > svg path,
    .secondary-menu.white-text .btn-menu-desktop:focus > svg path,
    .secondary-menu.white-text .btn-menu-desktop:active > svg path {
        stroke: #000532;
    }
}

.secondary-menu .logo path {
    transition: all 0.3s ease-in;
}

.secondary-menu.white-text.white-bg .logo path {
    fill: #000532;
}

.secondary-menu .btn-help {
    background: rgba(0, 5, 50, 0.2);
    border: 1px solid #fff;
    padding: 9px 19px;
}

.secondary-menu .btn-help:hover,
.secondary-menu .btn-help:focus,
.secondary-menu .btn-help:active {
    border-color: #000532;
}

.secondary-menu.secondary-white-bg .btn-help {
    background: rgba(0, 5, 50, 0.7);
}

.menu-bottom-help-wrapper {
    display: none;
}

.main-menu .navbar-nav .nav-link .sub-title,
.main-menu .navbar-nav .nav-link .right-arrow {
    display: none;
}

.desktop-menu-wrapper {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 373px;
    background: #000532;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    padding: 18px 5px 5px 5px;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease-in;
}

.desktop-menu-wrapper.desktop-menu-open {
    transform: translateX(0);
    opacity: 1;
}

.desktop-menu-wrapper .desktop-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px 0 22px;
    width: 100%;
}

.desktop-menu-wrapper .menu-logo {
    display: block;
    height: 20px;
}

.desktop-menu-wrapper .btn-desktop-menu-close {
    padding: 6px 12px;
    border-radius: 12px;
    border: none;
}

.desktop-menu-wrapper .btn-desktop-menu-close img {
    display: block;
    width: 16px;
}

.desktop-menu-content {
    margin: 0;
    flex-grow: 1;
    justify-content: center;
    margin-bottom: 10px;
    padding: 35px 25px 0 22px;
    align-items: flex-start;
    width: 100%;
    overflow-y: auto;
}

.desktop-menu-content .desktop-navbar {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.desktop-menu-content .desktop-navbar > li {
    margin: 0 0 30px 0;
    width: 100%;
}

.desktop-menu-content .nav-link,
.desktop-menu-content .dropdown-item {
    padding: 5px 5px 5px 0px;
    color: #fff;
    letter-spacing: 0.05em;
    font: 500 18px / 20px 'Archivo', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.desktop-menu-content .nav-link .sub-title {
    display: block;
    color: #979797;
    letter-spacing: 0.05em;
    margin: 5px 0 0 0;
    font: 300 12px / 13px 'Archivo', sans-serif;
}

.desktop-menu-content .nav-link .right-arrow {
    display: block;
    width: 11px;
    margin-left: 25px;
}

.desktop-menu-content .nav-link.dropdown-toggle::after {
    display: none;
}

.desktop-menu-content .nav-link.dropdown-toggle > svg {
    width: 15px;
    margin-left: 25px;
    margin-top: 2px;
    transition: all 0.3s ease-in;
}

.desktop-menu-content .nav-link.dropdown-toggle > svg path {
    stroke: #fff;
}

.desktop-menu-content li.dropdown.open .nav-link > svg {
    transform: rotate(180deg);
}

.desktop-menu-content .dropdown-menu {
    position: relative;
    border: none;
    padding: 8px 0;
    min-height: auto;
    background: transparent;
    border-radius: 0;
    margin: 22px 0 0px 0;
    display: none;
    width: 100%;
    border-left: 1px solid #979797;
}

.desktop-menu-content .dropdown-menu > li {
    margin: 0 0 20px 0;
}

.desktop-menu-content .dropdown-menu > li:last-child {
    margin-bottom: 0;
}

.desktop-menu-content .dropdown-item {
    padding-left: 19px;
    justify-content: flex-start;
}

.desktop-menu-content .dropdown-item:hover,
.desktop-menu-content .dropdown-item:focus,
.desktop-menu-content .dropdown-item:active {
    color: #fff;
    background: transparent;
}

.desktop-menu-content .dropdown-item .coming-soon {
    margin-left: 15px;
    font-size: 12px;
    font-weight: 200;
    background: #2f3140;
    padding: 3px 10px;
    border-radius: 9px;
    color: #979797;
    text-transform: lowercase;
}

.desktop-menu-footer {
    display: block;
    position: relative;
    width: 100%;
    background: linear-gradient(105.93deg, #20265a 39.19%, #000532 96.85%);
    border-radius: 22px 22px 0px 22px;
    width: 100%;
    padding: 30px 164px 35px 22px;
}

.desktop-menu-footer .desktop-menu-img {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 164px;
    max-height: 100%;
}

.desktop-menu-footer .inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.desktop-menu-footer h3 {
    margin: 0 0 25px 0;
    color: #fff;
    text-transform: capitalize;
    font: 500 20px / 22px 'Archivo', sans-serif;
}

.desktop-menu-footer .btn-start {
    box-shadow: none;
    text-shadow: none;
    background: rgba(0, 5, 50, 0.2);
    border: 1px solid #fff;
    border-radius: 12px;
    color: #fff;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 500 12px / 14px 'Archivo', sans-serif;
}

.desktop-menu-footer .btn-start:hover,
.desktop-menu-footer .btn-start:focus,
.desktop-menu-footer .btn-start:active {
    background: rgba(0, 5, 50, 0.2);
    color: #fff;
}

.desktop-menu-footer .btn-start svg {
    display: block;
    margin-left: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu .navbar-nav > li {
        margin-right: 10px;
    }

    .main-menu .menu-right-wrapper {
        margin-left: 15px;
    }

    .main-menu .btn-help {
        margin-left: 10px;
    }

    .main-menu .navbar-brand {
        margin-right: 130px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* .main-menu .logo {
		height: 28px;
	} */
    .main-menu .navbar-brand {
        margin-right: 20px;
    }

    .main-menu .menu-right-wrapper {
        margin-left: 10px;
    }

    .main-menu .mobile-menu-wrapper {
        margin-right: 0;
    }

    .main-menu .navbar-nav > li {
        margin-right: 10px;
    }

    .main-menu .navbar-nav .nav-link {
        font-size: 14px;
        padding: 5px 7px;
    }

    .main-menu .btn-menu-desktop {
        font-size: 14px;
        padding: 5px 10px;
    }

    .main-menu .dropdown-item {
        font-size: 14px;
    }

    .main-menu .btn-help {
        padding: 10px 10px;
        margin-left: 10px;
        font-size: 12px;
    }

    .main-menu .btn-help svg {
        margin-left: 7px;
    }
}

@media only screen and (max-width: 767px) {
    .desktop-menu-wrapper {
        display: none;
    }

    .main-menu .logo.logo-hide {
        opacity: 0;
    }

    .main-menu .logo {
        height: 24px;
        width: 110px;
    }

    .main-menu .menu-overlay {
        display: none;
    }

    .home-menu.fixed-menu {
        position: fixed;
    }

    .main-menu .overlay-parent {
        position: fixed;
        z-index: 999;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        backdrop-filter: blur(4px);
        background: rgba(0, 5, 50, 0.5);
        display: none;
        opacity: 0;
    }

    .mobile-menu-inner {
        position: relative;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        width: 82%;
        max-width: 310px;
        background: #000532;
        border-top-left-radius: 22px;
        border-bottom-left-radius: 22px;
        padding: 15px 5px 5px 5px;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 0;
        transition: all 0.3s ease-in;
    }

    .mobile-menu-inner.mobile-menu-open {
        transform: translateX(0);
        opacity: 1;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        padding: 0 10px 0 22px;
        width: 100%;
    }

    .mobile-menu-header .logo-mobile {
        display: block;
        height: 20px;
    }

    .mobile-menu-header .btn-menu-close {
        padding: 6px 12px;
        border-radius: 12px;
        border: none;
    }

    .mobile-menu-header .btn-menu-close > img {
        display: block;
        width: 16px;
    }

    /* .mobile-menu-header .btn-menu-close > svg path {
		height: 20px;
	} */
    .main-menu .mobile-menu-wrapper {
        margin: 0;
        flex-grow: 1;
        justify-content: center;
        margin-bottom: 10px;
        padding: 35px 25px 0 22px;
        align-items: flex-start;
        width: 100%;
        overflow-y: auto;
    }

    .main-menu .navbar-nav > li {
        margin: 0 0 26px 0;
        width: 100%;
    }

    .main-menu .dropdown-menu > li {
        margin: 0 0 20px 0;
    }

    .main-menu .dropdown-menu > li:last-child {
        margin-bottom: 0;
    }

    .main-menu .navbar-nav .nav-link {
        justify-content: space-between;
    }

    .main-menu .navbar-nav .nav-link,
    .main-menu .dropdown-item {
        padding: 5px 5px 5px 0px;
        color: #fff;
        font-size: 18px;
        line-height: 20px;
    }

    .main-menu .dropdown-item {
        padding-left: 19px;
        display: flex;
        align-items: center;
    }

    .main-menu .nav-link > svg path {
        stroke: #fff;
    }

    .main-menu .nav-link > svg {
        width: 15px;
        margin-left: 25px;
    }

    .main-menu .navbar-nav li.dropdown:hover .nav-link > svg {
        transform: rotate(0deg);
    }

    .main-menu .navbar-nav li.dropdown.open .nav-link > svg {
        transform: rotate(180deg);
    }

    .main-menu .navbar-nav li:hover > ul.dropdown-menu {
        display: none;
    }

    .main-menu .dropdown-menu {
        padding: 8px 0;
        min-height: auto;
        background: transparent;
        border-radius: 0;
        margin: 22px 0 0px 0;
        display: none;
        border-left: 1px solid #979797;
    }

    .main-menu .dropdown-item:hover,
    .main-menu .dropdown-item:focus,
    .main-menu .dropdown-item:active {
        background: transparent;
        color: #fff;
    }

    .main-menu .menu-right-wrapper {
        display: none;
    }

    .main-menu .btn-help {
        margin: 10px 0 0 0;
        border-radius: 12px;
        background: transparent;
        border: 1px solid #fff;
        padding: 10px 18px;
        display: none;
    }

    .menu-bottom-help-wrapper {
        display: block;
        position: relative;
        width: 100%;
        background: linear-gradient(105.93deg, #20265a 39.19%, #000532 96.85%);
        border-radius: 22px 22px 0px 22px;
        width: 100%;
        padding: 18px 100px 17px 27px;
    }

    .menu-bottom-help-wrapper .mobile-menu-img {
        position: absolute;
        right: 0;
        bottom: 0;
        display: block;
        width: 133px;
        max-height: 100%;
    }

    .menu-bottom-help-wrapper .inner {
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-bottom-help-wrapper h3 {
        margin: 0 0 25px 0;
        color: #fff;
        text-transform: capitalize;
        font: 500 20px / 22px 'Archivo', sans-serif;
    }

    .menu-bottom-help-wrapper .btn-start {
        display: block;
        background-image: none;
        box-shadow: none;
        text-shadow: none;
        background: rgba(0, 5, 50, 0.2);
        border: 1px solid #fff;
        border-radius: 12px;
        color: #fff;
        letter-spacing: 0.05em;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font: 500 12px / 14px 'Archivo', sans-serif;
    }

    .menu-bottom-help-wrapper .btn-start:hover,
    .menu-bottom-help-wrapper .btn-start:focus,
    .menu-bottom-help-wrapper .btn-start:active {
        background: rgba(0, 5, 50, 0.2);
        color: #fff;
    }

    .menu-bottom-help-wrapper .btn-start > svg {
        display: block;
        margin-left: 20px;
    }

    .main-menu .navbar-nav .nav-link .sub-title {
        display: block;
        color: #979797;
        letter-spacing: 0.05em;
        margin: 5px 0 0 0;
        font: 300 12px / 13px 'Archivo', sans-serif;
    }

    .main-menu .navbar-nav .nav-link .right-arrow {
        display: block;
        width: 11px;
        margin-left: 25px;
    }

    .main-menu .navbar-nav .nav-link .right-arrow path {
        transition: all 0.3s ease-in;
    }

    .main-menu .navbar-nav.sub-menu-open .nav-link {
        color: #979797;
    }

    .main-menu .navbar-nav.sub-menu-open .nav-link.this-submenu-open {
        color: #fff;
    }

    .main-menu .navbar-nav.sub-menu-open .nav-link .right-arrow path {
        stroke: #979797;
    }
}

/* Section One */

/* .home-section {
	min-height: 100vh;
} */

.background-image {
    background: url(../images/Home/home-bg-1.jpg) center center / cover no-repeat;
}

.video-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-section.one {
    min-height: calc(100% - 51px);
    position: relative;
}

.home-section.two {
    background: url(../images/Home/residential_v2.jpg) center center / cover no-repeat;
}

.home-section.three {
    background: url(../images/Home/home-commercial.jpg) center center / cover no-repeat;
}

.home-title-box {
    position: fixed;
    top: 105px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
    /* pointer-events: none; */
}

.home-section.one .home-title-box {
    top: 156px;
    opacity: 1;
    visibility: visible;
}

.home-title-box h1 {
    color: #000532;
    text-align: center;
    font: 800 36px / 50px 'Archivo', sans-serif;
    margin: 0;
}

.home-section.one h1 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
}

.home-title-box h4 {
    margin: 0;
    color: #000532;
    font: 500 25px / 35px 'Archivo', sans-serif;
    text-align: center;
}

.home-section.one h4 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
}

.home-btn-box {
    position: fixed;
    left: 0;
    right: 0;
    /* bottom: 175px; */
    bottom: 11.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 15px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.home-section.one .home-btn-box {
    bottom: 100px;
    /* bottom: 10%; */
    opacity: 1;
    visibility: visible;
}

.home-btn-box .btn {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font: 700 16px / 17px 'Archivo', sans-serif;
    text-transform: uppercase;
    margin: 10px;
    /* transition: all 0.3s ease-in; */
}

.home-btn-box .btn-order {
    background: rgba(0, 5, 50, 0.9);
    color: #fff;
}

.home-btn-box .btn-order:hover,
.home-btn-box .btn-order:focus {
    background: #000532;
}

.home-btn-box .btn-learn {
    background: rgba(255, 255, 255, 0.9);
    color: #000532;
}

.home-btn-box .btn-learn:hover,
.home-btn-box .btn-learn:focus {
    background: #fff;
}

.home-section.one .btn-order {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
}

.home-section.one .btn-learn {
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
}

.home-banner-arrow {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
}

.home-banner-arrow .icon-arrow {
    display: block;
    width: 15px;
    animation: arrowUpDown 0.6s ease-in infinite alternate;
}

.home-section.one .home-banner-arrow {
    opacity: 0;
    visibility: hidden;
}

@keyframes arrowUpDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(15px);
    }
}

/* .home-section .home-content {
	position: fixed;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
} */
.home-section.home-later-section {
    /* padding: 70px 0 50px 0; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-section.home-later-section > .home-content {
    flex-shrink: 0;
    width: 100%;
}

/* .home-section .home-content > .container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
} */
.home-content h1 {
    color: #000532;
    text-align: center;
    font: 800 36px / 50px 'Archivo', sans-serif;
    margin: 30px 0 35px 0;
    opacity: 0;
    visibility: hidden;
}

.home-section.six .home-content h1 {
    margin-bottom: 0;
}

.home-content h4 {
    margin: 0 0 25px 0;
    color: #000532;
    font: 500 25px / 35px 'Archivo', sans-serif;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.home-content .small-gap-row {
    margin-left: -10px;
    margin-right: -10px;
}

.home-content .small-gap-row > .col-md-4 {
    padding-left: 10px;
    padding-right: 10px;
}

.home-content .review-box {
    display: block;
    margin: 0 auto 60px auto;
    width: 100%;
    max-width: 355px;
}

.home-content .review-img-wrapper {
    position: relative;
    margin-bottom: 18px;
}

.home-content .review-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 208px;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
}

.home-content .review-box .circle {
    position: absolute;
    left: 14px;
    bottom: 15px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.home-content .review-box .circle svg {
    display: block;
    width: 9px;
}

.home-section.six h4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-section.six h4 a {
    display: block;
    position: relative;
    padding-bottom: 3px;
    color: #08a9ee;
    text-decoration: none;
}

.home-section.six h4 a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #08a9ee;
    transform: translateX(-50%);
    transition: all 0.2s ease-in;
}

.home-section.six h4 a:hover,
.home-section.six h4 a:focus {
    text-decoration: none;
    color: #08a9ee;
}

.home-section.six h4 a:hover::after,
.home-section.six h4 a:focus::after {
    width: 100%;
}

.review-modal {
    background: rgba(0, 0, 0, 0.8);
}

.review-modal .modal-content {
    border-radius: 0;
    border: none;
}

.review-modal .modal-body {
    padding: 0;
}

.review-modal .review-video {
    max-width: 100%;
    width: 100%;
    display: block;
}

.home-content .review-box h5 {
    color: #000532;
    margin: 0 0 7px 0;
    font: 800 18px / 25px 'Archivo', sans-serif;
}

.home-content .review-box p {
    margin: 0;
    color: #000532;
    font: 400 16px / 22px helvetica-neue;
    letter-spacing: 0.3px;
}

.home-content .btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.home-content .btn-wrapper .btn-blue {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font: 700 16px / 17px 'Archivo', sans-serif;
    text-transform: uppercase;
    margin: 0px;
    background: rgba(0, 5, 50, 0.9);
    color: #fff;
    transition: all 0.3s ease-in;
}

.home-content .btn-wrapper .btn-blue:hover,
.home-content .btn-wrapper .btn-blue:focus {
    background: #000532;
}

.home-section .table-responsive-md {
    width: 100%;
    max-width: 940px;
    margin: 0 auto 80px auto;
    position: relative;
}

.home-section .table-striped tbody tr:nth-of-type(odd) {
    background: #fbfbfc;
}

.home-section .table thead th {
    border-top: none;
    border-bottom: none;
    padding: 20px 20px 15px 20px;
}

.home-section .table tbody th {
    vertical-align: middle;
    padding: 14px 20px;
}

.home-section .table tr {
    border-bottom: 1px solid #e8eaed;
}

.home-section .table tbody tr:last-child {
    border-bottom: none;
}

.home-section .table .btn-learn {
    box-shadow: none;
    text-shadow: none;
    background: none;
    border: 1px solid #c4c4c4;
    border-radius: 12px;
    padding: 8px 15px;
    display: flex;
    margin: 20px auto 0 auto;
    font: 700 14px / 17px 'Archivo', sans-serif;
    transition: all 0.3s ease-in;
    color: #000532;
}

.home-section .table .btn-learn:hover,
.home-section .table .btn-learn:focus {
    background: #000532;
    color: #fff;
    border-color: #000532;
}

.home-section .table td {
    padding: 10px 20px;
    vertical-align: middle;
}

.home-section .table p {
    margin: 0;
    letter-spacing: 0.05em;
    color: #223254;
    font: 500 14px / 18px 'Archivo', sans-serif;
    max-width: 210px;
}

.home-section .table h5 {
    margin: 0 0 3px 0;
    text-align: center;
    letter-spacing: 0.05em;
    color: #000532;
    font: 700 20px / 22px 'Archivo', sans-serif;
}

.home-section .table h6 {
    margin: 0;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #223254;
    font: 700 13px / 14px 'Archivo', sans-serif;
}

.home-section .table img {
    display: block;
    height: 15px;
    margin: 0 auto;
}

.home-section .border-div {
    position: absolute;
    top: 0px;
    bottom: 65px;
    border: 1px solid #000532;
    border-radius: 7px;
}

.home-section .slider-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.home-section .slider-nav-container {
    margin-top: 55px;
    display: flex;
    justify-content: center;
}

.home-section .slider-nav-container button {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    box-shadow: none;
    margin: 0 12px;
    text-shadow: none;
    color: transparent;
    transition: all 0.3s ease-in;
}

/* .home-section .slider-nav-container button.owl-prev {
	background: #fff url(../images/Home/slider-arrow-left.svg) center center /
		10px auto no-repeat;
} */
.home-section .slider-nav-container button.owl-prev:hover {
    background: rgba(0, 0, 0, 0.2);
}

.home-section .slider-nav-container button.owl-next img {
    margin-left: 2px;
}

.home-section .slider-nav-container button.owl-next:hover {
    background: rgba(0, 0, 0, 0.2);
}

.home-section.home-last {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    min-height: auto;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
}

.home-section.home-last .home-article-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow-y: auto;
    padding-top: 50px;
    padding-bottom: 30px;
}

/* .home-section.home-last h1 {
	margin-bottom: 20px;
	line-height: 90px;
} */
.home-section .article-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
}

.home-section .article-box .article-img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 26px;
    border-radius: 7px;
}

.home-section .article-box h5 {
    margin: 0 0 20px 0;
    color: #000532;
    font: 700 18px / 25px helvetica-neue;
}

.home-section .article-box h3 {
    letter-spacing: 0.05em;
    color: #000;
    margin: 0 0 14px 0;
    font: 800 20px / 28px 'Archivo', sans-serif;
    text-align: left;
}

.home-section .article-box p {
    color: #818181;
    margin: 0 0 20px 0;
    font: 16px / 22px helvetica-neue;
}

.home-section .article-box .read-more-link {
    color: #000532;
    margin: 0;
    text-decoration: underline;
    font: 700 14px / 14px helvetica-neue;
    display: flex;
    align-items: flex-end;
}

.home-section .article-box .read-more-link svg {
    display: block;
    width: 10px;
    margin-left: 5px;
    transition: all 0.2s ease-in;
}

.home-section .article-box .read-more-link svg path {
    fill: #000532;
}

.home-section .article-box .read-more-link:hover,
.home-section .article-box .read-more-link:focus {
    color: #000532;
    text-decoration: underline;
}

.home-section .article-box .read-more-link:hover svg,
.home-section .article-box .read-more-link:focus svg {
    margin-left: 7px;
}

.home-section.four .home-content h4 {
    margin-bottom: 65px;
}

.home-section.five h1 {
    line-height: 40px;
}

.home-section.five h4 {
    line-height: 33px;
    margin-bottom: 50px;
}

/* Footer */

.footer {
    padding-bottom: 10px;
}

.footer.homepage {
    height: 100vh;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.footer .footer-inner {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 5, 50, 0.2);
}

.footer .link-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.footer .link-box {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer h6 {
    margin: 0 0 20px 0;
    letter-spacing: 0.05em;
    color: #000532;
    padding: 0 5px;
    font: 700 14px / 15px 'Archivo', sans-serif;
}

.footer p {
    color: #000532;
    letter-spacing: 0.05em;
    margin: 0 0 15px 0;
    font: 500 14px / 15px 'Archivo', sans-serif;
}

.footer .link-box a {
    color: #000532;
    letter-spacing: 0.05em;
    margin: 0 0 5px 0;
    font: 500 14px / 15px 'Archivo', sans-serif;
    padding: 5px 5px;
    border-radius: 6px;
    transition: all 0.3s ease-in;
}

.footer .link-box a:hover,
.footer .link-box a:focus {
    text-decoration: none;
    color: #000532;
    background: #f0f0f0;
}

.footer p.small {
    margin: 0;
    letter-spacing: 0.05em;
    color: #000532;
    font: 300 10px / 11px 'Archivo', sans-serif;
}

.footer.homepage .footer-placeholder {
    height: 60px;
}

.footer.homepage .footer-content {
    padding: 0 15px;
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer.homepage .footer-content h2 {
    text-align: center;
    color: #000532;
    margin: 0 0 10px 0;
    font: 800 36px / 50px 'Archivo', sans-serif;
}

.footer.homepage .footer-content p {
    text-align: center;
    margin: 0 auto 86px auto;
    color: #000532;
    max-width: 484px;
    font: 500 20px / 28px 'Archivo', sans-serif;
    letter-spacing: 0;
}

.footer.homepage .footer-content .btn-white {
    margin: 0 auto 40px auto;
}

@media only screen and (min-width: 1365px) and (max-width: 1368),
(min-height: 655px) and (max-height: 660px) {
    .home-section.four .home-content h4 {
        margin-bottom: 30px;
    }

    .home-content .review-box {
        margin-bottom: 35px;
    }

    .home-section.five h4 {
        margin-bottom: 25px;
    }

    .home-section .table-responsive-md {
        margin-bottom: 20px;
    }

    .home-section .table tbody th {
        padding: 10px 20px;
    }

    .home-section .article-box {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-section .owl-carousel .owl-item img {
        width: 400px;
        height: 400px;
        object-fit: cover;
    }

    .home-section .table .learn-more-row td {
        padding: 10px 5px;
    }

    .home-section .table .btn-learn {
        padding: 8px 8px;
    }
}

@media only screen and (max-width: 767px) {
    .home-section.home-later-section {
        padding-top: 80px;
        padding-bottom: 30px;
        overflow-y: auto;
    }

    .home-section.one {
        background: url(../images/Home/home-bg-1-mobile.jpg) center center /
			cover no-repeat;
    }

    .home-section.two {
        background: url(../images/Home/residential_v2-mobile.jpg) center center /
			cover no-repeat;
    }

    .home-section.three {
        background: url(../images/Home/home-commercial-mobile.jpg) center center /
			cover no-repeat;
    }

    /* .home-title-box,
	.home-section.one .home-title-box {
		top: auto;
		bottom: 70%;
	} */
    .home-title-box h1 {
        font-size: 30px;
        line-height: 42px;
    }

    .home-title-box h4 {
        font-size: 18px;
        line-height: 34px;
    }

    .home-title-box {
        top: 17%;
    }

    .home-section.one .home-title-box {
        top: 20%;
    }

    .home-section.one .home-btn-box,
    .home-btn-box {
        bottom: 10%;
        flex-direction: column;
    }

    .home-section.one .home-banner-arrow {
        bottom: 25px;
    }

    .home-btn-box .btn {
        margin: 0;
        max-width: 315px;
        border-radius: 16px;
        padding: 15px 20px;
    }

    .home-btn-box .btn-order {
        margin-bottom: 13px;
        background: rgba(0, 5, 50, 0.9);
    }

    .home-btn-box .btn-learn {
        background: rgba(255, 255, 255, 0.9);
    }

    .home-banner-arrow .icon-arrow {
        width: 20px;
    }

    .home-section .small-gap-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .home-section .small-gap-row > .col-md-4 {
        width: 90%;
        max-width: 375px;
        flex-shrink: 0;
        flex-grow: 1;
    }

    .home-section .small-gap-row > .col-md-4:first-child {
        padding-left: 0;
    }

    .home-section .small-gap-row > .col-md-4:last-child {
        padding-right: 0;
    }

    .home-content .review-box {
        margin-bottom: 44px;
    }

    .home-content h1 {
        font-size: 30px;
        line-height: 30px;
        margin: 0 0 30px 0;
    }

    .home-section.six .home-content h1 {
        margin-bottom: 10px;
    }

    .home-section.six .home-content h4 {
        line-height: 20px;
        margin-bottom: 30px;
    }

    .home-section.home-last h1 {
        line-height: 30px;
        margin-bottom: 30px;
    }

    .home-content h4,
    .home-section.four .home-content h4 {
        font-size: 18px;
        line-height: 38px;
        margin-bottom: 35px;
    }

    .home-section .table h5 {
        font-size: 16px;
    }

    .home-content .review-box p {
        display: -webkit-box;
        white-space: initial;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .home-section.five .container {
        padding-left: 0;
        padding-right: 0;
    }

    .home-section.five h1,
    .home-section.five h4,
    .home-section.five .btn-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .home-section.five h4 {
        margin-bottom: 22px;
    }

    .home-section .table-responsive-md {
        margin-bottom: 20px;
        overflow-x: auto;
    }

    .home-section .table {
        margin-bottom: 0px;
    }

    .home-section .table thead th {
        padding: 10px 13px 15px 13px;
    }

    .home-section .table thead th:first-child {
        padding-left: 20px;
        padding-right: 10px;
        min-width: 160px;
    }

    .home-section .table tbody th {
        padding: 8px 20px;
    }

    .home-section .table p {
        font-size: 13px;
        line-height: 15px;
    }

    .home-section .border-div {
        top: 0;
        bottom: 65px;
        display: none;
    }

    .home-section .table td {
        min-width: 133px;
    }

    .home-section .table .btn-learn {
        padding: 8px 10px;
        font-size: 13px;
        margin-top: 10px;
    }

    .home-section .table .fix {
        position: sticky;
        left: 0;
        z-index: 20;
        background: #fff;
    }

    .home-section .table-striped tbody tr:nth-of-type(odd) .fix {
        background: #fbfbfc;
    }

    .home-section.home-last {
        height: auto;
        min-height: auto;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }

    .home-section.home-last .home-article-section {
        height: 100vh;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        overflow-y: auto;
        padding-top: 50px;
    }

    .footer {
        padding-bottom: 20px;
    }

    .footer.homepage {
        height: auto;
        scroll-snap-align: unset;
        scroll-snap-stop: unset;
    }

    .footer.homepage .footer-content,
    .footer.homepage .container {
        height: 100vh;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        display: flex;
        align-items: center;
    }

    .footer.homepage .footer-content .btn-white {
        margin-bottom: 0;
    }

    .footer .link-wrapper {
        flex-direction: column;
    }

    .footer .link-box {
        margin-bottom: 30px;
    }

    .home-content .btn-wrapper .btn-blue {
        background: rgba(0, 5, 50, 0.9);
    }

    .home-section .owl-carousel .owl-item img {
        max-height: 300px;
        object-fit: cover;
    }

    .home-content .review-img {
        height: 240px;
    }

    .home-section.five h1 {
        line-height: 30px;
    }

    .home-section .article-box .article-img {
        height: 175px;
        object-fit: cover;
    }
}

@media only screen and (max-width: 378px) and (max-height: 670px) {
    .home-section.home-later-section {
        padding-bottom: 15px;
    }

    .home-section.four .home-content h4 {
        line-height: 20px;
        margin-bottom: 25px;
    }

    .home-content .review-img {
        height: 240px;
    }

    .home-content .review-box {
        margin-bottom: 20px;
    }

    .home-section.five h1 {
        line-height: 30px;
    }

    .home-section.five h4 {
        line-height: 20px;
        margin-bottom: 10px;
    }

    .home-section .table-responsive-md {
        margin-bottom: 12px;
    }

    .home-section .table tbody th {
        padding: 6px 20px;
    }

    /* .home-section.six .home-content h4 {
		line-height: 20px;
		margin-bottom: 18px;
	} */
    .home-section .slider-nav-container {
        margin-top: 20px;
    }

    /* .home-section.home-last h1 {
		margin-bottom: 20px;
	} */
    .home-section .article-box .article-img {
        margin-bottom: 20px;
    }

    .home-section .article-box h3 {
        margin-bottom: 10px;
    }

    .home-section .article-box p {
        display: -webkit-box;
        white-space: initial;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}

/* Quiz Pages CSS */

.quiz-page-wrapper {
    min-height: 100vh;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
}

.quiz-page-wrapper.quiz-page {
    background: #fff;
}

.quiz-header-inner {
    width: 100%;
    max-width: 1482px;
    padding: 30px 15px 20px 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quiz-header .btn-go-back {
    box-shadow: none;
    text-shadow: none;
    background-image: none;
    border: 1px solid rgba(0, 5, 50, 0.2);
    border-radius: 12px;
    padding: 9px 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000532;
    font: 600 13px / 14px 'Archivo', sans-serif;
    text-transform: capitalize;
    background: transparent;
    transition: all 0.3s ease-in;
}

.quiz-header .btn-go-back > svg {
    margin-right: 9px;
}

.quiz-header .btn-go-back:hover,
.quiz-header .btn-go-back:focus {
    background: #f0f0f0;
}

.quiz-content {
    flex-grow: 1;
    padding: 5px 0 50px 0;
}

.quiz-intro-content-wrapper {
    width: 100%;
    max-width: 730px;
    padding: 0 15px;
    margin: 0 auto;
}

.quiz-intro-content-wrapper h4 {
    color: #000532;
    margin: 0 0 6px 0;
    text-align: center;
    font: 500 25px / 35px 'Archivo', sans-serif;
}

.quiz-intro-content-wrapper h1 {
    text-align: center;
    color: #000532;
    margin: 0 0 30px 0;
    font: 800 36px / 50px 'Archivo', sans-serif;
}

.quiz-intro-content {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 20px;
    background: #fff;
    padding: 48px 59px 44px 59px;
}

.quiz-intro-content .intro-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.quiz-intro-content .intro-img {
    display: block;
    margin: 0 22px 0 0;
    width: 43px;
}

.quiz-intro-content .circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 0 0;
    border: 1px solid #000532;
}

.quiz-intro-content .circle h6 {
    margin: 0;
    color: #000532;
    font: 700 20px / 20px 'Archivo', sans-serif;
}

.quiz-intro-content .intro-row p {
    margin: 0;
    color: #000532;
    font: 500 14px / 20px 'Archivo', sans-serif;
}

.quiz-content .btn-check-faq {
    box-shadow: none;
    text-shadow: none;
    background-image: none;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 8px 20px;
    margin-top: 43px;
    background: #fff;
    color: #000532;
    font: 13px / 18px 'Archivo', sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.quiz-content .btn-check-faq > svg {
    display: block;
    width: 10px;
    margin-left: 15px;
    transition: all 0.3s ease-in;
}

.quiz-content .btn-check-faq.open > svg {
    transform: rotate(180deg);
    margin-bottom: 2px;
}

.quiz-content .btn-check-faq.open,
.quiz-content .btn-check-faq:hover {
    background: #f0f0f0;
}

.quiz-content .quiz-faq-wrapper {
    padding: 13px 0 14px 0;
    display: none;
}

.quiz-intro-content .card {
    border: none;
    background: #fff;
    margin-bottom: 13px;
    border-radius: 0;
}

.quiz-intro-content .card-header {
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid #dcdcdc;
    background: #fff;
}

.quiz-intro-content .card .btn-link {
    text-align: left;
    padding: 8px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000532;
    font: 500 14px / 20px 'Archivo', sans-serif;
}

.quiz-intro-content .card .btn-link:not(.collapsed) > svg {
    display: block;
    flex-shrink: 0;
    margin-left: 20px;
    width: 12px;
    transform: rotate(180deg);
    transition: all 0.3s ease-in;
}

.quiz-intro-content .card .btn-link.collapsed > svg {
    transform: rotate(0deg);
    flex-shrink: 0;
    margin-left: 20px;
    width: 12px;
    transition: all 0.3s ease-in;
}

.quiz-intro-content .card .btn-link:hover,
.quiz-intro-content .card .btn-link:focus {
    color: #000532;
    text-decoration: none;
}

.quiz-intro-content .card-body {
    padding: 13px 0 7px 0;
}

.quiz-intro-content .card-body p {
    margin: 0;
    font: 500 14px / 20px 'Archivo', sans-serif;
    color: #000532;
}

.btn-green {
    box-shadow: none;
    text-shadow: none;
    background-image: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: 12px;
    background: #4ca892;
    text-transform: uppercase;
    color: #fff;
    font: 700 16px / 17px 'Archivo', sans-serif;
    transition: all 0.3s ease-in;
}

.btn-green:hover,
.btn-green:focus {
    background: #05795d;
    color: #fff;
    text-decoration: none;
}

.quiz-intro-content .btn-green {
    margin-top: 27px;
}

.quiz-header .quiz-indicator {
    display: flex;
    align-items: center;
}

.quiz-header .demo-placeholder {
    width: 111px;
    height: 34px;
}

.quiz-header .circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font: 600 13px / 14px 'Archivo', sans-serif;
    background: #d9d9d9;
    transition: all 0.2s ease-in;
}

.quiz-header .circle.completed {
    background: #4ca892;
}

.quiz-header .line {
    position: relative;
    margin: 0 8px;
    width: 21px;
    height: 2px;
    border-radius: 6px;
    background: #d9d9d9;
    overflow: hidden;
}

.quiz-header .line-inner {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #4ca892;
}

.quiz-page-content {
    padding: 70px 15px 100px 15px;
}

.quiz-page-content .quiz-slide {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
    margin-top: 40px;
    opacity: 0;
    display: none;
    transition: transform 0.4s ease-in;
}

.quiz-page-content h1 {
    text-align: center;
    color: #000532;
    margin: 0 0 36px 0;
    font: 800 36px / 50px 'Archivo', sans-serif;
}

.quiz-page-content h4 {
    color: #000532;
    text-align: center;
    margin: 0 0 36px 0;
    font: 500 25px / 35px 'Archivo', sans-serif;
}

.quiz-page-content .h-radio {
    display: block;
    max-width: 462px;
    margin: 0 auto 10px auto;
    position: relative;
}

.quiz-page-content .h-radio > .radio-input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
}

.quiz-page-content .radio-content {
    position: relative;
    z-index: 5;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.quiz-page-content .radio-content p {
    margin: 0;
    color: #000;
    font: 18px / 25px 'Archivo', sans-serif;
    transition: all 0.3s ease-in;
}

.quiz-page-content .radio-content svg {
    display: block;
    margin-left: 20px;
}

.quiz-page-content .h-radio:hover .radio-content,
.quiz-page-content .radio-input:checked + .radio-content {
    background: #4ca892;
    border-color: #4ca892;
}

.quiz-page-content .h-radio:hover .radio-content p,
.quiz-page-content .radio-input:checked + .radio-content p {
    color: #fff;
}

.quiz-table-wrapper {
    width: 100%;
    max-width: 536px;
    margin: 20px auto 0 auto;
}

.quiz-table-wrapper .quiz-table-row {
    display: flex;
    border-top: 1px solid #e8eaed;
}

.quiz-table-wrapper .quiz-table-row:nth-child(odd) {
    background: #fbfbfc;
}

.quiz-table-wrapper .quiz-table-row.no-color {
    background: #fff;
    border-top: none;
}

.quiz-table-wrapper .quiz-table-col {
    flex-shrink: 0;
    min-height: 70px;
}

.quiz-table-wrapper .quiz-table-row.no-color .quiz-table-col {
    min-height: 58px;
}

.quiz-table-wrapper .quiz-table-col.title {
    padding: 10px 25px;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.quiz-table-wrapper .quiz-table-col.radio {
    width: 90px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-table-wrapper p {
    margin: 0;
    color: #000;
    font: 18px / 25px 'Archivo', sans-serif;
}

.quiz-table-wrapper p.small-text {
    margin: 0;
    color: #000;
    font: 13px / 18px 'Archivo', sans-serif;
    text-align: center;
}

.quiz-table-wrapper .c-radio {
    display: block;
    margin: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.quiz-table-wrapper .c-radio .c-radio-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
}

.quiz-table-wrapper .circle {
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    z-index: 5;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #000532;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.quiz-table-wrapper .circle .inner-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease-in;
}

.quiz-table-wrapper .c-radio:hover .circle,
.quiz-table-wrapper .c-radio-input:checked + .circle {
    border-color: #4ca892;
}

.quiz-table-wrapper .c-radio:hover .inner-circle,
.quiz-table-wrapper .c-radio-input:checked + .circle > .inner-circle {
    background: #000532;
}

.quiz-table-wrapper .btn-quiz-submit {
    height: 79px;
    display: block;
    max-width: 273px;
    margin: 40px auto 0 auto;
}

.quiz-table-wrapper .btn-quiz-submit:disabled {
    background: rgba(0, 0, 0, 0.2);
    color: #f1dfdf;
}

.loading-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 30px 15px;
    z-index: 9999;
    transform-origin: center center;
    transition: all 0.3s ease-in;
}

.loading-section.finish {
    transform: scale(0.6);
    opacity: 0;
}

.loading-section.hidden {
    display: none;
}

.loading-section .logo {
    margin-bottom: 113px;
}

.loading-section .logo img {
    display: block;
    height: 31px;
}

.loading-section h1 {
    text-align: center;
    color: #000532;
    margin: 0 0 25px 0;
    font: 800 36px / 50px 'Archivo', sans-serif;
}

.loading-section .loading-img {
    display: block;
    width: 94px;
    margin: 0 0 44px 0;
}

.loading-section p {
    margin: 0;
    text-align: center;
    color: #000532;
    font: 500 14px / 20px 'Archivo', sans-serif;
}

.quiz-packages-wrapper {
    width: 100%;
    max-width: 610px;
    margin: 0 auto;
    padding: 0 15px;
}

.quiz-packages-wrapper h1 {
    color: #000532;
    text-align: center;
    margin: 0;
    font: 800 36px / 50px 'Archivo', sans-serif;
}

.quiz-packages-wrapper h4 {
    color: #000532;
    text-align: center;
    max-width: 450px;
    margin: 0 auto 20px auto;
    font: 500 14px / 20px 'Archivo', sans-serif;
}

.quiz-packages-wrapper .package-wrapper {
    max-width: 393px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quiz-packages-wrapper .recommend-box {
    background: #83a054;
    margin: 0 0 7px 0;
    border-radius: 6px;
    padding: 4px 10px;
}

.quiz-packages-wrapper .recommend-box p {
    text-transform: uppercase;
    color: #fff;
    font: 600 14px / 20px 'Archivo', sans-serif;
    margin: 0;
}

.quiz-packages-wrapper .package-box {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 0 20px 0;
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.07);
    background: #fff;
}

.quiz-packages-wrapper .package-video-wrapper {
    position: relative;
}

.quiz-packages-wrapper .package-video-wrapper .package-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.quiz-packages-wrapper .package-video-wrapper .overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    padding: 78px 43px 36px 43px;
    background: linear-gradient(0deg, rgba(0, 5, 50, 0.5), rgba(0, 5, 50, 0.5));
}

.quiz-packages-wrapper .package-video-wrapper h5 {
    text-align: center;
    margin: 0 0 5px 0;
    color: #f8f8f8;
    font: 700 14px / 19px 'Archivo', sans-serif;
}

.quiz-packages-wrapper .package-video-wrapper h3 {
    text-align: center;
    margin: 0 0 27px 0;
    color: #f8f8f8;
    font: 800 28px / 39px 'Archivo', sans-serif;
}

.btn-play-video {
    box-shadow: none;
    text-shadow: none;
    background-image: none;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 8px 38px;
    color: #000532;
    font: 13px / 18px 'Archivo', sans-serif;
    transition: all 0.3s ease-in;
}

.btn-play-video:hover,
.btn-play-video:focus {
    background: #fff;
}

.quiz-packages-wrapper .package-content {
    padding: 30px 41px;
}

.quiz-packages-wrapper .package-content.with-video {
    padding-top: 20px;
}

.quiz-packages-wrapper .package-content h5 {
    text-align: center;
    margin: 0 0 5px 0;
    color: #000532;
    font: 700 14px / 20px 'Archivo', sans-serif;
}

.quiz-packages-wrapper .package-content h3 {
    text-align: center;
    margin: 0 0 5px 0;
    color: #000532;
    font: 800 28px / 39px 'Archivo', sans-serif;
}

.quiz-packages-wrapper .package-content ul {
    margin: 0 0 14px 0;
    padding: 0 0 0 20px;
    color: #000532;
}

.quiz-packages-wrapper .package-content p {
    margin: 0 0 6px 0;
    color: #000532;
    font: 500 14px / 20px 'Archivo', sans-serif;
}

.quiz-packages-wrapper .package-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.quiz-packages-wrapper .btn-learn-more {
    box-shadow: none;
    text-shadow: none;
    border: 1px solid #dcdcdc;
    border-radius: 32px;
    background: #fff;
    padding: 8px 40px;
    font: 13px / 18px 'Archivo', sans-serif;
    color: #000532;
    margin-bottom: 20px;
    transition: all 0.3s ease-in;
}

.quiz-packages-wrapper .btn-learn-more:hover {
    background: #dcdcdc;
}

.quiz-packages-wrapper .other-options-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.quiz-packages-wrapper .other-options-wrapper p {
    margin: 0;
    padding: 0 10px;
    color: #000532;
    font: 500 14px / 20px 'Archivo', sans-serif;
    position: relative;
    z-index: 5;
}

.quiz-packages-wrapper .other-options-wrapper::before,
.quiz-packages-wrapper .other-options-wrapper::after {
    content: '';
    flex: 1;
    border-bottom: 2px dotted #000532;
}

.package-modal .modal-dialog {
    max-width: 595px;
}

.package-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    position: relative;
    border: none;
}

.package-modal .modal-content .close {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 15px;
    padding: 5px;
    border-radius: 50%;
    opacity: 1;
    transform-origin: center center;
    transition: all 0.3s ease-in;
}

.package-modal .modal-content .close > svg {
    display: block;
    width: 18px;
}

.package-modal .modal-content .close:hover,
.package-modal .modal-content .close:focus {
    transform: rotate(90deg);
}

.package-modal .modal-package-content {
    padding: 30px 69px;
}

.package-modal .modal-body {
    padding: 0;
}

.package-modal .modal-package-content h2 {
    letter-spacing: 0.05em;
    margin: 0 0 33px 0;
    color: #000;
    font: 800 26px / 36px 'Archivo', sans-serif;
    letter-spacing: 0.05em;
}

.package-modal .modal-package-content ul {
    margin: 0;
    padding: 0 0 0 20px;
}

.package-modal .modal-package-content p {
    letter-spacing: 0.05em;
    margin: 0 0 20px 0;
    color: #000;
    font: 14px / 22px 'Archivo', sans-serif;
}

.package-modal .modal-package-content p b {
    font-size: 16px;
}

.modal-video-wrapper {
    position: relative;
}

.modal-video-wrapper .modal-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.modal-video-wrapper .overlay {
    min-height: 231px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 4;
    background: linear-gradient(0deg, rgba(0, 5, 50, 0.5), rgba(0, 5, 50, 0.5));
}

.optional-package-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0px;
}

.optional-package-wrapper h4 {
    color: #000532;
    text-align: center;
    margin: 0 0 10px 0;
    font: 500 25px / 35px 'Archivo', sans-serif;
    padding: 0 15px;
}

.optional-package-wrapper h2 {
    padding: 0 15px;
    text-align: center;
    margin: 0 auto 30px auto;
    color: #000532;
    font: 800 36px / 50px 'Archivo', sans-serif;
    max-width: 680px;
}

.optional-package-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.optional-package-row .slick-track {
    display: flex;
}

.optional-package-row .slick-track .slide {
    height: inherit;
}

.optional-package-wrapper .package-box {
    flex-grow: 1;
    max-width: 393px;
    margin: 0 10px 30px 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}

.optional-package-wrapper .package-img-wrapper {
    position: relative;
}

.optional-package-wrapper .package-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.optional-package-wrapper .overlay {
    position: relative;
    z-index: 5;
    min-height: 168px;
    padding: 40px 20px 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.optional-package-wrapper .overlay .tag {
    position: absolute;
    left: 0;
    top: 0;
    background: #da7110;
    padding: 4px 32px;
    color: #fff;
    font: 600 14px / 20px 'Archivo', sans-serif;
}

.optional-package-wrapper .overlay h3 {
    text-align: center;
    margin: 0;
    color: #fff;
    font: 800 24px / 34px 'Archivo', sans-serif;
    text-transform: uppercase;
}

.optional-package-wrapper .package-details {
    padding: 20px 30px 26px 30px;
    background: #fff;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.optional-package-wrapper .package-details div {
    text-align: center;
    color: #000532;
    margin: 0 0 19px 0;
    font: 500 14px / 20px 'Archivo', sans-serif;
}

.optional-package-wrapper .btn-wrapper {
    display: flex;
    justify-content: center;
}

.btn-skip {
    box-shadow: none;
    text-shadow: none;
    border: none;
    padding: 8px 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    max-width: 210px;
    color: #000532;
    background: #fff;
    border-radius: 32px;
    font: 14px / 20px 'Archivo', sans-serif;
    transition: all 0.3s ease-in;
}

.btn-skip svg {
    display: block;
    width: 10px;
    margin-left: 15px;
    transition: all 0.3s ease-in;
}

.btn-skip:hover,
.btn-skip:focus {
    background: #f0f0f0;
}

.btn-skip:hover svg,
.btn-skip:focus svg {
    margin-left: 10px;
}

/* Payment page CSS */

.quiz-page-wrapper.payment-page {
    background: #fff;
}

.payment-page-wrapper {
    width: 100%;
    max-width: 710px;
    margin: 0 auto;
    padding: 0 15px;
}

.payment-page-wrapper .payment-inner-wrapper {
    max-width: 558px;
    margin: 0 auto;
}

.payment-page-wrapper h4 {
    color: #000532;
    text-align: center;
    margin: 0 0 6px 0;
    font: 500 25px / 35px 'Archivo', sans-serif;
}

.payment-page-wrapper h2 {
    color: #000532;
    text-align: center;
    margin: 0 0 36px 0;
    font: 800 36px / 50px 'Archivo', sans-serif;
}

.payment-details-wrapper {
    padding: 17px 30px 3px 30px;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    margin-bottom: 36px;
}

.payment-details-wrapper .payment-details-row {
    display: flex;
    align-items: flex-end;
    padding: 8px 0;
}

.payment-details-wrapper .payment-details-row.last {
    padding: 11px 0;
    border-top: 1px solid #d9d9d9;
    margin-top: 11px;
}

.payment-details-wrapper .payment-details-col {
    flex-grow: 1;
}

.payment-details-wrapper .payment-details-col.title {
    padding-right: 20px;
}

.payment-details-wrapper .payment-details-col.price {
    max-width: 70px;
    display: flex;
    justify-content: flex-end;
}

.payment-details-wrapper .payment-details-col.change {
    max-width: 76px;
    display: flex;
    justify-content: flex-end;
}

.payment-details-wrapper h6 {
    margin: 0;
    color: #000532;
    font: 700 14px / 20px 'Archivo', sans-serif;
}

.payment-details-wrapper p {
    color: #000532;
    margin: 0 0 3px 0;
    font: 14px / 20px 'Archivo', sans-serif;
}

.payment-details-wrapper h5 {
    margin: 0;
    color: #000532;
    font: 800 18px / 25px 'Archivo', sans-serif;
}

.payment-details-wrapper .btn-change {
    position: relative;
    text-decoration: none;
    color: #2fabff;
    letter-spacing: 0.01em;
    font: 14px / 20px 'Archivo', sans-serif;
}

.payment-details-wrapper .btn-change::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    height: 1px;
    background: #2fabff;
    transition: all 0.2s ease-in;
}

.payment-details-wrapper .btn-change:hover,
.payment-details-wrapper .btn-change:focus {
    color: #2fabff;
    text-decoration: none;
}

.payment-details-wrapper .btn-change:hover::after {
    width: 100%;
}

.payment-page-wrapper .section-title {
    letter-spacing: 0.01em;
    color: #182d40;
    margin: 0 0 10px 0;
    font: 700 16px / 17px 'Archivo', sans-serif;
}

.payment-page-wrapper .section-desc {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    letter-spacing: 0.01em;
    color: #868686;
    margin: 0 0 20px 0;
    font: 14px / 15px 'Archivo', sans-serif;
}

.payment-page-wrapper .section-desc > svg {
    margin-left: 4px;
}

.card-payment-wrapper {
    margin-bottom: 34px;
}

.card-payment-wrapper .payment-box {
    margin-bottom: 12px;
}

.card-payment-wrapper .step-radio-label {
    position: relative;
    display: block;
    margin: 0;
}

.card-payment-wrapper .step-radio-label .radio-input {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}

.card-payment-wrapper .step-radio-label .step-radio-box {
    height: 52px;
    background: #fff;
    position: relative;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    padding: 14px 30px 14px 67px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    transition: all 0.2s ease-in;
}

.card-payment-wrapper .step-radio-label .step-radio-box.amazon {
    padding-top: 12px;
    padding-bottom: 12px;
}

.card-payment-wrapper .step-radio-label .step-radio-box .outer {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #9ab5ce;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.card-payment-wrapper .step-radio-label .step-radio-box .inner {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.card-payment-wrapper .step-radio-label .step-radio-box p {
    margin: 0;
    letter-spacing: 0.01em;
    color: #182d40;
    font: 15px / 18px 'Archivo', sans-serif;
    transition: all 0.2s ease-in;
}

.card-payment-wrapper .payment-box .img-wrapper {
    display: flex;
    align-items: center;
}

.card-payment-wrapper .payment-box .img-wrapper img {
    display: block;
    max-height: 15px;
    margin-left: 28px;
}

.card-payment-wrapper .payment-box .img-wrapper img:first-child {
    margin-left: 0;
}

.card-payment-wrapper .payment-box .payment-details {
    padding: 24px 65px 26px 65px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 1px solid #dcdcdc;
    border-top: none;
    background: #fafafa;
    display: none;
}

.card-payment-wrapper .payment-details.credit-card {
    background: #9ab5ce;
    border-color: #9ab5ce;
}

.payment-page-wrapper .form-group {
    margin-bottom: 13px;
    position: relative;
}

.payment-page-wrapper .form-control {
    height: 50px;
    padding: 15px 16px;
    border: none;
    border-radius: 20px;
    box-shadow: none;
    letter-spacing: 0.01em;
    color: #182d40;
    font: 16px / 18px 'Archivo', sans-serif;
    border: 1px solid #dcdcdc;
}

.payment-page-wrapper .card-payment-wrapper .form-control {
    border: none;
}

.payment-page-wrapper .form-control:focus {
    box-shadow: none;
}

.payment-page-wrapper .form-group.card-no .form-control {
    padding-left: 52px;
    padding-right: 120px;
}

.payment-page-wrapper .form-group.card-no .mm-yy {
    position: absolute;
    margin: 0;
    right: 30px;
    top: 16px;
    color: #868686;
    letter-spacing: 0.01em;
    font: 15px / 18px 'Archivo', sans-serif;
}

.payment-page-wrapper .form-control::-webkit-input-placeholder {
    color: #868686;
    font-family: 'Archivo', sans-serif;
}

.payment-page-wrapper .form-control:-moz-placeholder {
    opacity: 1;
    color: #868686;
    font-family: 'Archivo', sans-serif;
}

.payment-page-wrapper .form-control::-moz-placeholder {
    opacity: 1;
    color: #868686;
    font-family: 'Archivo', sans-serif;
}

.payment-page-wrapper .form-control:-ms-input-placeholder {
    color: #868686;
    font-family: 'Archivo', sans-serif;
}

.payment-page-wrapper .form-control::-ms-input-placeholder {
    color: #868686;
    font-family: 'Archivo', sans-serif;
}

.payment-page-wrapper .form-control::placeholder {
    color: #868686;
    font-family: 'Archivo', sans-serif;
}

.card-payment-wrapper .payment-details .form-group.card-no {
    margin-bottom: 0;
}

.card-payment-wrapper .payment-details .form-group.card-no .form-control {
    padding-left: 52px;
    padding-right: 120px;
}

.card-payment-wrapper .payment-details .form-group.card-no .card-icon {
    display: block;
    height: 18px;
    position: absolute;
    top: 16px;
    left: 16px;
}

.card-payment-wrapper .payment-details .next-img {
    display: block;
    margin: 0 auto 22px auto;
}

.card-payment-wrapper .payment-details .next-text {
    margin: 0;
    text-align: center;
    letter-spacing: 0.01em;
    color: #868686;
    font: 15px / 18px 'Archivo', sans-serif;
}

.card-payment-wrapper .payment-box .payment-img {
    max-height: 18px;
}

.card-payment-wrapper .step-radio-label .step-radio-box.amazon .payment-img {
    max-height: 22px;
}

.card-payment-wrapper .payment-box.opened .step-radio-label .step-radio-box {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.step-radio-label .radio-input:checked + .step-radio-box {
    border: 2px solid #4ca892;
    /* background: rgba(47, 171, 255, 0.1); */
}

.step-radio-label .radio-input:checked + .step-radio-box .outer {
    background: #4ca892;
}

.step-radio-label .step-radio-box:hover .outer {
    background: #4ca892;
}

.payment-page-wrapper .payment-form-row {
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
}

.payment-page-wrapper .payment-form-col {
    flex: 1;
    padding: 0 5px;
}

.payment-page-wrapper .form-group.with-tooltip .form-control {
    padding-right: 50px;
}

.payment-page-wrapper .form-group.with-tooltip .alert-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
    display: block;
}

.payment-page-wrapper .form-group.with-tooltip .alert-icon > svg {
    width: 18px;
    display: block;
}

.payment-page-wrapper .newsletter-wrapper {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.payment-page-wrapper .newsletter-checkbox {
    display: block;
    margin: 0 0 44px 0;
    position: relative;
}

.payment-page-wrapper .newsletter-wrapper .checkbox-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
}

.payment-page-wrapper .newsletter-wrapper .checkbox-content {
    position: relative;
    z-index: 5;
    background: #fff;
    padding-left: 30px;
    cursor: pointer;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.payment-page-wrapper .newsletter-wrapper .outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #dcdcdc;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.payment-page-wrapper .newsletter-wrapper .inner {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: #fff;
    transition: all 0.3s ease-in;
}

.payment-page-wrapper .newsletter-wrapper p {
    margin: 0;
    letter-spacing: 0.01em;
    color: #868686;
    font: 14px / 16px 'Archivo', sans-serif;
}

.payment-page-wrapper
.newsletter-wrapper
.checkbox-input:checked
+ .checkbox-content
.inner {
    background: #9ab5ce;
}

/* .payment-page-wrapper .newsletter-wrapper .checkbox-content:hover .inner {
	background: #9ab5ce;
} */
.payment-page-wrapper .btn-payment-submit {
    max-width: 276px;
    margin: 0 auto;
    display: block;
}

@media only screen and (min-width: 1440px) {
    .quiz-packages-wrapper .package-wrapper {
        max-width: 560px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-header-inner {
        padding-top: 15px;
        padding-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .quiz-intro-content-wrapper h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .quiz-intro-content-wrapper h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .quiz-intro-content {
        padding: 30px 20px 30px 20px;
    }

    .quiz-content .btn-check-faq {
        height: 50px;
        margin-top: 30px;
    }

    .quiz-intro-content .btn-green {
        margin-top: 18px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quiz-header .btn-go-back {
        margin-bottom: 30px;
    }

    .quiz-header .quiz-indicator {
        align-self: center;
    }

    .quiz-header .demo-placeholder {
        display: none;
    }

    .quiz-page-content {
        padding-top: 20px;
    }

    .quiz-table-wrapper .quiz-table-col {
        min-height: auto;
    }

    .quiz-page-content h1 {
        font-size: 30px;
        line-height: 30px;
        /* display: none; */
    }

    .quiz-page-content h4 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .quiz-table-wrapper .quiz-table-col.radio {
        width: 70px;
    }

    .quiz-table-wrapper .quiz-table-col.title {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .quiz-table-wrapper .btn-quiz-submit {
        max-width: 100%;
        height: 79px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .quiz-packages-wrapper h1 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .quiz-packages-wrapper .package-video-wrapper h3 {
        line-height: 30px;
    }

    .quiz-packages-wrapper .package-video-wrapper .overlay {
        background: linear-gradient(
                0deg,
                rgba(0, 5, 50, 0.8),
                rgba(0, 5, 50, 0.6)
        );
    }

    .quiz-packages-wrapper .package-content {
        padding: 30px 20px;
    }

    .package-modal .modal-package-content {
        padding: 30px 20px;
    }

    .optional-package-wrapper h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .optional-package-wrapper h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .optional-package-wrapper .package-details {
        padding-left: 20px;
        padding-right: 20px;
    }

    .optional-package-wrapper .package-box {
        max-width: 300px;
    }

    .optional-package-wrapper .sec-slider-nav-container {
        margin-top: 0;
    }

    .loading-section h1 {
        font-size: 30px;
        line-height: 39px;
    }
}

/* Automotive Page CSS */

.secondary-banner {
    min-height: 100vh;
    padding: 130px 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secondary-banner.automotive-banner {
    background: url(../images/automotive/lexus-bg.jpg) center center / cover no-repeat;
}

.secondary-banner .banner-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    padding: 0 15px;
}

.secondary-banner h1 {
    text-align: center;
    margin: 0 0 0px 0;
    color: #000532;
    font: 800 36px / 50px 'Archivo', sans-serif;
}

.secondary-banner .banner-bottom {
    width: 100%;
    /* max-width: 740px; */
}

.secondary-banner h4 {
    margin: 0 0 45px 0;
    color: #fff;
    text-align: center;
    /* font: 500 25px / 35px helvetica-neue; */
    font: 500 25px / 35px 'Archivo', sans-serif;
    letter-spacing: 0.02em;
}

.secondary-banner .banner-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 35px;
}

.secondary-banner .banner-icons-wrapper {
    display: flex;
    align-items: flex-start;
}

.secondary-banner .icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 55px;
}

.secondary-banner .icon-box svg {
    display: block;
    width: 30px;
    margin: 0 0 11px 0;
}

.secondary-banner .icon-box h3 {
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0;
    text-align: center;
    font: 700 36px / 50px helvetica-neue;
}

.secondary-banner .icon-box img {
    display: block;
    width: 38px;
    margin-bottom: 3px;
}

.secondary-banner .icon-box h6 {
    margin: 0;
    color: #fff;
    text-align: center;
    font: 500 20px / 24px 'Archivo', sans-serif;
}

.secondary-banner .banner-row .btn-white {
    margin-bottom: 4px;
}

.btn-white {
    box-shadow: none;
    text-shadow: none;
    background: none;
    border: 1px solid #c4c4c4;
    border-radius: 12px;
    padding: 9px 39px;
    font: 700 16px / 17px 'Archivo', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease-in;
}

.btn-white.white-text {
    color: #fff;
}

.btn-white.blue-text {
    color: #000532;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    color: #fff;
    border-color: #000532;
    background: #000532;
}

.secondary-banner .banner-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.secondary-banner .banner-arrow .icon-arrow {
    display: block;
    width: 15px;
    animation: arrowUpDown 0.6s ease-in infinite alternate;
}

.off-white-bg {
    background: linear-gradient(180deg, #f7f7f7 0%, #f7f7f7 51.1%);
}

.automotive-safety {
    padding: 124px 0 65px 0;
    background: #fff;
}

.automotive-safety .safety-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.automotive-safety .img-wrapper {
    flex-grow: 1;
    padding-right: 30px;
    display: flex;
    justify-content: center;
}

.automotive-safety .img-wrapper img {
    display: block;
    /* max-width: 100%; */
    max-width: 75%;
}

.automotive-safety .text-wrapper {
    flex-grow: 1;
    width: 100%;
    max-width: 360px;
}

.automotive-safety h2 {
    color: #000532;
    margin: 0 0 30px 0;
    font: 800 37px / 48px 'Archivo', sans-serif;
}

.automotive-safety p {
    color: #000532;
    font: 16px / 22px helvetica-neue;
    letter-spacing: 0.02em;
    margin: 0 0 20px 0;
}

.automotive-safety .btn-wrapper {
    margin-top: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-read-more {
    border: none;
    background: none;
    text-shadow: none;
    box-shadow: none;
    padding: 0 0px 0 0;
    display: flex;
    align-items: center;
    color: #000532;
    font: 600 16px / 17px 'Archivo', sans-serif;
    transition: all 0.3s ease-in;
}

.btn-read-more .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c4c4c4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-right: 13px;
    transition: all 0.3s ease-in;
}

.btn-read-more .circle svg {
    display: block;
    width: 20px;
    transition: all 0.3s ease-in;
}

.btn-read-more .circle svg path {
    transition: all 0.3s ease-in;
}

.btn-read-more:hover,
.btn-read-more:focus,
.btn-read-more:active {
    color: #000532;
    background: none;
}

.btn-read-more:hover svg,
.btn-read-more:focus svg,
.btn-read-more:active svg {
    transform: rotate(90deg);
}

.btn-read-more:disabled {
    color: #c4c4c4;
}

.btn-read-more:disabled .circle {
    background: #c4c4c4;
}

.btn-read-more:disabled .circle svg path {
    fill: #767676;
}

.hidden-section {
    display: none;
}

.automotive-safety-details {
    padding: 60px 0 30px 0;
    background: #fff;
}

.automotive-safety-details .safety-details-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.automotive-safety-details .main-img {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
}

.automotive-safety-details .details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.automotive-safety-details .details-box {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 35px 20px 0 30px;
    border-right: 2px solid #000;
}

.automotive-safety-details .details-box .number {
    display: none;
}

.automotive-safety-details h4 {
    color: #000532;
    margin: 0 0 12px 0;
    text-align: right;
    font: 18px / 26px 'Archivo', sans-serif;
}

.automotive-safety-details p {
    margin: 0;
    color: #000532;
    text-align: right;
    letter-spacing: 0.05em;
    max-width: 200px;
    font: 14px / 20px 'Archivo', sans-serif;
}

.automotive-safety-details .btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.automotive-safety-details .btn-wrapper .btn-white {
    margin-bottom: 30px;
}

.btn-close-read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #c4c4c4;
    transition: all 0.3s ease-in;
}

.btn-close-read-more svg {
    display: block;
    width: 30px;
    transition: all 0.3s ease-in;
}

.btn-close-read-more:hover svg,
.btn-close-read-more:focus svg,
.btn-close-read-more:active svg {
    transform: rotate(90deg);
}

.automotive-fullwidth {
    padding: 55px 0 40px 0;
}

.automotive-fullwidth .main-img {
    display: block;
    width: 100%;
    margin: 0 0 46px 0;
}

.automotive-fullwidth .video-wrapper {
    display: block;
    width: 100%;
    margin: 0 0 46px 0;
    position: relative;
}

.automotive-fullwidth .video-wrapper video {
    display: block;
    width: 100%;
}

.automotive-fullwidth .video-wrapper .overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(0, 5, 50, 0.5), rgba(0, 5, 50, 0.5));
}

.automotive-fullwidth .video-wrapper .btn-play-video {
    padding: 0;
    background: transparent;
    border-radius: 50%;
}

.automotive-fullwidth .video-wrapper .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff0000;
}

.automotive-fullwidth .video-wrapper .circle svg {
    display: block;
    width: 16px;
    height: 18px;
}

.automotive-fullwidth .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
}

.automotive-fullwidth .text-wrapper {
    flex-grow: 1;
    flex-shrink: 0;
    width: 100%;
    min-width: 380px;
    max-width: 450px;
    padding-right: 50px;
}

.automotive-fullwidth h2 {
    color: #000000;
    margin: 0 0 23px 0;
    letter-spacing: 0.05em;
    font: 800 26px / 36px 'Archivo', sans-serif;
}

.automotive-fullwidth .mobile-text {
    margin: 0 0 53px 0;
    letter-spacing: 0.02em;
    color: #000532;
    font: 16px / 22px helvetica-neue;
    display: none;
}

.automotive-fullwidth .dekstop-text {
    margin: 0 0 0px 0;
    letter-spacing: 0.02em;
    color: #000532;
    font: 16px / 22px helvetica-neue;
}

.automotive-fullwidth .btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.automotive-fullwidth .btn-wrapper .btn-read-more {
    margin-right: 60px;
}

.automotive-fullwidth-details {
    padding: 100px 0 70px 0;
}

.automotive-fullwidth-details .fullwidth-inner {
    width: 100%;
    max-width: 1016px;
    padding: 0 15px;
    margin: 0 auto;
}

.automotive-fullwidth-details .fullwidth-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 74px;
}

.automotive-fullwidth-details .fullwidth-row.reversed {
    flex-direction: row-reverse;
}

.automotive-fullwidth-details .box {
    flex-shrink: 0;
    width: 50%;
    display: flex;
    align-items: center;
}

.automotive-fullwidth-details .row-img {
    display: block;
    /* min-height: 300px; */
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    border-radius: 12px;
}

.automotive-fullwidth-details .text-wrapper {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.automotive-fullwidth-details .text-inner {
    width: 100%;
    max-width: 326px;
}

.automotive-fullwidth-details h4 {
    text-transform: uppercase;
    color: #000532;
    font: 700 14px / 30px 'Archivo', sans-serif;
    margin: 0 0 8px 0;
}

.automotive-fullwidth-details h2 {
    text-transform: uppercase;
    color: #000532;
    margin: 0 0 13px 0;
    font: 800 28px / 40px 'Archivo', sans-serif;
}

.automotive-fullwidth-details ul {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
    color: #000532;
}

.automotive-fullwidth-details ul p {
    margin: 0 0 8px 0;
    color: #000532;
    font: 500 14px / 20px 'Archivo', sans-serif;
}

.automotive-fullwidth-details .btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.automotive-fullwidth-details .btn-white.medium-size {
    padding: 10px 22px;
    margin-bottom: 15px;
}

.automotive-fullwidth-details .btn-white.small-size {
    padding: 8px 22px;
    font-size: 14px;
    line-height: 20px;
    text-transform: none;
}

.automotive-fullwidth-details .btn-wrapper-bottom {
    display: flex;
    justify-content: center;
    margin-top: 97px;
}

.automotive-slider {
    background: linear-gradient(180deg, #f7f7f7 0%, #f7f7f7 51.1%);
    padding: 100px 15px 94px 15px;
    overflow: hidden;
}

.automotive-slider h2 {
    color: #000000;
    max-width: 520px;
    text-align: center;
    margin: 0 auto 20px auto;
    font: 800 36px / 50px 'Archivo', sans-serif;
}

.automotive-slider h5 {
    max-width: 676px;
    margin: 0 auto 130px auto;
    color: #000532;
    letter-spacing: 0.02em;
    font: 16px / 22px helvetica-neue;
    text-align: center;
}

.automotive-slider .img-wrapper {
    max-width: 1250px;
    margin: 0 auto 115px auto;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.automotive-slider .phone-img {
    display: block;
    width: 20%;
    filter: grayscale(100%);
    opacity: 0.3;
    transition: all 0.3s ease-in;
}

.automotive-slider .phone-img.active {
    transform: scale(1.25);
    opacity: 1;
    filter: grayscale(0);
}

.automotive-slider .text-wrapper {
    max-width: 1032px;
    margin: 0 auto 100px auto;
    display: flex;
    justify-content: space-between;
}

.automotive-slider .box {
    flex-shrink: 0;
    width: 25%;
    max-width: 220px;
    padding: 0 10px;
    position: relative;
    cursor: pointer;
}

.automotive-slider .dot {
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease-in;
}

.automotive-slider .active .dot {
    background: #000532;
}

.automotive-slider .title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.automotive-slider .title .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 1px;
    background: #ccc;
    transition: all 0.3s ease-in;
}

.automotive-slider .active .title .line {
    background: #000532;
}

.automotive-slider h6 {
    margin: 0;
    color: #ccc;
    font: 700 16px / 22px 'Archivo', sans-serif;
    letter-spacing: 0.05em;
    transition: all 0.3s ease-in;
}

.automotive-slider .active h6 {
    color: #000532;
}

.automotive-slider p {
    margin: 0;
    letter-spacing: 0.05em;
    font: 14px / 20px 'Archivo', sans-serif;
    color: #ccc;
    transition: all 0.3s ease-in;
}

.automotive-slider .active p {
    color: #000532;
}

.automotive-slider .btn-wrapper {
    display: flex;
    justify-content: center;
}

.automotive-slider.for-mobile {
    display: none;
}

@media only screen and (max-width: 991px) {
    .automotive-slider.for-desktop {
        display: none;
    }

    .automotive-slider.for-mobile {
        display: block;
    }

    .automotive-slider h5 {
        margin-bottom: 60px;
    }

    .automotive-slider .mobile-img-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 35px;
    }

    .automotive-slider .mobile-img-wrapper .phone-img {
        display: block;
        width: 100%;
        max-width: 220px;
        filter: grayscale(0);
    }

    .automotive-slider .mobile-text-wrapper {
        margin-bottom: 100px;
    }

    .automotive-slider .box {
        width: 100%;
        max-width: 260px;
        margin: 0 16px;
    }

    .automotive-slider .box .title {
        position: relative;
    }

    .automotive-slider .hidden-img {
        position: absolute;
        left: 0;
        top: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
    }

    .automotive-slider .slick-track {
        padding-bottom: 50px;
    }

    .automotive-slider .slick-dots {
        bottom: 0;
    }

    .automotive-slider .slick-current p,
    .automotive-slider .slick-current h6 {
        color: #000532;
    }

    .automotive-slider .slick-current .dot {
        background: #000532;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .automotive-safety .safety-inner {
        flex-direction: column;
    }

    .automotive-safety .img-wrapper {
        padding: 0;
    }

    .automotive-safety .img-wrapper img {
        display: block;
        margin: 0 auto 30px auto;
    }

    .automotive-safety .text-wrapper {
        max-width: 100%;
    }

    .automotive-safety .btn-wrapper {
        margin-top: 60px;
    }

    .automotive-fullwidth .content-wrapper {
        flex-direction: column;
        padding: 0;
    }

    .automotive-fullwidth .text-wrapper {
        min-width: auto;
        padding-right: 0;
    }

    .automotive-fullwidth .mobile-text {
        display: block;
        margin-bottom: 50px;
    }

    .automotive-fullwidth .desktop-text {
        display: none;
    }

    .automotive-fullwidth .btn-wrapper {
        justify-content: space-between;
    }
}

@media only screen and (max-width: 767px) {
    .secondary-banner {
        padding: 137px 0 35px 0;
    }

    .secondary-banner h1 {
        font-size: 30px;
        line-height: 33px;
    }

    .secondary-banner .banner-row {
        flex-direction: column;
        align-items: center;
        margin-bottom: 18px;
    }

    .secondary-banner .banner-icons-wrapper {
        justify-content: center;
        margin-bottom: 36px;
    }

    .secondary-banner .icon-box {
        margin: 0 15px;
    }

    .secondary-banner .icon-box img {
        width: 18px;
    }

    .secondary-banner h4 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 50px;
    }

    .secondary-banner .icon-box svg {
        width: 20px;
        height: 20px;
    }

    .secondary-banner .icon-box h6 {
        font-size: 16px;
        line-height: 18px;
    }

    .secondary-banner.automotive-banner {
        background: url(../images/automotive/lexus-bg-mobile.jpg) center center /
			cover no-repeat;
    }

    .automotive-safety {
        padding: 35px 0 35px 0;
    }

    .automotive-safety .safety-inner {
        flex-direction: column-reverse;
    }

    .automotive-safety-details .details-row {
        flex-direction: column;
        margin-bottom: 23px;
    }

    .automotive-fullwidth .content-wrapper {
        flex-direction: column;
        padding: 0;
    }

    .automotive-fullwidth-details .fullwidth-row {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .automotive-fullwidth-details .fullwidth-row.reversed {
        flex-direction: column;
    }

    .automotive-fullwidth .video-wrapper video {
        height: 300px;
        object-fit: cover;
    }

    .automotive-safety .img-wrapper {
        display: none;
    }

    .automotive-safety h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 39px;
    }

    .automotive-safety p {
        font-size: 18px;
        line-height: 25px;
    }

    .automotive-safety .bmw1-m {
        display: block;
        max-width: 100%;
        margin-top: 77px;
    }

    .automotive-slider h2 {
        font-size: 30px;
        line-height: 39px;
    }

    .automotive-safety .btn-wrapper {
        margin-top: 70px;
    }

    .automotive-safety-details {
        padding: 35px 0 20px 0;
    }

    .automotive-safety-details .main-img {
        margin-bottom: 50px;
    }

    .automotive-safety-details .details-box {
        border-right: 0;
        padding: 0 15px 0 42px;
        position: relative;
        margin-bottom: 30px;
        align-items: flex-start;
    }

    .automotive-safety-details .details-box .number {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 5px;
        top: 0;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #000532;
        color: #fff;
        font: 16px / 22px 'Archivo', sans-serif;
    }

    .automotive-safety-details h4 {
        font: 600 20px / 28px 'Archivo', sans-serif;
        margin-bottom: 10px;
    }

    .automotive-safety-details p {
        text-align: left;
        max-width: 100%;
        font-size: 16px;
        line-height: 22px;
    }

    .automotive-safety-details .btn-wrapper {
        padding: 0 15px;
        max-width: 440px;
        margin: 0 auto;
    }

    .automotive-safety-details .btn-wrapper .btn-white {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 47px;
    }

    .automotive-fullwidth {
        padding: 20px 0 30px 0;
    }

    .automotive-fullwidth .main-img {
        margin-bottom: 30px;
    }

    .automotive-fullwidth .text-wrapper {
        min-width: auto;
        padding-right: 0;
    }

    .automotive-fullwidth h2 {
        margin-bottom: 20px;
        line-height: 34px;
    }

    .automotive-fullwidth .desktop-text {
        display: none;
    }

    .automotive-fullwidth .mobile-text {
        display: block;
        margin-bottom: 50px;
    }

    .automotive-fullwidth .btn-wrapper {
        justify-content: space-between;
    }

    .automotive-fullwidth .btn-wrapper .btn-read-more {
        margin-right: 10px;
    }

    .automotive-fullwidth-details {
        padding: 30px 0 40px 0;
    }

    .automotive-fullwidth-details .fullwidth-inner {
        padding: 0;
    }

    .automotive-fullwidth-details .box {
        width: 100%;
        padding: 0;
    }

    .automotive-fullwidth-details .row-img {
        /* min-height: auto;
		height: 207px; */
        margin-bottom: 15px;
    }

    .automotive-fullwidth-details .text-inner {
        max-width: 100%;
    }

    .automotive-fullwidth-details .btn-wrapper {
        margin-top: 39px;
    }

    .automotive-fullwidth-details .btn-white.medium-size {
        display: none;
    }

    .automotive-fullwidth-details .btn-white.small-size {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 41px;
        font-size: 14px;
    }

    .automotive-fullwidth-details .btn-wrapper-bottom {
        margin-top: 50px;
    }

    .automotive-slider .box {
        margin: 0 10px;
    }
}

/* Residential Page CSS */
.secondary-banner.residential-banner {
    background: url(../images/residential/residential-bg.jpg) center center /
		cover no-repeat;
}

.residential-banner h1 {
    color: #fff;
}

/* .residential-banner .icon-box {
	margin: 0 43px;
	flex-basis: 0;
	flex-grow: 1;
	width: 145px;
} */

.residential-content-bg {
    background: linear-gradient(
            180deg,
            rgba(247, 247, 247, 0) 0%,
            #f7f7f7 100%
    );
}

.secondary-content {
    padding: 67px 0 43px 0;
}

.secondary-content-inner {
    width: 100%;
    max-width: 1130px;
    padding: 0 15px;
    margin: 0 auto;
}

.secondary-content h2 {
    text-align: center;
    color: #000532;
    margin: 0 0 20px 0;
    font: 800 36px / 47px 'Archivo', sans-serif;
}

.secondary-content .sub-title {
    text-align: center;
    max-width: 656px;
    letter-spacing: 0.02em;
    margin: 0 auto 50px auto;
    font: 16px / 22px helvetica-neue;
    color: #000532;
}

.secondary-content .btn-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 86px;
}

.secondary-content .sub-img {
    display: block;
    width: 100%;
    margin: 0 0 50px 0;
    border-radius: 10px;
}

.secondary-content .sub-text-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 40px;
}

.secondary-content .sub-text-wrapper h4 {
    margin: 0 60px 20px 0;
    max-width: 45%;
    color: #000;
    letter-spacing: 0.05em;
    font: 800 26px / 36px 'Archivo', sans-serif;
    flex-shrink: 0;
}

.secondary-content .sub-text-wrapper p {
    flex-grow: 1;
    letter-spacing: 0.02em;
    color: #000532;
    font: 16px / 22px helvetica-neue;
}

.secondary-slider {
    padding: 63px 0 40px 0;
    overflow: hidden;
}

/* .slider-wrapper.tiny-slider {
	transition-timing-function: linear;
} */
.secondary-slider .slide {
    width: 270px;
    margin-right: 40px;
}

.secondary-slider h2 {
    padding: 0 15px;
    text-align: center;
    color: #000532;
    font: 800 36px / 50px 'Archivo', sans-serif;
}

.secondary-slider .sub-title {
    margin: 0 auto 80px auto;
    letter-spacing: 0.02em;
    text-align: center;
    max-width: 690px;
    padding: 0 15px;
    font: 16px / 22px helvetica-neue;
}

/* .secondary-slider .owl-item {
	width: 270px !important;
} */
.secondary-slider .slider-img {
    display: block;
    width: 100%;
    border-radius: 10px;
    margin: 0 0 35px 0;
}

.secondary-slider h4 {
    position: relative;
    margin: 0 0 23px 0;
    letter-spacing: 0.05em;
    padding: 0 0 5px 0;
    color: #000532;
    font: 700 16px / 22px 'Archivo', sans-serif;
}

.secondary-slider h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 56%;
    background: #000532;
}

.secondary-slider p {
    margin: 0;
    letter-spacing: 0.05em;
    color: #000532;
    font: 16px / 20px 'Archivo', sans-serif;
}

.sec-slider-nav-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.sec-slider-nav-container button {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    box-shadow: none;
    margin: 0 12px;
    text-shadow: none;
    color: transparent;
    transition: all 0.3s ease-in;
}

.sec-slider-nav-container button:hover {
    background: rgba(0, 0, 0, 0.2);
}

.sec-slider-nav-container button.slick-next img {
    margin-left: 2px;
}

.secondary-satisfaction {
    padding: 40px 15px 167px 15px;
}

.secondary-satisfaction h2 {
    text-align: center;
    margin: 0 0 20px 0;
    color: #000532;
    font: 800 36px / 50px 'Archivo', sans-serif;
}

.secondary-satisfaction p {
    letter-spacing: 0.02em;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px auto;
    color: #000532;
    font: 16px / 22px helvetica-neue;
}

.secondary-satisfaction .btn-wrapper {
    display: flex;
    justify-content: center;
}

/* Commercial Page CSS */
.secondary-banner.commercial-banner {
    background: url(../images/commercial/commercial-bg.jpg) center center /
		cover no-repeat;
}

.commercial-banner h1 {
    color: #fff;
}

/* .commercial-banner .icon-box {
	margin: 0 43px;
	flex-basis: 0;
	flex-grow: 1;
	width: 145px;
} */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .secondary-banner .icon-box {
        margin-right: 30px;
    }

    .secondary-content .sub-text-wrapper h4 {
        max-width: 40%;
        margin-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .secondary-banner .banner-inner {
        width: 100%;
    }

    .secondary-content .sub-text-wrapper {
        padding: 0;
        flex-direction: column;
    }

    .secondary-content .sub-text-wrapper h4 {
        margin: 0 0 20px 0;
    }

    .secondary-content {
        padding: 30px 0;
    }

    .secondary-content h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 39px;
    }

    .secondary-content .sub-title {
        font-size: 18px;
        line-height: 25px;
    }

    .secondary-content .sub-text-wrapper h4 {
        max-width: 100%;
        margin-right: 0;
    }

    .secondary-content .sub-img {
        margin-bottom: 30px;
    }

    .secondary-content .sub-text-wrapper p {
        font-size: 18px;
        line-height: 25px;
    }

    .secondary-slider {
        padding-top: 30px;
    }

    .secondary-slider h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 39px;
    }

    .secondary-slider .sub-title {
        font-size: 18px;
        line-height: 25px;
    }

    .secondary-satisfaction h2 {
        font-size: 30px;
        line-height: 39px;
    }

    .secondary-satisfaction p {
        font-size: 18px;
        line-height: 25px;
    }

    /* .residential-banner .banner-icons-wrapper {
		width: 100%;
		max-width: 100%;
		flex-shrink: 0;
		flex-grow: 1;
		margin-bottom: 0;
	} */
    .residential-banner .icon-box {
        /* width: 30%; */
        margin: 0 15px;
    }

    /* .commercial-banner .banner-icons-wrapper {
		width: 100%;
		max-width: 100%;
		flex-shrink: 0;
		flex-grow: 1;
		margin-bottom: 0;
	} */
    .secondary-banner.commercial-banner {
        background: url(../images/commercial/commercial-bg_mobile02.jpg) center center / cover no-repeat;
    }

    .secondary-banner.residential-banner {
        background: url(../images/residential/residential-bg_mobile02.jpg) center center / cover no-repeat;
    }

    .commercial-banner .icon-box {
        /* width: 30%; */
        margin: 0 15px;
    }

    .secondary-slider .slide {
        margin-right: 20px;
    }
}

/* About US Page CSS */

.about-menu .logo path {
    fill: #000532;
}

.about-banner {
    background: #fff;
    padding: 154px 0 26px 0;
    position: relative;
    min-height: auto !important;
}

.about-banner h1 {
    text-align: center;
    padding: 0 15px;
    color: #000532;
    margin: 0 0 3px 0;
    font: 800 36px / 47px 'Archivo', sans-serif;
}

.about-banner .video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 28px;
}

.about-banner .video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.about-banner .video-wrapper .overlay {
    position: relative;
    z-index: 5;
    padding: 232px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(0, 5, 50, 0.5), rgba(0, 5, 50, 0.5));
}

.about-banner h4 {
    margin: 0px 0 46px 0;
    color: #000532;
    font: 800 26px / 29px 'Archivo', sans-serif;
    text-align: center;
}

.about-banner h5 {
    letter-spacing: 0.02em;
    text-align: center;
    margin: 0px 0 0 0;
    color: #000532;
    font: 16px / 22px helvetica-neue;
}

.about-banner .arrow-icon {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 19px;
    transform: translate(0, calc(100% - 9px));
}

.about-content-bg {
    /* background: linear-gradient(
		180deg,
		rgba(247, 247, 247, 0) 0%,
		#f7f7f7 100%
	); */
    background: #f7f7f7;
}

.about-letter {
    padding: 90px 0;
}

.about-letter .letter-inner {
    width: 100%;
    max-width: 742px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-letter p {
    letter-spacing: 0.02em;
    color: #000532;
    margin: 0 0 23px 0;
    font: 18px / 25px helvetica-neue;
}

.about-letter p b {
    font-weight: 700;
    font-size: 20px;
}

.about-letter .signature {
    display: block;
    margin: 55px 0 23px 0;
}

.about-letter h5 {
    letter-spacing: 0.02em;
    color: #000532;
    margin: 0;
    font: 14px / 20px helvetica-neue;
}

.about-letter h5 b {
    font-weight: 700;
}

.about-slider {
    padding: 40px 0 190px 0;
}

.about-slider h2 {
    margin-bottom: 69px;
}

.about-slider .slider-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-slider .slider-wrapper .slide {
    margin: 0 20px 40px 20px;
}

.about-slider .slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-slider .slider-img {
    margin-bottom: 27px;
}

.about-slider h4 {
    font: 700 20px / 28px 'Archivo', sans-serif;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.about-slider h4::after {
    width: 100%;
}

.about-slider p {
    font-size: 14px;
}

@media only screen and (max-width: 767px) {
    .about-banner {
        padding: 0;
    }

    .about-menu .logo path {
        fill: #fff;
    }

    .about-menu.white-bg .logo path {
        fill: #000532;
    }

    .about-banner h1 {
        font-size: 30px;
        line-height: 33px;
        margin-bottom: 20px;
        padding: 0;
        color: #fff;
    }

    .about-banner h4 {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 40px;
        padding: 0;
        color: #fff;
    }

    .about-banner p {
        font-size: 18px;
        line-height: 25px;
    }

    .about-banner .video-wrapper {
        width: 100%;
        margin: 0;
    }

    .about-banner .video-wrapper .overlay {
        min-height: 100vh;
        padding: 138px 15px 35px 15px;
        justify-content: space-between;
    }

    .about-banner .btn-play-video {
        margin-bottom: 60px;
    }

    .about-banner h5 {
        margin-bottom: 19px;
        color: #fff;
    }

    .about-banner .banner-arrow {
        display: flex;
        justify-content: center;
    }

    .about-banner .banner-arrow img {
        display: block;
        width: 20px;
        animation: arrowUpDown 0.6s ease-in infinite alternate;
    }

    .about-letter {
        padding-top: 70px;
        padding-bottom: 55px;
    }

    .about-letter .signature {
        margin: 39px auto 23px auto;
    }

    .about-letter h5 {
        text-align: center;
    }

    .about-slider {
        padding-top: 69px;
        padding-bottom: 93px;
    }

    .about-slider h2 {
        margin-bottom: 50px;
    }

    .about-slider h4 {
        padding-bottom: 7px;
        margin-bottom: 23px;
    }
}

/* Reviews Page CSS */

.reviews-banner {
    background: #fff;
    padding: 155px 0 105px 0;
}

.reviews-banner .reviews-inner {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.reviews-banner h1 {
    text-align: center;
    max-width: 495px;
    margin: 0 auto 60px auto;
    color: #000532;
    font: 800 36px / 40px 'Archivo', sans-serif;
}

.reviews-banner .rating-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000532;
    font: 800 25px / 33px 'Archivo', sans-serif;
    margin: 0 0 7px 0;
}

.reviews-banner .rating-text img {
    display: block;
    height: 30px;
    margin-left: 0px;
    margin-top: -5px;
}

.reviews-banner h6 {
    text-align: center;
    letter-spacing: 0.02em;
    margin: 0 0 18px 0;
    color: #000532;
    font: 700 16px / 22px helvetica-neue;
}

.reviews-banner .sub-title {
    letter-spacing: 0.02em;
    margin: 0 auto 100px auto;
    max-width: 564px;
    text-align: center;
    font: 16px / 22px helvetica-neue;
}

.reviews-banner .review-wrapper {
    margin: 0 -15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.reviews-banner .review-wrapper > a {
    margin: 0 15px 25px 15px;
}

.reviews-banner .review-box {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9e9e9;
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 20px 35px 15px 15px;
    flex-grow: 1;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease-in;
}

.reviews-banner .review-wrapper > a:hover .review-box,
.reviews-banner .review-wrapper > a:focus .review-box {
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.2);
}

.reviews-banner .review-wrapper > a:hover,
.reviews-banner .review-wrapper > a:focus {
    text-decoration: none;
    color: #182d40;
}

.reviews-banner .review-box .icon-wrapper {
    display: flex;
    align-items: center;
    margin: 0 0 16px 0;
}

.reviews-banner .review-box .icon-wrapper img {
    display: block;
    width: 13px;
    margin-right: 4px;
}

.reviews-banner .review-box p {
    margin: 0;
    color: #182d40;
    font: 14px / 18px sfProDisplay-Regular;
    display: -webkit-box;
    white-space: initial;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.reviews-banner .review-box .user-wrapper {
    margin-top: 36px;
    display: flex;
    align-items: center;
}

.reviews-banner .review-box .user-img {
    display: block;
    flex-shrink: 0;
    width: 76px;
    border-radius: 50%;
    margin-right: 16px;
}

.reviews-banner .review-box .name {
    font-weight: 700;
}

.reviews-content-bg {
    background: #f7f7f7;
}

.review-page-content {
    padding: 87px 0 60px 0;
}

.review-page-content .inner {
    padding: 0 15px;
    max-width: 914px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-page-content .main-img {
    display: block;
    flex-shrink: 0;
    width: 50%;
    margin-right: 69px;
}

.review-page-content .text-wrapper {
    flex-grow: 1;
}

.review-page-content h4 {
    margin: 0 0 40px 0;
    color: #000;
    font: 800 26px / 29px 'Archivo', sans-serif;
}

.review-page-content p {
    letter-spacing: 0.02em;
    color: #000532;
    margin: 0 0 25px 0;
    font: 16px / 22px helvetica-neue;
}

.review-page-content .btn-white {
    margin-top: 61px;
}

.review-faq {
    padding: 60px 0 170px 0;
}

.review-faq .inner {
    width: 100%;
    max-width: 754px;
    padding: 0 15px;
    margin: 0 auto;
}

.review-faq h1 {
    text-align: center;
    margin: 0 0 70px 0;
    color: #000532;
    font: 800 36px / 47px 'Archivo', sans-serif;
}

.review-faq .card {
    border: none;
    border-bottom: 1px solid #dcdcdc;
    background: transparent;
    margin-bottom: 17px;
    border-radius: 0;
    padding-bottom: 16px;
}

.review-faq .card-header {
    padding: 0;
    border-radius: 0;
    border-bottom: none;
    background: transparent;
}

.review-faq .card .btn-link {
    text-align: left;
    padding: 10px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000532;
    font: 700 16px / 19px 'Archivo', sans-serif;
}

.review-faq .card .btn-link:not(.collapsed) > svg {
    display: block;
    margin-left: 20px;
    width: 12px;
    transform: rotate(180deg);
    transition: all 0.3s ease-in;
}

.review-faq .card .btn-link.collapsed > svg {
    transform: rotate(0deg);
    transition: all 0.3s ease-in;
}

.review-faq .card .btn-link:hover,
.review-faq .card .btn-link:focus {
    color: #000532;
    text-decoration: none;
}

.review-faq .card-body {
    padding: 10px 30px 28px 0;
}

.review-faq .card-body p {
    margin: 0;
    font: 400 16px / 22px helvetica-neue;
    color: #000532;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .review-page-content .main-img {
        margin-right: 30px;
    }

    .review-page-content .btn-white {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .reviews-banner {
        padding: 120px 0 60px 0;
    }

    .reviews-banner h1 {
        font-size: 30px;
        line-height: 39px;
    }

    .reviews-banner .sub-title {
        font-size: 18px;
        line-height: 25px;
    }

    .review-page-content p {
        font-size: 18px;
        line-height: 25px;
    }

    .review-page-content .text-wrapper {
        display: flex;
        flex-direction: column;
    }

    .review-page-content .inner {
        flex-direction: column;
    }

    .review-page-content .main-img {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .review-page-content h4 {
        margin-bottom: 30px;
    }

    .review-page-content .btn-white {
        margin-top: 20px;
        align-self: center;
    }
}

/* Contact Page CSS */

.contact-banner {
    padding: 154px 0 80px 0;
    background: #fff;
}

.contact-banner .contact-inner {
    width: 100%;
    max-width: 1050px;
    padding: 0 15px;
    margin: 0 auto;
}

.contact-banner h1 {
    text-align: center;
    color: #000532;
    margin: 0 0 25px 0;
    font: 800 36px / 40px 'Archivo', sans-serif;
}

.contact-banner h6 {
    /* text-decoration: underline; */
    letter-spacing: 0.05em;
    color: #000532;
    margin: 0 0 10px 0;
    font: 500 16px / 17px 'Archivo', sans-serif;
    text-align: center;
}

.contact-banner p {
    text-align: center;
    letter-spacing: 0.05em;
    color: #000532;
    margin: 0 0 30px 0;
    font: 16px / 19px helvetica-neue;
}

.contact-banner .map {
    width: 100%;
    height: 478px;
}

.contact-content-bg {
    background: linear-gradient(
            180deg,
            rgba(247, 247, 247, 0) 0%,
            #f7f7f7 100%
    );
}

.contact-section {
    padding: 90px 0 168px 0;
}

.contact-section .inner {
    width: 100%;
    max-width: 590px;
    padding: 0 15px;
    margin: 0 auto;
}

.contact-section h2 {
    margin: 0 0 40px 0;
    color: #000532;
    text-align: center;
    font: 800 37px / 41px 'Archivo', sans-serif;
}

.contact-section .contact-row {
    display: flex;
    margin: 0 -5px;
}

.contact-section .contact-col {
    flex-basis: 0;
    flex-grow: 1;
    margin: 0 5px;
}

.contact-section .form-group {
    margin-bottom: 13px;
}

.contact-section input.form-control {
    height: 50px;
}

.contact-section .form-control {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 15px;
    color: #000532;
    letter-spacing: 0.01em;
    font: 16px / 17px 'Archivo', sans-serif;
}

.contact-section .form-control:focus {
    box-shadow: none;
}

.contact-section .form-control::placeholder {
    color: #868686;
    opacity: 1;
}

.contact-section .form-control:-ms-input-placeholder {
    color: #868686;
}

.contact-section .form-control::-ms-input-placeholder {
    color: #868686;
}

.contact-section textarea.form-control {
    min-height: 200px;
    resize: none;
}

.contact-section .btn-green {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 234px;
    height: 50px;
    margin: 20px auto 0 auto;
}

@media only screen and (max-width: 767px) {
    .contact-section .contact-row {
        flex-direction: column;
        margin: 0;
    }

    .contact-section .contact-col {
        margin: 0;
        flex-basis: 1;
        flex-grow: 1;
    }

    .contact-banner {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .contact-banner h1 {
        font-size: 30px;
        line-height: 39px;
    }

    .contact-banner h6 {
        font-size: 18px;
        line-height: 25px;
    }

    .contact-section {
        padding: 40px 0 120px 0;
    }
}

/* Checkout Page CSS */

.checkout-page {
    min-height: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
}

.checkout-page .left-col {
    flex-grow: 1;
    padding-right: 96px;
    padding-left: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.checkout-page .right-col {
    flex-shrink: 0;
    width: 44%;
    background: #fafafa;
    padding-left: 84px;
    padding-right: 30px;
}

.checkout-page .quiz-header {
    display: flex;
    justify-content: flex-start;
    padding: 30px 0 35px 0;
}

.checkout-page .checkout-header-right {
    padding: 34px 0 35px 0;
    display: flex;
    justify-content: flex-end;
}

.checkout-page .btn-checkout-close {
    padding: 5px;
}

.checkout-page .btn-checkout-close svg {
    display: block;
    width: 15px;
}

.checkout-page .payment-page-wrapper {
    max-width: 560px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.checkout-page .payment-page-wrapper .logo-wrapper {
    display: flex;
}

.checkout-page .checkout-left-inner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.checkout-page .logo {
    margin-bottom: 28px;
}

.checkout-page .logo img {
    display: block;
    height: 31px;
}

.checkout-page .bcrumb {
    margin-bottom: 31px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.checkout-page .bcrumb a {
    letter-spacing: 0.01em;
    color: #000532;
    font: 12px / 14px helvetica-neue;
}

.checkout-page .bcrumb a:hover,
.checkout-page .bcrumb a:focus {
    text-decoration: none;
    color: #000532;
}

.checkout-page .bcrumb .arrow {
    color: #000532;
    margin: 0 10px 0 8px;
}

.checkout-page .bcrumb .arrow svg {
    display: block;
    height: 10px;
}

.checkout-page .bcrumb .active {
    color: #868686;
    letter-spacing: 0.01em;
    font: 12px / 14px helvetica-neue;
}

.checkout-page .checkout-options {
    position: relative;
    margin-bottom: 30px;
    padding: 21px 12px 15px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
}

.checkout-page .checkout-options h5 {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    margin: 0;
    color: #182d40;
    padding: 0 10px;
    background: #fff;
    letter-spacing: 0.01em;
    font: 700 14px / 16px 'Archivo', sans-serif;
    z-index: 2;
}

.checkout-page .checkout-options-inner {
    display: flex;
    justify-content: center;
    margin-left: -5px;
    margin-right: -5px;
}

.btn-checkout-options {
    flex-basis: 0;
    flex-grow: 1;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 5px;
}

.btn-checkout-options img {
    display: block;
    height: 20px;
}

.checkout-page .checkout-options-inner .btn-shoppay {
    background: #5a31f4;
}

.btn-paypal {
    background: #ffc439;
}

.checkout-page .checkout-options-inner .btn-gpay {
    background: #000;
}

.checkout-page .or-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 31px;
    margin-top: 31px;
}

.checkout-page .or-row p {
    margin: 0 10px;
    flex-shrink: 0;
    color: #868686;
    letter-spacing: 0.01em;
    font: 14px / 17px helvetica-neue;
}

.checkout-page .or-row .line {
    flex-grow: 1;
    height: 1px;
    background: #d9d9d9;
}

.checkout-page h4 {
    letter-spacing: 0.01em;
    margin: 0 0 23px 0;
    color: #182d40;
    font: 700 16px / 17px 'Archivo', sans-serif;
    text-align: left;
}

.checkout-page .form-group {
    position: relative;
    margin-bottom: 12px;
}

.checkout-page .form-group .title {
    position: absolute;
    top: 14px;
    left: 16px;
    transform-origin: left center;
    transition: all 0.2s ease-in;
    letter-spacing: 0.01em;
    margin: 0;
    color: #000532;
    font: 16px / 20px helvetica-neue;
    pointer-events: none;
}

.checkout-page .form-group.focused .title {
    transform: scale(0.8);
    top: 5px;
    /* left: 14px; */
}

.checkout-page .form-control {
    padding: 21px 16px 5px 16px;
    border-radius: 12px;
}

.checkout-page .error-text {
    margin: 5px 0 0 0;
    color: red;
    font: 16px / 20px 'Archivo', sans-serif;
    display: none;
}

.tooltip-inner {
    padding-bottom: 7px;
}

.payment-page-wrapper .newsletter-for-mobile .newsletter-checkbox {
    margin-bottom: 12px;
}

.mobile-number-newsletter {
    padding-left: 30px;
    display: none;
}

.mobile-number-newsletter .mobile-icon {
    display: block;
    height: 30px;
    position: absolute;
    left: 10px;
    top: 10px;
    pointer-events: none;
}

.mobile-number-newsletter p {
    margin: 0;
    color: #868686;
    font: 13px / 17px 'Archivo', sans-serif;
}

.mobile-number-newsletter p a {
    color: #08a9ee;
}

.mobile-number-newsletter p a:hover,
.mobile-number-newsletter p a:focus {
    text-decoration: none;
    color: #08a9ee;
}

.checkout-page .mobile-number-newsletter .form-control {
    padding-left: 45px;
}

.checkout-page .mobile-number-newsletter .form-group .title {
    left: 45px;
}

.checkout-page .btn-checkout {
    height: 79px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-page .btn-checkout.first {
    margin-top: 45px;
}

.checkout-bottom-link-wrapper {
    display: flex;
    margin-top: 76px;
}

.checkout-bottom-link-wrapper a {
    letter-spacing: 0.01em;
    color: #08a9ee;
    font: 12px / 14px helvetica-neue;
    margin-right: 25px;
}

.checkout-bottom-link-wrapper a:last-child {
    margin-right: none;
}

.checkout-bottom-link-wrapper a:hover,
.checkout-bottom-link-wrapper a:focus {
    color: #08a9ee;
    text-decoration: none;
}

.checkout-sidebar {
    width: 100%;
    max-width: 430px;
}

.checkout-sidebar .product-summary-wrapper {
    margin-bottom: 40px;
}

.checkout-sidebar .checkout-sidebar-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.checkout-sidebar .checkout-sidebar-row h5 {
    margin: 0;
    color: #000532;
    font: 700 16px / 22px 'Archivo', sans-serif;
}

.checkout-sidebar .checkout-sidebar-row.a-end {
    align-items: flex-end;
}

.checkout-sidebar .checkout-sidebar-row .left {
    flex-grow: 1;
}

.checkout-sidebar .checkout-sidebar-row .right {
    flex-shrink: 0;
    padding-left: 30px;
}

.checkout-sidebar .product-desc {
    display: flex;
    align-items: flex-start;
}

.checkout-sidebar .product-desc .product-img {
    display: block;
    flex-shrink: 0;
    width: 125px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    margin-right: 20px;
}

.checkout-sidebar .product-desc h4 {
    margin: 0px;
    color: #000532;
    font: 700 16px / 22px 'Archivo', sans-serif;
    text-transform: uppercase;
}

.checkout-sidebar .product-desc h5 {
    margin: 0px;
    color: #000532;
    font: 700 16px / 22px 'Archivo', sans-serif;
    text-align: right;
}

.checkout-sidebar .discount-wrapper {
    padding: 25px 0 30px 0;
    border-top: 1px solid #d9d9d9;
    display: flex;
}

.checkout-sidebar .discount-wrapper .form-group {
    margin: 0;
    flex-grow: 1;
}

.checkout-sidebar .discount-wrapper .form-control {
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background: #fff;
    padding: 12px 16px;
    letter-spacing: 0.01em;
    font: 16px / 17px 'Archivo', sans-serif;
    color: #000532;
    height: 43px;
}

.checkout-sidebar .discount-wrapper .form-control:focus {
    box-shadow: none;
}

.checkout-sidebar .discount-wrapper .form-control::placeholder {
    color: #868686;
    opacity: 1;
}

.checkout-sidebar .discount-wrapper .form-control:-ms-input-placeholder {
    color: #868686;
}

.checkout-sidebar .discount-wrapper .form-control::-ms-input-placeholder {
    color: #868686;
}

.checkout-sidebar .discount-wrapper .btn-discount {
    flex-shrink: 0;
    margin-left: 13px;
    width: 113px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4ca892;
    border-radius: 12px;
    color: #ffffff;
    font: 700 16px / 17px 'Archivo', sans-serif;
    transition: all 0.3s ease-in;
}

.checkout-sidebar .discount-wrapper .btn-discount:disabled {
    background: #c4c4c4;
}

.checkout-sidebar .product-price-wrapper {
    padding: 25px 0;
    border-top: 1px solid #d9d9d9;
}

.checkout-sidebar .product-price-wrapper p {
    margin: 0;
    color: #000532;
    font: 12px / 20px helvetica-neue;
}

.checkout-sidebar .product-price-wrapper p.type {
    margin-bottom: 3px;
}

.checkout-sidebar .product-price-wrapper p.name {
    font-size: 16px;
}

/* .checkout-sidebar .product-price-wrapper p.name {
	font-weight: 700;
	font-family: helvetica-neue-bold;
} */
.checkout-sidebar .product-price-wrapper p.price {
    /* font-weight: 700; */
    text-align: right;
    font-size: 14px;
}

.checkout-sidebar .checkout-sidebar-row.total {
    margin-bottom: 0;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #d9d9d9;
}

.checkout-sidebar .product-price-wrapper .total p {
    /* font: 700 18px / 25px helvetica-neue-bold; */
    font: 18px / 25px helvetica-neue;
    text-transform: uppercase;
}

.checkout-sidebar .product-price-wrapper .total p span {
    font-weight: 400;
    display: inline-flex;
    margin-right: 5px;
    font-size: 14px;
}

/* Checkout 2 */

.checkout-page .user-info-change {
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    margin-bottom: 46px;
    padding: 1px 16px;
}

.checkout-page .user-info-row {
    padding: 12px 0;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.checkout-page .user-info-row:last-child {
    border-bottom: none;
}

.checkout-page .user-info-row .type {
    margin: 0;
    flex-shrink: 0;
    width: 70px;
    letter-spacing: 0.01em;
    font: 16px / 19px helvetica-neue;
    color: #868686;
}

.checkout-page .user-info-row .details {
    margin: 0;
    letter-spacing: 0.01em;
    flex-grow: 1;
    color: #000532;
    padding-right: 20px;
    font: 16px / 19px helvetica-neue;
    word-break: break-all;
}

.checkout-page .user-info-row a {
    flex-shrink: 0;
    letter-spacing: 0.01em;
    color: #08a9ee;
    text-decoration: none;
    font: 14px / 17px helvetica-neue;
}

.checkout-page .user-info-row a:hover,
.checkout-page .user-info-row a:focus {
    color: #08a9ee;
    text-decoration: none;
}

.checkout-page .add-tip-wrapper {
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    margin-bottom: 48px;
}

.checkout-page .tip-header {
    padding: 16px;
}

.checkout-page .add-tip-wrapper p {
    margin: 0px;
    color: #000532;
    letter-spacing: 0.01em;
    font: 16px / 19px helvetica-neue;
}

.checkout-page .tip-body {
    border-top: 1px solid #dcdcdc;
    background: #fafafa;
    padding: 18px 20px 23px 18px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.checkout-page .tip-body .checkbox-wrapper {
    display: flex;
    margin-bottom: 12px;
}

.checkout-page .tip-body .c-label {
    display: block;
    flex-shrink: 0;
    width: calc(25% + 1px);
    margin-left: -1px;
    position: relative;
    margin-bottom: 0;
}

.checkout-page .tip-body .c-label:first-child {
    width: 25%;
    margin-left: 0;
}

.checkout-page .tip-body .c-label .tip-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkout-page .tip-body .c-label .checkbox-content {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    z-index: 4;
    border: 1px solid #dcdcdc;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

.checkout-page .tip-body .c-label:first-child .checkbox-content {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.checkout-page .tip-body .c-label:last-child .checkbox-content {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.checkout-page .tip-body .checkbox-content p {
    letter-spacing: 0.01em;
    text-align: center;
    color: #000532;
    /* font: 700 16px / 21px helvetica-neue-bold; */
    font: 16px / 21px helvetica-neue;
    transition: all 0.2s ease-in;
}

.checkout-page .tip-body .checkbox-content p span {
    display: block;
    font: 400 14px / 18px helvetica-neue;
    color: #868686;
}

.checkout-page .tip-body .tip-checkbox:checked + .checkbox-content {
    border: 2px solid #4ca892;
    z-index: 5;
}

.checkout-page .tip-body .tip-checkbox:checked + .checkbox-content p {
    color: #4ca892;
}

.checkout-page .tip-body .form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.checkout-page .tip-body .form-group .form-control {
    flex-grow: 1;
    height: 44px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 13px 16px;
    background: #fff;
    color: #000532;
    letter-spacing: 0.01em;
    font: 16px / 16px 'Archivo', sans-serif;
}

.checkout-page .tip-body .form-group .form-control::placeholder {
    color: #868686;
    opacity: 1;
}

.checkout-page .tip-body .form-group .form-control:-ms-input-placeholder {
    color: #868686;
}

.checkout-page .tip-body .form-group .form-control::-ms-input-placeholder {
    color: #868686;
}

.checkout-page .tip-body .form-group .btn-tip {
    height: 44px;
    flex-shrink: 0;
    width: 25%;
    min-width: 100px;
    margin-left: 13px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.checkout-page .tip-body .form-group .btn-tip:disabled {
    background: #c4c4c4;
}

.checkout-page .card-payment-wrapper {
    margin-bottom: 46px;
}

.checkout-page .card-payment-wrapper .form-control {
    padding: 15px 16px;
}

.card-payment-wrapper .step-radio-label .step-radio-box {
    border-radius: 12px;
}

.checkout-page .save-info-wrapper {
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    margin-bottom: 20px;
}

.checkout-page .save-info-wrapper label {
    display: block;
    position: relative;
    margin: 0;
}

.checkout-page .save-info-wrapper .save-info-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.checkout-page .save-info-wrapper .save-checkbox-content {
    padding: 17px 16px 17px 48px;
    position: relative;
    cursor: pointer;
}

.checkout-page .save-info-wrapper .save-checkbox-content p {
    margin: 0;
    letter-spacing: 0.01em;
    color: #868686;
    font: 16px / 16px 'Archivo', sans-serif;
}

.checkout-page .save-info-wrapper .outer {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #dcdcdc;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.checkout-page .save-info-wrapper .inner {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: #fff;
    transition: all 0.3s ease-in;
}

.checkout-page
.save-info-wrapper
input:checked
+ .save-checkbox-content
.inner {
    background: #4ca892;
}

.checkout-page .save-info-wrapper .save-info-inner {
    padding: 18px 20px 23px 20px;
    background: #fafafa;
    border-top: 1px solid #dcdcdc;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .checkout-page .left-col {
        padding-right: 30px;
    }

    .checkout-page .right-col {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .checkout-page .left-col {
        padding-right: 15px;
        padding-left: 15px;
    }

    .checkout-page .right-col {
        padding-left: 15px;
        padding-right: 15px;
    }

    .checkout-sidebar .checkout-sidebar-row .right {
        padding-left: 20px;
    }

    .checkout-sidebar .product-desc .product-img {
        width: 80px;
        margin-right: 10px;
    }

    .checkout-sidebar .product-desc h4 {
        font-size: 14px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .checkout-page .right-col {
        display: none;
    }

    .checkout-page .left-col {
        padding: 0 15px 30px 15px;
    }

    .checkout-page .payment-page-wrapper {
        margin: 0 auto;
    }

    .checkout-page .checkout-options-inner {
        flex-direction: column;
        margin: 0;
    }

    .checkout-page .checkout-options-inner .btn-checkout-options {
        margin: 0 0 10px 0;
        flex-basis: auto;
        width: 100%;
        height: 50px;
    }

    .checkout-page .checkout-options-inner .btn-checkout-options:last-child {
        margin-bottom: 0;
    }

    .payment-page-wrapper .payment-form-row {
        flex-direction: column;
    }

    .card-payment-wrapper .step-radio-label .step-radio-box {
        padding-left: 48px;
        padding-right: 15px;
        height: auto;
        min-height: auto;
        flex-wrap: wrap;
    }

    .card-payment-wrapper .step-radio-label .step-radio-box p {
        margin-bottom: 5px;
    }

    .card-payment-wrapper .step-radio-label .step-radio-box .outer {
        left: 16px;
    }

    .card-payment-wrapper .payment-box .payment-details {
        padding-left: 20px;
        padding-right: 20px;
    }

    .checkout-page .mobile-sidebar-wrapper {
        border: 1px solid #d9d9d9;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .checkout-page .mobile-sidebar-wrapper .btn-mobile-summary {
        padding: 15px;
        border-radius: 12px;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        font: 16px / 18px 'Archivo', sans-serif;
    }

    .checkout-page .mobile-sidebar-wrapper .btn-mobile-summary .title {
        display: flex;
        align-items: center;
    }

    .checkout-page .mobile-sidebar-wrapper .btn-mobile-summary .title svg {
        display: block;
        margin-left: 7px;
        transform-origin: center center;
        transition: all 0.3s ease-in;
    }

    .checkout-page .mobile-sidebar-wrapper .btn-mobile-summary.open .title svg {
        transform: rotate(180deg);
    }

    .checkout-page .mobile-sidebar-wrapper .btn-mobile-summary .total-price {
        font-size: 18px;
        font-weight: 700;
    }

    .checkout-page .checkout-sidebar {
        margin: 0 auto;
        background: #fafafa;
        padding: 20px 15px 0 15px;
        border-top: 1px solid #d9d9d9;
        display: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .checkout-sidebar .product-summary-wrapper {
        margin-bottom: 20px;
    }

    .checkout-sidebar .product-desc .product-img {
        width: 60px;
        margin-right: 10px;
    }

    .checkout-sidebar .product-desc h4 {
        font-size: 15px;
        line-height: 21px;
    }

    .checkout-page .quiz-header {
        padding-top: 20px;
        padding-bottom: 15px;
    }

    .checkout-sidebar .product-price-wrapper p.name {
        font-size: 16px;
    }

    .checkout-sidebar .product-price-wrapper p.price {
        font-size: 16px;
    }
}

/* Thank You CSS */

.thank-you-page .payment-page-wrapper {
    justify-content: space-between;
    height: 100%;
}

.thank-you-page .thank-you-content {
    flex-grow: 1;
}

.thank-you-content .title-wrapper {
    margin: 16px 0 24px 0;
    display: flex;
    align-items: center;
}

.thank-you-content .title-wrapper img {
    display: block;
    width: 38px;
    margin-right: 18px;
}

.thank-you-content .title-wrapper p {
    margin: 0;
    color: #000532;
    font: 800 20px / 24px 'Archivo', sans-serif;
}

.thank-you-content .title-wrapper p .order-no {
    display: block;
    color: #4ca892;
    font: 800 16px / 19px 'Archivo', sans-serif;
}

.thank-you-content .order-wrapper {
    background: #fafafa;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 14px 20px 17px 20px;
    margin: 0 0 13px 0;
}

.thank-you-content .order-wrapper h5 {
    margin: 0 0 2px 0;
    color: #000532;
    font: 600 16px / 27px 'Archivo', sans-serif;
}

.thank-you-content .order-wrapper p {
    margin: 0;
    color: #000532;
    font: 500 14px / 23px 'Archivo', sans-serif;
}

.thank-you-content .user-info-wrapper {
    margin-bottom: 35px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 20px 20px 5px 20px;
}

.thank-you-content .user-info-wrapper h5 {
    color: #000532;
    margin: 0 0 15px 0;
    font: 600 16px / 17px 'Archivo', sans-serif;
}

.thank-you-content .user-row {
    display: flex;
    margin: 0 -15px;
}

.thank-you-content .user-col {
    flex-shrink: 0;
    width: 50%;
    padding: 0 15px;
}

.thank-you-content .user-info-wrapper .user-box {
    margin-bottom: 20px;
}

.thank-you-content .user-info-wrapper h6 {
    margin: 0 0 10px 0;
    color: #000532;
    font: 16px / 17px 'Archivo', sans-serif;
}

.thank-you-content .user-info-wrapper p {
    margin: 0 0 2px 0;
    color: #000532;
    font: 14px / 20px 'Archivo', sans-serif;
}

.thank-you-content .btn-appointment {
    height: 50px;
}

.calender-modal {
    background: rgba(0, 0, 0, 0.8);
}

.calender-modal .modal-dialog {
    max-width: 766px;
}

.modal {
    background: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 767px) {
    .thank-you-content .user-row {
        flex-direction: column;
    }

    .thank-you-content .user-col {
        width: 100%;
    }
}
