@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%;
}

.top-line{
    background: #272727;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    color: #B5B5B5;
    text-align: center;
}

.bottom-header{
    height: 79px;
}

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: 172px;
    width: 100%;
    margin-top: -15px;
}

header ul{
    display: flex;
    gap: 70px;
    margin-top: -15px;
}

header ul li a{
    color: #272727;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

header ul li a:before{
    position: absolute;
    content:'';
    left:0;
    bottom: -8px;
    height:2px;
    width:0%;
    background: #FCB222;
    transition: 0.3s;
    will-change: transform;
    opacity: 0;
}

header ul li a:hover{
    color: #FCB222;
    transition: 0.3s;
    text-shadow: 0px 0px 0px #FCB222;
}

header ul li a:hover:before{
    opacity: 1;
    width:50%;
}

header .btn{
    background: #FCB222;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    padding: 0px 12px;
    height: 79px;
    margin-top: -15px;
}

header .btn img{
    width: 22px;
}

header .btn span{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 12px;
}

header .btn span:before{
    content:'';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero{
    padding: 209px 0 100px;
    background: url('../img/hero.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero .container{
    position: relative;
    z-index: 9;
}

.hero:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 30, 22, 0.8);
}

.hero-content{
    max-width: 870px;
    text-align: center;
    margin:0 auto;
    display: block;
}

.hero h1{
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 30px;
}

.hero h1 span{
    color: #74CC05;
}

.hero p{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 40px;
}

.hero .buttons{
    text-align: center;
}

.hero .buttons a{
    background: #fcb222;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    padding: 18px 23px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    max-width: 205px;
    margin:0 auto;
}

.hero .buttons a img{
    width:22px;
}


.about{
    padding:90px 0;
}

.about h2{
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #131313;
}

.about li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

.about-img{
    width: 100%;
}

.about a{
    font-size: 16px;
    font-weight: 600;
    background: #FCB222;
    color: #fff;
    padding: 20px 30px;
    display: inline-block;
    margin-top: 30px;
    border-radius: 60px;
}

.count-container{
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.count-container h3{
    font-size: 40px;
    font-weight: 700;
    color: #74CC05;
    margin-bottom: 20px;
}

.count-container span{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.steps{
    padding: 90px 0;
}

.steps h2{
    color: #131313;
    text-align: center;
    margin-bottom: 50px;
    font-size: 38px;
    font-weight: 800;
}


.steps-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.steps-item{
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.steps-item:hover{
    transform: translateY(-5px);
    transition: all 0.3s ease;
}


.steps-item img{
    width: 100%;
    max-width: 150px;
    margin-bottom: 20px;
}

.img-step{
    position: relative;
}

.steps-item .next-top{
    position: absolute;
    right: -79px;
    top: -35px;
    width: auto;
    max-width: 100%;
    margin-bottom: 0;
}

.steps-item .next-bottom{
    position: absolute;
    right: -82px;
    bottom: -5px;
    width: auto;
    max-width: 100%;
    margin-bottom: 0;
}

.steps-item h3{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #74CC05;
}

.steps-item p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #131313;
}

.services{
    padding: 90px 0;
    background: #221E16;
}

.services h2{
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 38px;
    font-weight: 800;
}

.services-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.services-item{
    transition: all 0.3s ease;
    background: #433C2B;
    padding: 10px 10px 20px 10px;
}

.services-item:hover{
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.services-item img{
    width: 100%;
    background: #f7f7f7;
    height: 150px;
    object-fit: cover;
    object-position: center;
}

.service-item-content{
    padding: 20px 15px;
    background: #fff;
    /*display: flex;
    flex-direction: column;
    justify-content: space-between;*/
}

.services-item h3{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0;
}

.services-item p{
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #fff;
    margin-bottom: 20px;
    height: 88px;
}

.services-item p strong{
    font-weight: 700;
}

.services-item a{
    background: #fcb222;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 15px 0px;
    max-width: 100%;
    transition: 0.3s;
    border: 1px solid #fcb222;
}

.services-item a:hover{
    background: transparent;
    color: #fcb222;
    border: 1px solid #fcb222;
}

.text-reviews h2{
    color: #131313;
    text-align: left;
    margin-bottom: 50px;
    font-size: 38px;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
}

.text-reviews h2:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 78px;
    height: 2px;
    background: #74CC05;
    will-change: transform;
}

.owl-dots{
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.owl-dots button span{
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #EBEBEB;
    border-radius: 50px;
    box-shadow: 0px 0px 0px 6px #EBEBEB;
}

.owl-dots button.active span{
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #FCB222;
    border-radius: 50px;
    box-shadow: 0px 0px 0px 6px #EBEBEB;
}

.text-reviews .content-rev-item{
    background: #F6F6F6;
    padding: 15px
}

.text-reviews .avatar{
    width: 60px!important;
    height: 60px;
    border-radius: 100px;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 9;
}


.text-reviews .quote{
    width:37px!important;
    position: absolute;
    right: 15px;
    top: 15px;
}

.img-rev{
    display: flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid #DFDFDF;
    box-shadow: 0px 1px 0px 0px #FFFFFF;
}

.img-rev:before{
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    left: 0px;
    top: 0px;
    background: #f6f6f6;
}

.content-rev-item p{
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #515151;
    margin-top: 22px;
}

.nav-text-rev{
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-text-rev img{
    cursor: pointer;
}

.video-reviews{
    padding: 60px 0 90px;
}


.video-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;
}

.video-reviews .owl-dots{
    display: none;
}

.contacts{
    padding: 90px 0;
    background: #FAFAFA;
    text-align: center;
    position: relative;
    border-top: 1px dashed #DFDFDF;
    border-image: repeating-linear-gradient(to right, #DFDFDF 0px, #DFDFDF 20px, transparent 20px, transparent 40px) 100% 1;
    border-image-slice: 1;
}


.contacts p{
    max-width: 590px;
    font-size: 20px;
    font-weight: 600;
    color: #131313;
    display: block;
    margin-bottom: 44px;
    line-height: 23px;
    position: relative;
    z-index: 99;
    text-align: left;
}

.contacts strong{
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #131313;
    text-align: left;
}

.contacts a{
    background: #FCB222;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    color: #fff;
    padding: 23px 23px;
    border-radius: 100px;
    max-width: 280px;
    margin-top: 35px;
    gap: 10px;
    position: relative;
    z-index: 99;
}

.contacts .big-img{
    position: absolute;
    right: 100px;
    bottom: 0;
    height: 90%;
}

.contacts h2 {
    color: #131313;
    text-align: left;
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 800;
    max-width: 500px;
}

.contacts h2 span{
    color: #74CC05;
}

.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%;} 
   .services-item h3{}
   .services-item p{height: 110px;}
   .steps-item .next-top{right: -64px;}
}

@media(max-width:1200px){
    header ul{gap:25px;}
    .hero h1{font-size: 32px;}
    .steps-container{grid-template-columns: repeat(4, 1fr);}
    .steps-item .next-bottom{right:-76px;}
    .steps-item .next-top {right: -54px;}
    .services-container{grid-template-columns: repeat(3, 1fr);}
    .choose-container{grid-template-columns: repeat(2, 1fr);}
    .contacts .big-img{height: 80%;}
    .services-item p{height: 110px;}
}

@media(max-width:991px){
    .top-line{padding: 9px 15px;font-size: 14px;}
    header .btn{height: 51px;}
    .bottom-header {height: 51px;}
    header .col-md-12{padding:15px 0;}
    header ul{display: none;}
    header .logo {max-width: 130px;margin-left: 15px;}
    header .btn span:before{display: none;}
    header .btn{font-size: 12px;padding: 12px 13px;width: 50%;}
    .hero .col-md-6{width:100%;}
    .hero h1{font-size: 23px;margin-bottom: 25px;}
    .hero p{font-size: 12px;line-height: 21px;}
    .hero .buttons{justify-content: space-around;}
    .hero .buttons a{font-size: 15px!important;padding: 15px 20px!important;}
    .hero{padding: 145px 0 60px;}
    .about .col-md-6{width:100%;}
    .about-img{display: none;}
    .about {padding: 45px 0;}
    .about h2{text-align: center;font-size: 28px;font-weight: 800;margin-bottom: 30px;}
    .about li{margin-bottom: 15px;font-size: 14px;}
    .about a{max-width: 246px;margin: 30px auto 0;font-size: 16px;display: block;}
    .count-container{margin-top: 45px;}
    .count-container{grid-template-columns: repeat(2, 1fr);gap:30px;}
    .count-container h3{margin-bottom: 10px;font-size: 38px;}
    .count-container span {font-size: 14px;font-weight: 400;line-height: 21px;max-width: 250px;display: inline-block;}
    .steps-container{grid-template-columns: repeat(1, 1fr);}
    .next-top, .next-bottom{display: none;}
    .steps {padding: 45px 0;}
    .steps h2 {margin-bottom: 30px;font-size: 30px;}
    .steps-item img{max-width: 100px;}
    .steps-item{padding: 10px 10px 25px;}
    .steps-item h3{font-size: 16px;margin-bottom: 16px;text-align: center;}
    .steps-item h3 span{display: block;text-align: center;margin-bottom: 1px;}
    .steps-item p{font-size: 14px;line-height: 20px;text-align: center;}
    .steps-container {gap: 10px;}
    .services {padding: 45px 0;}
    .services-item p{justify-content: center;}
    .services-item h3{font-size: 16px;margin-bottom: 20px;height: auto;justify-content: center;}
    .services-container{grid-template-columns: repeat(2, 1fr);}
    .services-item a{padding: 15px 0px;max-width: 100%;}
    .choose{padding:50px 0;}
    .choose-item img{margin-bottom: 20px;}
    .text-reviews .col-md-4{width: 100%;text-align: center;}
    .text-reviews .col-md-8{width: 100%;}
    .text-reviews h2{text-align: center;font-size: 30px;margin-bottom: 45px;}
    .nav-text-rev{display: none;}
    .contacts{padding:45px 0;}
    .contacts h2{font-size: 29px;}
    .contacts p{font-size: 14px;line-height: 23px;}
    .contacts a{margin: 40px 0 0;padding: 20px 0px;font-size: 16px;}
    .contacts a img{width: 16px;}
    .contacts .big-img {position: relative;right: 0;bottom: -10px;height: auto;max-width: 220px;width: 100%;margin-top: 30px;}
    .video-reviews {padding: 45px 0 45px;}
    .contacts .big-img{display: none;}
    .contacts .col-md-6{width:100%;}
    .contacts p{margin-bottom: 20px;}
    .text-reviews h2:before{left: 50%;transform: translateX(-50%);}
}

@media(max-width:767px){
    .owl-nav{display: none;}
    .choose-container{grid-template-columns: repeat(1, 1fr);gap: 10px;}
    .services-item h3{}
    .services-item p{height: 115px;}
    .car-content .lang li a{font-size: 12px;text-transform: none;padding: 14px 16px;}
    .count-container{grid-template-columns: repeat(1, 1fr);gap:30px;}
    .video-reviews .owl-dots {display: flex;}
}

@media(max-width:560px){
    .services-container{grid-template-columns: repeat(1, 1fr);}
    .services-item h3{height: auto;}
   .services-item p{height: auto;}
   .services-item{border-bottom: 2px solid #74CC05;}
   .services-container{gap: 20px;}
    .oportunity {grid-template-columns: repeat(1, 1fr);}
    .oportunity-box{padding: 25px 10px;}
    .oportunity-box span img {width: 40px;}
    .oportunity-box span{height: 80px;width:80px;}
}

@media(max-width:400px){
    .hero .buttons a{padding: 15px 30px!important;}
}

@media(max-width:360px){
    header .btn{padding: 12px 12px;gap:5px;font-size: 10px;}
    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;
    }
}
