@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    box-sizing: border-box;
    padding:0;
    margin: 0;
    list-style: none;
}

*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    text-decoration: none;
}

body{
    font-family: "Inter", sans-serif;
    height: 100%;
}


header{
    position: fixed;
    left:0;
    top:0;
    width:100%;
    background: #fff;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 25%);
    z-index: 9999;
}

header .col-md-12{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

header .logo{
    max-width: 158px;
    width: 100%;
}

header ul{
    display: flex;
    gap: 70px;
}

header ul li a{
    color: #262626;
    transition: 0.3s;
}

header ul li a:hover{
    color: #7BC1A1;
    transition: 0.3s;
}

header .btn{
    background: #7BC1A1;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    color: #fff;
    padding: 13px 13px;
}

.hero{
    padding: 138px 0 60px;
    background: url('../img/hero.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
}

.hero .container{
    position: relative;
    z-index: 9;
}

.hero:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 61, 61, 0.4);
}

.hero span{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1{
    color: #fff;
    font-size: 39px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 25px;
}

.hero p{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 25px;
}

.hero .buttons{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero .buttons a:nth-child(1){
    background: #7BC1A1;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    padding: 17px 20px;
    border: 1px solid #7BC1A1;
}

.hero .buttons a:nth-child(2){
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    padding: 17px 20px;
    border: 1px solid #7BC1A1;
}

.hero .time{
    color: #fff;
    margin-left: 20px;
}

.hero .time li{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    list-style-type: disc;
}

.hero .you-get{
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(17px);
    border-radius: 4px;
    padding: 30px 30px 100px 30px;
    position: relative;
}

.hero .you-get h2{
    font-weight: 700;
    font-size: 22px;
    color: #262626;
    margin-bottom: 32px;
}

.hero .you-get .new-client{
    border: 1px solid #B9B9B9;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 400;
    color: #262626;
    background: rgb(255 255 255 / 50%);
    border-radius: 105px;
    position: absolute;
    right: 30px;
    top: 23px;
}

.hero .you-get ul{
    margin-left: 20px;
    color: #262626;
}

.hero .you-get ul li{
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    list-style-type: disc;
}

.hero .you-get img{
    position: absolute;
    right: -10px;
    bottom: -45px;
    transform: rotate(-25deg);
}

.title{
    margin-bottom: 60px;
}

.title h2{
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #7BC1A1;
}

.title p{
    font-size: 20px;
    font-weight: 500;
    color: #262626;
    line-height: 25px;
    max-width: 590px;
}

.steps{
    padding:90px 0 45px;
}

.steps-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.steps-item{
    background: #F0F3F2;
    backdrop-filter: blur(17px);
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.steps-item:hover{
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.steps-item span{
    width: 37px;
    height: 37px;
    border: 1px solid #B9B9B9;
    background: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 14px;
    color: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    margin-bottom: 50px;
}

.steps-item h3{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #262626;
}

.steps-item p{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #262626;
}

.services{
    padding: 45px 0;
}

.services-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.services-item{
    transition: all 0.3s ease;
}

.services-item:hover{
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.services-item img{
    width: 100%;
}

.service-item-content{
    padding: 20px;
    border-top: 2px solid #fff;
    background: #F0F3F2;
    backdrop-filter: blur(17px);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-item h3{
    font-size: 18px;
    font-weight: 700;
    color: #262626;
}

.services-item p{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #262626;
}

.services-item a{
    background: #7BC1A1;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    padding: 17px 0px;
    border: 1px solid #7BC1A1;
    max-width: 143px;
    transition: 0.3s;
}

.services-item a:hover{
    background: transparent;
    color: #7BC1A1;
}

.reviews{
    padding: 45px 0 90px;
}

.owl-nav{
    position: absolute;
    top: -98px;
    right: 0;
}

.owl-nav img{
    width:37px;
    margin-left: 15px;
}

.reviews video{
    max-width: 300px;
    display: block;
    margin:0 auto;
}


.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  width: 64px;
}

.custom-play-btn img {
  width: 100%;
  height: auto;
}

.choose{
    padding:90px 0;
    background: url('../img/choose-bg.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.choose .title{
    text-align: center;
}

.choose-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.choose-item{
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.choose-item:hover{
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.choose-item img{
    width: 40px;
    margin-bottom: 30px;
}

.choose-item h3{
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: #262626;
    margin-bottom: 20px;
}

.choose-item p{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #262626;
    margin-bottom: 20px;
}

.contacts{
    padding:90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contacts .title{
    margin-bottom: 40px;
}

.contacts p{
    max-width: 590px;
    font-size: 20px;
    font-weight: 500;
    color: #262626;
    display: block;
    margin: 0 auto;
}

.contacts a{
    background: #7BC1A1;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    padding: 17px 0px;
    border: 1px solid #7BC1A1;
    max-width: 200px;
    gap: 10px;
    margin: 40px auto 0;
}

.contacts .big-img{
    position: absolute;
    right: -30px;
    bottom: 0;
    height: 100%;
}

footer{
    border-top: 1px solid #262626;
    padding: 40px 0;
}

footer img{
    max-width: 158px;
    margin-bottom: 20px;
}

footer p{
    font-size: 14px;
    font-weight: 400;
    color: #646464;
    max-width: 560px;
    line-height: 20px;
}

footer ul{
    float: right;
}

footer ul li{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

footer ul li:last-child{
    margin-bottom: 0;
}

footer ul li a{
    color: #262626;
    transition: 0.3s;
}

footer ul li a:hover{
    color: #7BC1A1;
    transition: 0.3s;
}

.hello{
    padding: 140px 0 80px;
}

.car-box{
    position: relative;
    margin:0 auto;
    display: block;
    text-align: center;
}

.car-box img{
    width: 100%;
    max-width: 550px;
}

.car-box .vector{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.car-content{
    text-align: center;
}

.car-content h2{
    font-size: 33px;
    color: #7BC1A1;
    font-weight: 700;
    margin-bottom: 35px;
}

.car-content h3{
    font-size: 30px;
    color: #262626;
    font-weight: 400;
    margin-bottom: 25px;
}

.car-content .lang{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.car-content .lang li{
    border: 1px solid #7BC1A1;
    border-radius: 4px;
    transition: 0.3s;
}

.car-content .lang li:hover{
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.car-content .lang li a{
    font-size: 14px;
    font-weight: 500;
    color: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 11px;
}

.hello-page-header{
    box-shadow: 0px 0px 105px 0px rgb(0 0 0 / 48%);
}

.container{
    width:100%;
    margin:0 auto;
}

.row{
    display: inline-block;
    width:100%;
}

.row-flex{
    display: flex;
}

.col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-12{
    padding:0 15px;
    float: left;
}

.col-md-1 {
    width: 8.33%;
}

.col-md-2 {
    width: 16.67%;
}

.col-md-3 {
    width: 25%;
}

.col-md-4 {
    width: 33.33%;
}

.col-md-5 {
    width: 41.67%;
}

.col-md-6 {
    width: 50%;
}

.col-md-7 {
    width: 58.33%;
}

.col-md-8 {
    width: 66.67%;
}

.col-md-9 {
    width: 75%;
}

.col-md-10 {
    width: 83.33%;
}

.col-md-11 {
    width: 91.67%;
}

.col-md-12 {
    width: 100%;
}

@media(max-width:1400px){
   .contacts .big-img{height: 80%;} 
}

@media(max-width:1200px){
    header ul{gap:25px;}
    .hero h1{font-size: 32px;}
    .steps-container{grid-template-columns: repeat(2, 1fr);}
    .services-container{grid-template-columns: repeat(3, 1fr);}
    .choose-container{grid-template-columns: repeat(2, 1fr);}
    .contacts .big-img{height: 60%;}
}

@media(max-width:991px){
    header ul{display: none;}
    header .logo {max-width: 130px;}
    header .btn{font-size: 12px;padding: 12px 13px;}
    .hero .col-md-6{width:100%;}
    .hero span{font-size: 18px;margin-bottom: 15px;}
    .hero h1{font-size: 28px;margin-bottom: 20px;}
    .hero p{font-size: 14px;line-height: 19px;}
    .hero .buttons{justify-content: space-around;}
    .hero .buttons a{font-size: 12px!important;padding: 15px 20px!important;}
    .hero .time li {font-size: 14px;line-height: 20px;}
    .hero .you-get{margin-top: 20px;padding: 20px 8px 100px 8px;}
    .hero .you-get h2{font-size: 18px;margin-bottom: 15px;}
    .hero .you-get .new-client{padding: 10px 15px;font-size: 10px;right: 8px;top: 16px;}
    .hero .you-get ul li{font-size: 13px;}
    .hero .you-get img{bottom: -10px;width: 180px;right: 2px;}
    .hero{padding: 138px 0 40px;}
    .title {margin-bottom: 40px;}
    .title h2{font-size: 23px;margin-bottom: 20px;}
    .title p{font-size: 16px;line-height: 22px;}
    .steps {padding: 50px 0 25px;}
    .steps-item{padding: 10px 10px;}
    .steps-item span{width:33px;height:33px;font-size: 12px;margin-bottom: 20px;}
    .steps-item h3{font-size: 14px;margin-bottom: 16px;}
    .steps-item p{font-size: 11px;line-height: 16px;}
    .steps-container {gap: 10px;}
    .services {padding: 25px 0;}
    .services-item p{display: none;}
    .services-item h3{font-size: 16px;margin-bottom: 20px;}
    .services-container{grid-template-columns: repeat(2, 1fr);}
    .services-item a{padding: 15px 0px;max-width: 140px;}
    .choose{padding:50px 0;}
    .choose-item img{margin-bottom: 20px;}
    .contacts{padding:50px 0 0;}
    .contacts p{font-size: 14px;line-height: 23px;}
    .contacts a{margin: 25px auto 0;padding: 15px 0px;}
    .contacts .big-img {position: relative;right: 0;bottom: -10px;height: auto;max-width: 220px;width: 100%;margin-top: 30px;}
    footer .col-md-6{width:100%;text-align: center;}
    footer ul {float: none;}
    footer .row{display: flex;flex-direction: column;gap: 40px;}
    footer .footer-logo{order:1;}
    footer p{max-width: 100%;}
    .reviews .col-md-12{padding:0;}
    .owl-item{opacity: 0.5;}
    .owl-item.active{opacity: 1;}
    .reviews .title h2{padding:0 15px;}
    .car-content h2{font-size: 23px;margin-top: 25px;}
    .car-content h3{font-size: 20px;}
}

@media(max-width:767px){
    .owl-nav{display: none;}
    .choose-container{grid-template-columns: repeat(1, 1fr);gap: 10px;}
}

@media(max-width:560px){
    .services-container{grid-template-columns: repeat(1, 1fr);}
}

@media(max-width:400px){
    .hero .buttons a{padding: 15px 10px!important;}
}

@media(max-width:360px){
    header .btn{padding: 12px 5px;gap:5px;}
    header .btn img{width:14px;}
    .lang img{width: 35px;}
}


@media(min-width:576px){
    .container{
        max-width: 540px;
    }
}

@media(min-width:768px){
    .container{
        max-width: 720px;
    }
}

@media(min-width:992px){
    .container{
        max-width: 960px;
    }
}

@media(min-width:1200px){
    .container{
        max-width: 1140px;
    }
}

@media(min-width:1400px){
    .container{
        max-width: 1320px;
    }
}

@media(min-width:1550px){
    .container{
        max-width: 1450px;
    }
}

@media(min-width:1700px){
    .container{
        max-width: 1600px;
    }
}
