@font-face {
    font-family: 'NeueMontreal';
    src: url('../fonts/neue-montreal/NeueMontreal-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'NeueMontreal';
    src: url('../fonts/neue-montreal/NeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'NeueMontreal';
    src: url('../fonts/neue-montreal/NeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'NeueMontreal';
    src: url('../fonts/neue-montreal/NeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'RecklessNeue';
    src: url('../fonts/reckless-neue/RecklessNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'RecklessNeue';
    src: url('../fonts/reckless-neue/RecklessNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'RecklessNeue';
    src: url('../fonts/reckless-neue/RecklessNeue-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'RecklessNeue';
    src: url('../fonts/reckless-neue/RecklessNeue-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

*{
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

:root {
    --menu-bar-index: 1;
}

html{
    image-rendering: crisp-edges;
}

body{
    font-family: 'NeueMontreal';
    letter-spacing: 0.416px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

@media only screen and (min-width: 1800px){
    body{
        font-size: 1vw;
    }
}

/* top navbar */

.btn{
    width: max-content;
    padding: 11px 60px;
    border: 1px solid #DA291C;
    border-radius: 0px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    overflow: hidden;
    transition-duration: 0.4s;
    background: transparent;
    color: #DA291C;
    position: relative;
    box-shadow: none !important;
    outline: none !important;
}

.btn:hover{
    color: #ffffff;
}

.btn::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #DA291C;
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
    transform: translate(100%);
}

.btn:hover::before{
    transform: translate(0%);
}

.btn span{
    position: relative;
}

@media only screen and (min-width: 1800px){
    .btn{
        padding: 1em 5em;
        font-size: 0.625em;
    }
}

/* top navbar */

.top-navbar{
    background: rgba(74, 85, 86, 0.68);
    position: fixed;
    z-index: 100;
    width: inherit;
    padding: 14px 106px 14px 75px;
}

.top-navbar-logo{
    height: 28px;
}

.top-navbar-link{
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    margin-right: 36px;
    transition: color 0.3s;
    display: block;
}

.top-navbar-link:hover{
    color: #DA291C;
}

.top-navbar-menu-btn{
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    margin-right: 30px;
    transition: color 0.3s;
    display: block;
}

.top-navbar-menu-btn:hover{
    color: #DA291C;
}

.top-navbar-call-btn{
    width: 34px;
    height: 34px;
    display: block;
    background: #ffffff;
    border-radius: 100%;
    color: #515d5b;
    text-decoration: none;
    font-size: 22px;
    text-align: center;
    line-height: 34px;
    transition: color 0.3s, top 0.8s, right 0.8s, scale 0.8s;
    position: absolute;
    top: 15px;
    right: 74px;
}

.headroom--unpinned .top-navbar-call-btn{
    top: 105px;
    right: 20px;
    scale: 1.4;
    border: 1px solid #DA291C;
    color: #DA291C;
}

.top-navbar-call-btn:hover{
    color: #DA291C;
}

.top-navbar.headroom{
    will-change: transform;
    transition: transform 200ms linear;
}

.top-navbar.headroom--pinned{
    transform: translateY(0%);
}

.top-navbar.headroom--unpinned{
    transform: translateY(-100%);
}

@media only screen and (max-width: 850px){
    .top-navbar{
        padding: 10px 14px;
    }

    .top-navbar-logo{
        height: 28px;
    }

    .top-navbar-menu-btn{
        margin: 0px;
    }
}

@media only screen and (min-width: 1800px){
    .top-navbar{
        padding: 0.7em 6em;
    }

    .top-navbar-logo{
        height: 1.7em;
    }

    .top-navbar-link{
        font-size: 0.9em;
        margin-right: 2.2em;
    }
    
    .top-navbar-menu-btn{
        font-size: 1.3em;
        margin-right: 1.4em;
    }
    
    .top-navbar-call-btn{
        width: 1.7em;
        height: 1.7em;
        font-size: 1.1em;
        line-height: 1.6em;
        top: 0.65em;
        right: 4em;
    }

    .headroom--unpinned .top-navbar-call-btn{
        top: 4.5em;
        right: 2em;
    }
}

/* menu bar */

.menu-bar{
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2000;
    display: none;
    transition: background 0.5s;
}

.menu-bar.open{
    background: rgba(0, 0, 0, 0.6);
}

.menu-bar-container{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0px;
    right: 0px;
    background:#e5e5e5;
    max-width: 280px;
    padding: 18px;
    transition: transform 0.6s cubic-bezier(0.15, 0.72, 0.28, 0.97);
    transform: translate(100%);
}

.menu-bar.open{
    background: rgba(0, 0, 0, 0.6);
}

.menu-bar.open .menu-bar-container{
    transform: translate(0%);
}

.menu-bar-close-btn{
    background-color: transparent;
    border: none;
    color: #545454;
    font-size: 24px;
    position: relative;
    left: -8px;
    transition: transform 0.4s ease-out;
}

.menu-bar-close-btn:hover{
    transform: rotate(90deg);
}

.menu-bar-logo{
    height: 28px;
}

.menu-bar-list{
    margin-top: 25px;
}

.menu-bar-list a{
    display: block;
    text-align: right;
    color: #4a5556;
    transform: translate(100%);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    transition: transform 0.4s cubic-bezier(0.15, 0.72, 0.28, 0.97) calc(0.2s + (0.1s * var(--menu-bar-index))), padding 0.4s;
    padding-right: 0px;
}

.menu-bar.open .menu-bar-list a{
    transform: translate(0%);
}

.menu-bar-list a.active{
    color: #DA291C;
}

.menu-bar-list a:hover{
    padding-right: 10px;
}

.menu-bar-footer{
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    padding: 18px;
}

.menu-bar-social-link-container{
    text-align: right;
}

.menu-bar-social-link-container a{
    color: #4a5556;
    text-decoration: none;
    font-size: 20px;
    margin-right: 8px;
    transition-duration: 0.4s;
}

.menu-bar-social-link-container a:hover{
    color: #DA291C;
}

@media only screen and (min-width: 1800px){
    .menu-bar-container{
        padding: 1.1em;
        max-width: 17.5em;
    }

    .menu-bar-close-btn{
        font-size: 1.458em;
        left: -0.3em;
    }
    
    .menu-bar-logo{
        height: 1.8em;
    }

    .menu-bar-list{
        margin-top: 1.5em;
    }

    .menu-bar-list a{
        font-size: 1em;
        margin-bottom: 0.5em;
        padding-right: 0px;
    }

    .menu-bar-footer{
        padding: 1em;
    }

    .menu-bar-social-link-container a{
        font-size: 1.146em;
        margin-right: 0.4em;
    }
}

/* section text */

.section-sub-heading{
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.35em;
    color: #9b9b9b;
    margin-bottom: 14px;
    transform: translateY(150%);
}

.section-heading-legend{
    font-weight: 500;
    text-transform: uppercase;
    font-size: 20px;
    color: #DA291C;
    margin-bottom: 14px;
    transform: translateY(150%);
}

.section-heading{
    font-weight: 400;
    font-size: 40px;
    color: #000000;
    margin-bottom: 20px;
    transform: translateY(150%);
}

.section-content{
    color: #000000;
    font-size: 18px;
    margin: 0px;
    transform: translateY(150%);
}

.section-link-container{
    width: 100%;
    margin-top: 28px;
}

.section-link{
    display: block;
    width: 100%;
    color: #000000 !important;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 0px;
    position: relative;
}

.section-link-border{
    width: 0%;
    height: 1px;
    background: #DA291C;
}

.section-link i{
    font-size: 22px;
    position: absolute;
    right: 0px;
    top: 9px;
    transition-duration: 0.3s;
}

.section-link:hover i{
    right: -10px;
}

@media only screen and (max-width: 850px){
    .section-sub-heading{
        font-size: 18px;
    }

    .section-heading-legend{
        font-size: 18px;
    }

    .section-heading{
        font-size: 28px;
    }

    .section-content{
        font-size: 16px;
    }
}

@media  only screen and (min-width: 768px) and (max-width: 1200px){
    .section-heading-legend{
        font-size: 18px;
    }

    .section-heading{
        font-size: 35px;
    }
}

@media only screen and (min-width: 1800px){
    .section-heading-legend{
        font-size: 1.2em;
        margin-bottom: 1em;
    }
    
    .section-heading{
        font-size: 2.3em;
        margin-bottom: 0.8em;
    }
    
    .section-content{
        font-size: 1.1em;
        margin: 0px;
    }
    
    .section-link{
        font-size: 0.98em;
        padding: 0.6em 0px;
    }
    
    .section-link i{
        font-size: 1.4em;
        top: 0.4em;
    }
    
    .section-link:hover i{
        right: 1em;
    }

    .section-link-container{
        margin-top: 2em;
    }
}

/* number counter */

.number-counter-container{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.number-counter-inner{
    width: 100%;
}

.number-counter{
    text-align: center;
    max-width: max-content;
    padding: 3.125em 4.6875em;
    padding-right: 0;
}

.number-counter-text{
    font-size: 4.5em;
    color: #000;
    font-weight: 400;
    margin-bottom: 0.05em;
}

.number-counter-symbol{
    font-weight: 300;
    font-size: 1em;
    position: relative;
    top: -0.05em;
    margin-left: 0em;
    color: #DA291C;
}

.number-counter-title{
    margin: 0;
    text-transform: uppercase;
    color: #000;
    font-size: 1em;
}

@media only screen and (max-width: 850px){
    .number-counter-container{
        padding-bottom: 30px;
    }

    .number-counter{
        text-align: left;
        padding: 15px 25px;
        padding-left: 0px;
    }

    .number-counter-text{
        font-size: 45px;
    }

    .number-counter-title{
        font-size: 14px;
    }

    .number-counter-inner{
        margin-left: 0px;
        margin-right: 0px;
        width: 100%;
    }
}

/* page */

.page-wrapper{
    width: 100vw;
    overflow-x: hidden;
}

.page-content{
    width: 100vw;
    overflow-x: hidden;
}

.page-section-border-line-wrapper{
    width: 100%;
    padding: 0px 75px;
}

.page-section-border-line{
    width: 0%;
    height: 1px;
    background-color: #474747;
}

@media only screen and (max-width: 850px){
    .page-section-border-line-wrapper{
        padding: 0px 20px;
    }
}

@media only screen and (min-width: 1800px){
    .page-section-border-line-wrapper{
        padding: 0px 6em;
    }
}

/* form */

input::placeholder{
    color: #868686;
}

.form-check-label{
    color: #1E1E1E;
    font-size: 15px;
    margin: 0px;
    font-weight: 400;
}

.form-check-input{
    border-radius: 0px !important;
    box-shadow: none !important;
    outline: none !important;
    border-color: #1f1c1d !important;
    background: transparent;
}

.form-check-input:checked{
    background-color: #1f1c1d !important;
    border-color: #1f1c1d !important;
}

.form-input{
    background: transparent;
    border: none;
    border-bottom: 1px solid #DA291C;
    height: 42px;
    font-size: 16px;
    border-radius: 0px !important;
    outline: none !important;
    box-shadow: none !important;
}

.form-select{
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #DA291C !important;
    height: 42px;
    font-size: 16px;
    border-radius: 0px !important;
    outline: none !important;
    box-shadow: none !important;
}

@media only screen and (min-width: 1800px){
    .form-input{
        font-size: 0.833em;
        height: 2.8em;
    }

    .form-select{
        font-size: 0.833em;
        height: 2.8em;
    }

    .form-check-label{
        font-size: 0.781em;
    }
}

/* footer */

.footer{
    background-color: #d0d1d4;
    padding: 50px 70px;
    padding-bottom: 20px;
}

.footer-links-container{
    border-bottom: 1px solid #010201;
    padding-bottom: 50px;
}

.footer-link{
    display: block;
    color: #3f3f3f;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 4px;
    transition-duration: 0.3s;
}

.footer-link:hover{
    color: #DA291C;
}

.footer-title{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-text{
    color: #3f3f3f;
    font-size: 15px;
    font-weight: 400;
    margin: 0px;
    line-height: 25px;
}

.footer-text a{
    transition-duration: 0.4s;
    color: #3f3f3f;
    text-decoration: none;
}

.footer-text a:hover{
    color: #DA291C;
}

.footer-text b{
    font-weight: 600;
}

.menu-bar-social-link-container{
    text-align: right;
}

.footer-social-link-container a{
    color: #4a5556;
    text-decoration: none;
    font-size: 22px;
    margin-right: 6px;
    transition-duration: 0.4s;
}

.footer-social-link-container a:hover{
    color: #DA291C;
}

.footer-disclaimer-text{
    color: #000000;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    margin-top: 20px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 850px){
    .footer{
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-title{
        margin-bottom: 8px;
    }

    .footer-links-container{
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 1800px){
    .footer{
        padding: 3em 6em;
        padding-bottom: 1.2em;
    }

    .footer-title{
        font-size: 0.938em;
    }

    .footer-link{
        font-size: 0.781em;
    }

    .footer-links-container{
        padding-bottom: 2.7em;
    }

    .footer-text{
        line-height: 1.667em;
        font-size: 0.781em;
    }

    .footer-disclaimer-text{
        font-size: 0.625em;
        margin-top: 2em;
    }

    .footer-social-link-container a{
        font-size: 1.146em;
        margin-right: 0.3em;
    }
}

/* accordion */

.accordion-item{
    border: none;
    border-radius: 0px !important;
    border-bottom: 1px solid #000000;
}

.accordion-button{
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 1.4rem;
    color: #6d6d6d !important;
}

.accordion-body{
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.accordion-button:not(.collapsed)::after{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

@media only screen and (max-width: 850px){
    .accordion-button{
        font-size: 18px;
        padding: 12px 0px;
    }
}

/* swiper */

.swiper-slide{
    image-rendering: auto;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* text */

.text-justify{
    text-align: justify;
}

/* modal */

.modal-content{
    border: none;
    border-radius: 0px;
}

.modal ul{
    opacity: 0.6;
    font-size: 17px;
}

.btn-close{
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}