@import url('./font.css');

:root{
    --background: #F7F7F7;
    --green: #ACDB31;
    --general-padding: 40px
}
*{
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
html {
    font-size: 15px;
    overflow-y: scroll;
}
body, ul{
    margin: 0;
    padding: 0;
}
body{
    background-color: #fff;
    font-family: 'DMSans-Light', sans;
    font-size: 1rem;
    font-weight: 400;
    overflow: clip;
}
span{
    line-height: 1.7;
}
a{
    text-decoration: none;
    color: #000;
}
img{
    max-width: 100%;
    max-height: 100%;
    transform: translate3d(0, 0, 1px);
}
button{
    outline: none;
    border: none;
}
textarea:focus, input:focus{
    outline: none;
}
hr{
    width: 100%;
    height: 1px;
    background-color: #dedede;
    border: none;
}
#smooth-wrapper{
    transition: 150ms all !important;
    overflow: visible !important;
}
#smooth-content {
  will-change: transform;
}
.loader{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0;
    z-index: 1000000000;
}
.global-header{
    height: 80px;
    width: 100%;
    position: fixed;
    display: flex;
    top: 30px;
    padding: 0 30px;
    z-index: 100;
    transition: 150ms all ease-in;
    font-family: 'DMSans-Regular';
}
.global-header.active{
    padding: 0 10px !important;
    top: 10px !important;
}
.global-header.active .header-right{
    right: 10px !important;
}
.header-content-wrapper{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.global-nav, .header-right{
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    height: 80px;
    width: fit-content;
    border-radius: 40px;
    background-color: #fff !important;
    display: flex;
    position: relative;
    align-items: center;
    column-gap: 10px;
}
.global-nav{
    padding: 7px 60px 7px 7px;
    -webkit-transform:translate3d(0,0,0);
}

.logo-container-wrapper{
    background-color: var(--background);
    width: 250px;
    border-radius: 40px;
    height: 100%;
    border: 1px solid transparent;
    transition: 150ms all !important;
}
.logo-container-wrapper:hover{
    background-color: #efefef;
    border-color: #ddd;
}
.logo-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.logo-container .logo-img{
    width: 100%;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-img, .logo-img img{
    height: 30px;
    object-fit: contain;
    object-position: 0 0;
}
.global-nav-links{
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
    margin-left: 30px;
}
.global-nav-links > li > a{
    padding: 10px 15px;
    font-size: 1rem;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 102;
    transition: 100ms all ease-in-out !important;
    transition-delay: 50ms !important;
    cursor: pointer;
}
.global-nav-links > li > a.active:hover,
.global-nav-links:not(:has(> li > a:hover)) > li > a.active{
    padding-bottom: 100px;
}
@media (pointer:coarse) {
    .global-nav-links > li > a:not(.active) {
        color: #000 !important;
    }
}
.nav-cursor{
    position: absolute;
    background-color: var(--green);
    z-index: 101;
    opacity: 0;
    border-radius: 40px;
    left: 0px;
    height: 35px;
    top: 22.5px;
    transition: 150ms opacity !important;
}
.global-nav-links:has(li > a.active) .nav-cursor,
.global-nav-links:has(li > a.current) .nav-cursor{
    opacity: 1;
}
@media (pointer:coarse) {
    .global-nav-links > li > a:not(.active) {
        color: #000 !important;
    }
}
.header-right{
    position: absolute;
    right: 30px;
    top: 0px;
    padding: 7px;
    z-index: 1000;
    transition: 150ms right !important;
}
@media (pointer: fine) {
    .global-nav-links:has(li > a:hover) .nav-cursor{
        opacity: 1;
    }
}
.language-selector-wrapper,
.language-selector-content{
    display: flex;
    overflow: hidden;
    flex-direction: row-reverse;
}
.language-selector-wrapper:has(.language-selector-content.active){
    position: absolute;
    background-color: #fff;
    top: 0;
    right: calc(100% - 70px);
    border-radius: 40px;
    min-height: 100%;
    z-index: 10;
    align-items: center;
    width: fit-content;
    overflow: visible;
}
.language-selector-content{
    height: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}
.language-selector-wrapper:has(.language-selector-content.active) .language-selector-content:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 65px);
    height: 100%;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    z-index: -1;
}
.header-right:has(.language-selector-content.active){
    padding-left: 80px;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.language-selector-wrapper:has(.language-selector-content:not(.active)) .language-selector-menu-wrapper{
    opacity: 0;
    pointer-events: none;
    width: 0;
}

.language-selector-button{
    width: 65px;
    height: 65px;
    min-width: 65px;
    min-height: 65px;
}
.language-selector-content:not(.active) i{
    display: none;
}
.language-selector-content.active .selected{
    display: none;
}
.language-selector-menu-wrapper{
    display: flex;
    align-items: center;
}
.language-selector-menu{
    display: flex;
    flex-direction: row-reverse;
    list-style: none;
    padding: 0 15px;
}
.language-selector-menu li a{
    padding: 15px 15px;
    border-radius: 100%;
    cursor: pointer;
}
.language-selector-menu li a:hover{
    background-color: #ededed
}
.contact-button{
    padding: 0 40px;
    background-color: var(--green);
    border-radius: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 40px;
}
.contact-button .icon{
    transform: translateY(-12.5%);
}
.contact-button:hover{
    background-color: #bde45a;
}
img.light-icon{
    filter: invert(100%);
    object-position: center;
    
}

.main-section{
    transform-origin: center;
    margin: auto;
    width: 100%;
    border-radius: 0 0 80px 80px;
    z-index: 1;
    position: relative;
    will-change: transform !important;
    background-color: var(--background);
}
.intro{
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    padding-top: 200px;
    background-color: var(--background);
}
.intro-bg{
    position: absolute;
    pointer-events: none;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: .3;
    width: 100%;
    aspect-ratio: 2500 / 1771;
    background-image: url(../img/intro-bg.webp);
    background-size: contain;
    background-repeat: no-repeat;
}
.intro-content-wrapper{
    z-index: 2;
    position: relative;
}
.intro-top{
    padding: 0 var(--general-padding) 50px var(--general-padding);
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between
}
.intro-top .text-container{
    max-width: 900px;
    font-size: 1.375rem;
}
.intro-top .big-title{
    color: #273434;
    font-family: 'DMSans-Regular';
}
.intro-top span{
    display: block;
    max-width: 80%;
    color: #58656f;
}
.intro-top .skip-button{
    background-color: #254357 !important;
    font-size: 25px;
}
.intro-top .skip-button:hover{
    background-color: #3c5c71 !important;
}
.intro-link-section{
    align-self: end;
    display: flex;
    column-gap: 10px;
}
.watch-button{
    width: 150px !important;
}
.intro-img{
    width: 98%;
    height: 90vh;
    max-height: 1440px;
    background-image: url(../img/intro.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: none;
    border-radius: 80px;
    margin: 0 auto;
    min-height: 300px;
}
.home-about{
    margin-top: 0 !important;
}
.section-wrapper{
    background-color: var(--background);
    width: 100%;
    height: fit-content;
}
.content-section{
    padding: var(--general-padding);
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.content-inner{
    display: flex;
    column-gap: 50px;
}
.content-title-wrapper{
    padding: 20px 0 10px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 60px
}
footer .content-title-wrapper{
    margin-bottom: 10px
}
.content-title{
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    word-spacing: 5px;
    margin-bottom: 10px;
    font-family: 'DMSans-Medium';
    display: block;
}
.content-img{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 100%;
    aspect-ratio: 10 / 7;
}
.content-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 600px;
}
.text-container :is(.standart-button, .black-button){
    margin-top: 40px
}
.project-container{
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    height: fit-content;
}
.project-container .row{
    width: 100%;
    height: 300px;
    display: flex;
    column-gap: 30px
}
.project-grid-item{
    cursor: pointer;
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 50%;
    border-radius: 15px;
    overflow: hidden;
    will-change: transform;
}
.project-img{
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .9;
}
.project-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    display: block;
    -webkit-transform: translate3d(0,0,0) scale(1);
    transform: translate3d(0,0,0) scale(1);
    transition: 250ms all ease-in-out !important;
}
.project-grid-item:hover .project-img img{
    -webkit-transform: translate3d(0,0,0) scale(1.1);
    transform: translate3d(0,0,0) scale(1.1);
}
.project-img-backdrop{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(37, 68, 87, .78);
    transition: 150ms all ease-out !important;
    z-index: 1;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, .1);
}
.project-text-wrapper{
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 40px 40px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 10px;
    transition: 150ms all ease-out !important;
    z-index: 0;
    -webkit-transform:translate3d(0,0,0);
}
.project-grid-item:not(.project-site) .project-text-wrapper{
    justify-content: end;
}
.project-grid-item .project-text-wrapper .project-text{
    display: flex;
    align-items: end;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 0 0 transparent;
    transform: 150ms all ease-out !important;
    text-align: center;
    font-family: 'DMSans-Regular';
    white-space: break-spaces;
}
.project-grid-item:not(.project-site) .project-text-wrapper .project-text{
    width: 100%;
    text-align: start;
    font-family: 'DMSans-Medium' !important;
    font-weight: 600 !important;
    font-size: 1.25rem;
}
.project-logo img{
    object-fit: contain;
    height: 70px;
}
.project-text{
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, .5);
    text-transform: uppercase;
}
.project-grid-item:not(.project-site) .project-text{
    text-transform: capitalize
}
.project-grid-item:hover .project-img-backdrop{
    background-color: rgba(37, 68, 87, .7);
}

/* Brands */

@property --brand-color {
  syntax: '<color>';
  initial-value: #82afaf;
  inherits: false;
}
.home-brands{
    --brand-color: #82afaf;
    background: var(--brand-color);
    background-repeat: no-repeat;
    line-height: 1.7;
    font-weight: 400;
    min-height: 110vh;
    transition: 150ms --brand-color ease-out;
    background-attachment: fixed;
    width: 100%;
}

.brands-content-wrapper{
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    column-gap: 20px;
}
.brands-left-container{
    width: 40%;
    height: fit-content;
    position: sticky;
    top: 160px;
}
.brands-left-container h2{
    font-weight: 400;
    color: #1C2226;
    font-size: 4rem;
    line-height: 1;
    margin-top: 0;
}
.brands-left-container span{
    color: #424b52;
    font-size: 1.35rem;
}
.brands-link-section{
    display: flex;
    margin-top: 20px;
    column-gap: 10px;
}
.brands-left-container .skip-button{
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    background-color: #fff;
    font-size: 24px;
    border-color: #fff;
}
.brands-progress{
    height: 250px;
    width: 4px;
    background: #fff;
    border-radius: 40px;
    margin-top: 20px;
}
.brands-content{
    width: 60%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.brands-content > *{
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}
.brand-item{
    width: 100%;
    height: fit-content !important;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    max-width: 100%;
}
.brand-banner{
    position: absolute;
    width: 100%;
    height: 250px;
    z-index: -1;
    overflow: hidden;
}
.brand-banner img{
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    max-height: unset;
    transition: 500ms all ease-in-out !important;
}
.brand-item:hover .brand-banner img{
    scale: 1.1
}
.brand-item-content{
    padding: 45px 30px 30px 30px;
    z-index: 1;
    position: relative;
    background-color: #fff;
    margin-top: 250px;
    height: fit-content;
    display: block;
    overflow: visible;
}
.brand-item-content:has(.tag-container) a{
    margin-top: 20px !important;
}
.brand-item-content .tag-container{
    margin-top: 20px;
}
.brand-item-content .text-container span{
    font-size: 1.2rem !important;
}
.brand-logo-container{
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-50%);
    background-color: #F0F0F0;
    width: 70px;
    height: 70px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 2;
}
.brand-logo-container img{
    height: 80%;
}
.brand-text-container.text-container{
    max-width: 100%;
    font-size: 1rem;
}
.brand-text-container.text-container h3{
    font-size: 2rem;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
    transition: 500ms all ease-out !important;
}
.brand-text-container.text-container h3:hover{
    text-decoration-color: #000;
}

/* End Brands */

/* Main Slider*/

.home-slider-images{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transform:translate3d(0,0,0);
}
.home-slider-images img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}
.home-slider-images img.active{
    z-index: 1 !important;
}
.home-slider{
    width: 100%;
    height: 100vh;
    max-height: 1440px;
    position: relative;
}
.home-slider-content-wrapper{
    background-color: unset;
    position: sticky;
    top: 80px;
    z-index: 20;
}
.home-slider-content{
    top: 0;
    max-width: 540px;
    position: relative;
    font-weight: 400;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    will-change: margin !important;
}
.home-slider-static-text{
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 1.2rem;
    color: #4D5F5E;
    text-transform: uppercase;
}
.home-slider-text-carousel{
    padding-top: 125px !important;
    padding: 50px;
    background-color: rgba(172, 219, 49, .7);
}
.home-slider .text-container{
    max-width: 100%;
    font-size: 1.2rem;
    color: #4D5F5E;
}
.home-slider-navigator{
    background-color: rgba(77, 95, 94, .7);
    padding: 20px 50px;
    color: white;
    display: flex;
    align-items: center;
    height: 90px;
}
.home-slider-navigator button{
    min-width: 50px;
    width: 50px;
    min-height: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    font-size: 2rem;
    background-color: transparent;
    border: 1px solid #aaa !important;
    border-radius: 100%;
    outline: none;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 150ms all !important;
    cursor: pointer;
}
.home-slider-navigator button:hover{
    background-color: rgba(255, 255, 255, .1);
    border-color: white !important;
}
.home-slider .slide-indicator{
    margin: 0 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.home-slider-navigator .page-indicator{
    margin-left: auto;
    min-width: fit-content;
}
.home-slider-logo{
    position: absolute;
    width: 200px;
    bottom: 30px;
    right: 30px;
    z-index: 10 !important;
    -webkit-transform:translate3d(0,0,0);
}

/* End Main Slider */

/* Footer */

.blogs-wrapper{
    align-items: end;
    margin: 60px 0;
    gap: 10px;
    display: flex;
    justify-content: space-between;
}
.blogs-wrapper > .standart-button{
    white-space: nowrap;
}
.blog-container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 920px;
    column-gap: 30px;
    row-gap: 60px;
}
.blog-content{
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 60px;
}
.blog-item{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: fit-content;
}
.blog-item.main{
    width: 100%;
    min-height: 600px;
    color: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    display: flex;
    align-items: end;
}
.blog-item.standart{
    width: calc(33.33% - (60px / 3));
    color: #000
}
.blog-container .blog-item.standart{
    width: calc(25% - (60px / 3));
}
.blog-item.central{
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.blog-img{
    overflow: hidden;
    object-fit: cover;
    object-position: 50% 100%;
    border-radius: 10px;
    transition: 500ms all ease-in-out !important;
}
.blog-item.standart .blog-date{
    color: #58656f;
    margin-top: 10px;
}
.blog-item:hover .blog-img img{
    scale: 1.1
}
.blog-item.main .blog-img,
.blog-item.central .blog-img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-item.standart .blog-img{
    width: 100%;
    height: 250px;
}
.blog-item.main:after,
.blog-item.central:after{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(37, 67, 87, 0.9), rgba(0, 0, 0, .25) 40%, transparent 50%);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    pointer-events: none;
}
.blog-item.standart:after{
    height: 250px;
}
.blog-item-content{
    z-index: 1
}
.blog-item.main .blog-item-content,
.blog-item.central .blog-item-content{
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    transition: 500ms all ease-in-out !important;
}
.blog-item.main:hover .blog-item-content,
.blog-item.central:hover .blog-item-content{
    padding-bottom: 90px;
}
.blog-title{
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
    transition: 375ms all ease-in !important;
}
.blog-item.standart:hover .blog-title{
    text-decoration-color: #000;
}
.blog-item.main:hover .blog-title,
.blog-item.central:hover .blog-title{
    text-decoration-color: #fff;
}
.blog-item.main .blog-title{
    font-size: 2rem;
    width: 80%;
}
.blog-item.standart .blog-title,
.blog-item.central .blog-title{
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 10px;
    margin-bottom: 7px;
}
.blog-item.main .blog-date{
    align-self: end;
}
.blog-item.main .tag-container,
.blog-item.central .tag-container{
    margin-bottom: 20px;
}
.blog-item.standart .tag-container{
    position: absolute;
    left: 10px;
    top: 10px;
}
.blog-page-navigator{
    display: flex;
    width: 100%;
    padding: 30px;
    column-gap: 5px;
    position: relative;
    justify-content: center;
    align-items: center;
}
.blog-page-navigator .border-button{
    min-width: 50px;
    height: 50px;
}
.blog-page-navigator .border-button.active{
    border-color: #000 !important;
}
.blog-page-navigator .next-button{
    margin-left: 20px;
    text-decoration: underline;
    cursor: pointer
}
.blog-page-navigator .prev-button{
    margin-right: 20px;
    text-decoration: underline;
    cursor: pointer
}
.not-found{
    font-size: 2rem;
    width: 100%;
    text-align: center;
    display: block;
    min-height: 50vh;
}
/*
.blog-item.standart{
    width: 25%;
    height: 300px;
    position: relative;
    margin-bottom: 80px;
}
.blog-item.huge{
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
}
.blog-item.huge .blog-item-content{
    position: relative;
    z-index: 1;
}
.blog-item-content{
    padding: 30px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), transparent)
}
.blog-img{
    height: 200px;
}
.huge .blog-img{
    position: absolute;
    width: 100%;
    height: 100%;
}
.blog-item .blog-tag{
    background-color: #fff;
    border: 1px solid #eee;
    width: fit-content;
    padding: 7px 20px;
    font-size: 12px;
    border-radius: 40px;
    color: #000;
}
.blog-item.standart .blog-tag{
    position: absolute;
    top: 10px;
    left: 10px;
}
.blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}
.blog-title{
    font-size: 25px;
    margin: 5px 0 15px 0;
    line-height: 1.2
}
.blog-item.huge .blog-title{
    margin: 20px 0 50px 0;
}
    */

.footer-wrapper{
    will-change: transform;
}
footer{
    position: sticky;
    bottom: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background-color: #fff !important;
}
footer .content-title{
    text-transform: capitalize !important;
}
.footer-main{
    display: flex;
    column-gap: 40px;
    font-size: 1rem;
}
footer .address{
    margin-top: 15px;
    white-space: break-spaces;
}
.footer-logo{
    margin: 40px 0 20px;
}
.footer-main .content-title-wrapper{
    font-size: 1.35rem;
}
.footer-main aside{
    display: flex;
    flex-direction: column;
    width: calc(25% - (40px / 3));
}
.footer-main aside ul{
    list-style: none;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}
.footer-main aside ul li, span:not(.content-title-wrapper span){
    line-height: 1.75;
    height: fit-content;
}
.footer-main aside ul li{
    display: flex;
    align-items: center;
}
.footer-main aside ul li a{
    line-height: 2.25;
    color: #58656f;
    height: fit-content;
}
.footer-main aside ul li .tag{
    font-size: .8rem;
    color: #4D5F5E;
    background-color: #F4F6F6;
    padding: 7px 20px;
    margin-left: 10px;
    border-radius: 40px;
    height: fit-content;
    width: fit-content;
    white-space: nowrap;
    align-self: center;
}

.footer-bottom{
    margin-top: 40px;
    border-top: 1px solid #dedede;
    padding: 40px 0 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: space-between;
}
.footer-bottom .media{
    width: fit-content;
    border-radius: 40px;
    background-color: #F4F6F6;
    padding: 0 20px;
}
.footer-bottom .media ul{
    display: flex;
    list-style: none;
    height: 80px;
    column-gap: 10px;
}
.footer-bottom .media-item{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 25px 10px;
    column-gap: 10px;
    color:#4D5F5E;
}
.footer-bottom .media-item i{
    font-size: 25px;
}
.footer-bottom-links{
    display: flex;
    align-items: center;
    column-gap: 30px;
    font-size: .9rem !important;
    
}

/* End Footer */

/* Navbar Dropdown */

.global-nav-links > li > a.active ~ .nav-dropdown-wrapper{
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}
#smooth-content{
    background-color: #fff;
}
body:has(.global-nav-links > li > a.active) #smooth-content{
    filter: blur(15px);
}
.nav-dropdown-wrapper{
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    top: 140px;
    position: fixed;
    z-index: 0;
    transition: 150ms opacity !important;
}
body:has(.global-nav-links > li > a.active) .nav-dropdown-close-wrapper,
body:has(.logo-container-wrapper.active) .project-router-close-wrapper,
body:has(.header-router-button.active) .main-section.test:before{
    content: "";
    background-color: rgba(77, 95, 94, .4);
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: 150ms all !important;
    transition-delay: 50ms !important;
}
body:has(.header-router-button.active) .main-section:before{
    z-index: 2;
}
.nav-dropdown{
    background-color: #fff;
    display: flex;
    padding: 40px;
    border-radius: 40px;
    width: 1440px;
    max-width: calc(100vw - 60px);
    position: fixed;
    top: 90px;
    left: 0;
    column-gap: 30px;
    box-shadow: 0 0 50px 0 rgba(10, 40, 50, .1);
    transition: 150ms all ease-in !important;
}
.nav-dropdown-router-side{
    display: flex;
    flex-wrap: wrap;
    max-width: 50%;
    height: fit-content;
}
.nav-dropdown-router-item{
    max-width: 50%;
    font-size: 1rem;
    padding: 20px;
    max-height: fit-content;
}
.nav-dropdown-contact-side .nav-dropdown-router-item{
    max-width: calc(50% - (30px / 2));
    padding: 0 !important;
}
.nav-dropdown-contact-side .nav-dropdown-router-side{
    gap: 30px;
}
.nav-dropdown-router-item:not(.nav-dropdown-contact-side *):hover{
    /*background-color: rgb(77, 95, 94, .2);
    border-radius: 10px;*/
    cursor: pointer
}
.nav-dropdown-router-title{
    color: #1C2226;
    font-weight: 400;
    line-height: 2.5;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    transition: 375ms all ease-in !important;
}
.nav-dropdown-router-item:hover .nav-dropdown-router-title{
    text-decoration-color: #4D5F5E;
}

.nav-dropdown-router-item span{
    line-height: 1.5 !important;
    color: #6e7575;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.nav-dropdown-img-router-side{
    display: flex;
    column-gap: 10px;
}
.nav-dropdown-img-router-item{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    min-width: 300px;
    min-height: 450px;
    color: white;
    transition: 150ms all !important;
    font-size: .9rem;
}
.nav-dropdown-img-router-img{
    pointer-events: none;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.nav-dropdown-img-router-img:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(37, 67, 87, 0.9) 25%, transparent 75%);
    z-index: 1;
}
.nav-dropdown-img-router-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-dropdown-img-router-title{
    font-size: 1.2rem;
    line-height: 2.5;
    font-weight: 600
}
.nav-dropdown-img-router-button{
    background-color: rgba(255, 255, 255, .2) !important;
    min-width: 100%;
    justify-content: center;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 30px;
    transition: 150ms all !important;
}
.nav-dropdown-img-router-button:hover{
    background-color: rgba(255, 255, 255, .3) !important;
}
.nav-dropdown-brand-side{
    padding-right: 30px;
    position: relative;
}
.nav-dropdown-brand-side:after{
    content: "";
    position: absolute;
    left: -40px;
    top: -40px;
    width: calc(100% + 40px);
    height: calc(100% + 80px);
    z-index: -1;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    background-color: white;
}
.nav-dropdown-brand-side span{
    font-weight: 500;
    font-size: 1.4rem;
}
.nav-dropdown-brands{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.nav-dropdown-brand{
    width: 250px;
    height: 70px;
    display: flex;
    gap: 5px;
    justify-content: start;
    border-radius: 60px;
    position: relative;
    transition: 150ms all !important;
    font-size: 2rem;
    align-items: end;
    padding: 10px 60px 10px 30px;
    color: #ccc;
    margin-bottom: 10px;
}
.nav-dropdown-brand[data-project="cari"]{
    padding-top: 13px !important;
    padding-bottom: 13px !important;
}
.nav-dropdown-brand[data-project="e-ticaret"]{
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}
.logo-wrapper{
    height: 100%;
    aspect-ratio: 1 / 1;
    padding: 5px;
    background-color: #798A45;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 12px;
}
.nav-dropdown-brand img:nth-child(2){
    padding: 15px 0 7px !important;
    display: block;
}
.nav-dropdown-brand:before{
    content: "";
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.nav-dropdown-brand:hover{
    background-color: #ddd;
}
.nav-dropdown-brand img{
    height: 100%;
    object-fit: contain;
}
.nav-dropdown-contact-side{
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.nav-dropdown-contact-side hr{
    border-color: #6e7575;
    opacity: .35;
}
.nav-dropdown-contact-content{
    display: flex;
    margin-top: 20px;
    gap: 40px;
    align-items: end;
    color: #4D5F5E;
    font-weight: 400;
}
.nav-dropdown-contact-content .black-button{
    min-width: fit-content;
}
.nav-dropdown-contact-side .nav-dropdown-router-side{
    max-width: 100%;
}

/* End Navbar Dropdown */

/* Popup */

.popup-wrapper{
    position: fixed;
    z-index: 150;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.popup-wrapper:after {
    content: "";
    background-color: rgba(77, 95, 94, .3);
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
.popup{
    background-color: #fff;
    width: 1000px;
    max-width: calc(100vw - 20px);
    min-height: 60vh;
    border-radius: 20px;
    box-shadow: 0 0 50px 0 rgba(10, 40, 50, .1);
    padding: 15px 13px;
}
.popup-top{
    display: flex;
    justify-content: space-between;
    height: fit-content;
}
.popup-top .logo-container{
    background-color: #eee;
    border-radius: 40px;
    height: 100%;
    height: 50px;
    min-width: 250px;
}
.popup-close{
    padding: 0 10px;
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.popup-content{
    padding: 60px 40px 40px;
    display: flex;
    gap: 60px;
}
.popup-slider-side{
    position: relative;
    width: 70%;
    min-width: 300px;
}
.popup-slider-side > img{
    object-fit: contain;
}
.popup-content .text-side{
    width: 70%;
}
.popup-content span{
    display: block;
}
.popup-title{
    font-size: 1.25rem;
    line-height: 1.25 !important;
    margin-bottom: 10px;
    font-weight: 500
}
.popup-content .text-content{
    color: #4D5F5E;
    font-size: 1.2rem;
    padding-top: 20px;
}
body:has(.popup-wrapper) #smooth-wrapper{
    filter: blur(15px);
}
.popup-slider{
    overflow: hidden;
}
.popup-slider-side:has(> .main-img){
    width: fit-content;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
}
.popup-slider-item{
    overflow: hidden;
    position: relative;
    width: fit-content;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 0 auto;
}
.popup-slider-item .main-img{
    width: fit-content;
}
.popup-slider-item .bottom-img{
    padding: 40px;
}
.popup-slider-side .country{
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: .8rem;
    background-color: white;
}
.popup-slider-side .country span{
    line-height: 1 !important;
    padding: 2px 2px 0;
}
.popup-slider-navigator{
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.popup-slider-navigator button{
    width: 50px !important;
    height: 50px !important;
    border-color: #ccc !important;
}
.popup-slider-navigator button:hover{
    border-color: #000 !important;
}

/* End Popup */


/* Filter Popup */

.popup-window-title{
    font-size: 1.2rem;
}
.filter-popup{
    width: unset;
    min-height: fit-content;
    padding: 20px;
}
.filter-popup .logo-container{
    background: transparent;
    justify-content: start;
    padding: 0;
}
.filter-popup .popup-content{
    flex-direction: column;
    gap: 20px;
    padding: 40px 0 10px;
}
.filter-select{
    border: 1px solid #ddd;
    height: 70px;
    border-radius: 10px;
    width: 350px;
    max-width: 100%;
    font-size: 1.3rem;
    display: flex !important;
    align-items: center;
    padding: 30px;
    margin-top: 10px;
}
.filter-select .selected{
    color: #777;
    font-size: 1rem;
}
.filter-popup .button-container{
    flex-direction: column;
    gap: 10px;
}
.filter-popup .button-container > *{
    width: 100%;
}


/* End Filter Popup*/

/* Header Router */


.header-router-item .content{
    display: none;
}
.header-router-button{
    position: relative;
    font-size: 25px;
}
.header-router-menu-wrapper{
    position: absolute;
    top: 100%;
    left: -7px;
    margin-top: 17px;
    background-color: white;
    border-radius: 30px;
    width: 400px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);

    transition-duration: 150ms;
    transition-property: width, height !important;
    transition-timing-function: ease-in;
    z-index: 2;
    max-height: 80vh;
    overflow-y: hidden;
    overflow-x: hidden;
}
.header-router-button.active .header-router-close-wrapper{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
}
.header-router-button:not(.active) .header-router-menu-wrapper{
    pointer-events: none !important;
    opacity: 0 !important;
}
.header-router-menu{
    width: 100%;
    padding: 30px;
}
.header-router-top{
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-router-top .search-button{
    height: 55px;
    width: 55px;
}
.header-router-top .search-button .icon{
    width: 20px;
    height: 20px;
}
.header-router{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.header-router-item{
    width: 100%;
    padding: 15px 0;
    font-size: 1.3rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-router-item :is(.chevron-left, .chevron-right){
    font-size: .9rem;
}
.header-router .black-button{
    width: 100%;
    margin-top: 20px;
    font-size: 1.2rem;
    
}
body:has(.header-router-button.active) #smooth-content{
    filter: blur(15px);
}


.header-router-menu{
    position: absolute;
    transition: 150ms all ease-in-out !important;
}
.header-router-menu:has(.header-router-item.active){
    transform: translateX(-100%);
}
.header-router-item.active > .content{
    display: flex;
    flex-direction: column;
    opacity: 1;
    pointer-events: all;
}

.header-router .content{
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    transform: translateX(100%);
    right: 0px;
    top: 0;
    padding: 30px;
    display: flex;
    justify-content: start;
    align-items: start;
}
.header-router .content-top{
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 10px 0 15px;
}
.header-router .content  hr{
    width: 100%;
}
.header-router .content .title{
    font-weight: 400;
    font-size: 1.65rem;
}
.header-router .content > span{
    font-size: 1.2rem;
    white-space: nowrap;
    color: #919191;
}
.header-router .content h5{
    font-weight: 400;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 10px;
}
.header-router .content ul{
    display: flex;
    flex-direction: column;
    text-align: start;
    padding: 20px 0 0;
    font-size: 1rem;
    list-style: none;
}
.header-router .content ul a{
    padding: 10px 10px 10px 0;
    display: block;
    font-size: 1.3rem;
    height: fit-content;
}
.nav-dropdown-brand{
    padding: 15px !important;
}
.header-router .content ul:has(> .nav-dropdown-brand) .title{
    margin-bottom: 15px;
}
.header-router .content ul:has(img) a{
    height: 60px;
}
.header-router .content ul li img{
    width: 100%;
    max-width: 150px
}

/* End Header Rotuer */


.slider-navigator :is(.slider-prev, .slider-next){
    background-color: #fff;
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: white;
}
.slider-navigator .slider-next{
    margin-right: 10px;
}

#toast-container{
    top: 110px !important;
}
.toast{
    box-shadow: 0 0 50px 0 rgba(10, 40, 50, .2) !important;
    padding: 20px 20px 20px 60px !important;
    border-radius: 40px !important;
    margin: 15px 0 !important;
    font-size: 1.1rem;
    width: fit-content !important;
}
h1, h2, h3, h3, h4, h5, h6, .big-title .title{
    letter-spacing: .5px;
}
.text-container{
    max-width: 35%;
    font-size: 1.1rem;
    width: 100%;
}
.text-container :is(h1, h2, h3, h4, h5){
    font-weight: 500;
    font-family: 'DMSans-Regular';
    margin: 0 0 10px 0;
}
.text-container span, .step-description{
    font-size: 1.2rem;
    color: #58656f;
}
.text-container h3,
.text-container h2{
    font-size: 2rem;
}
.text-container .flex{
    flex-wrap: wrap;
}
.text-container ul,
.blog-detail ul,
.dd-box-content ul,
.text-content ul,
.list{
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 20px 0 0;
    min-width: 200px;
}
.blog-detail ul,
.dd-box-content ul{
    padding: 0 !important;
}
.text-container ul li,
.blog-detail ul li,
.dd-box-content ul li,
.text-content ul li,
.list li{
    line-height: 30px;
    color: #4D5F5E;
    position: relative;
    padding-left: 40px;
}
.text-container ul li:after,
.select-menu li a:after,
.blog-detail ul li:after,
.dd-box-content ul li:after,
.text-content ul li:after,
.list li:after{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-image: url('../img/icon/tick.svg');
    min-width: 28px;
    min-height: 28px;
    border: 1px solid #ccc;
    border-radius: 100%;
    background-color: white;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    align-self: center;
    margin-right: 10px;
}

.text-content ul li li:after{
    min-width: 22px;
    min-height: 22px;
}

.text-container ul li *,
.blog-detail ul li *,
.dd-box-content ul li *{
    margin: 0 !important;
}
.text-container ul.dark li:after{
    filter: invert(100%);
}
.big-title{
    font-size: 4rem;
    line-height: 1
}
.section-title{
    display: flex;
    font-weight: 500;
    margin: 0;
    align-items: center;
    font-size: 4rem;
    line-height: 1
}
.standart-button{
    display: block;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 15px 40px;
    height: fit-content;
    border-radius: 40px;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}
.border-button{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
    transition: 150ms all !important;
    user-select: none;
}
.border-button:hover{
    border: 1px solid black;
}
.black-button{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 66px;
    border-radius: 40px;
    line-height: 1.2;
    text-align: center;
    background-color: #254357;
    color: #fff;
    user-select: none;
}
.black-button:hover{
    background-color: #3c5c71;
}
.big-button{
    --size: 66px;
    min-width: var(--size);
    height: var(--size);
}
.flex{
    display: flex;
}
.relative{
    position: relative;
}
.justify-content-start{
    justify-content: start;
}
.justify-content-end{
    justify-content: end;
}
.owl-nav{
    display: none;
}
.owl-dots{
    display: none;
}
.hvr{
    cursor: pointer;
}
.full-width{
    width: 100% !important;
    max-width: unset !important;
}
.fit-width{
    width: fit-content !important;
}
.input-arrow{
    padding-right: 60px !important;
    position: relative;
}
.input-arrow:before{
    width: 30px;
    position: absolute;
    right: 15px;
}
:is(.arrow-left, .arrow-right, .arrow-up, .arrow-down, .chevron-left, .chevron-right, .chevron-up, .chevron-down){
    display: block;
}
:is(.arrow-left, .arrow-right, .arrow-up, .arrow-down, .chevron-left, .chevron-right, .chevron-up, .chevron-down):before{
    display: block;
    content: "";
    background-size: cover;
    width: 100%;
    height: 100%;
    filter: invert(100%);
    -webkit-filter: invert(100%);
    width: 1em;
    height: 1em;
    transition: 100ms all !important;
    z-index: 1;
}
:is(.arrow-left, .arrow-right, .arrow-up, .arrow-down):before{
    background-image: url(../img/icon/arrow-left.svg);
}
:is(.chevron-left, .chevron-right, .chevron-up, .chevron-down):before{
    background-image: url(../img/icon/chevron-right.svg);
}
.arrow-dark:before, .chevron-dark:before{
    filter: none !important;
}
.arrow-up:before{
    transform: rotate(90deg);
}
.arrow-right:before{
    transform: rotate(180deg);
}
.arrow-down:before{
    transform: rotate(270deg);
}
.chevron-up:before{
    transform: rotate(270deg);
}
.chevron-left:before{
    transform: rotate(180deg);
}
.chevron-down:before{
    transform: rotate(90deg);
}
.arrow-anim{
    padding-left: 10px;
    padding-right: 40px;
    position: relative;
    transition: 125ms all !important;
}
.arrow-anim:before{
    content: "";
    background-image: url(../img/icon/arrow-left.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 30px 50%;
    width: 30px;
    height: 25px;
    left: 20px;
    top: 50%;
    transform: rotate(180deg);
    position: static;
    opacity: 0;
    transition: 125ms all ease-out !important;
}
.arrow-anim:is(:hover, :focus, :active){
    padding-left: 25px;
    padding-right: 25px;
}
.arrow-anim:not(.arrow-dark):before{
    filter: invert(100%);
}
.arrow-anim:is(:hover, :focus, :active):before{
    background-position: 0 50%;
    width: 30px;
    opacity: 1;
}
.tag-container{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-container .tag{
    width: fit-content;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 50px 0 rgba(10, 40, 50, .1);
    color: #000;
    padding: 7px 20px;
    border-radius: 40px;
    column-gap: 10px;
    font-size: .9rem;
    white-space: nowrap;
    height: fit-content;
    overflow: hidden;
    text-overflow: ellipsis;
}
.owl-stage{
    display: flex;
}
.owl-stage:not(.home-slider-text-carousel .owl-stage){
    cursor: grab;
}
.owl-stage:not(.home-slider-text-carousel .owl-stage):active{
    cursor: grabbing;
}

@keyframes loading{
    from{transform: translateX(-200%) rotate(15deg);}
    to{transform: translateX(800%) rotate(15deg) ;}
}
.loading{
    position: relative;
    overflow: hidden;
}
.loading:after{
    content: "";
    position: absolute;
    width: 20%;
    height: 400%;
    left: 0;
    top: -150%;
    background-image: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, .50) 50%, transparent 100%);
    animation: loading 1.25s infinite;
    z-index: 2;
}
.loading:before{
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .25);
    z-index: 1
}
@keyframes loading-content{
    0%{opacity: .75;}
    50%{opacity: 0;}
    100%{opacity: .75;}
}
.loading-content{
    background-color: lightgray !important;
    color:lightgray !important;
    border-radius: 7px !important;
    animation: loading-content 1.5s ease-in-out infinite !important;
    text-decoration-color: lightgray !important;
}
.registered{
    font-size: .75em !important;
    display: inline;
    line-height: 1.25em !important;
    vertical-align: text-top;
    transition: 500ms all ease-out !important;
}
.icon{
    width: 1em;
    height: 1em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}
.icon:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.icon.colored:before,
.input-arrow:before{
    filter: brightness(0) saturate(100%) invert(22%) sepia(15%) saturate(1617%) hue-rotate(161deg) brightness(92%) contrast(89%) !important;
}
.icon.invert{
    filter: invert(100%);
}
.facebook-icon:before{background-image: url(../img/icon/facebook-circle.svg);}
.instagram-icon:before{background-image: url(../img/icon/instagram.svg);}
.linkedin-icon:before{background-image: url(../img/icon/linkedin.svg);}
.documents-icon:before{background-image: url(../img/icon/sd-card.svg);}
.link-icon:before{background-image: url(../img/icon/link.svg);}
.share-icon:before{background-image: url(../img/icon/share.svg);}
.cross-icon:before{background-image: url(../img/icon/cross.svg);}
.filter-icon:before{background-image: url(../img/icon/filter.svg);}
.search-icon:before{background-image: url(../img/icon/search.svg);}
.entegre-icon:before{background-image: url(../img/icon/entegre-slider-icon.svg)}
.cari-icon:before{background-image: url(../img/icon/cari-icon.svg)}
.webinar-icon:before{background-image: url(../img/icon/webinar-icon.png);filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(1225%) hue-rotate(34deg) brightness(85%) contrast(91%);}
.e-ticaret-icon:before{background-image: url(../img/icon/iste-icon.svg)}
.mail-icon:before{background-image: url(../img/icon/mail-icon.svg)}
.web-icon:before{background-image: url(../img/icon/web.svg)}
.software-icon:before{background-image: url(../img/icon/software.svg)}
.mobile-icon:before{background-image: url(../img/icon/mobile.svg)}
.e-commerce-icon:before{background-image: url(../img/icon/e-commerce.svg)}
.mvp-icon:before{background-image: url(../img/icon/mvp.svg)}
.saas-icon:before{background-image: url(../img/icon/saas.svg)}