/* my-classes */


.my-flex {
    display: flex;
}

.margin30 {
  margin-top: 30px;  
}

.ymaps-2-1-79-controls__control_toolbar, .ymaps-2-1-79-gotoymaps__container, .ymaps-2-1-79-copyright__content, .ymaps-2-1-79-scaleline__left-border, .ymaps-2-1-79-scaleline__left-line, .ymaps-2-1-79-scaleline__label, .ymaps-2-1-79-scaleline__right-line, .ymaps-2-1-79-_hidden-text, .ymaps-2-1-79-scaleline__right-border {
    display: none !important;yangin2.png
}

.my-padding {
    padding: 30px 0 0;
}
.my-none{
    display: none;
}
.my-direct {
    flex-direction: column;
    gap: 10px;
}

.w100 {
    width: 100%;
}

.my-dnone {
    display: none;
}

.my-width {
    width: 100%;
}

.my-fixed {
    position: absolute;
}

.my-relative {
    position: relative;
}
.my_rotate90{
   transform: rotate(90deg);
}
.my-bg-white {
    background: #fff;
}

.my-transition-1 {
    transition: 1s;
}

.my-p-1 {
    padding: 1rem;
}
.my-p-1-v{
    padding: 1rem 0;
}
.my-p-5-v {
    padding: 70px 0;
}
.my-m-5-v {
    margin: 50px 0;
}
.my-p-5 {
    padding: 50px;
}
.my-p-4-v {
    padding: 40px 0;
}

.my-transition-2 {
    transition: 2s;
}

.section-head {
    padding: 0 0 50px;
    flex-wrap: wrap;
    gap:10px;
    justify-content: space-between;
}

.section-head h2 {
    font-size: 1.6rem;
    font-weight: 600;
}

.section-head a {
    gap: 10px;
    color: #000;
    align-items: center;
    transition: .3s;
}

.section-head a:hover {
    opacity: 0.7;
}

.section-head a i {
    transition: .3s;
}

.section-head a:hover i {
    transform: translateX(10px);
}

.my-transtion-04 {
    transition: .4s;
}

.my-end {
    justify-content: flex-end;
}

.my-grid {
    display: grid;
}

.my-grid-1 {
    grid-template-columns: 100%;
    gap: 10px;
}

.my-grid-2 {
    grid-template-columns: 48% 48%;
    gap: 20px;
}

.my-grid-3 {
    grid-template-columns: calc(33% - 50px) calc(33% - 50px) calc(33% - 50px);
    column-gap: 50px;
    row-gap: 27px;
}
@media only screen and (max-width: 1280px){
    .my-grid-3{
    gap: 20px;
        grid-template-columns: calc(50% - 20px) calc(50% - 20px);        
    }
}
@media only screen and (max-width: 850px){
    
    .my-grid-3{
    gap: 20px;
        grid-template-columns: 100%;        
    }
}

.my-grid-auto {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
/*modal*/
.modal_form{
    display: grid;
    grid-template-columns: 100%;
    gap: 12px;
    font-family: "Averta",sans-serif !important;
    font-weight: 500;
}
.modal_form input{
    width: 100%;
    border: 2px solid #e6ecf2;
    padding: 16px 20px;
    border-radius: 4px !important;
    font-size: 18px !important;
    outline: none;
    margin: 0 !important;
    transition: all .3s ease;
}
.modal_form textarea{
    margin: 0 !important;
}
.modal_form textarea::placeholder{
    font-family: "Averta",sans-serif !important;
    font-weight: 500;
}
.modal_form input::placeholder {
    font-family: "Averta",sans-serif !important;
    font-weight: 500;
}
.modal_form input[type=submit]{
    cursor: pointer;
    background: #2f3032;
    color: #fff;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
    padding: 12px 26px;
    width: 100%;
    font-size: 15px;
    border: 1px solid transparent;
    font-weight: 500;
    border: 0;
}

.modal_form input[type=submit]:hover{
        border: 1px solid #2f3032;
    background: #fff;
    color: #2f3032;
}

.modal_form .btn-whatsapp{
    cursor: pointer;
    background: #db0a40;
    color: #fff;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
    padding: 12px 26px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    border: 0;
    text-align:center;
}

/*modal end*/
body {
    /* display: flex;
    flex-direction: column;
    row-gap: 50px; */
    font-family: "Averta",sans-serif;
    font-weight: 500;
}

/* my-classes */
.header {
    position: relative;
}

header.active-header {
    position: fixed;
    top: -1000px;
    left: 0;
    width: 100%;
    box-shadow: 0 0 11px 9px rgb(234 234 234 / 64%);
    animation-name: heade;
    animation-duration: .6s;
    animation-fill-mode: forwards;
}
@keyframes heade{
    0%{top: -1000px;}
    100%{top:0;}
} 

header {
    height: fit-content;
    position:relative;
    z-index: 15;
    padding: 20px 0;
    transition: .4s;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    gap: 10px;
}
.logo a.logo-img {
    width: auto;
    align-items: center;
    display: flex;
    height: 50px;
}
.logo a.logo-img img{
    height:auto;
    width:100%;
    max-width:200px;
}
.callingimg img{
    width:35px;
    height:100%;
}
.nav-contact  {
    display:none;
}
.hamburger-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1;
}

.hamburger-icon img {
    position: relative;
    z-index: 11;
}

.active-ham-after {
    animation-fill-mode: forwards;
    margin-left: auto;
}

.hamburger-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    content: '';
    background: #fff;
    border-radius: 50%;
}

.active-ham-after::after {
    animation-name: hamAfter;
    animation-delay: 2s;
    animation-duration: .4s;
    animation-fill-mode: forwards;
}

@keyframes hamAfter {
    0% {
        width: 0;
        height: 0;
    }

    100% {
        width: 100%;
        height: 100%;
    }
}

.hamburger-icon img {
    width: 20px;
}

.mobile-navbar {
    height: 100vh;
    width: 70vw;
    z-index: 10;
    position: fixed;
    right: -100%;
    top: 0;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    font-size: 18px;
    padding: 35px;
    background: #facc48;
}

.mobile-nav-accor li {
    padding: 15px;
    cursor: pointer;
    transition: .4s background;
}

.mobile-navbar li:not(:last-child) a {
    width: 70%;
    display: block;
    /*transition: .4s;*/
    padding: 10px 0 8px;
    border-bottom: 1px solid #fdfdfd38;
}

.mobile-accor-head {
    border-bottom: 1px solid #fdfdfd38;
    padding: 15px 0;
}

.mobile-navbar li:hover,
.mobile-navbar li a:hover {
    opacity: 0.8;
}

.mobile-accor-head,
.mobile-nav-accor li:last-child a {
    border: none;
}

.mobile-accor-head span {
    display: flex;
    justify-content: space-between;
    padding: 0 0 10px;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #fdfdfd38;
}

.mobile-accor-head i {
    font-size: 16px;
}

.active-mobile-navbar {
    right: 0 !important;
}

.mobile-navbar li.ham-social {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 0 10px;
}

.mobile-navbar a {
    color: #000;
}

.ham-social i {
    font-size: 20px;
}

.mobile-nav-accor {
    border-radius: 10px;
    animation-duration: .4s;
    display: none;
    /*overflow: hidden;*/
    animation-fill-mode: forwards;
    transition: top 200ms ease-in-out 0s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 28px 52px 0px;
}

.mobile-navbar .quote-lang {
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.mobile-navbar .quote-lang button, .mobile-navbar .quote-lang .btn-whatsapp {
    padding: 8px 14px 8px;
    font-size: 15px;
    background: #000;
    color: #fff;
    font-weight: 600;
    border: none;
    white-space: nowrap;
    -webkit-animation: qiymetAnimation 1s;
    -moz-animation: qiymetAnimation 1s;
    -o-animation: qiymetAnimation 1s;
    animation: qiymetAnimation 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    box-shadow: 0 0 0 18px transparent;
}
@keyframes qiymetAnimation{
    0% {
        -webkit-box-shadow: 0 0 0 0 #2f3032;
        -moz-box-shadow: 0 0 0 0 #2f3032;
        -o-box-shadow: 0 0 0 0  #2f3032;
        box-shadow: 0 0 0 0  #2f3032;
    }
}
.lang {
    align-items: center;
}


.mobile-navbar li.quote-lang:hover {
    opacity: 1;
}

.lang a,
.lang-2 a {
    width: 35px !important;
    height: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #f8f8f8;
    color: #111111;
    font-size: 15px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lang span {
    width: 18px;
    height: 2.5px;
    background: #f8f8f8;
}

.lang-2 {
    display: none !important;
}

@media only screen and (max-width:560px) {
    .mobile-navbar {
        width: 85vw;
         right: -180%; 
    }
    
    .mobile-nav-accorrr {
        display: none;
    }
    
}

@media only screen and (min-width:768px) {
    .hover i {
    display:none;
}

.mobile-nav-accor {
    margin-top: 7px;
}


.mobile-nav-accorrr{
        position: absolute;
        top: 0;
        visibility: hidden;
        left: 160px;
        background: #fff;
    }
    
    li.hover:hover .mobile-nav-accorrr{
        visibility: visible;
    }
    
    .mobile-navbar {
        width: 80vw;
    }
.section-head h2 {
    font-size: 1.8rem;
}
    .my-grid-1 {
        grid-template-columns: 48% 48%;
        gap: 15px;
    }

    .lang a,
    .lang-2 a,
    .ham-social i {
        color: #111111 !important;
    }
}

@media only screen and (min-width:992px) {
    .my-padding {
        padding: 70px 0 0;
    }
.section-head h2 {
    font-size: 2rem;
    font-weight: 600;
}
    .my-grid-1 {
        grid-template-columns: 30% 30% 30%;
        gap: 20px;
    }

    .mobile-navbar li:hover,
    .mobile-navbar li a:hover {
        opacity: 1;
    }

    .hamburger-icon {
        display: none;
    }

    .mobile-nav-accor li:hover {
        background: #ecebeb97;
    }

    header {
        padding: 30px 0;
    }

    .mobile-navbar,
    .mobile-navbar .quote-lang,
    .mobile-navbar li a,
    .mobile-accor-head span {
        padding: 0;
    }

    .mobile-navbar li:not(:last-child) a {
        padding: 0;
    }

    .mobile-navbar li:not(.mobile-accor-head) {
        /*display: flex;*/
        /*align-items: center;*/
        /*position: relative;*/ 
    }

    .mobile-accor-head span,
    .mobile-navbar .quote-lang {
        gap: 15px;
    }

    .mobile-accor-head {
        position: relative;
    }

    .mobile-navbar {
        gap: 20px;
        background: #000;
        align-items: center;
        overflow-y: initial;
        width: 80% !important;
        justify-content: flex-end;
    }

    .mobile-nav-accor {
        position: absolute;
        animation-name: aaaa;
        left: 0;
        transform: translateX(-20%);
        opacity: 0;
        z-index:11;
        visibility: hidden;
        top: 120%;
        display: flex;
        flex-direction: column;
    }
    
    

    .lang {
        display: none !important;
        gap: 10px;
    }

    .lang span,
    .lang-2 span {
        width: 2px;
        height: 20px;
        background: #f8f8f8;
    }

    .mobile-accor-head:hover .mobile-nav-accor {
        opacity: 1;
        top: 40px;
        display: flex;
        visibility: visible;
        background: #fff;
    }

    .mobile-nav-accor li a {
        white-space: nowrap;
    }

    .mobile-navbar li.ham-social {
        display: none;
    }

    .mobile-navbar {
        position: initial;
        background: transparent;
        height: fit-content;
        width: fit-content;
        display: flex;
        flex-direction: row;
    }

    .mobile-navbar li,
    .mobile-nav-accor {
        display: flex;
        /* gap: 20px; */
    }

    .mobile-navbar li,
    .mobile-navbar li a {
        color: #000;
        font-size: 1rem;
        text-transform: capitalize;
    }

    .lang-2 li:not(:first-child) {
        display: none;
    }

    .mobile-navbar .quote-lang {
        position: relative;
        justify-content: flex-start;
        align-items: center;
        width: 200px;
    }

    .lang-2 {
        flex-direction: column;
        gap: 0;
        /* transform: translateY(-50%); */
        position: absolute;
        align-items: center;
        right: -30px;
        top: 2px;
        display: flex !important;
    }

    .mobile-navbar .quote-lang button, .mobile-navbar .quote-lang .btn-whatsapp {
        background:#2f3032;
        color: #fff;
        transition: .4s ease-in-out;
        border: 1px solid transparent;
    }

    .mobile-navbar .quote-lang button:hover, .mobile-navbar .quote-lang .btn-whatsapp:hover {
        border: 1px solid #2f3032;
        background: #000;
        color: #fff;
    }
}
@media only screen and (min-width:1200px){
    .logo a.logo-img {
        width: 100%;
    }
    .nav-contact  {
        display: flex;
        gap: 8px;
        align-items:center;
        color: #333;
    }
    .calling_number{
        font-size: 15px;
        padding: 0 0 5px;
    }
    .calling_text{
        font-size:14px;
        color: #535050;
        white-space: nowrap;
    }
    
}
@media only screen and (min-width:1700px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 2000px !important;
        width: 90%;
    }

    /*.logo a.logo-img {*/
    /*    width: 150px;*/
    /*}*/

    .mobile-navbar li,
    .mobile-navbar li a,
    .mobile-navbar .quote-lang button, .mobile-navbar .quote-lang .btn-whatsapp {
        font-size: 1.5rem;
    }

    .mobile-navbar .quote-lang {
        min-width: 300px;
    }

    .lang-2 li a {
        width: 50px !important;
        height: 50px;
    }
}

/* artiq headerin kodlari bitmisdir */
/* slider section 
veb saytin slider hissesi buradan baslayir tebii ki css hissesi :)
swiperdan istifade etmisem ona deyerli is yoldasim her hansisa bir deyisikliyik etmek isteyirsense
documentasiyani oxu mumkun qeder aydin yazacam onsuz bu hisseni
*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_section .swiper {
    height: 30vh;
}

.swiper-slide {
    height: 100%;
}

.firts-slide-header {
    height: 100%;
    width: 100%;
}
.firts_slide_header_first_slide{
        background: linear-gradient(47deg, rgba(0,0,0,1) 14%, rgba(195,28,75,0) 45%), url("/img/9p-1.jpg") center/cover;
}
.second_slide_header_first_slide{
        background: linear-gradient(47deg, rgba(0,0,0,1) 14%, rgba(195,28,75,0) 45%), url("/img/7p-1.jpg") center/cover;
}
.third_slide_header_first_slide{
        background: linear-gradient(47deg, rgba(0,0,0,1) 14%, rgba(195,28,75,0) 45%), url("/img/16-1.jpg") center/cover;
}

.my-swiper-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 35px 50px;
}

.my-swiper-content h3 {
    color: #f8f8f8;
    font-size: 24px;
    line-height: 30px;
}

.my-swiper-content p {
    display: none;
}

.first_slider_button {
    display: none;
}

.first-slider-buttons {
    opacity: 0;
    display: flex !important;
    position: absolute;
    transition: opacity .3s, box-shadow .1s;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
    transform: translateY(-50%);
    top: 50%;
    padding: 0 10px;
}

.swiper:hover .first-slider-buttons {
    opacity: 1;
}

.my-navigation-buttons {
    display: flex !important;
    height: 35px;
    width: 35px;
    z-index: 11;
    justify-content: center;
    align-items: center;
    color: #000;
    cursor: pointer;
    background-color: #fff;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: .3s transform;
    font-size: 20px;
    background-size: 8px;
    box-shadow: 0 0 0 0 #fff, 0 5px 20px 0 rgb(0 0 0 / 20%);
    border-radius: 50%;
    text-align: center;
    outline: none;
}

.my-navigation-buttons:hover {
    transform: scale(1.2);
}

@media only screen and (min-width:992px) {
    .slider_section .swiper {
        height: 70vh;
    }

    .my-swiper-content {
        justify-content: flex-start;
        padding: 0 80px 50px;
    }

    .first-slide-content-text {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        flex-direction: column;
    }

    .my-swiper-content h3 {
        text-align: start;
        font-size: 30px;
        line-height: 38px;
    }

    .first-slide-content-text p {
        display: block;
        color: #f8f8f8;
        font-size: 19px;
        line-height: 24px;
        width: 550px;
        text-align: start;
    }

    .first_slider_button {
        display: inline-block;
        background: transparent;
        color: #fff;
        background: #2f3032;
        font-size: 16px;
        font-weight: normal;
        text-align: center;
        font-family: "Averta",sans-serif;
        border-radius: 3px;
        transition: 400ms;
        text-decoration: none;
        z-index: 100;
        padding: 16px 57px;
        width: fit-content;
        -webkit-animation: qiymetAnimation 1s;
        -moz-animation: qiymetAnimation 1s;
        -o-animation: qiymetAnimation 1s;
        animation: qiymetAnimation 1s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -o-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        box-shadow: 0 0 0 18px transparent;
    }

    .my-navigation-buttons {
        height: 48px;
        width: 48px;
        font-size: 24px;
    }
}

/* !slider section end 
    !slider hissesi artiq burda bitir her hansisa basqa deyisiklik etmek isteyirsense /css/myswi.css ve ya /js/app.js ve ya /js/myswi.js fayllarina baxa bilersen
    !!*/
/* ? xidmetler section start */
.section-2 {
    justify-content: space-between;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    /*grid-template-column: auto;*/
}
.section_2_updated_card{
    position:relative;
    /*width: calc(20% - 30px);*/
    color: #fff;
    flex: 1 1 208px;
    padding: 0;
}
.section_2_updated_card_img{
    width:100%;
    height:206px;
    object-fit:cover;
}
.section_2_updated_card::after{
    content: "";
    position: absolute;
    background: -moz-linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #000);
    width: 100%;
    height: 160px;
    bottom: 0px;
    left: 0;
    -webkit-transition: 300ms all ease;
    -moz-transition: 300ms all ease;
    -o-transition: 300ms all ease;
    transition: 300ms all ease;
}
.section_2_updated_card:hover::after{
    opacity:0;
}
.section_2_updated_card_text{
    width:100%;
    transition:.3s;
    text-align:center;
    z-index:2;
    font-size:23px;
    font-weight: 600;
    bottom:20px;
}
.section_2_updated_card:hover .section_2_updated_card_text{
    bottom: 40px;
}
.section_2_services_card {
    width: 100%;
    border-radius: 10px;
    color: #000;
    overflow: hidden;
    height: 427px;
    transition: .4s;
}

.section_2_card_imgs_button {
    height: 100%;
    transition: .4s;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.section_2_card_imgs_button::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: 3;
    transition: .4s;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5))
}

.section_2_card_imgs_button span {
    bottom: 45px;
    font-size: 1rem;
    line-height: 1.75rem;
    line-height: 1.5rem;
    padding: .5rem 0.75rem;
    right: 30px;
    position: absolute;
    background-color: #008d84;
    border-radius: 30px;
    color: #fff;
    z-index: 4;
}

.section_2_card_imgs_button img {
    width: 100%;
    height: 100%;
    transition: .4s;
    object-fit: cover;
}

.section_2_card_imgs_button img:nth-child(1) {
    height: 427px;
}

/* .section_2_services_card:hover{
    height: 400px;
} */
.section_2_card_imgs_button {
    height: 340px;
}

.section_2_services_card:hover .section_2_card_imgs_button img:nth-child(1) {
    /* transform: translateY(30px); */
    height: 400px;
}

.section_2_card_date {
    bottom: 10px;
    color: #484848;
    font-size: 16px;
    left: 15px;
}

.section_2_card_info {
    left: 15px;
    position: absolute;
    bottom: 35px;
    font-size: 20px;
    color: #000;
}

/* ! section 2 responsive */
@media only screen and (min-width:467px) {
 
    
    .section_2_services_card {
        height: 427px;
        cursor: pointer;
    }

    .section_2_card_imgs_button {
        height: 100%;
    }

    .section_2_card_imgs_button img:nth-child(1) {
        height: 427px;
    }

    .section_2_card_imgs_button span {
        bottom: 45px;
        font-size: 1.25rem;
        line-height: 1.75rem;
        line-height: 1.5rem;
        padding: 1rem 1.25rem;
        right: 30px;
        position: absolute;
        background-color:#2f3032;
        border-radius: 30px;
        color: #fff;
        z-index: 4;
    }

    .section_2_card_info {
        position: absolute;
        bottom: 90px;
        font-size: 0px;
        z-index: 1;
        left: 30px;
        transition: .4s;
    }

    .section_2_card_date {
        bottom: 62px;
        left: 30px;
        color: transparent;
        font-size: 16px;
        color: #cacaca;
        z-index: 4;
        transition: .4s;
    }

    /* ? hover effects */
    .section_2_card_imgs_button:hover::after {
        opacity: 0;
    }

    .section_2_services_card:hover .section_2_card_imgs_button {
        height: 360px;
    }

    .section_2_services_card:hover .section_2_card_date {
        bottom: 0px;
        color: #484848;
        font-size: 16px;
    }

    .section_2_services_card:hover .section_2_card_info {
        left: 30px;
        position: absolute;
        bottom: 20px;
        text-align:start;
        font-size: 18px;
        color: #000;
    }
}
@media only screen and (min-width:992px){
    
    .section_2_card_imgs_button span{
        bottom: 48px;
        font-size: 0.85rem;
        line-height: 1.5rem;
        padding: 0.7rem 1.25rem;
    }
}
@media only screen and (min-width:1200px){
    /*li.hover:hover .mobile-nav-accorrr{*/
    /*    visibility: hidden;*/
    /*}*/
    
/*      .mobile-nav-accorrr {*/
/*    position: absolute;*/
/*    left: 300px;*/
  
/*    opacity: 1;*/
/*    z-index: 11;*/
    /*visibility: hidden;*/ /* İhtiyaca bağlı olarak kullanılabilir */
/*    top: 0;*/
    /* display: none; */ /* Bu satırı kaldırın */
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*.ura: .mobile-nav-accorrr {*/
/*    display: block;*/
/*}*/



    
    .section_2_card_imgs_button span{
        bottom: 45px;
        font-size: 1.25rem;
        line-height: 1.5rem;
        padding: 1rem 1.25rem;
    }
}

/* ! section 2 layiheler burada bitir */
/* ! section 3 kategoriyalar buradan baslayir */
.kate_section_slider{
    position: relative;
}
.section_kategories .swiper-slide,.products_cards {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 5px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 8%);
    transition: box-shadow .2s ease-in-out;
}
.section_kategories .swiper-slide:hover,.products_cards:hover{
        box-shadow: 0 0 15px 0 rgb(0 0 0 / 16%)
}
.section_3_card {
    width: 100%;
    color: #fff;

}
.section_3_card_img {
    height: 280px;
    position: relative;
    width: 100%;
}
.section_3_card_img::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, .8));
    content: "";
}
.section_3_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section_3_card_img_text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 22px 20px 21px;
    z-index: 1;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.section_3_card_img_text p {
    font-size: 1.6rem;
    line-height: 1.26;
}
.section_3_card_img_text svg path {
    fill: #fff;
}
.mySwiper_section_3 .swiper-slide {
    border-radius: 5px;
    overflow: hidden;
    background: transparent;
}
.section_3_card_info {
    color: #000;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.section_3_card_info a{
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    position:relative;
    transition: .3s;
    border: 1px solid transparent;
}
.section_3_card_info a.section_3_card_info_daha_etrafli{
    background: none;
    color:#000;
}
.section_3_card_info a.section_3_card_info_daha_etrafli span{
    position: relative;
    z-index: 2;
}
.section_3_card_info a.section_3_card_info_daha_etrafli::after{
    content: '';
    position: absolute;
    top:50%;
    left: 50%;
    width:0;
    height: 0;
    background: #f2f3f5;
    transition: .6s;
    transform: translate(-50%, -50%);
    border-radius: 50% ;
}
.section_3_card_info a.section_3_card_info_daha_etrafli:hover::after{
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 5px;
}
.section_3_card_info_date {
    background: #2f3032;
}
.section_3_card_info_date:hover {
    background: transparent;
    color: #128C7E;
    border-color: #128C7E;
}
.mySwiper_section_3_my_buttons {
    width: 40px;
    top: 50%;
    height: 40px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid transparent;
    border-radius: 24px;
    box-shadow: 0 2px 7px 0 rgb(0 0 0 / 15%);
    transform: translateY(-50%);
    cursor: pointer;
    transition: 200ms all ease;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
   .swiper-button-next_my,
   .swiper-button-next_my_2,
   .swiper-button-next_my_3 {
       right: 10px;
   }

   .swiper-button-prev_my,
   .swiper-button-prev_my_2,
   .swiper-button-prev_my_3 {
       left: 10px;
   }
@media only screen and (min-width:992px){
    .swiper-button-next_my,
        .swiper-button-next_my_2,
        .swiper-button-next_my_3 {
            right: 0;
            transform: translate(50%, -50%);
        }
    
        .swiper-button-prev_my,
        .swiper-button-prev_my_2,
        .swiper-button-prev_my_3 {
            left: 0;
            transform: translate(-50%, -50%);
        }
    
        .mySwiper_section_3_my_buttons:hover {
            background: rgba(255, 255, 255, 1);
    
        }
}
/* ! kategoriyalar sectionu burada bitir */
/* referans */
.all-log{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.all-logos {
    overflow: hidden;
    white-space: nowrap;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slide1 {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.logos {
    display: inline-block;
    animation: 30s slide infinite linear;
}

.logos1 {
    display: inline-block;
    animation: 30s slide1 infinite linear;
}

.logos img,
.logos1 img {
    width: 243px;
    margin: 0 50px;
    height: 142px;
    object-fit: contain;
    padding: 20px;
    border-radius: 16px;
    background: #ebebeb;
}

.referans-content {
    text-align: center;
}

.referans-content h3 {
    font-size: 35px;
}

.referans-content p {
    width: 35%;
    margin: 20px auto 50px auto;
    line-height: 23px;
    font-size: 17px;
}

/* referanslar end */

/*  call to action start */

.call-to-action{
    padding: 50px 0;
    background-color: #000;
}

.call-to-action h4{
    font-size: 23px;
    color: white;
}

.call-to-action h3{
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.call-to-action a{
    display: inline-block;
    cursor: pointer;
    padding: 15px 45px;
    font-weight: 700;
    border-radius: 100px;
    -webkit-transition-property: 0.4s all ease-in;
    transition-property: 0.4s all ease-in;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-color: #ffffff;
    border: 2px solid #fff;
    font-size: 18px;
    display: inline-block;
    color: #333;
    -webkit-animation: play 4s ease infinite;
    -moz-animation: play 4s ease infinite;
    animation: play 4s ease infinite;
}

.call-to-action a:hover{
    background-color: transparent;
    color: #fff !important;
}

.call-to-action .order_btn{
    width: max-content;
    margin-left: auto;
}

@keyframes play{
    20%, 100% {
        -webkit-box-shadow: 0 0 0 5px rgb(255 255 255 / 0%);
        -moz-box-shadow: 0 0 0 5px rgb(255 255 255 / 0%);
        box-shadow: 0 0 0 5px rgb(255 255 255 / 0%);
    }
    
    0% {
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 5px rgb(255 255 255 / 0%), 0 0 0 10px rgb(78 208 72 / 0%);
        -moz-box-shadow: 0 0 0 5px rgb(255 255 255 / 0%), 0 0 0 10px rgb(78 208 72 / 0%);
        box-shadow: 0 0 0 5px rgb(255 255 255 / 0%), 0 0 0 10px rgb(78 208 72 / 0%);
    }
    10% {
        -webkit-box-shadow: 0 0 0 10px rgb(255 255 255 / 30%), 0 0 0 20px rgb(255 255 255 / 20%);
        -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(203, 166, 81, 0.2);
        box-shadow: 0 0 0 10px rgb(255 255 255 / 30%), 0 0 0 20px rgb(255 255 255 / 20%);
    }
}
@media only screen and (max-width: 992px){
    .mobile-nav-accorrr{display:none;}
     .call-to-action .row>div:first-child{
        margin-bottom: 25px;
        text-align: center;
    }

    .call-to-action .order_btn{
        margin: auto !important;
    }
}

/* modal */
.btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: #f5d921;
    padding: 0 20px;
    color: black;
    border: none;
    font-size: 17px;
    column-gap: 15px;
    transition: .3s;
}
.qiymet-btn button i{
    transition: .3s;
}
.qiymet-btn button:hover i{
    transform: translateX(10px);
}

.btn2:hover {
    background: #dfc30c;
}

.modal-backdrop {
    z-index: 1 !important;
}

.modal-content {
    padding: 30px !important;
}

.modal-body form {
    display: flex;
    flex-direction: column;
}

.modal-body input,
select,
textarea {
    outline: none;
    background-color: white;
    padding: 15px 15px;
    border-radius: 5px;
    border: 1px solid rgb(156, 156, 156);
    margin-top: 15px;
}

.modal-body input::placeholder,
textarea::placeholder {
    font-family: "Times New Roman", Times, serif;
    color: #888888;
}

.modal-body select {
    color: #888888;
}

.modal-footer {
    justify-content: center !important;
}

.modal-footer button {
    width: 100%;
    height: 45px;
    border-radius: 3px !important;
    background-color: #dfc30c;
    color: white;
    transition: 0.3s;
    border: 1px solid #f5d921;
}

form textarea {
    margin-top: 15px;
}

.btn-close {
    background-color: rgb(255, 255, 255) !important;
    font-weight: 700;
    font-size: 16px;
}

.modal-title {
    font-size: 20px;
}

/* modal end */

/*  call to action end */
/* footer-start */
/* footer */
footer {
	border-top: 1px solid hsla(0,0%,76.9%,.6);
}

footer .section-top {
	background-color: #f4f4f4;
	padding: 60px 0;
}

footer .section-top .media-wrapper {
	display: -ms-flexbox;
    display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%;
}

footer .section-top .footer-brand {
	margin-bottom: 30px;
	display: block;
}

footer .section-top .footer-brand .logo-text {
    padding-top: 5px;
    width: max-content;
}

footer .section-top .footer-brand .logo-text span {
    font-size: 13px;
    color: #000;
}

footer .section-top .social-media-wrap h6 {
	font-family: "Averta",sans-serif;
	font-size: 16px;
	margin-bottom: 15px;
}

footer .section-top .social-media-wrap .social-media li {
	float: left;
	width: 40px;
	height: 40px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	background-color: #e2e2e2;
}

footer .section-top .social-media-wrap .social-media li:not(:last-child) {
	margin-right: 10px;
}

footer .section-top .social-media-wrap .social-media li a {
	display: -ms-flexbox;
  	display: flex;
	-ms-flex-align: center;
    align-items: center;
	-ms-flex-pack: center;
    justify-content: center;
	height: 100%;
}

footer .section-top .social-media-wrap .social-media li i {
	color: #f4f4f4;
	font-size: 20px;
	text-shadow: 1px 1px #080808;
	-webkit-transition: all 0.225s ease 0s;
  	-moz-transition: all 0.225s ease 0s; 
  	-o-transition: all 0.225s ease 0s;
  	transition: all 0.225s ease 0s;
}

footer .section-top .social-media-wrap .social-media li:nth-child(1):hover {
	background-color: #3b5998;
}

footer .section-top .social-media-wrap .social-media li:nth-child(2):hover {
	background-color: #f62403;
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

footer .section-top .social-media-wrap .social-media li:nth-child(3):hover {
	background-color: #0966c2;
}

footer .section-top .social-media-wrap .social-media li:nth-child(4):hover {
	background-color:red;
}

footer .section-top .social-media-wrap .social-media li:nth-child(5):hover {
	background-color: #f70100;
}

footer .section-top .footer-list li {
	padding-right: 8px;
}

footer .section-top .footer-list li:not(:last-child) {
	margin-bottom: 15px;
}

footer .section-top .footer-list li a {
	font-size: 16px;
	-webkit-transition: all 0.225s ease 0s;
  	-moz-transition: all 0.225s ease 0s; 
  	-o-transition: all 0.225s ease 0s;
  	color: #000;
  	transition: all 0.225s ease 0s;
}

footer .section-top .footer-list li:hover a {
	color: #f99074;
}

footer .section-top .info-box {
	padding: 22px 28px 24px;
    -webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-o-border-radius: 12px;
	border-radius: 12px;
}

footer .section-top .contact-info-box {
	border: 1px solid #fff;
	background-color: #fff;
}

footer .section-top .order-info-box {
	border: 1px solid #d7dde3;
	background-color: transparent;
}

footer .section-top .info-box h6 {
	font-family: "Averta",sans-serif;
	font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
    min-height: 40px;
}

footer .section-top .contact-info-box h6 {
	color: #f99074;
} 

footer .section-top .info-box .tel-link {
	color: #000;
	font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
	display: block;
}

footer .section-top .info-box span,
footer .section-top .info-box .email-link {
	display: block;
	font-size: 14px;
	color: #000;
    line-height: 20px;
    margin-bottom: 18px;
}
footer .section-top .info-box span,
footer .section-top .info-box .email-link {
	display: block;
	font-size: 14px;
    line-height: 20px;
    margin-bottom: 18px;
}
.custom-btn2 {
	font-size: 18px;
	color: #fff;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
	-webkit-transition: all 0.225s ease 0s;
  	-moz-transition: all 0.225s ease 0s; 
  	-o-transition: all 0.225s ease 0s;
  	transition: all 0.225s ease 0s;
	padding: 15px 0;
	text-align: center;
	display: block;
}
footer .section-top .contact-info-box .contact-btn {
    
	background-color: #2f3032;
	-webkit-box-shadow:none;
	-moz-box-shadow: 0 20px 30px -18px #2f3032;
	-o-box-shadow: 0 20px 30px -18px #2f3032;
	box-shadow: 0 20px 30px -18px #2f3032;
	width: 100%;
	border:1px solid #2f3032;
	
}

footer .section-top .contact-info-box .contact-btn:hover {
	background-color: #fff;
	color:#000;
	
}

footer .section-top .order-info-box .order-btn {
	color: #2f3032;
	background-color: #fff;
	/*-webkit-box-shadow: 0 20px 30px -18px #7fd958;
	-moz-box-shadow: 0 20px 30px -18px #7fd958;
	-o-box-shadow: 0 20px 30px -18px #7fd958;
	box-shadow: 0 20px 30px -18px #7fd958;*/
}

footer .section-top .order-info-box .order-btn:hover {
		background-color: #2f3032;
		color:#fff;
}

footer .section-bottom {
    background-color: #fff;
    padding: 30px 0;
	color: #fff;
    font-size: 16px;
    line-height: 20px;
}
.footer_b > *{
    color: #000;
}
footer .section-bottom .footer-row {
	-ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
	margin: 0;
}
.footer_end{
    text-align:end;
}
.okmedia{
    display: inline-block;
    max-width: 80px;
}
.okmedia img{
    width: 100%;
}
footer .section-bottom .footer-row .createby {
	margin-bottom: 0;
	display:flex;
	gap: 20px;
    justify-content: flex-end;
}

footer .section-bottom .footer-row .createby a {
	position: relative;
	color: #fff;
	margin-left: 5px;
	display:flex;
}

footer .section-bottom .footer-row .createby a::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    background-color: #fff;
    display: block;
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    bottom: 0;
    left: 0;
}

footer .section-bottom .footer-row .createby a:hover::after {
    width: 0;
}

@media only screen and (max-width: 1199.98px) {
    footer .section-top .social-media-wrap .social-media li {
        margin-bottom: 10px;
    }
    
    footer .section-top .info-box .tel-link {
        font-size: 18px;
    }
}
@media only screen and (max-width: 990.98px) {
   
    footer .section-top .footer-list {
        -moz-column-count: 2;
        column-count: 2;
    }
    
    footer .section-top .info-box {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767.98px) {
    
    
    footer .section-top {
        padding: 30px 0;
    }
    
    footer .section-top .media-wrapper {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-align: center;
        align-items: center;
    }
    
    footer .section-top .info-box {
        text-align: center;
    }
    
    footer .section-top .info-box h6 {
        min-height: auto;
    }
    
    footer .section-top .info-box .custom-btn2 {
        width: 50%;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 575.98px) {
    footer .section-bottom .footer-row span,
    footer .section-bottom .footer-row p {
        width: 100%;
        text-align: center;
    }
    
    footer .section-bottom .footer-row p {
        margin-top: 10px;
    }
}
@media only screen and (max-width: 500px) {
    footer .section-top .media-wrapper {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    footer .section-top .footer-list {
        -moz-column-count: 1;
        column-count: 1;
        margin-top: 20px;
    }
    
    footer .section-top .footer-list li a {
        display: block;
        text-align: center;
    }
}
@media only screen and (max-width: 400px) {
    footer .section-top .info-box .custom-btn2 {
        width: 100%;
    }
    
    .team-wrapper .team-member .member-img {
        width: 170px;
        height: 170px;
    }
}


/* static pages */
/* haqqimizda*/
.haqqimizda_content_all{
    /*background: #f5f5f5*/
}
@media only screen and (max-width: 768px){
.haqqimizda_content_all .my-p-4-v{
    padding: 20px 0 30px;   
}
}
.static_page_head_bg{
    background: linear-gradient(0deg,rgb(39 130 103 / 83%),rgb(39 130 103 / 83%)),url("https://elit-s.az/uploads/posts/2021-03/1614778663_conc.jpg") center/cover;
    padding:73px 0;
}
.static_page_head_bg h1{
    font-size: 40px;
    color: #fff;
}
.speed_bar{
    background: #f6f6f6;
}
.speed_bar ul{
    display: flex;
    overflow-x: auto;
    gap:15px
}
.speed_bar ul li{
   padding: 20px 0;
   white-space: nowrap;
}
.speed_bar ul li a{
    color: #5f576b;
    font-size:16px;
    font-weight: 500;
}
.speed_bar ul li:last-child{
    border-bottom: 2px solid rgb(39 130 103 / 83%);
    color: rgb(39 130 103 / 83%);
}
.static_pages .row{
    margin: 0 20px !important;
}
.dleplyrplayer,.dleplyrplayer > *{
    max-width: inherit !important;
    max-height: 500px;
    height: 100%;
    width: 100%;
    padding:0 !important;
    margin-top: 0;
}
.dleplyrplayer{
    padding: 30px !important;
}
.dleplyrplayer video{
    max-width: inherit;
}
.haqqimizda_content p{
    line-height: 135%;
    padding: 0 30px;
}
@media only screen and (min-width: 560px){
    .static_pages .row,.static_pages .row>*:not(.dleplyrplayer){
    padding: 0 !important;
    margin-left:0 !important;
    margin-right:0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
}
.row .haqq_content{
    padding: 20px !important;
}
}
/*haqqimizda end*/
/*sertifikatlar*/
.sertifikatlar_page{
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    row-gap: 40px;
}
.sertifikatlar_page a.highslide{
    position: relative;
        flex: 0 0 255px;
}
.sertifikatlar_page a.highslide::after{
    background-image: none!important;
    border-width: 23px!important;
    border-style: solid!important;
    border-color: #a5a4a4 #bebebe #a5a4a4 #bebebe!important;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    
}
.sertifikatlar_page a.highslide,.sertifikatlar_page a.highslide img{
    width: 100%;
}
.sertifikatlar_page a.highslide img{
    height: 100%;
    height: 350px;
    padding: 23px;
    object-fit: cover;
    margin: 0;
}
@media only screen and (min-width:880px){
    .sertifikatlar_page{
    justify-content: space-between;
}
    .sertifikatlar_page a.highslide {
    position: relative;
    flex: 0 0 338px;
    }
    .sertifikatlar_page a.highslide img {
    height: 471px;
    }
}
@media only screen and (min-width:1280px){
    
    
    
    
    .sertifikatlar_page a.highslide {
    position: relative;
    flex: 0 0 362px;
    }
    .sertifikatlar_page a.highslide img {
    height: 526px;
    }
}
/*sertifikatlar end*/

/*static pages end*/
/*contact*/
.feedback_bg{
    background: linear-gradient(0deg,rgb(39 130 103 / 83%),rgb(39 130 103 / 83%)),url("/img/contact-background.jpg") center/cover;
    padding: 93px 0;
}
.feedback_bg h1{
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
.feedback_info_bg{
    transition: .3s;
    border-bottom: 1px solid transparent;
}
.feedback_info_bg:hover{
    background-color: #f7f7f8;
    border-bottom: 1px solid #2f3032;
}
.feedback_info_img{
    width: 150px;
}
.feedback_info{
    padding: 30px 0 20px;
    border-bottom: 1px solid #d6d9db;
    text-align: center;
}
.feedback_info_row{
    justify-content: center;
    align-items:center;    
}
.feedback_info h3{
    font-weight: 600;
    font-size: 30px;
}
.feedback_info p{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin: 0 auto;
    max-width: 390px;
}
.feedback_info a{
    margin: 0 auto;
    color: #000;
    line-height: 140%;
    font-weight: 400;
}
.feedback_form{
    padding: 40px 0 0;
}
.feedback_form input,.feedback_form textarea{
    height: 50px !important;
    transition: all .3s ease;
    font-family: "Averta",sans-serif;
    width: 100%;
    border: 2px solid #eaeaea !important;
    padding: 12px !important;
    border-radius: 3px !important;
    font-size: 14px !important;
    outline: none;
    position: relative;
    -webkit-appearance: none;
}
.feedback_form textarea{
    height: 140px !important;
}
.feedback_form input:focus,.feedback_form textarea:focus{
    box-shadow: none !important;
    border-color: #3d8c7c40 !important;
}
.btn-submit {
    color: #ffffff;
    border: none;
    float: right;
    margin-top: 20px;
    height: 44px !important;
    width: 194px;
    font-size: 15px;
    border:1px solid transparent;
    text-align: center;
    border-radius: 3px;
    -webkit-transition: all .2s;
    transition: all .2s;
    color: #fff;
    background: #2f3032;
    max-width: 200px;
    border-radius: 6px;
}
.btn-submit:hover{
    background: transparent;
    border:1px solid #2f3032 !important;
}
/*map*/
#map{
    height: 350px;
}
@media only screen and (min-width:768px){
    .my_text_start{
        text-align:start;
    }
    .my_text_end{
        text-align:end;
        
    }
}
/*contact end*/
/*komandamiz*/
.category-parent{
    padding: 60px 0;
}
.category-parent .row{
    justify-content: space-between;
}
.team_card{
    overflow: hidden;
    transition:.3s;
    padding: 0;
    color: #fff;
}
.card_hover_effect_team{
    transition: .3s;
}
.card_hover_effect_team:hover{
    transform:translateY(-20px)
}
.card_visible_side{
    border-radius: 14px;
    height: 380px;
}
.card_visible_side::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background: #000;
    transition: 0.3s;
    opacity: 0.05;
    z-index:3;
    border-radius: 15px;
    left:0;
    top:0;
}
.team_card:hover .card_visible_side::after{
    opacity: 0.3;
}
.card_visible_side img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.card_visible_side .card_name{
    position: absolute;
    bottom: 20px;
    opacity:0;
    width: 100%;
    transition:.3s;
    z-index:4;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}
.team_card:hover .card_visible_side .card_name{
    opacity: 1;
}
.card_visible_side .card_name h3{
    font-size: 30px;
    font-weight: 600;
}
.card_visible_side .card_name p{
    font-size: 20px;
    font-weight: 400;
}
.card_hover_visible_side{
    opacity:0;
    padding: 15px 0 0;
    transition:.3s;
    visibility: hidden;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.team_card:hover .card_hover_visible_side{
    opacity:1;
    visibility:visible;
}
.card_hover_visible_side a{
    font-size: 19px;
    text-align:center;
    font-weight: 400;
    color: #000;
}
/*komandamiz end*/
/*karyera*/
.karyera_desc{
    padding: 20px 0 0;
    color: #fff;
}
.karyera_gap{
    gap:20px;
    justify-content: flex-start !important;
}
.karyera_card{
    border-radius: 6px;
    padding: 20px 30px 40px;
    box-shadow: 0 2px 11px rgb(0 0 0 / 20%);
    background-color: #fff;
    transition: box-shadow 0.2s;
    width: 100%;
    min-height: 471px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:20px;
}
.karyera_card h3{
    font-weight: bold;
    font-size: 2.1rem;
    padding: 0 0 15px;
    color: #000;
}
.karyera_card p{
    background: #3189ce;
    padding: 8px 15px;
    width: fit-content;
    border-radius: 6px;
    color: #fff;
    margin: 15px 0;
    font-size: 16px;
    border: 0;
    margin: 15px 0;
}
.karyera_short ul{
    display: grid;
    grid-template-columns: 100%;
    gap:15px;
}
.karyera_short ul li{
    color: #000;
    font-size: 18px;
    background: url("/img/1024px-Red_check.svg.png") no-repeat;
    background-size: 16px;
    font-weight: 400;
    padding-left: 25px;
    background-position-y: center;
}
.karyera_etrafli{
    background-color: #fff;
    border: 1px solid #000;
    color: #3189ce;
    display: inline-block;
    transition: 300ms;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin-top: 30px;
    cursor: pointer;
}
/*.karyera_short ul li:nth-child(n+4){*/
/*    display:none;*/
/*}*/
.karyera_card:hover .karyera_etrafli{
    background-color: #3189ce;
    color:#fff;
}
/*karyera full story*/
.karyera-section{
    padding: 120px 0;
}
.karyera-section .karyera-cards {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    /* row-gap: 20px; */
    flex-wrap: wrap;
    padding-top: 36px;
}

.karyera-section .karyera-cards > a {
    height: max-content;
    display: block;
    cursor: pointer;
}

.karyera-section .karyera-card ul li {
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Red_check.svg/1024px-Red_check.svg.png') no-repeat;
    background-size: 16px;
    padding-left: 25px;
    background-position-y: center;
}
.karyera-section .karyera-cnt h2 {
    font-weight: bold;
    font-size: 2.5rem;
    color:#4366a1;
}
.karyera-section .karyera-cnt p {
    padding: 20px 0 0 0;
    font-size: 18px;
    line-height: 22px;
}
.karyera-section .karyera-city {
    background-color: #3189ce;
    padding: 8px 15px;
    border-radius: 6px;
    color: #fff;
    margin: 15px 0;
    font-size: 16px;
    border: 0;
    margin: 15px 0;
}
.karyera-section .karyera-card ul li {
    color: #4366a1;
    font-size: 18px;
    margin: 15px 0;
}
.karyera-section .karyera-card {
    border-radius: 6px;
    padding: 20px 30px 40px;
    box-shadow: 0 2px 11px rgb(0 0 0 / 20%);
    background-color: #fff;
    transition: box-shadow 0.2s;
    max-width: 340px;
    min-height: 611px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.karyera-section .karyera-daha-etrafli{
    background-color: #fff;
    border: 1px solid #3189ce;
    color: #3189ce;
    display: inline-block;
    transition: 300ms background-color ease;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin-top: 30px;
    cursor: pointer;
}
.karyera-section .karyera-daha-etrafli:hover {
    background-color: #3189ce;
    color: #fff;
}
@media only screen and (min-width: 768px){
    .karyera_card{
        width: calc(50% - 20px);
    }
}
@media only screen and (min-width: 1020px){
    .karyera_card{
        width: calc(33% - 20px);
        max-width: 450px;
    }
}
/*karyera end*/
/*karyera ic sehife start*/
.karyera-ic-sehife{
    /*background-color: #eee;*/
    padding: 40px 0;
}
.karyera-ic-sehife img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}

.karyera-ic-sehife-basliq {
    color: #000;
    font-weight: bold;
    line-height: 110%;
    font-size: 2.5rem;
    padding: 20px 0;
}

.karyera-elanin-tesviri ul li,
.karyera-is-barede-melumat ul li,
.karyera-namizede-telebler ul li,
.karyera-melumatlandirici-qeydler ul li  {
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Red_check.svg/1024px-Red_check.svg.png') no-repeat;
    background-size: 16px;
    padding-left: 25px;
    background-position-y: center;
    color: #4366a1;
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.5;
}
.karyera-ic-sehife-content p {
    color: #4366a1;
    font-size: 18px;
    margin: 10px 0;
    line-height: 1.5;
}
.karyera-ic-sehife-content {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.karyera-ic-sehife-content-left,
.karyera-ic-sehife-content-right{
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 4rem rgb(82 85 90 / 10%);
}
.karyera-ic-sehife-content-left{
    height: fit-content;
    width: 35%;
}
.karyera-ic-sehife-content-right{
    height: fit-content;
    width: 65%;
}
.karyera-h2{
    font-size: 20px;
    margin: 10px 0;
    padding: 0 0 13px;
    font-weight: bold;
    color: #010180;
    position: relative;
}
.karyera-h2-main{color:black !important;}
.karyera-h2::after{
    position: absolute;
    content: '';
    bottom: 0;
    left: 26px;
    width: 5px;
    height: 5px;
    background-color: white;
}.karyera-h2::before{
    position: absolute;
    content: '';
    bottom: 0;
    width: 45px;
    height: 4px;
    border-radius: 30px;
    background-color: #45689f;
}
.full_story_xus{
    /*border-top: 1px solid #eaeaea;*/
}
.full_story_xus_content{
    padding: 30px 0 0;
}
.full_story_xus ul.full_story_xus_content_xus{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.full_story_xus_content div.full_story_xus_content_xus_conte{
    line-height: 130%;
    padding: 25px 0 0;
    
}

.icons-products {
    display:flex;
    flex-wrap:wrap;
}

.icons-products img {
    height: 85px;
    aspect-ratio: inherit!important;
}


.full_story_xus_content ul li{
    position: relative;
}
.full_story_xus_content ul li span{
    font-weight: 600;
}
@media only screen and (max-width:992px){
    .karyera-ic-sehife-content {
        flex-direction: column;
    }
    .karyera-ic-sehife-content-left{
        width: 100%;
    }
    .karyera-ic-sehife-content-right{
        width: 100%;
    }
}
#dle-comments-form{
    display:none;
}
/*karyera ic sehife end*/
/*karyera end*/
/*blog full*/
.blog_full_content{
    display: grid;
    grid-template_columns: 100%;
    gap: 30px;
}
.blog_full_content img{
    width: 100%;
    max-height: 400px;
    border-radius: 10px;
    object-fit:cover;
}
.blog_full_content_text{
    line-height: 140%;
}

/*blog full end*/
/*service start*/

.service-card{
    position: relative;
    height: 440px;
    margin-bottom: 40px;
    background: transparent;
    border: none;
    overflow: hidden;
    border-radius: 35px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.services-inside-all .cat-content{
    padding: 70px 0 30px 0;
}
.works-all-inside .service-card{
    margin-bottom: 0;
}
.services.inside-service{
    padding: 70px 0 30px 0;
}
.service-card::after,.service-card::before{
    height: 100%;
    width: 100%;
    position: absolute;
    content: '';
    transition: 0.3s ease-in-out;
    opacity: 0.99;
    z-index: 1;
}
.service-card::before{
    background: linear-gradient(to top, #2b1919, rgba(43, 25, 25, 0.5));
    opacity: 0;
}
.service-card::after{
    background: linear-gradient(to top, #2b191999, rgba(43, 25, 25, 0));
    opacity: 1;
}
.services-inside-all .service-card:hover::before,
.services-inside-all .service-card:hover::after{
    opacity: 1;
    transition: opacity 0.3s;
}
.service-card img{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
}
.service-text{
    position: absolute;
    bottom: -20px;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    color: white;
    word-wrap: break-word;
    width: 100%;
    padding: 0px 30px;
    transition: 0.3s ease-in-out;
}
.service-card:hover .service-text{
    bottom: 15px;
    transition: 0.3s ease-in-out;
}
/*service end*/
/*mehsullar full story*/
.product_right_side_rows,.product_all{
    justify-content: space-between;
}
.product_left_side{
    text-align:center;
    border-radius: 8px;
    height: fit-content;
    padding: 0;
    overflow: hidden;
    background: #eee;
}
.product_left_side h2{
    background: #494949;
    padding: 12px;
    color: #fff;
}
.product_left_side_kate{
    gap:14px;
    flex-direction: column;
    padding: 15px;
}
.product_left_side_kate li{
    cursor:pointer;
    transition: .3s;
}
.product_left_side_kate h4{
    transition: .3s;
    padding: 3px 0;
    justify-content: space-between;
}
.product_left_side_kate li:hover h4{
    opacity: 0.6;
}
.product_left_side_kate li ul{
    padding: 16px 10px 0;
}
.product_left_side_kate li ul li{
    padding: 18px 0 0;
}
.product_left_side_kate li ul li a{
    justify-content:space-between;
    width:100%;
    text-align: start;
    line-height: 21px;
    display:flex;
    color: #000;
}
.product_left_side_kate li ul li:first-child{
    padding: 0;
}
.product_right_side{
    padding: 0 0 0 25px;
}
.product_right_side_img img{
    width:100%;
    max-height: 300px;
    aspect-ratio: 2/1;
    object-fit:contain;
}
.product_right_side_info h1{
    font-size: 30px;
    font-weight:600;
}
.product_right_side_info ul{
    padding: 20px 0 0;
    flex-direction: column;
    gap: 20px 0;
    width: fit-content;
}
.calc_button_open{
    background: none;
    text-align: start;
    line-height: 140%;
    border: none;
    outline: none;
    padding: 0;
    font-weight: 500;
    margin: 0;
}
.product_right_side_info ul li,.product_right_side_info ul li a,.share_links,.calc_button_open{
    align-items: center;
    color: #000;
    cursor: pointer;
    gap: 20px;
}
.all_product_full_story{
    background: #f1f1f157;
}

/*calculator*/
.my_calc_modal{
    flex-direction: column;
    gap: 15px;
}
.my_calc_modal label{
    flex-direction: column;
}
.my_calc_modal label input{
    width: 100%;
}
.my_calc_button{
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: #399700;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    transition: .4s;
    letter-spacing: 0.5px;
}
.my_calc_button:hover{
    background: transparent;
    border-color:#399700 ;
    color: #399700;
}
#yekunQiymet{
    text-align: center;
    padding: 15px 0 0;
    font-size: 25px;
}
#yekunQiymet sup{
    font-size: 15px;
}
/*calculator end*/


/*share*/
/*.share_list{*/
/*    width: 220px;*/
/*    overflow:hidden;*/
/*}*/
/*.all_product_full_story .container{*/
/*    padding: 0;*/
/*}*/
.product_right_side_info ul.share_list_ul{
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0;
}

.product_right_side_info ul.share_list_ul li a{
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
}
.full_facebook{
    background: #4267B2;
    border: 1px solid #4267B2;
}
.full_twitter{
    /*background: #1DA1F2;*/
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    border: 1px solid #1DA1F2;
}
.full_facebook{
    background: #30afed;
    border: 1px solid #30afed;
}
.full_facebook{
    background: #4267B2;
    border: 1px solid #4267B2;
}
.full_wp{
    background: #25D366;
    border: 1px solid #25D366;
}
.full_linkedin{
    background: #0077b5;
    border: 1px solid #0077b5;
}
/*print */
.print_page,.print_page > *{
    text-align: center;
}
.print_paper{
    padding: 20px;
    margin: 80px auto 0;
    display: flex;
    flex-direction:column;
    gap: 20px;
}
.print_paper h1{
    font-size: clamp(14px,15vw,30px);
    font-weight: 600;
}
.print_paper p{
    font-size: clamp(14px,15vw,17px);
    font-weight: 400;
}
.print_paper img{
    width: 100%;
    max-height: 350px;
    object-fit:contain;
}
.print_paper a{
    color: #000;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
 @media only print {
     .print_paper{
    padding: 20px;
    margin: 50px auto 0;
    display: flex;
    flex-direction:column;
    gap: 30px;
}
     .print_paper h1{
    font-size: clamp(14px,15vw,50px);
    font-weight: 600;
}
.print_paper img{
    width: 100%;
    max-height: 650px;
    object-fit:contain;
}
.print_paper p{
    font-size: clamp(14px,15vw,35px);
    font-weight: 400;
    line-height: 48px;
}
    .print_paper a{
    display: none !important;
}
      }
/*print end*/
/*share end*/
.full_story_shop_li{
    width: 100%;
    padding: 20px 0 10px;
}
.full_story_shop{
    padding: 10px 20px;
    width: 100%;
    font-size: 18px;
    height: fit-content;
    display:block;
    color: #fff !important;
    border:1px solid transparent;
    transition: .3s;
    border-radius: 6px;
    text-align: center;
    background: rgb(39 130 103);
}
.full_story_shop:hover{
    color: #333 !important;
    background: transparent;
    border-color: #333;
}
/*mehsullar full story end*/
/*mehsullar sehifesi */

.products_page_grid{
    display: grid;
    grid-template-columns: 100%;
    gap:20px;
}
.products_page_grid{
    display: grid;
    grid-template-columns: 100%;
    gap:20px;
}
@media only screen and (min-width: 768px){
.products_page_grid{
    display: grid;
    grid-template-columns: calc(50% - 10px) calc(50% - 10px);
    gap:20px;
}
}

/*mehsullar sehifesi dizayni*/
/*xidmetler*/
.xidmetler_speed{
    background: #fff !important;
}
.static_pages .row, .static_pages .row .xidmetler_all{
    padding: 50px 0 70px !important;
    background-color: #f6f6f6;
}
.xidmetler{
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 40px;
    -webkit-border-radius: 12px;
    overflow: hidden;
    -moz-border-radius: 12px;
    border-radius: 12px;
}
.xidmetler_img{
    height: 300px;
    position: relative;
}
.xidmetler_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.xidmetler_img::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*content: '';*/
    background-color: rgba(99, 127, 156, .8);
}
.xidmetler_content{
    padding: 0 20px 20px;
}
.xidmetler_content ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.xidmetler_content ul li{
    background: url(../img/check.png) no-repeat;
    background-size: 18px;
    padding-left: 35px;
    background-position: 0px 0px;
}
.xidmetler_content ul li a{
    color: #000;
}
/*xidmetler end*/

/* Referanslar */
.referanslar-card {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    justify-content: center;
}

.referanslar-cards img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    padding: 5px;
    background: rgb(242, 242, 242);
}