:root{
    --main-font: 'Noto Sans', sans-serif;
    --font-2: 'Montserrat', sans-serif;
    --dark-bg: #2A2B2F;
    --black: #262525;
    --white: #ffffff;
    --border-color: #C8C8C8;
    --bg-color: #f6f6f6;
    --gray: #707070;
    --main-color-1: #09804B;
    --light-green: #f1f9f8;
    --main-gradient: linear-gradient(180.00deg, rgb(9, 128, 75),rgb(2, 26, 15) 100%);
    --main-gradient-2: linear-gradient(180.00deg, rgb(11, 160, 93),rgb(4, 37, 22) 100%);
    --items-box-shadow: 0 0 30px 0px rgba(17, 17, 17, 0.15);
    --border-radius: 10px;
    --section-distance: 100px;
    --size-1: 10px;
    --size-2: 30px;
    --size-3: 45px
}

@font-face {
    font-family: "Noto Sans";
    src: url("../fonts/Noto Sans/NotoSans.woff2") format("woff2");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: "Noto Sans Display";
    src: url("../fonts/Noto Sans/NotoSansDisplay-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal
}
@font-face {
    font-family: "Noto Sans";
    src: url("../fonts/Noto Sans/NotoSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal
}

/* common styles */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
html{
    font-size: 10px
}
body{
    font-size: 1.6rem;
    line-height: 1;
    font-family: var(--main-font);
    font-weight: 400;
    line-height: 1.4;
    color: var(--black)
}
address{
    font-style: normal
}
.container{
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto
}
a{
    text-decoration: none
}
section a:not(.btn){
    color: var(--main-color-1)
}
section a:not(.btn):hover{
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
section:not(:first-child, :last-child){
    margin: var(--section-distance) 0
}

h1{
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 6.2rem;
    font-weight: 600
}
h2{
    font-size: 3.6rem;
    font-weight: 700
}

h3{
    font-size: 2.5rem;
    font-weight: 700
}
section ul:not(:first-child){
    margin-top: var(--size-1)
}
ul li{
    list-style: none
}
ul li:not(nav ul li){
    padding-left: 20px;
    position: relative
}
ul li:not(nav ul li):before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 3px;
    background-color: var(--main-gradient)
}
ul li:not(nav ul li):not(:first-child), ol li:not(:first-child){
    margin-top: 10px
}
.adv li{
    padding-left: 35px
}
.adv li:before{
    content: '';
    width: 25px;
    height: 25px;
    background: url(../img/icons/checked-white.svg) center center no-repeat, var(--main-gradient);
    background-size: 50%;
    top: -1px
}
section p{
    color: var(--gray)
}
ol{
    counter-reset: item
}
ol li{
    list-style: none;
    padding-left: 27px;
    position: relative;
    counter-increment: item
}
ol li:before{
    content: counter(item)'.';
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    left: 0;
    font-weight: 600
}
p:not(:first-child){
    margin-top: var(--size-1)
}
.subtitle{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.8rem;
    line-height: 1.4
}

section p:not(:first-child){
    margin-top: var(--size-1)
}

.owl-carousel{
    height: auto!important
}
.owl-carousel .owl-item .media img{
    height: 400px
}
/* end of common styles */



/* common class styles */

/* buttons */
.btn{
    padding: 16px 35px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    border-radius: var(--border-radius);
    background: var(--main-gradient);
    text-decoration: none;
    text-align: center;
    width: fit-content;
    transition: 0.3s;
    cursor: pointer;
    text-wrap-mode: nowrap;
    display: inline-block;
    box-shadow: var(--items-box-shadow);
	height: fit-content
}
.btn:hover{
    background: var(--main-gradient-2);
    transition: 0.3s
}
.empty-btn{
    background: transparent;
    color: var(--white);
    box-shadow: inset 0 0 0 1px var(--white);
    transition: 0.3s
}
.empty-btn:hover{
    background: transparent;
    color: var(--main-color-1);
    transition: 0.3s
}

.btns{
    display: flex;
    align-items: center;
    gap: var(--size-1)
}

/* end of buttons */
.grid-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--size-3)
}
.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--size-2)
}
.grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--size-2)
}


.none{
    display: none!important
}


.img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}
.img-container img, .img-container video{
    object-fit: cover;
    width: 100%;
    height: 100%
}

.hover-wrap{
    position: relative
}
.logo.hover-wrap{
    width: 99.28px;
    height: 50px
}
.logo.hover-wrap .hover{
    width: 99.28px
}
.hover-wrap .hover{
    position: absolute
}
.hover-wrap .hover, .hover-wrap.hover .before-hover
{
    display: none
}
.hover-wrap.hover .hover{
    display: block
}

/* end of common class styles */


.social{
    display: flex;
    align-items: center;
    gap: 10px
}
.social a{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: 0.3s
}
.social a:hover{
    transition: 0.3s
}
.in{
    background: url("../img/icons/in.svg") center center no-repeat, var(--main-gradient);
    background-size: 45%
}
.i{
    background: url("../img/icons/i.svg") center center no-repeat, var(--main-gradient);
    background-size: 45%
}
.tg{
    background: url("../img/icons/tg.svg") center center no-repeat, var(--main-gradient);
    background-size: 45%
}
.in:hover{
    background: url("../img/icons/in.svg") center center no-repeat, var(--main-gradient-2);
    background-size: 45%
}
.i:hover{
    background: url("../img/icons/i.svg") center center no-repeat, var(--main-gradient-2);
    background-size: 45%
}
.tg:hover{
    background: url("../img/icons/tg.svg") center center no-repeat, var(--main-gradient-2);
    background-size: 45%
}


/* header */
header{
   position: fixed;
   width: 100%;
   z-index: 2
}

.header{
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray)
}
.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    max-width: 100%
}
.header.only-desktop .container >div:first-child{
    display: flex;
    align-items: center;
    gap: 45px
}
header.scrolled{
    z-index: 4
}
header.scrolled .header .container{
    max-width: 100%
}
header.scrolled .header{
    background-color: var(--white);
    /* background-color: var(--dark-bg); */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none
}
header.scrolled .header.header.only-desktop .main-menu a{
    /* color: #5b5b5b */
    color: var(--black);
    transition: 0.3s
}
header .header .main-menu a:hover,
header.scrolled .header.header.only-desktop .main-menu a:hover{
    color: var(--main-color-1);
    transition: 0.3s
}

.main-menu a{
    color: var(--white);
    font-weight: 600
}

.main-menu >nav >ul{
    display: flex;
    align-items: center;
    gap: 35px
}
.header .logo{
    display: inline-block
}
.header .logo img{
    height: 50px
}

/* end of header */
.owl-nav{
    display: none
}
.owl-nav button{
    margin: 0px 0 0!important;
    transition: 0.3s
}
.owl-dots{
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    gap: 8px
}
.owl-dots button{
    width: 30px;
    height: 8px;
    background-color: #ffffffb0!important;
    border-radius: 2px
}
.owl-dots button.active{
    background-color: var(--main-color-2)!important
}
.owl-stage-outer, .owl-stage, .owl-item, .owl-item > .item{
    height: 100%
}
.owl-item > .item{
    position: relative;
    border-radius: var(--border-radius)
}
.about__media, .services__media, .projects__media{
    position: relative
}
.slider-nav{
    display: flex;
    gap: var(--size-1)
}
.slider-nav .next, .slider-nav .prev{
    width: 60px;
    height: 60px;
    background: url('../img/icons/arrow-right.svg'),  var(--main-gradient);
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
    border-radius: var(--border-radius);
    cursor: pointer
}
.slider-nav .prev{
    background: url('../img/icons/arrow-left.svg'),  var(--main-gradient);
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat
}
.slider-nav .next:hover{
    background: url('../img/icons/arrow-right.svg'),  var(--main-gradient-2);
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat
}

.slider-nav .prev:hover{
    background: url('../img/icons/arrow-left.svg'),  var(--main-gradient-2);
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat
}
.title-wrap{
    display: flex;
    justify-content: space-between;
    gap: var(--size-3)
}
.title-wrap .title{
    max-width: 80%
}
.title-center h2, .title-center h2 + p{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 60%
}
.title-center h2{
    max-width: 60%
}
.title-center h2 + p{
    max-width: 70%
}
h2 + p:not(.title-wrap h2 + p), .title-wrap{
    margin-bottom: var(--size-3)
}
.owl-dots{
    /* display: none */
}
.text-align-right{
    text-align: right
}
.bg-wrap{
    position: relative;
    padding: var(--section-distance) 0
}
.bg-wrap .container{
    position: relative;
    z-index: 2;
    color: var(--white)
}
.bg-wrap .container p{
    color: var(--white)
}
.bg-wrap .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover
}
.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000d0;
}
.lang-item span{
    margin-left: 0!important
}


/* footer */

.footer-top{
    padding: calc(var(--section-distance)/2) 0;
    background-color: var(--dark-bg);
    color: var(--white)
}
.footer-top .address-item a{
    color: var(--white)
}
.address-item a:hover{
    text-decoration: underline;
	text-decoration-thickness: from-font;
	text-underline-offset: 1px
}
.address-item{
    padding-left: 60px;
    position: relative;
    display: flex;
    flex-direction: column
}
.address-item:before{
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    left: 0
}
.address-item.email:before{
    background: url(../img/icons/email-white.svg) center center no-repeat, var(--main-gradient);
}
.address-item.tel:before{
    background: url(../img/icons/tel-white.svg) center center no-repeat, var(--main-gradient);
}
.footer-bottom{
    padding: 15px 0;
    border-top: 1px solid var(--gray);
    background-color: var(--dark-bg)
}
.footer-bottom .container{
    display: flex;
    align-items: center;
    justify-content: space-between
}
.footer-bottom p{
    color: var(--white)
}

/* end of footer */