:root {
    --title-font: 'RobotoFlex';
    --text-font: 'Mulish';
    --primary-color: #EE2724;
}
@keyframes arryUpDown {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}
@keyframes floatBob {
    0% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
        transform: translateY(10px) translateX(10px) rotate(5deg);
    }
    100% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}
@keyframes bobble {
    0% {
        -webkit-transform: translateY(0) scale(0.9);
        transform: translateY(0) scale(0.9);
    }
    100% {
        -webkit-transform: translateY(-20px) scale(1);
        transform: translateY(-20px) scale(1);
    }
}
@keyframes spinner {
    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}
@font-face {
    font-family: 'RobotoFlex';
    src: url(../fonts/RobotoFlex.ttf);
}
@font-face {
    font-family: 'Mulish';
    src: url(../fonts/Mulish.ttf);
}
body {
    font-family: var(--text-font);
    font-size: 16px;
    color: #222;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    margin-bottom: 0;
}
a,
a:hover,
a:focus {
    text-decoration: none;
}
a:hover{
    color: var(--primary-color);
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
p {
    margin-bottom: 15px;
}
input:focus,
.form-control:focus {
    box-shadow: none;
    outline: none;
}
img {
    max-width: 100%;
    height: auto;
}
.overlay::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.4);
    z-index: 1;
}
.bg-overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.4);
    display: none;
    z-index: 9998;
}
.decoration-bottom::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 74px;
    z-index: 2;
    background: url(../img/section-shape-bottom.png) no-repeat center bottom;
    background-size: cover;
}
.decoration-top::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    z-index: 2;
    background: url(../img/section-shape-top.png) no-repeat center bottom;
    background-size: cover;
}
.gray-bg{
    background: #f0f0f0;
}
.w-fit-content{
    width: fit-content;
}
.button{
    display: inline-block;
    font-weight: 600;
    color: #fff;
    padding: 16px 30px;
    border-radius: 30px;
    line-height: 1;
    transition: 0.5s all ease-in-out;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    position: relative;
    z-index: 2;
}
.button .icon{
    display: inline-flex;
    padding: 0 4px;
}
.button .icon svg{
    display: inline-flex;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}
.button .icon svg.icon-2{
    position: absolute;
    transform: translateX(-150%);
}
.button:hover{
    background: #222;
    color: #fff;
    border: 1px solid transparent;
}
.button:hover .icon svg.icon-1{
    transform: translateX(150%);
}
.button:hover .icon svg.icon-2{
    transform: translateX(0%);
}
.section-header h4.subtitle{
    font-size: 20px;
    font-weight: 300;
}
h4.subtitle img{
    width: 34px;
}
.section-header h2.title{
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
}
.parallax-zoom{
    overflow: hidden;
}
.menu-mobile .social{
    padding: 0 15px;
}
ul.social a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    transition: all .3s ease-in-out;
}
ul.social a:hover{
    background: #222;
    transform: scale(1.1);
}
#preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}
#preloader .animation-preloader {
    z-index: 1000;
}
#preloader.loaded .animation-preloader {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}
#preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(51, 51, 51, 0.5);
    border-top-color: var(--primary-color);
    width: 120px;
    height: 120px;
    margin: 30px auto;
}
#preloader p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--primary-color);
}
#preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}
#preloader .loader .loader-section {
    padding: 0px;
}
#preloader .loader .loader-section .bg {
    background-color: #fff;
    height: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
#preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}
#preloader .loader .row {
    height: 100%;
}
/* HEADER */
header{
    padding: 0 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    transition: all .3s ease-in-out;
    z-index: 4;
}
header.fixed{
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.0509803922);
}
header.logo{
    width: 100%;
    transition: all .3s ease-in-out;
}
header .nav-item{
    padding: 0 40px;
}
.nav-link{
    padding: 0;
    font-size: 14px;
    color: #222;
    font-family: var(--title-font);
    transition: all .3s ease-in-out;
}
.nav-link:focus, .nav-link:hover{
    color: var(--primary-color);
}
.lang{
    font-size: 14px;
}
.lang img{
    width: 30px;
}
.lang-popup{
    position: absolute;
    top: 100%;
    min-width: 160px;
    right: 0;
    border-radius: 6px;
    margin-top: 5px;
    overflow: hidden;
    background: #fff;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.lang-popup .popup-item{
    transition: all .3s ease-in-out;
}
.lang-popup .popup-item:hover{
    background: rgba(238,39,36,.4);
}
.mobile-menu-btn{
    color: #fff;
    transition: all .3s ease-in-out;
}
.fixed .mobile-menu-btn{
    color: #222;
}
.mobile-menu-btn:hover{
    color: var(--primary-color);
}
[data-lucide="x"]{
    width: 40px;
    height: 40px;
}
.menu-mobile{
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 520px;
    background: #fff;
    transform: translateX(100%);
    transition: all .3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    z-index: 99999;
}
.menu-mobile.opened{
    transform: translateX(0);
}
.menu-mobile-header{
    padding: 15px;
}
.close-menu-mobile{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
}
[data-lucide="x"]{
    width: 30px;
    height: 30px;
}
.menu-mobile-body .nav-link{
    color: #222;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-top: 1px solid #dee2e6;
}
.menu-mobile-body .nav-link:hover{
    color: var(--primary-color);
    background: #eee;
}
/* MAIN */
.section{
    padding: 80px 0;
}
.banner-section{
    height: 100vh;
}
.banner-section .button{
    margin: 0 auto;
}
.banner-content{
    height: 100%;
}
.banner-content-image{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.banner-content-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-content-txt{
    height: 100%;
    color: #fff;
    z-index: 2;
}
.banner-content-txt .title{
    font-weight: 600;
    font-size: 60px;
    line-height: 75px;
}
.banner-content-txt p{
    font-size: 24px;
}
.banner-shape1{
    top: 30px;
    right: 0;
    z-index: 3;
}
.banner-shape1 img{
    animation: arryUpDown 2s ease infinite alternate;
}
.banner-shape2{
    top: 90px;
    left: 65px;
    z-index: 2;
}
.banner-shape2 img{
    animation: floatBob 5s ease-in-out infinite;
}
.about-section .image-box{
    z-index: 1;
    max-width: 578px;
}
.about-section .image-box .image1{
    aspect-ratio: 0.96/1;
    object-fit: cover;
    border-radius: 80px;
}
.about-section .image-box .image2{
    position: absolute;
    bottom: -50px;
    right: -160px;
    border-radius: 50%;
    width: 260px;
    height: 260px;
    object-fit: cover;
}
.about-section .shape1{
    top: 0;
    left: 0;
    z-index: -1;
}
.about-section .shape1 img{
    animation: arryUpDown 2s ease infinite alternate;
}
.about-section .shape2{
    bottom: 50px;
    right: 30px;
    z-index: -1;
}
.about-section .shape2 img{
   animation: floatBob 4s linear infinite; 
}
#about h3{
    line-height: 50px;
    font-weight: 600;
}
.service-item .service-image {
    position: relative;
    aspect-ratio: 2.5/1;
    z-index: 1;
}
.service-item .service-image img{
    width: 100%;
    object-fit: cover;
}
.service-item .service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 26, 29, 0.6);
    z-index: 1;
}
.service-item .service-content{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 26px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    font-weight: 400;
    color: #fff;
    text-align: center;
    max-width: 1200px;
    z-index: 1;
}
.service-item .service-content h3.title{
    font-size: 60px;
    line-height: 90px;
    margin-bottom: 30px;
}
.service-item .service-content h3.title a{
    color: #fff;
    transition: all .3s ease-in-out;
}
.service-item .service-content h3.title:hover a{
    color: var(--primary-color);
}
.customer-content h3{
    font-size: 22px;
    line-height: 35px;
    font-weight: 500;
    margin-bottom: 10px;
}
.customer-item{
    padding: 20px;
    padding-bottom: 40px;
    background: #fff;
    border-radius: 30px;
    height: 100%;
}
.customer-image .image{
    mask-image: url(../img/customer-image-masking.png);
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: top right;
    aspect-ratio: 16/9;
    border-radius: 30px;
}
.customer-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}
.customer-item:hover .customer-image img{
    transform: scale(1.1);
}
.customer-content{
    margin-top: 20px;
}
.customer-icon{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 5px solid #f5f2ec;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
}
.customer-icon img{
    width: 35px;
    height: 35px;
    transition: 0.9s;
}
.customer-item:hover .customer-icon{
    background: #222;
}
.customer-item:hover .customer-icon img{
    transform: rotateY(360deg);
}
.contact-section-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.contact-section ul li{
    margin-bottom: 15px;
}
.contact-content{
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 80px;
    background: #222;
    color: #fff;
    z-index: 1;
}
.contact-content::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../img/contact-image2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .1;
    z-index: 1;
}
.contact-content .shape{
    bottom: 0;
    right: 0;
    z-index: 2;
}
.contact-content .shape img{
    max-width: 300px;
    animation: bobble 3s ease-in-out infinite alternate;
}
.contact-content a{
    color: rgba(255,255,255,.8);
    transition: all .3s ease-in-out;
}
.contact-content a:hover{
    color: var(--primary-color);
    letter-spacing: 1px;
}
.contact-content span{
    color: rgba(255,255,255,.8);
}
.contact-content .section-header,.contact-content ul{
    z-index: 3;
}
.contact-image{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.contact-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-choose-us-section ul li{
    margin-bottom: 10px;
}
.why-choose-us-section li svg{
    width: 25px;
}
.why-choose-us-section li p{
    width: calc(100% - 41px);
}
.why-choose-us-section .image-box{
    border-radius: 30px;
}
.why-choose-us-section .image-box .image img{
    width: 100%;
}
/* FOOTER */
footer{
    padding-top: 30px;
    background: #58585A;
}
.footer-widget{
    margin-bottom: 30px;
}
footer .map iframe{
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.footer-title{
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}
.footer-widget ul li{
    margin-bottom: 10px;
    color: #fff;
}
.footer-widget ul li a{
    color: rgba(255,255,255,.8);
    transition: all .3s ease-in-out;
}
.footer-widget ul li a:hover{
    color: var(--primary-color);
    letter-spacing: 1px;
}
footer p{
    color: #fff;
}
.footer-bottom{
    padding: 10px 0;
}
footer hr{
    margin: 0;
    color: #fff;
}
/* Responsive */
@media only screen and (max-width: 1400.98px){
    header .nav-item {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 1199.98px){
    header{
        padding: 0 15px;
    }
    .about-section .image-box{
        margin-bottom: 60px;
    }
    .service-item .service-content h3.title{
        font-size: 42px;
        line-height: 60px;
        font-size: 24px;
        line-height: 40px;
    }
    .contact-content{
        padding: 40px;
    }
    .about-section .image-box .image2{
        width: 200px;
        height: 200px;
        right: -80px;
    }
    .service-item .service-content{
        max-width: 100%;
        font-size: 18px;
        padding: 0 15px;
    }
    .banner-content-txt .title{
        font-size: 42px;
        line-height: 60px;
    }
}
@media only screen and (max-width: 991.98px) {
    .container {
        max-width: 100%;
    }
    .section{
        padding: 40px 0;
    }
    .about-section .image-box .image1{
        border-radius: 20px;
    }
    .service-item .service-content h3.title{
        font-size: 24px;
        line-height: 40px;
    }
    .service-item .service-image{
        aspect-ratio: unset;
    }
    .service-item .service-image img{
        height: 400px;
    }
    .service-item .service-content{
        font-size: 16px;
    }
    .contact-section-grid{
        grid-template-columns: repeat(1,1fr);
    }
    .contact-image{
        aspect-ratio: 16/9;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0;
    }
    .contact-content{
        border-top-right-radius: 0;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    #preloader .animation-preloader .spinner{
        width: 60px;
        height: 60px;
        margin: 10px auto;
    }
    #preloader p {
        font-size: 14px;
        margin-top: 10px;
    }
    .why-choose-us-section .image-box{
        margin-top: 30px;
    }
    .banner-content-txt p{
        font-size: 18px;
    }
}
@media only screen and (max-width: 767.98px) {
    body{
        font-size: 14px;
    }
    .customer-content h3{
        font-size: 20px;
        line-height: 30px;
    }
    .button{
        padding: 6px 16px;
    }
    .menu-mobile{
        width: 380px;
    }
    .close-menu-mobile{
        width: 40px;
        height: 40px;
    }
    .banner-content-txt .title {
        font-size: 34px;
        line-height: 50px;
    }
    .about-section .image-box .image2{
        right: 15px;
        bottom: 15px;
    }
    .about-section .image-box{
        margin-bottom: 30px;
    }
    .contact-content{
        padding: 20px;
    }
}
@media only screen and (max-width: 575.98px){
    .section-header h2.title{
        font-size: 26px;
        line-height: 35px;
    }
    .section{
        padding: 20px 0;
    }
    .menu-mobile{
        width: 100%;
    }
    .banner-content-txt .title {
        font-size: 26px;
        line-height: 35px;
    }
    .subtitle{
        font-size: 18px;
    }
    .about-section .image-box .image2{
        width: 120px;
        height: 120px;
    }
}
@media only screen and (max-width: 480px){
    .banner-content-txt .title {
        font-size: 16px;
        line-height: 25px;
    }
}