body {
    font-family: "Oswald", sans-serif !important;
    margin: 0 !important;
}

[x-cloak] {
    display: none!important;
}

input,
a,
button {
    font-family: "oswald", sans-serif;
    border-radius: 0;
}

h2 {
    margin-top: 0;
}

#map {
    height: 100vh;

    @media (max-width:1199px) {
        height: 500px;
    }

    @media (max-width:768px) {
        height: 300px;
    }
}

.scroll-to-top {
    position: fixed;
    right: 40px;
    width: 42px;
    height: 42px;
    background: #E62B4A;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    bottom: 40px;
    transition: opacity 0.3s, bottom 0.3s;
}

.scroll-to-top svg {
    height: 20px;
    width: 20px;
    fill: #fff;
}

.scroll-to-top:hover {
    background: #000;
}

.scroll-to-top.show {
    opacity: 1;
    bottom: 60px;
}


.dark-btn {
    background-color: #000;
    color: #fff !important;
    display: inline-block;
    padding: 27px 45px;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    border-right: 4px solid #E62B4A;
    letter-spacing: .6px;
    cursor: pointer;

    background: linear-gradient(to right, #000 50%, #E62B4A 50%) left;
    background-size: 200%;
    transition: 0.3s ease-in-out;

    &:hover {
        background-position: right;
        /* border-right: 4px solid #E62B4A; */
        color: white;
    }

    @media (max-width:575px) {
        padding: 22px 32px;
        font-size: 18px;
        text-align: center;
    }

}

.sec-subtitle {
    font-size: 12px;
    line-height: .8;
    font-weight: 400;
    color: #818181;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.sec-title {
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 0 25px;

    @media (max-width:1023px) {
        font-size: 44px;
    }

    @media (max-width:991px) {
        font-size: 40px;
        max-width: 100%;
    }

    @media (max-width:767px) {
        font-size: 34px;
    }

    @media (max-width:576px) {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 1rem;
    }
}

.sec-desc {
    font-size: 1rem;
    color: #818181;
    line-height: 33px;
    letter-spacing: 0.3px;
    margin-bottom: 34px;
}

/**
****************************************************************
* Swiper js css
****************************************************************
 */
.swiper-button-next:after {
    content: "";
}

.swiper-button-prev:after {
    content: "";
}

.swiper-button-next,
.swiper-button-prev {
    width: 35px;
    height: 35px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 35px;

}

.swiper-button-next {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23FFFFFF" d="M285.476 272.971l-194.343 194.343c-12.497 12.497-32.758 12.497-45.255 0l-22.628-22.628c-12.497-12.497-12.497-32.758 0-45.255l135.514-135.514-135.514-135.514c-12.497-12.497-12.497-32.758 0-45.255l22.628-22.628c12.497-12.497 32.758-12.497 45.255 0l194.343 194.343c12.497 12.497 12.497 32.758 0 45.255z"/></svg>');
    background-size: 12px;
}

.swiper-button-prev {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23FFFFFF" d="M34.524 239.029l194.343-194.343c12.497-12.497 32.758-12.497 45.255 0l22.628 22.628c12.497 12.497 12.497 32.758 0 45.255L161.236 256l135.514 135.514c12.497 12.497 12.497 32.758 0 45.255l-22.628 22.628c-12.497 12.497-32.758 12.497-45.255 0L34.524 272.971c-12.497-12.497-12.497-32.758 0-45.255z"/></svg>');
    background-size: 12px;
    transform: rotate(180deg);
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #000;
    opacity: 1;
    border-radius: 0;
}

.swiper-pagination-bullet {
    background-color: #dbdbdb;
    opacity: 0.5;
    border-radius: 0;
}

.swiper-button-prev:hover,
.swiper-button-prev:hover {
    background-color: #000;
}

/**
****************************************************************
* Header Section
****************************************************************
*/

header {
    background: #fff;
    padding: 10px 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    backface-visibility: visible !important;
    animation-name: flipInX;
    animation-duration: 1s;
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateX(-10deg);
        opacity: 1;
    }

    70% {
        transform: perspective(400px) rotateX(10deg);
    }

    to {
        transform: perspective(400px) rotateX(0deg);
    }
}


#navbarSupportedContent {
    transition: all 0.5s ease-in-out;
}

#primary-menu {
    @media (max-width:991px) {
        background-color: #111111;
        height: 315px;
        justify-content: start !important;
        margin-top: 1rem;
    }
}

header #primary-menu a {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    border-right: 1px solid #f2f2f2;
    padding: 2px 35px 3px;
    line-height: .8;
    text-decoration: none;
    transition: all 0.3s ease-in-out;

    @media (max-width: 991px) {
        color: #f9f9f9;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1rem;
        padding: 0;
        padding: 15px;
        display: block;
    }

    &:hover {
        color: #E62B4A;
    }
}

header ul#primary-menu>li:last-child>a {
    padding-right: 0;
}

.contact-us-btn {
    text-decoration: none;
    background-color: #E62B4A;
    color: #fff !important;
    font-weight: 400;
    padding: 8px 20px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;

    &:hover {
        background-color: #000;
    }
}


/**
****************************************************************
* Footer Section
****************************************************************
*/

.footer-sec {
    border-top: 1px solid #1a1a1a;
    background-color: #000;
    padding: 50px 0px 0px 0;

    @media (max-width:576px) {
        padding: 50px 0px 25px 0;
    }
}

.footer-sec .site-branding {
    margin: 0 0 24px;

}

.footer-sec .row-1 {
    row-gap: 3rem;
}

.footer-sec .address p {
    font-size: 14px;
    letter-spacing: 0.56px;
    color: #aaaaaa;
    margin: 0;
    max-width: 74%;
    margin-bottom: 3rem;
    line-height: 2em;
}

.footer-sec .contacts a {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.56px;
    color: #aaaaaa;
    margin: 0;
    text-decoration: none;
    margin-bottom: 3rem;
}

.footer-sec .contacts svg {
    margin-right: 10px;
    width: 14px;
    height: 14px;
    fill: #aaaaaa;
}

.footer-sec h3.title {
    font-size: 18px;
    letter-spacing: .72px;
    color: #FFF;
    line-height: .8;
    margin: 0 0 43px;
    position: relative;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-sec .social-links a {
    color: #aaaaaa;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.56px;
    display: inline-block;
    margin-right: 10px;
    transition: all 0.4s ease-in;

    &:hover {
        color: #E62B4A;
    }
}

.footer-sec .social-links img {
    width: 14px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.footer-menu-services a {
    color: #aaaaaa;
    font-size: 1rem;
    text-decoration: none;
    line-height: 2em;
    display: inline-block;
}

.footer-sec .partners img {
    max-width: 84px;
}

.footer-sec .partners img.partners {
    max-width: 100%;
}

.footer-sec .copyright {
    border-top: 1px solid #1a1a1a;
    font-size: 14px;
    line-height: .8;
    color: #aaaaaa;
    padding: 16px 0;
}

.site-footer .footer-contact-us {
    display: none;
    overflow: hidden;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10;
    background-color: #E62B4A;

    @media (max-width: 576px) {
        display: block;
    }
}

.footer-contact-us .contact-us-btn {
    width: 100%;
    text-align: center;
    border: none;
    padding: 1rem 10px;
    position: relative;
}

.contact-us-float-icon {
    overflow: hidden;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 175px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
    z-index: 10;

    background-color: #E62B4A;

    button {
        background-color: #E62B4A;
        border: none !important;
        outline: none;

        &:hover {
            outline: none;
            border: none;
        }
    }

    span {
        color: #fff;
        padding-left: 15px;
        text-transform: uppercase;
    }
}

.contact-us-float-icon svg {
    width: 30px;
    height: 30px;
}


/**
********************************
* 404 Page not Found
********************************
  */
.error-404-not-found .banner {
    background-color: #000;
    width: 100%;
    padding: 195px 0 195px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.error-404-not-found .banner_content h4 {
    color: #fff;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0 0 12px;
    font-weight: 400;
}

.error-404-not-found .banner_content h4 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.5s ease-in-out;

    &:hover {
        color: #d7d2d2;
    }
}

.error-404-not-found .banner_content h2 {
    font-size: 70px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2.8px;
    margin: 0;
    color: #FFF;
    text-transform: uppercase;

    @media (max-width:768px) {
        font-size: 36px;
    }
}

.page-content .content-wrapp {
    padding: 200px 0;
    gap: 50px;
    width: 100%;

    @media (max-width: 768px) {
        padding: 50px 10px;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
}

.page-content .title {
    font-size: 250px;
    color: #E62B4A;
    margin: 0;
    line-height: 0.8em;

    @media (max-width: 991px) {
        font-size: 150px;
        margin: auto;
        ;
    }

    @media (max-width: 600px) {
        font-size: 50px;
        margin: auto;
        ;
    }

}

.page-content .error-details h2 {
    font-size: 30px;
    font-weight: 700;

}

.page-content .error-details p {
    color: #818181;
    margin: 0;
    padding: 0;
    letter-spacing: 0.6px;

    @media (max-width: 767px) {
        text-align: center;
    }
}

/**
****************************************************************
* audit report
****************************************************************
*/
.site-footer .audit-report {
    background-color: #000;
    padding: 55px 0px;
}

.site-footer .audit-report h2 {
    color: #fff;
    text-align: center;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 3rem;
}

.site-footer .audit-report input {
    height: px;
    width: 100%;
    outline: 0;
    border: 0;
    font-size: 22px;
    display: block;
    padding: 5px 20px;
    border-radius: 0;

    @media (max-width:575px) {
        height: 65px;
        padding: 5px 1rem;
        font-size: 18px;
    }
}

.site-footer .audit-report .row {
    row-gap: 15px;

    @media (max-width:575px) {
        column-gap: 0px;
    }
}

.site-footer .audit-report .dark-btn {
    color: #fff !important;
    background: #E62B4A;
    width: 100%;
    height: 140px;
    text-transform: uppercase;

    background: linear-gradient(to right, #E62B4A 50%, #000 50%) left;
    background-size: 200%;
    border: none;

    @media (max-width:575px) {
        height: 65px;
        font-size: 100%;
        padding: 0px 8px;
        line-height: 20px;
    }

    &:hover {
        background-position: right;
        /* border-right: 4px solid #000; */
        color: white !important;
    }
}

/* 
****************************************************************
Contact us Form
****************************************************************
*/

.contact-us-form .row {
    row-gap: 30px;
}

.contact-us-form .input-fields input,
.contact-us-form .input-fields textarea {
    width: 100%;
    height: 70px;
    background: #f4f4f4;
    border: none;
    padding: 0 30px;
    font-size: 14px;
    letter-spacing: 0.56px;
    line-height: 70px;
    color: #818181;
    outline: none;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.contact-us-form .input-fields textarea {
    height: 120px;
    resize: none;
    line-height: 30px;
    padding: 21px 30px;
    font-family: 'Oswald' !important;
}

.contact-us-form .input-fields input[type="submit"] {
    border: none;
    font-size: 16px;
    font-weight: 400;
    background: #000000;
    color: #fff;
    height: 70px;
    width: auto;
    text-transform: uppercase;
    text-align: center;
    padding: 28px 45.5px;
    display: inline-block;
    line-height: .8;
    letter-spacing: 1.6px;
    position: relative;
    outline: none;
}

.contact-us-form .input-fields input[type="submit"]:hover {
    background: #e62b4a;
    color: #fff;
}

.contact-us-form .input-fields input[type="text"]:focus,
.contact-us-form .input-fields input[type="email"]:focus,
.contact-us-form .input-fields textarea:focus {
    -webkit-box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.05);
    border-right: 4px solid #e62b4a;
    background: #fff;
}