﻿@charset "iso-8859-9";
/* CSS Document */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Muli', sans-serif;
}

textarea {
    font-family: 'Muli', sans-serif;
}

* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 100%;
        padding-right: 30px;
        padding-left: 30px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 100%;
        padding-right: 25px;
        padding-left: 25px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 100%;
        padding-right: 25px;
        padding-left: 25px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 100%;
        padding-right: 25px;
        padding-left: 25px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}

.clear {
    clear: both;
}

.img-block {
    display: block;
}

.d-grid {
    display: grid;
}

.d-flex {
    display: flex;
    display: -webkit-flex;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

button,
select {
    outline: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
}

button,
.btn,
select {
    cursor: pointer;
    font-family: 'Muli', sans-serif;
}

a,
a:hover {
    text-decoration: none;
}

iframe {
    border: none;
}

ul {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: 'Muli', sans-serif;
    color: #656F7B;
}

p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 27px;
    color: #666;
    opacity: .8;
    font-family: 'Muli', sans-serif;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-fixed {
    position: fixed;
}

.p-sticky {
    position: -webkit-sticky;
    position: sticky;
}

.sub-title {
    font-size: 19px;
    line-height: 20px;
    font-weight: 200;
    color: #999;
    /* text-transform: uppercase;*/
    margin-bottom: 5px;
}

.theme-button {
    transition: 0.3s ease-out;
    display: inline-block;
    line-height: 48px;
    font-weight: 700;
    font-size: 14px;
    margin: 0px;
    padding: 0px 30px;
    text-transform: uppercase;
}

.theme-buttonabout {
    transition: 0.3s ease-out;
    display: inline-block;
    line-height: 32px;
    font-weight: 700;
    font-size: 12px;
    margin: 0px;
    padding: 0px 20px;
    /* text-transform: uppercase;*/
}

@media screen and (max-width: 767px) {
    .theme-button {
        line-height: 44px;
        padding: 0px 20px;
    }
}

img.img-curve {
    border-radius: 6px;
    transition: 0.3s ease-in-out;
}

    img.img-curve:hover {
        transform: translateY(-0.5rem);
        transition: 0.3s ease-in-out;
    }

img.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
}

.rounded-circle {
    border-radius: 50%;
}

label.tag-label {
    padding: 5px 16px;
    display: inline-block;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

    label.tag-label.red {
        background: rgba(238, 97, 120, 0.2);
        color: #AC4481;
    }

    label.tag-label.green {
        background: rgba(0, 128, 0, 0.2);
        color: #008000;
    }

    label.tag-label.blue {
        background: rgba(0, 0, 255, 0.2);
        color: #0000ff;
    }

.breadcrumbs {
    margin-top: 90px;
    padding: 20px 0;
}

nav#breadcrumbs {
    padding: 15px 20px;
    background: #F7F9FC;
}

.page-wrapper {
    color: #2C3038;
    font-size: 14px;
}

nav#breadcrumbs a {
    color: #AC4481;
    margin: 0 5px 0 0;
    font-size: 14px;
}

    nav#breadcrumbs a:hover {
        text-decoration: underline;
    }

@media (max-width: 1040px) {
    nav#breadcrumbs {
        padding: 10px 0px;
    }
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 70px;
    }
}

a.dropdown-item {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    position: relative;
    padding-top: 0;
    padding-bottom: 14px;
}

    a.dropdown-item:hover {
        color: #2C3038;
    }

.dropdown-toggle::after {
    display: none;
}

.nav-fixed .phone a {
    color: #333;
}

    .nav-fixed .phone a span {
        opacity: 1;
        color: #AC4481;
    }

.dropdown-item:hover, .dropdown-item:focus {
    color: #5a5a5a;
    text-decoration: none;
    background-color: transparent;
}

.dropdown-item.active, .dropdown-item:active {
    color: #2C3038;
    background-color: transparent;
}

@media only screen and (max-width: 991px) {
    .popup {
        display: none;
    }

    .phone {
        text-align: center;
    }

        .phone a {
            font-size: 18px;
            color: #fff;
            font-weight: 500;
        }

            .phone a span {
                color: #fff;
            }
}

@media only screen and (max-width: 767px) {
    #site-footer .copyright,
    #site-footer ul.footer-menu {
        text-align: center;
    }
}
/*register form*/
.registerform {
    border-radius: 10px;
    background-color: #f1f1f1;
    border: 1px solid #dcd9d9;
    padding: 40px 40px;
}

    .registerform .fields-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 0px 20px;
    }

    .registerform input,
    .registerform textarea
   /* .registerform select*/ {
        outline: none;
        width: 100%;
        font-size: 16px;
        padding: 0px 15px;
        margin-bottom: 10px;
        color: #000;
        /*height: 50px;*/
        text-align: left;
        -webkit-appearance: none;
        align-items: center;
        padding-left: 15px;
        background-color: #fff;
        border: #aeadad;
        border-radius: 8px;
    }
    .registerform select {
        outline: none;
        width: 100%;
        font-size: 16px;
       /*  padding: 0px 15px;*/
        margin-bottom: 10px;
        color: #000;
        /* height: 50px;*/
        text-align: left;
        -webkit-appearance: none;
        align-items: center;
        /* padding-left: 15px;*/
        background-color: #fff;
        border: #aeadad;
        border-radius: 8px;
        /*ilave*/        
        display: inline-block;
        font: inherit;
       /* line-height: 1.5em;*/
        padding: 0.5em 3.5em 0.5em 1em;
        /* reset */
        margin: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        /*arrow*/
        background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%), linear-gradient(to right, LightSeaGreen, LightSeaGreen);
        background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
        background-size: 7px 7px, 7px 7px, 2.5em 2.5em;
        background-repeat: no-repeat;
    }  
.registerform select:focus {
    background-image: linear-gradient(45deg, white 50%, transparent 50%), linear-gradient(135deg, transparent 50%, white 50%), linear-gradient(to right, gray, gray);
    background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, 100% 0;
    background-size: 7px 7px, 7px 7px, 2.5em 2.5em;
    background-repeat: no-repeat;
    border-color: grey;
    outline: 0;
}
        
   /* .registerform select {
        -webkit-appearance: menulist;
    }*/

    .registerform input:focus,
    .registerform textarea:focus {
        border: 1px solid #2caee2;
        background-color: #fff;
    }

.regbut {
    padding: 10px 36px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    transition: 0.3s ease-in;
    border-radius: 35px;
    background: #AC4481;
    border: 2px solid transparent;
    color: #fff;
}

    .regbut:hover {
        background: #fff;
        color: #AC4481;
        border: 2px solid #AC4481;
    }

.aboutbut {
    padding: 10px 36px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    transition: 0.3s ease-in;
    border-radius: 35px;
    background: #AC4481;
    border: 2px solid transparent;
    color: #fff;
}

    .aboutbut:hover {
        background: #fff;
        color: #AC4481;
        border: 2px solid #AC4481;
    }

.regbutYsl {
    padding: 10px 36px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    transition: 0.3s ease-in;
    border-radius: 35px;
    background: #B0B1B2;
    border: 2px solid transparent;
    color: #fff;
}

    .regbutYsl:hover {
        background: #fff;
        color: #B0B1B2;
        border: 2px solid #B0B1B2;
    }
.isbuton {
    padding: 10px 36px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    transition: 0.3s ease-in;
    border-radius: 35px;
    background: #fff;
    border: 2px solid transparent;
    color: #06A2A1;
}

    .isbuton:hover {
        background: #06A2A1;
        color: #fff;
        border: 2px solid #06A2A1;
    }
    .basliklac {
    color: #AC4481;
    }
    .pcolor {
    color: #A00000;
    }

/*end register*/

/*slider*/
/*.carousel-control-prev-icon, .carousel-control-next-icon {
    height: 40px;
    width: 40px;
    outline: none;*/
/*background-color: rgba(0, 0, 0, 0.3);*/
/*background-size: 100%, 100%;*/
/*border-radius: 50%;
    border: 1px solid black;*/
/*}*/
/*imes*/
/*div göster div gizle titleye göre*/
.sabancitext {
    font-size: 0.8125em;
}
.hide {
    display: none !important;
}

.show {
    display: block;
}
.event_title {
    background: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    border: 1px solid #e0dfdf;
    min-height: 130px;
    -moz-box-shadow: 2px 2px #e0dfdf;
    -webkit-box-shadow: 2px 2px #e0dfdf;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
}

    .event_title ul li {
        padding: 10px 0;
    }

        .event_title ul li span.fa {
            margin-right: 13px;
            font-size: 30px;
            float: left;
            display: inline-block;
            background: #e0dfdf;
            color: #5a5a5a;
            width: 48px;
            height: 48px;
            line-height: 48px;
            text-align: center;
            border-radius: 30px;
        }

    .event_title span,
    .event_title a {
        overflow: hidden;
        display: block;
        font-weight: 400;
        color: #000;
    }

abtimg {
    float: left;
    margin: 0 4px 4px 0;
}

.hizmet {
    background-color: #fff;
}

    .hizmet:hover {
        background-color: #EAEAEA;
    }

.gdw-contact-main {
    background-color: #fff;
}

.gdw-contact-info .icon-box span.fa {
    color: #e5e5e5;
    color: #999;
    font-size: 50px;
}

.gdw-contact-info .single-contact-infos:first-child .icon-box span.fa {
    font-size: 40px;
}

.gdw-contact-info .single-contact-infos {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 20px;
    background: #fff;
    padding: 30px;
    box-shadow: rgba(1, 1, 1, 0.05) 1px 1px 5px 0px;
    border-radius: 3px;
}

.gdw-contact-info .text-box p a {
    color: #2C3038;
}

    .gdw-contact-info .text-box p a:hover {
        color: #999;
    }

.text-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bg-gri {
    background-color: #F1F1F5;
}
/*end imes*/
/*footer ab*/
.fotab {
    margin: auto;
    position: relative;
}

.fotab-img {
    display: inline-block;
}

@media (min-width:320px) and (max-width:768px) {
    .fotab-text {
        margin-top: 15px;
    }
}
/*end footer ab*/
.deskimg {
    display: block;
}
/*.laptopimg {
    display: none
}*/

.mobilimg {
    display: none;
}

.adres {
    text-align: left;
}

.telefonn {
    text-align: center;
}

.mails {
    text-align: right;
}

@media (min-width:320px) and (max-width:768px) {
    .mobilimg {
        display: block !important
    }

    .deskimg {
        display: none !important
    }

    .adres {
        text-align: center;
    }

    .telefonn {
        text-align: center;
    }

    .mails {
        text-align: center;
    }

    /*    .laptopimg {
        display: none !important
    }*/
}

@media (min-width:768px) and (max-width:1440px) {
    .mobilimg {
        display: none !important
    }

    .deskimg {
        display: block !important
    }

    /*.laptopimg {
        display: block !important
    }*/
}
/*sliderrr*/
.sliders {
   /* padding-top: -90px;
    background-color: #000;   */
}
/*sonradan ilave*/
#slidergd .carousel-item .mask {
    position: absolute;
    top: 50px;
    left: 0;
    height: 100%;
    width: 100%;
    background-attachment: fixed;
}

#slidergd h4 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #FFF;
    line-height: 100%;
    letter-spacing: 0.5px;
    font-weight: 600;
}
#slidergd h5 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #d5d5d5;
    line-height: 100%;
    letter-spacing: 0.5px;
    font-weight: 500;
}

#slidergd p {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

#slidergd .carousel-item a {
    background: #ae4b84;
    font-size: 14px;
    color: #FFF;
    padding: 13px 32px;
    display: inline-block;
}

    #slidergd .carousel-item a:hover {
        background: #81275b;
        text-decoration: none;
    }

#slidergd .carousel-item h4 {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
#slidergd .carousel-item h5 {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
#slidergd .carousel-item p {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

#slidergd .carousel-item a {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

#slidergd .carousel-item .mask img {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    display: block;
    height: auto;
    max-width: 100%;
}

#slidergd h4, #slidergd h5, #slidergd p, #slidergd a, #slidergd .carousel-item .mask img {
    -webkit-animation-duration: 1s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*#slidergd .container {
    max-width: 1430px;
}*/

#slidergd .carousel-item {
    height: 100%;
    min-height: 515px;
}
/*Mobil Uyum*/
@media (min-width:320px) and (max-width:600px) {
    #slidergd .carousel-item .mask {        
        top:-20px;        
    }    
    #slidergd .carousel-item {
        height: 100%;
        min-height: 620px;
    }
    #slidergd h4 {
        font-size: 25px;
        margin-bottom: 15px;
        color: #FFF;
        line-height: 100%;
        letter-spacing: 0.5px;
        font-weight: 600;
        text-align: center;
    }

    #slidergd h5 {
        font-size: 15px;
        margin-bottom: 15px;
        color: #d5d5d5;
        line-height: 100%;
        letter-spacing: 0.5px;
        font-weight: 500;
        text-align: center;
    }

    #slidergd p {
        font-size: 14px;
        margin-bottom: 15px;
        color: #fff;
        font-weight: 600;
        text-align: center;
    }
    #slidergd .carousel-item a {
        margin: 0 auto 0 auto;
        display: table;
    }

}
/*800px*/
@media (min-width:790px) and (max-width:810px) {
    #slidergd .carousel-item .mask {
        top: 150px;
    }

    #slidergd h4 {
        font-size: 25px;
        margin-bottom: 15px;
        color: #FFF;
        line-height: 100%;
        letter-spacing: 0.5px;
        font-weight: 600;
        text-align: center;
    }

    #slidergd h5 {
        font-size: 17px;
        margin-bottom: 15px;
        color: #d5d5d5;
        line-height: 100%;
        letter-spacing: 0.5px;
        font-weight: 500;
        text-align: center;
    }

    #slidergd p {
        font-size: 15px;
        margin-bottom: 15px;
        color: #fff;
        font-weight: 600;
        text-align: center;
    }

    #slidergd .carousel-item a {
        margin: 0 auto 0 auto;
        display: table;
    }
}
    /*End Mobil Uyum*/
    #slidergd {
        position: relative;
        z-index: 1;
        background-color: #011343;
        background-size: cover;
    }

    .carousel-control-next, .carousel-control-prev {
        height: 40px;
        width: 40px;
        padding: 12px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        background-color: #393186;
    }


    .carousel-item {
        position: relative;
        display: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        transition: -webkit-transform .6s ease;
        transition: transform .6s ease;
        transition: transform .6s ease,-webkit-transform .6s ease;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

    .carousel-fade .carousel-item {
        opacity: 0;
        -webkit-transition-duration: .6s;
        transition-duration: .6s;
        -webkit-transition-property: opacity;
        transition-property: opacity
    }

        .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right, .carousel-fade .carousel-item.active {
            opacity: 1
        }

    .carousel-fade .carousel-item-left.active, .carousel-fade .carousel-item-right.active {
        opacity: 0
    }

    .carousel-fade .carousel-item-left.active, .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item-prev.active, .carousel-fade .carousel-item.active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    @supports (transform-style:preserve-3d) {
        .carousel-fade .carousel-item-left.active, .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item-prev.active, .carousel-fade .carousel-item.active {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0)
        }
    }

    .carousel-fade .carousel-item-left.active, .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item-prev.active, .carousel-fade .carousel-item.active {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    @-webkit-keyframes fadeInLeft {
        from {
            opacity: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
        }

        to {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
        }

        to {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    .fadeInLeft {
        -webkit-animation-name: fadeInLeft;
        animation-name: fadeInLeft;
    }

    @-webkit-keyframes fadeInUp {
        from {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }

        to {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }

        to {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    .fadeInUp {
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
    }

    @-webkit-keyframes slideInRight {
        from {
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
            visibility: visible;
        }

        to {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @keyframes slideInRight {
        from {
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
            visibility: visible;
        }

        to {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    .slideInRight {
        -webkit-animation-name: slideInRight;
        animation-name: slideInRight;
    }
    /*end sonradan ilave*/



    /*@media (min-width:768px) and (max-width:821px) {
    .sliders {
        padding-top: -200px;
    }
}*/
    .deskslider {
        display: block;
    }

        .deskslider img {
            /*object-fit: cover;
     height: 683px;*/
        }

    .mobilslider {
        display: none;
    }

    @media (min-width:320px) and (max-width:821px) {
        .mobilslider {
            display: block !important
        }

            .mobilslider img {
                /*object-fit: cover;
        height: 400px;*/
            }

        .deskslider {
            display: none !important
        }
    }

    @media (min-width:821px) and (max-width:1440px) {
        .mobilslider {
            display: none !important
        }

        .deskslider {
            display: block !important
        }
    }
    /*end slider*/
    /*pagebanner*/
    .pagetitle {
        width: 100%;
        height: 100%;
        margin-top: -153px !important;
        /*padding-bottom: 1.5em;*/
        font-size: 45px;
        line-height: 50px;
        color: #fff;
        font-weight: lighter;
    }

        .pagetitle h3 {
            padding-left: 0;
            font-size: 45px;
            line-height: 50px;
            color: #fff;
            font-weight: lighter;
            text-align: left;
            text-transform: capitalize;
        }

    @media (min-width:320px) and (max-width:533px) {
        .pagetitle h3 {
            font-size: 32px;
            line-height: 40px;
        }
    }

    .pagetitle p {
        color: #fff;
        margin-top: 10px;
        /* text-transform: capitalize;*/
        font-weight: 300;
    }

    section.about {
        background-size: cover;
        background-image: linear-gradient(to right, rgb(3 15 39 / 69%), rgb(3 15 39 / 70%)), url(../images/pagebanner2.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        height: 325px;
    }

    /*@media (min-width:320px) and (max-width:533px) {
    section.about {
        background-size: cover;
        background-image:*/ /*linear-gradient(to right, #000, rgba(0, 0, 0, 0.05)),*/ /*url(../images/mobilpagebanner2.jpg);
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-position: center;
        background-attachment: fixed;
        min-height: 300px;
    }
}*/
    /*end pagebanner*/
    /*about*/
    .gdw-features {
        background: #f7f7f7;
    }

        .gdw-features .call-grids-w3 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 25px;
        }

        .gdw-features .box-wrap {
            padding: 40px 30px;
            border-radius: 6px;
            text-align: center;
            box-shadow: rgba(1, 1, 1, 0.05) 1px 1px 5px 0px;
            background-color: #fff;
            transition: .3s ease;
            -webkit-transition: .3s ease;
            -moz-transition: .3s ease;
           /* -ms-transition: .3s ease;*/
            -o-transition: .3s ease;
        }

            .gdw-features .box-wrap:hover {
                transform: translateY(-0.25rem);
                box-shadow: rgba(46, 41, 51, 0.08) 0px 2px 4px, rgba(71, 63, 79, 0.16) 0px 5px 10px;
                transition: .3s ease;
                -webkit-transition: .3s ease;
                -moz-transition: .3s ease;
              /*  -ms-transition: .3s ease;*/
                -o-transition: .3s ease;
            }

            .gdw-features .box-wrap img {
                max-width: 65px;
                display: block;
                margin: 0 auto;
            }

            .gdw-features .box-wrap h4 a {
                font-size: 22px;
                line-height: 28px;
                font-weight: 600;
                margin-top: 25px;
                display: block;
                /*color: var(--heading-color);*/
            }

                .gdw-features .box-wrap h4 a:hover {
                    /* color: var(--primary-color);*/
                }

    @media (max-width: 1280px) {
        .gdw-features .buttons-top {
            margin-top: 3em;
            padding-top: 2em;
        }
    }

    @media (max-width: 1080px) {
        .gdw-features h3.ban-text-2 {
            font-size: 34px;
        }

        .gdw-features .section-title-left {
            font-size: 1.8em;
        }

        .title-big {
            font-size: 32px !important;
            line-height: 40px;
        }
    }

    @media (max-width: 992px) {
        .gdw-features .order2 {
            order: 2;
        }

        .gdw-features .order1 {
            order: 1;
        }
    }

    @media (max-width: 800px) {
        .gdw-features .grids-1 {
            padding: 1.5em;
        }

        .gdw-features .gdw-feature-grid {
            padding: 60px 0;
        }
    }

    @media (max-width: 667px) {
        .gdw-features h3.ban-text-2 {
            font-size: 32px;
        }

        .gdw-features p.text-ssi {
            margin: 14px 0 26px;
        }

        .gdw-features h4 a.title-head {
            font-size: 18px;
        }

        .gdw-features .call-grid-sub-2 {
            margin-top: 1.5em;
        }

        .gdw-features .buttons-top {
            margin-top: 2em;
        }

        .gdw-features .title-left {
            font-size: 1.5em;
            margin-bottom: .8em;
        }
    }

    @media (max-width: 568px) {
        .gdw-features h3.ban-text-2 {
            font-size: 30px;
            margin-bottom: 20px;
        }

        .gdw-features .call-grids-w3 .icon img {
            width: 45px;
        }

        .gdw-features p.text-ssi {
            margin: 0px;
            margin-bottom: 10px;
        }

        .gdw-features h4 a.title-head {
            margin-bottom: 7px;
        }

        .gdw-features .call-grid-sub-2 {
            margin-top: 1em;
        }

        .gdw-features .gdw-feature-grid {
            padding: 50px 0;
        }

        .gdw-features .button-effe-2 {
            margin-top: 0px;
        }

        .title-big {
            font-size: 30px !important;
            line-height: 38px;
        }
    }

    @media (max-width: 440px) {
        .gdw-features .call-grids-w3 {
            /* grid-template-columns: 1fr; */
            grid-gap: 15px;
        }

        .gdw-features .grids-1 {
            padding: 1.5em 1em;
        }

        .gdw-features .section-title-left {
            font-size: 1.5em;
        }
    }

    @media (max-width: 415px) {
        .gdw-features h3.ban-text-2 {
            font-size: 26px;
            line-height: 32px;
        }

        .gdw-features ul.list li {
            font-size: 15px;
        }

        .title-big {
            font-size: 26px !important;
            line-height: 32px;
        }
    }

    @media (max-width: 384px) {
        .gdw-features h4 a.title-head {
            font-size: 18px;
            margin-top: 15px;
        }

        .gdw-features .section-title-left {
            font-size: 1.3em;
        }

        .gdw-features .gdw-mobil-progress .mobil-right-info h6 a {
            font-size: 18px;
        }

        .title-big {
            font-size: 24px !important;
            line-height: 30px;
        }
    }

    @media (max-width: 320px) {
        .gdw-features .call-grids-w3 {
            display: block;
        }

        .gdw-features .grids-1.grids-effect-2 {
            margin-top: 1em;
        }

        .gdw-features .call-grid-sub-2 {
            margin-top: 0;
        }
    }

    .title-big {
        font-size: 35px;
        line-height: 45px;
        font-weight: 300;
    }

    .title-small {
        font-size: 14px;
        font-weight: 300;
        text-transform: uppercase;
        line-height: 30px;
        letter-spacing: 1px;
        color: #7e7d7d;
        display: block;
    }
    /*end about*/
    .gdw-indexpage {
        margin-top: 15px;
    }

        .gdw-indexpage .content {
            position: relative;
            z-index: 1;
            overflow: hidden;
            background: #ffffff;
            background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.92)), url(../images/banner.jpg);
            background-repeat: no-repeat, no-repeat, no-repeat;
            background-position: center;
            background-attachment: fixed;
            background-size: cover;
            display: grid;
            align-items: center;
            padding-top: 5rem;
        }

        .gdw-indexpage .content-photo img {
            transform: rotate(180deg);
        }

        .gdw-indexpage .content-left h3 {
            font-size: 50px;
            line-height: 57.5px;
            color: #2C3038;
            font-weight: 700;
        }

        .gdw-indexpage .content-left p {
            color: #5a5a5a;
            font-size: 20px;
            line-height: 28px;
            font-weight: 400;
            max-width: 450px;
        }

    @media (max-width: 992px) {
        .gdw-indexpage .content-photo img {
            display: block;
        }
    }

    @media (max-width: 568px) {
        .gdw-indexpage .content-left h3 {
            font-size: 40px;
            line-height: 45px;
        }
    }

    @media (max-width: 375px) {
        .gdw-indexpage .content-left h3 {
            font-size: 35px;
        }
    }

    @media (max-width: 992px) {
        .gdw-indexpage {
            margin-top: 70px;
        }
    }

    /*-- index-block2 --*/
    .gdw-index2 .s-block {
        border-radius: 6px;
        transition: 0.3s ease-in;
        background: #F7F9FC;
        padding: 3rem 2rem;
        border: 1px solid #F7F9FC;
    }

        .gdw-index2 .s-block:hover {
            transition: 0.3s ease-in;
            background-color: #ffffff;
            border: 1px solid #eee;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
            transform: translateY(-0.5rem);
        }

        .gdw-index2 .s-block h3 {
            color: #2C3038;
            font-size: 26px;
            line-height: 35px;
            font-weight: 700;
        }

        .gdw-index2 .s-block p {
            color: #5a5a5a;
            margin-top: 15px;
            font-size: 16px;
            line-height: 24.5px;
        }
    /*-- /index-block2 --*/
    .gdw-algi {
        background-color: #fff;
    }

        .gdw-algi .book-info h3 {
            font-size: 30px;
            line-height: 40px;
            color: #656F7B;
            font-weight: lighter;
        }

        .gdw-algi .book-info p {
            font-style: normal;
            font-weight: normal;
            font-size: 17px;
            color: #2C3038;
            line-height: 24.4px;
        }

    .algibut {
        padding: 12px 30px;
        color: #999;
        font-size: 16px;
        text-transform: capitalize;
        font-weight: 400;
        transition: 0.3s ease-in;
        border: 1px solid #ccc;
        border-radius: 35px;
    }

        .algibut:hover {
            padding: 12px 30px;
            color: #fff;
            background-color: #AC4481;
            font-size: 16px;
            text-transform: capitalize;
            font-weight: 400;
            transition: 0.3s ease-in;
            border: 1px solid #AC4481;
            border-radius: 35px;
        }
    /*-- stats --*/
    .gdw-stats {
        /*background: #F7F9FC;*/
    }

        .gdw-stats p.counter {
            font-size: 50px;
            line-height: 1;
            color: #AC4481;
            margin-bottom: 0;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 10px;
        }

        .gdw-stats .stats_info h4 {
            font-size: 16px;
            line-height: 24.5px;
            text-transform: capitalize;
            color: #2C3038;
            font-weight: 700;
        }

        .gdw-stats .stats_info {
            background-color: #fff;
            padding: 2rem;
            border-radius: 6px;
            box-shadow: 1px 5px 7.5px rgba(196, 196, 196, 0.2);
            transition: 0.3s ease;
            border: 1px solid #eee;
        }

            .gdw-stats .stats_info:hover {
                box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
                transition: 0.3s ease;
            }

    @media (max-width: 992px) {
        .gdw-stats p.counter {
            font-size: 40px;
            line-height: 50px;
        }

        .gdw-stats .stats_info h4 {
            font-size: 18px;
        }
    }

    @media (max-width: 737px) {
        .gdw-stats .stats_info h4 {
            font-size: 17px;
        }
    }

    /*--//stats--*/
    .gdw-index4 .new-block {
        background-size: cover;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.33)), url(/images/sendekatil.jpg);
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-position: center;
        background-attachment: fixed;
        min-height: 480px;
        display: grid;
        align-items: center;
        padding: 2rem 0;
    }

    .gdw-index4 .middle-section {
        max-width: 550px;
    }

        .gdw-index4 .middle-section h2 {
            color: #ffffff;
            font-size: 30px;
            line-height: 36px;
            font-weight: 700;
        }

    .gdw-index4 .link-list-menu p {
        font-size: 16px;
        color: #eee;
        line-height: 24.5px;
    }

    @media (max-width: 800px) {
        .gdw-index4 .middle-section a {
            margin-top: 40px;
        }
    }

    @media (max-width: 667px) {
        .gdw-index4 .link-list-menu {
            max-width: 523px;
        }

        .gdw-index4 .middle-section a {
            margin-top: 30px;
        }

        .gdw-index4 .link-list-menu p {
            font-size: 15px;
            line-height: 22px;
        }
    }

    @media (max-width: 440px) {
        .gdw-index4 .middle-section h2 {
            font-size: 26px;
        }
    }

    @media (max-width: 384px) {
        .gdw-index4 .middle-section a {
            margin-top: 25px;
        }
    }

    @media (max-width: 320px) {
        .gdw-index4 .link-list-menu {
            width: 281px;
        }
    }

    .gdw-indextext .grids5-info {
        border-radius: 6px;
        transition: 0.3s ease-in;
        display: block;
        height: 100%;
        background: #fff;
        border: 1px solid #eee;
    }

        .gdw-indextext .grids5-info:hover {
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
            transform: translateY(-0.5rem);
        }

    .gdw-indextext a.zoom {
        overflow: hidden;
        position: relative;
    }

        .gdw-indextext a.zoom img {
            transition: 0.3s ease-in-out;
            /*-webkit-filter: grayscale(0);
          filter: grayscale(0);*/
            object-fit: cover;
            width: 300px;
            height: 200px;
        }

    .gdw-indextext .grids5-info:hover a.zoom img {
        overflow: hidden;
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
        transition: 0.3s ease-in-out;
    }

    .gdw-indextext .blog-info {
        background: #fff;
        padding: 30px 20px;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .gdw-indextext .grid-view img.news-image {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .gdw-indextext .grid-view a.zoom {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .gdw-indextext .grid-view .grids5-info h4 {
        font-size: 20px;
        line-height: 27px;
        color: #000;
        display: block;
        font-weight: 400;
    }

    .gdw-indextext .grids5-info div.blog-info h4 a {
        color: #000;
    }

    .gdw-indextext .grid-view .grids5-info h4 a:hover {
        color: #585858;
    }

    .gdw-indextext .grid-view .grids5-info p {
        font-size: 16px;
        line-height: 24.5px;
        color: #5a5a5a;
        margin-top: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .gdw-indextext .grid-view p.date {
        font-size: 16px;
        color: #fff;
        font-weight: 400;
        border-bottom: none;
        padding-bottom: 0px;
        position: absolute;
        top: 0;
        background: #656F7B;
        padding: 15px;
        margin-bottom: 0;
        right: 0;
        margin-top: 0;
    }

    .gdw-indextext .grid-view .grids5-info img {
        width: 100%;
        display: block;
    }

    .gdw-indextext a.btn-news {
        padding: 0;
        color: #666;
        transition: 0.3s ease-in-out;
        border-radius: 0;
        position: relative;
        display: inline-block;
        font-size: 16px;
        font-weight: 400;
    }

        .gdw-indextext a.btn-news span {
            font-size: 60%;
            vertical-align: middle;
            padding-left: 0px;
            position: absolute;
            right: -13px;
            top: 7.5px;
            transition: 0.3s ease-in;
        }

    .gdw-indextext label.tag-label {
        padding: 5px 16px;
        display: inline-block;
        border-radius: 25px;
        font-size: 13px;
        font-weight: 400;
        margin-bottom: 15px;
    }

        .gdw-indextext label.tag-label.grey {
            background: #656F7B;
            color: #fff;
        }

        .gdw-indextext label.tag-label.red {
            background: #272476;
            color: #AC4481;
        }

        .gdw-indextext label.tag-label.green {
            background: rgba(0, 128, 0, 0.2);
            color: #008000;
        }

        .gdw-indextext label.tag-label.blue {
            background: rgba(0, 0, 255, 0.2);
            color: #0000ff;
        }

    .gdw-indextext a.btn-news:hover {
        transition: 0.3s ease-in-out;
        /*color: #AC4481;*/
    }

        .gdw-indextext a.btn-news:hover span.fa {
            right: -16px;
            transition: 0.3s ease-in;
        }

    .gdw-indextext .grids5-info:hover a.btn-news span.fa {
        right: -16px;
        transition: 0.3s ease-in;
    }

    @media all and (max-width: 768px) {
        .gdw-indextext .grids5-info h4 a {
            font-size: 20px;
            line-height: 25px;
        }
    }

    @media all and (max-width: 568px) {
        .gdw-indextext .grids5-info p {
            margin-top: 12px;
        }
    }

    @media all and (max-width: 414px) {
        .gdw-indextext .grids5-info h4 a {
            font-size: 23px;
        }
    }

    @media all and (max-width: 384px) {
        .gdw-indextext .grids5-info h4 a {
            font-size: 22px;
        }
    }

    /*  ourproducts section */
    .gdw-products .products-content {
        margin: 20px 0;
    }

        .gdw-products .products-content h3 {
            color: #2C3038;
            margin-bottom: 16px;
            font-size: 30px;
            line-height: 36px;
            font-weight: 700;
        }

        .gdw-products .products-content p {
            color: #5a5a5a;
            margin-bottom: 16px;
            font-size: 16px;
            line-height: 24.5px;
        }

    @media screen and (max-width: 992px) {
        .gdw-products .products-content h3 {
            margin-bottom: 14px;
            font-size: 26px;
            line-height: 33px;
        }
    }

    @media screen and (max-width: 480px) {
        .gdw-products .products-content {
            margin-bottom: 30px;
        }

            .gdw-products .products-content h3 {
                font-size: 24px;
                line-height: 30px;
            }
    }

    /*  /ourproducts section */
    .gdw-faq-block {
        /* background-color: #F7F9FC;*/
    }

        .gdw-faq-block .faq-image {
            position: -webkit-sticky;
            position: sticky;
            top: 80px;
        }

        .gdw-faq-block .gdw-faq .transition,
        .gdw-faq-block .gdw-faq p,
        .gdw-faq-block .gdw-faq ul li i:before,
        .gdw-faq-block .gdw-faq ul li i:after {
            transition: all 0.25s ease-in-out;
        }

        .gdw-faq-block .gdw-faq .flipIn,
        .gdw-faq-block .gdw-faq h1,
        .gdw-faq-block .gdw-faq ul li {
            -webkit-animation: flipdown 0.5s ease both;
            animation: flipdown 0.5s ease both;
        }

        .gdw-faq-block .gdw-faq .no-select,
        .gdw-faq-block .gdw-faq h2 {
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .gdw-faq-block .gdw-faq h2 {
            font-size: 20px;
            line-height: 1;
            font-weight: normal;
            display: block;
            margin: 0;
            cursor: pointer;
            color: #2C3038;
        }

        .gdw-faq-block .gdw-faq p {
            color: #5a5a5a;
            font-size: 16px;
            line-height: 24.5px;
            position: relative;
            overflow: hidden;
            max-height: 800px;
            opacity: 1;
            transform: translate(0, 0);
            margin-top: 14px;
            z-index: 2;
        }

        .gdw-faq-block .gdw-faq ul {
            list-style: none;
            padding: 0;
            max-width: 750px;
            margin: 0 auto;
        }

            .gdw-faq-block .gdw-faq ul li {
                position: relative;
                padding: 25px 50px 25px 20px;
                border: 1px solid #eee;
                margin: 0 0 15px 0;
                border-radius: 6px;
                background: #fff;
            }

                .gdw-faq-block .gdw-faq ul li:nth-of-type(1) {
                    -webkit-animation-delay: 0.5s;
                    animation-delay: 0.5s;
                }

                .gdw-faq-block .gdw-faq ul li:nth-of-type(2) {
                    -webkit-animation-delay: 0.75s;
                    animation-delay: 0.75s;
                }

                .gdw-faq-block .gdw-faq ul li:nth-of-type(3) {
                    -webkit-animation-delay: 1s;
                    animation-delay: 1s;
                }

                .gdw-faq-block .gdw-faq ul li:nth-of-type(4) {
                    -webkit-animation-delay: 1.25s;
                    animation-delay: 1.25s;
                }

                .gdw-faq-block .gdw-faq ul li:nth-of-type(5) {
                    -webkit-animation-delay: 1.50s;
                    animation-delay: 1.50s;
                }

                .gdw-faq-block .gdw-faq ul li:nth-of-type(6) {
                    -webkit-animation-delay: 1.75s;
                    animation-delay: 1.75s;
                }

                .gdw-faq-block .gdw-faq ul li i {
                    position: absolute;
                    transform: translate(-6px, 0);
                    margin-top: 16px;
                    right: 25px;
                    top: 16px;
                }

                    .gdw-faq-block .gdw-faq ul li i:before,
                    .gdw-faq-block .gdw-faq ul li i:after {
                        content: "";
                        position: absolute;
                        background-color: #2C3038;
                        width: 3px;
                        height: 9px;
                    }

                    .gdw-faq-block .gdw-faq ul li i:before {
                        transform: translate(-2px, 0) rotate(45deg);
                    }

                    .gdw-faq-block .gdw-faq ul li i:after {
                        transform: translate(2px, 0) rotate(-45deg);
                    }

                .gdw-faq-block .gdw-faq ul li input[type=checkbox] {
                    position: absolute;
                    cursor: pointer;
                    width: 100%;
                    height: 100%;
                    z-index: 1;
                    opacity: 0;
                    top: 0;
                    left: 0;
                    -webkit-appearance: none;
                }

                    .gdw-faq-block .gdw-faq ul li input[type=checkbox]:checked ~ p {
                        margin-top: 0;
                        max-height: 0;
                        opacity: 0;
                        transform: translate(0, 50%);
                    }

                    .gdw-faq-block .gdw-faq ul li input[type=checkbox]:checked ~ i:before {
                        transform: translate(2px, 0) rotate(45deg);
                    }

                    .gdw-faq-block .gdw-faq ul li input[type=checkbox]:checked ~ i:after {
                        transform: translate(-2px, 0) rotate(-45deg);
                    }

    @media screen and (max-width: 480px) {
        .gdw-faq-block .gdw-faq h2 {
            font-size: 18px;
            line-height: 30px;
        }
    }

    ul.resp-tabs-list,
    p {
        margin: 0px;
        padding: 0px;
    }

    .resp-tabs-list li {
        font-weight: 700;
        font-size: 22px;
        padding: 15px;
        margin: 0;
        list-style: none;
        cursor: pointer;
        float: left;
        width: 33.333%;
        text-align: center;
        color: #4E5B61;
        background: #fff !important;
        border-bottom: 3px solid #eee;
    }

        .resp-tabs-list li img {
            margin-right: 30px;
        }

    .resp-tabs-container {
        padding: 0px;
        background-color: #fff;
        clear: left;
    }

    h2.resp-accordion {
        cursor: pointer;
        padding: 5px;
        display: none;
    }

    .resp-tab-content {
        display: none;
        padding: 15px;
    }

    .resp-tab-active {
        border-bottom: none;
        margin-bottom: -1px !important;
        border-bottom: 3px #AC4481 solid !important;
        color: #AC4481 !important;
    }

    .resp-tab-active {
        border-bottom: none;
        background-color: #fff;
    }

    .resp-content-active,
    .resp-accordion-active {
        display: block;
    }

    .resp-tab-content {
        border-top-color: #5AB1D0;
    }

    h2.resp-accordion {
        font-size: 20px;
        border: 1px solid #c1c1c1;
        border-top: 0px solid #c1c1c1;
        margin: 0px;
        padding: 10px 15px;
    }

    h2.resp-tab-active {
        border-bottom: 0px solid #c1c1c1 !important;
        margin-bottom: 0px !important;
        padding: 10px 15px !important;
    }

    h2.resp-tab-title:last-child {
        border-bottom: 12px solid #c1c1c1 !important;
        background: blue;
    }

    /*-----------Vertical tabs-----------*/
    .resp-vtabs ul.resp-tabs-list {
        float: left;
        width: 30%;
    }

    .resp-vtabs .resp-tabs-list li {
        display: block;
        padding: 15px 15px !important;
        margin: 0 0 4px;
        cursor: pointer;
        float: none;
    }

    .resp-vtabs .resp-tabs-container {
        padding: 0px;
        background-color: #fff;
        border: 1px solid #c1c1c1;
        float: left;
        width: 68%;
        min-height: 250px;
        border-radius: 4px;
        clear: none;
    }

    .resp-vtabs .resp-tab-content {
        border: none;
        word-wrap: break-word;
    }

    .resp-vtabs li.resp-tab-active {
        position: relative;
        z-index: 1;
        margin-right: -1px !important;
        padding: 14px 15px 15px 14px !important;
        border-top: 1px solid;
        border: 1px solid #5AB1D0 !important;
        border-left: 4px solid #5AB1D0 !important;
        margin-bottom: 4px !important;
        border-right: 1px #FFF solid !important;
    }

    .resp-arrow {
        width: 0;
        height: 0;
        float: right;
        margin-top: 3px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 12px solid #c1c1c1;
    }

    h2.resp-tab-active span.resp-arrow {
        border: none;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 12px solid #9B9797;
    }

    /*-----------Accordion styles-----------*/
    h2.resp-tab-active {
        background: #DBDBDB;
        border-bottom: 3px #AC4481 solid !important;
        /* !important;*/
    }

    .resp-easy-accordion h2.resp-accordion {
        display: block;
    }

    .resp-easy-accordion .resp-tab-content {
        border: 1px solid #c1c1c1;
    }

        .resp-easy-accordion .resp-tab-content:last-child {
            border-bottom: 1px solid #c1c1c1;
            /* !important;*/
        }

    .resp-jfit {
        width: 100%;
        margin: 0px;
    }

    .resp-tab-content-active {
        display: block;
    }

    h2.resp-accordion:first-child {
        border-top: 1px solid #c1c1c1;
        /* !important;*/
    }

    /*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
    @media only screen and (max-width: 768px) {
        ul.resp-tabs-list {
            display: none;
        }

        h2.resp-accordion {
            border: none;
            border-bottom: 1px solid #c1c1c1;
            display: block;
        }

            h2.resp-accordion:first-child {
                border-top: none;
            }

        .resp-tabs-container {
            border: 1px solid #f5f5f5;
        }

        .resp-vtabs .resp-tab-content {
            border: 1px solid #C1C1C1;
        }

        .resp-vtabs .resp-tabs-container {
            border: none;
            float: none;
            width: 100%;
            min-height: 100px;
            clear: none;
        }

        .resp-accordion-closed {
            display: none !important;
        }

        .resp-vtabs .resp-tab-content:last-child {
            border-bottom: 1px solid #c1c1c1 !important;
        }
    }

    @media screen and (max-width: 480px) {
        .resp-tab-content {
            padding: 0 15px;
        }

        .resp-arrow {
            margin-top: 3px;
        }
    }

    .gdw-testimonials .testimonials {
        background-size: cover;
        background-image: linear-gradient(to right, rgba(247, 249, 252, 0.90), rgba(247, 249, 252, 0.90)), url(../images/samsun.jpg);
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-position: center;
        background-attachment: fixed;
    }

    .gdw-testimonials .slider-info {
        max-width: 95%;
        margin: 0 auto;
        padding: 2rem;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-gap: 50px;
        background-color: #fff;
        border-radius: 6px;
    }

    .gdw-testimonials .img-circle {
        width: 100px;
        height: 100px;
        display: inline-block;
        overflow: hidden;
        background: #f3f6f9;
        border-radius: 50%;
        border: 2px solid #bbb9bb;
    }

        .gdw-testimonials .img-circle img {
            width: 100%;
            min-height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            -o-object-position: center;
            object-position: center;
        }

    .gdw-testimonials .message {
        position: relative;
    }

        .gdw-testimonials .message span {
            font-size: 30px;
            color: #2C3038;
            opacity: 0.2;
            position: absolute;
            top: 0px;
            left: -40px;
            right: 0;
        }

        .gdw-testimonials .message p {
            font-size: 18px;
            line-height: 26px;
            color: #2C3038;
        }

    .gdw-testimonials .name h4 {
        font-size: 18px;
        color: #AC4481;
        font-weight: 400;
    }

    .gdw-testimonials .name p {
        font-size: 13px;
        color: #5a5a5a;
    }

    @media (max-width: 992px) {
        .gdw-testimonials .message {
            margin-top: 1rem;
            padding-bottom: 0;
            padding: 0rem;
        }
    }

    @media (max-width: 900px) {
        .gdw-testimonials .slider-info {
            padding: 2rem;
        }
    }

    @media (max-width: 667px) {
        .gdw-testimonials .slider-info {
            grid-template-columns: 1fr;
            grid-gap: 30px;
        }

        .gdw-testimonials .img-circle {
            margin-left: auto;
            margin-right: auto;
        }

        .gdw-testimonials .message {
            text-align: center;
        }

            .gdw-testimonials .message span {
                left: 0px;
            }
    }

    @media (max-width: 480px) {
        .gdw-testimonials .slider-info {
            grid-gap: 10px;
            padding: 2rem 1rem;
        }
    }

    .gdw-testimonials .owl-two.owl-theme .owl-nav [class*=owl-prev],
    .gdw-testimonials .owl-two.owl-theme .owl-nav [class*=owl-next] {
        display: none;
    }

    /**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
    .owl-carousel,
    .owl-carousel .owl-item {
        -webkit-tap-highlight-color: transparent;
        position: relative;
    }

    .owl-carousel {
        width: 100%;
        z-index: 1;
    }

        .owl-carousel .owl-stage {
            position: relative;
            touch-action: manipulation;
            -moz-backface-visibility: hidden;
        }

            .owl-carousel .owl-stage:after {
                content: ".";
                display: block;
                clear: both;
                visibility: hidden;
                line-height: 0;
                height: 0;
            }

        .owl-carousel .owl-stage-outer {
            position: relative;
            overflow: hidden;
            -webkit-transform: translate3d(0, 0, 0);
        }

        .owl-carousel .owl-item,
        .owl-carousel .owl-wrapper {
            -webkit-backface-visibility: hidden;
            -webkit-transform: translate3d(0, 0, 0);
        }

        .owl-carousel .owl-item {
            min-height: 1px;
            float: left;
            -webkit-backface-visibility: hidden;
            -webkit-touch-callout: none;
        }

        .owl-carousel .owl-dots.disabled,
        .owl-carousel .owl-nav.disabled {
            display: block;
        }

        .no-js .owl-carousel,
        .owl-carousel.owl-loaded {
            display: block;
        }

        .owl-carousel .owl-dot,
        .owl-carousel .owl-nav .owl-next,
        .owl-carousel .owl-nav .owl-prev {
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .owl-carousel .owl-nav button.owl-next,
        .owl-carousel .owl-nav button.owl-prev,
        .owl-carousel button.owl-dot {
            border: none;
        }

        .owl-carousel.owl-loading {
            opacity: 0;
            display: block;
        }

        .owl-carousel.owl-hidden {
            opacity: 0;
        }

        .owl-carousel.owl-refresh .owl-item {
            visibility: hidden;
        }

        .owl-carousel.owl-drag .owl-item {
            touch-action: pan-y;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .owl-carousel.owl-grab {
            cursor: move;
            cursor: -webkit-grab;
            cursor: grab;
        }

        .owl-carousel.owl-rtl {
            direction: rtl;
        }

            .owl-carousel.owl-rtl .owl-item {
                float: right;
            }

        .owl-carousel .animated {
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
        }

        .owl-carousel .owl-animated-in {
            z-index: 0;
        }

        .owl-carousel .owl-animated-out {
            z-index: 1;
        }

        .owl-carousel .fadeOut {
            -webkit-animation-name: fadeOut;
            animation-name: fadeOut;
        }

    @-webkit-keyframes fadeOut {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes fadeOut {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    .owl-height {
        transition: height .5s ease-in-out;
    }

    .owl-carousel .owl-item .owl-lazy {
        opacity: 0;
        transition: opacity .4s ease;
    }

        .owl-carousel .owl-item .owl-lazy:not([src]),
        .owl-carousel .owl-item .owl-lazy[src^=""] {
            max-height: 0;
        }

    .owl-carousel .owl-item img.owl-lazy {
        transform-style: preserve-3d;
    }

    .owl-carousel .owl-video-wrapper {
        position: relative;
        height: 100%;
        background: #000;
    }

    .owl-carousel .owl-video-play-icon {
        position: absolute;
        height: 80px;
        width: 80px;
        left: 50%;
        top: 50%;
        margin-left: -40px;
        margin-top: -40px;
        background: url(owl.video.play.png) no-repeat;
        cursor: pointer;
        z-index: 1;
        -webkit-backface-visibility: hidden;
        transition: transform .1s ease;
    }

        .owl-carousel .owl-video-play-icon:hover {
            transform: scale(1.3, 1.3);
        }

    .owl-carousel .owl-video-playing .owl-video-play-icon,
    .owl-carousel .owl-video-playing .owl-video-tn {
        display: none;
    }

    .owl-carousel .owl-video-tn {
        opacity: 0;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        transition: opacity .4s ease;
    }

    .owl-carousel .owl-video-frame {
        position: relative;
        z-index: 1;
        height: 100%;
        width: 100%;
    }

    /**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
    .owl-theme .owl-dots,
    .owl-theme .owl-nav {
        text-align: center;
        -webkit-tap-highlight-color: transparent;
    }

    .owl-dots {
        margin-top: 0px;
        bottom: -55px;
        position: absolute;
        left: 0;
        right: 0;
    }

    .owl-theme .owl-nav [class*=owl-] {
        color: #fff;
        font-size: 20px;
        margin: 0px;
        padding: 0;
        background: rgba(180, 29, 85, 0.4);
        display: inline-block;
        cursor: pointer;
        transition: 0.3s ease-in-out;
        height: 40px;
        width: 40px;
        line-height: 40px;
        border-radius: 50%;
    }

        .owl-theme .owl-nav [class*=owl-]:hover {
            background: #AC4481;
            opacity: 1;
            text-decoration: none;
            outline: none;
            box-shadow: none;
            transition: 0.3s ease-in-out;
        }

        .owl-theme .owl-nav [class*=owl-]:focus,
        .owl-theme:focus,
        .owl-dots:focus,
        .owl-dot:focus {
            outline: none;
            box-shadow: none;
        }

    .owl-theme .owl-nav .disabled {
        opacity: .8;
        cursor: default;
    }

        .owl-theme .owl-nav.disabled + .owl-dots {
            margin-top: 30px;
        }

    .owl-theme .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1;
        background: transparent;
        padding: 0;
    }

        .owl-theme .owl-dots .owl-dot span {
            width: 40px;
            height: 5px;
            margin: 5px 5px;
            background: #fff;
            display: block;
            border: none;
            -webkit-backface-visibility: visible;
            transition: opacity .2s ease;
            border-radius: 0;
            position: relative;
        }

    button.owl-next,
    button.owl-prev {
        position: absolute;
        bottom: 45%;
    }

    button.owl-prev {
        left: 5px;
    }

    button.owl-next {
        right: 5px;
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background: #AC4481;
    }

    @media all and (max-width: 640px) {
        button.owl-prev {
            left: 0px;
        }

        button.owl-next {
            right: 0px;
        }

        button.owl-next,
        button.owl-prev {
            bottom: 75%;
        }
    }

    .owl-one.owl-dots {
        display: none;
    }

    .owl-one.owl-theme .owl-dots .owl-dot span {
        display: none;
    }

    .owl-three.owl-dots {
        display: none;
    }

    .owl-three.owl-theme .owl-dots .owl-dot span {
        display: none;
    }

    .owl-three.owl-theme button.owl-next,
    .owl-three.owl-theme button.owl-prev {
        display: none;
    }

    .gdw-footer .gdw-footer-si-main.py-5 {
        /*background: #fff;*/
        border-top: 1px dashed #ccc;
    }

    .gdw-footer .gdw-footer-si-main h3 {
        font-size: 20px;
        line-height: 25px;
        color: #999;
        margin-bottom: 30px;
        font-weight: 200;
    }

    .gdw-footer .gdw-footer-si-main h4 {
        font-size: 16px;
        line-height: 25px;
        color: #2C3038;
        margin-bottom: 30px;
        font-weight: 500;
    }

    .gdw-footer .ad-text-inf {
        margin-bottom: 20px;
    }

    .gdw-footer span.color-ubd {
        color: #5a5a5a;
        opacity: 0.5;
        font-weight: 500;
        font-size: 16px;
        display: block;
        margin-bottom: 2px;
    }

    .gdw-footer .footer-gd-si li {
        display: block;
        list-style: none;
        margin: 10px 0;
    }

        .gdw-footer .footer-gd-si li a {
            color: #656f7b;
            font-weight: normal;
            font-size: 15px;
            line-height: 25px;
            padding: 0;
            text-transform: capitalize;
        }

    .gdw-footer .bulten-column {
        background-color: #fff;
        padding: 2em;
        border-radius: 6px;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
    }

    .gdw-footer .below-section,
    .gdw-footer .para-content-footer {
        border-top: 1px solid #eaeaea;
    }

    .gdw-footer .gdw-footer-si-main h3 a:hover,
    .gdw-footer .footer-gd-si li a:hover,
    .gdw-footer .gdw-footer-si-main p a:hover {
        /* opacity: 0.8;*/
        color: #000;
        text-decoration: underline;
    }

    .gdw-footer .gdw-footer-si-main p {
        line-height: 22px;
        color: #2C3038;
        font-size: 16px;
    }

        .gdw-footer .gdw-footer-si-main p a {
            color: #2C3038;
        }

    .gdw-footer a.footer-small-text {
        color: #2C3038;
        line-height: 24px;
        font-size: 16px;
        font-weight: 600;
        transition: 0.3s ease-in;
    }

        .gdw-footer a.footer-small-text:hover {
            color: #AC4481;
            transition: 0.3s ease-in;
        }

    .gdw-footer .text-sub-small {
        color: #656f7b;
        font-size: 14px;
        margin-top: 4px;
    }

    .gdw-footer form {
        display: flex;
        margin-bottom: 15px;
        justify-content: space-between;
    }

    .gdw-footer .subscribe input[type="email"] {
        background: #F7F9FC;
        border: none;
        padding: 12px 20px;
        font-size: 16px;
        outline: none;
        width: 78%;
        color: #2C3038;
        font-weight: 600;
        border-radius: 6px;
    }

    .gdw-footer .subscribe button {
        text-align: center;
        background: #2C3038;
        border: none;
        outline: none;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 20px;
        cursor: pointer;
        width: 20%;
        color: #fff;
        border-radius: 6px;
    }

        .gdw-footer .subscribe button:hover {
            transition: all .5s ease;
            background: #AC4481;
        }

        .gdw-footer .subscribe button img {
            vertical-align: middle;
        }

    .gdw-footer #totop {
        display: none;
        position: fixed;
        bottom: 0px;
        right: 0px;
        z-index: 99;
        border: none;
        outline: none;
        cursor: pointer;
        width: 50px;
        height: 45px;
        background: #2C3038;
        padding: 0;
        /*opacity: 0.7;*/
        transition: 0.3s ease;
    }

        .gdw-footer #totop:hover {
            opacity: 0.7;
            transition: 0.3s ease;
        }

        .gdw-footer #totop span.fa {
            line-height: 45px;
            color: #fff;
            font-size: 22px;
        }

    .gdw-footer .below-section {
        justify-content: space-between;
    }

    .gdw-footer ul.social li,
    .gdw-footer ul.jst-link li {
        display: inline-block;
        margin-right: 5px;
    }

        .gdw-footer ul.social li a {
            color: #2C3038;
            width: 36px;
            height: 36px;
            line-height: 36px;
            display: inline-block;
            border-radius: 50%;
            text-align: center;
        }

            .gdw-footer ul.social li a:hover {
                color: #AC4481;
                transition: 0.3s ease;
            }

            .gdw-footer ul.social li a span {
                font-size: 15px;
                line-height: 36px;
            }

    @media screen and (max-width: 1080px) {
        .gdw-footer .footer-gd-si li a {
            font-size: 15px;
            line-height: 23px;
        }
    }

    @media screen and (max-width: 1190px) {
        .gdw-footer .subscribe button {
            width: 30%;
        }
    }

    @media screen and (max-width: 991px) {
        .gdw-footer .below-section {
            display: block !important;
        }

        .gdw-footer .columns-2 {
            text-align: center;
        }
    }

    @media screen and (max-width: 801px) {
        .gdw-footer .gdw-footer-si-main h3 {
            margin-bottom: 18px;
        }
    }

    @media screen and (max-width: 640px) {
        .gdw-footer .gdw-footer-si-main {
            padding: 3em 0;
        }

        .gdw-footer .footer-gd-si li {
            margin: 5px 0;
        }

        .gdw-footer .subscribe button {
            padding: 12px 10px;
        }
    }

    @media screen and (max-width: 420px) {
        .gdw-footer .gdw-footer-si-main {
            padding: 2em 0;
        }

        .gdw-footer .subscribe button {
            width: 20%;
        }
    }

    .gdw-abouttext .abt-two img {
        border-radius: 5px;
    }

    .gdw-abouttext .abt-text {
        /*align-self: center;*/
    }
    /*istatistikpage*/
    /*istatistik*/
    .info {
        background-color: #f6f3f3;
        padding: 2rem;
        border-radius: 6px;
        box-shadow: 1px 5px 7.5px rgba(196, 196, 196, 0.2);
        transition: 0.3s ease;
        border: 1px solid #eee;
        border-radius: 20px;
    }


    /*end istatistik*/
    /*endistatistikpage*/
    .gdw-abouttext .abt-text h1 {
        font-size: 56px;
        line-height: 44px;
        color: #2C3038;
        /* text-transform: capitalize;*/
        margin-bottom: 10px;
        font-weight: 700;
    }

    .gdw-abouttext .abt-text h3 {
        font-size: 36px;
        line-height: 44px;
        color: #2C3038;
        /* text-transform: capitalize;*/
        margin-bottom: 10px;
        font-weight: 300;
    }

    .gdw-abouttext .abt-text h4 {
        font-size: 26px;
        line-height: 32px;
        color: #2C3038;
        font-weight: 700;
    }

    .gdw-abouttext .abt-text h5 {
        font-size: 20px;
        line-height: 32px;
        color: #2C3038;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .gdw-abouttext .abt-text p {
        shape-outside: content-box;
        font-style: normal;
        font-weight: normal;
        font-size: 1.125em;
        line-height: 24.5px;
        color: #000;
        margin: 15px 0 35px 0;
    }

    .gdw-abouttext ul.cont-4 li {
        display: block;
    }

        .gdw-abouttext ul.cont-4 li span.fa {
            color: #AC4481;
            margin-right: 12px;
            background: rgba(220, 79, 114, 0.1);
            font-size: 10px;
            padding: 8px;
            border-radius: 50%;
            display: inline-block;
            opacity: 0.5;
        }

    .gdw-abouttext .abt-text ul li {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 26px;
        color: #2C3038;
        margin: 15px 0;
        font-weight: 600;
    }

    @media all and (max-width: 991px) {
        .gdw-abouttext .abt-image img {
            width: 100%;
        }
    }

    @media all and (max-width: 600px) {
        .gdw-abouttext .abt-text h3 {
            font-size: 30px;
            line-height: 35px;
        }
    }

    @media all and (max-width: 387px) {
        .gdw-abouttext .abt-text h3 {
            font-size: 26px;
            line-height: 32px;
        }
    }

    @media all and (max-width: 320px) {
        .gdw-abouttext .abt-text h4 {
            font-size: 23px;
            line-height: 28px;
        }

        .gdw-abouttext #content-with-photo4-block {
            padding: 0 0 2.5rem 0;
        }
    }

    .gdw-about2 .features h5 {
        font-size: 26px;
        line-height: 32px;
        color: #2C3038;
        font-weight: 700;
    }

    .gdw-about2 p {
        font-size: 16px;
        line-height: 24.5px;
        color: #5a5a5a;
        margin-top: 16px;
    }

    /*-- Principles --*/
    .gdw-services {
        background-color: #F7F9FC;
    }

    .elite-services1, .elite-services2, .elite-services3, .elite-services4 {
        background: #fff;
        border-radius: 6px;
        box-shadow: 1px 5px 7.5px rgba(196, 196, 196, 0.2);
    }

    .principles {
        padding: 100px 0 300px;
        position: relative;
    }

    .about-right p {
        line-height: 30px;
    }

    .abt-btm.agileits.gdwayouts {
        padding: 4em 0 0;
    }

    .bott-img {
        width: 100%;
        height: 250px;
        margin: 0px 0;
        text-align: center;
        transition: all 0.3s ease;
        padding: 0 30px;
    }

        .bott-img:hover {
            padding: 0 30px;
        }

        .bott-img .icon-holder {
            position: relative;
            top: 60px;
            display: inline-block;
            margin-bottom: 68px;
            width: 70px;
            height: 70px;
            line-height: 70px;
            transition: all 0.3s ease;
            border-radius: 100%;
            color: #fff;
            font-size: 26px;
            background-color: #AC4481;
        }

        .bott-img .mission {
            position: relative;
            top: 10px;
            transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
            color: #000;
            font-size: 22px;
            line-height: 28px;
            font-weight: 700;
            color: #2C3038;
        }

        .bott-img .description {
            margin: -6em auto 0;
            opacity: 0;
            transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform: scale(0);
        }

    .description.agileits.gdwayouts p {
        margin: 2em;
        color: #2C3038;
    }

    .bott-img .icon-holder > .service-icon {
        line-height: 70px;
    }

    .bott-img:hover .icon-holder {
        top: -40px;
        background: #AC4481;
    }

    .bott-img:hover .mission {
        top: -80px;
    }

    .bott-img:hover .description {
        opacity: 1;
        transform: scale(1);
        font-size: 14px;
        line-height: 2.2em;
    }

        .bott-img:hover .description a {
            top: -60px;
        }

    .description a {
        font-size: 17px;
        line-height: 26px;
        font-weight: 700;
        color: #AC4481;
    }

    .description p {
        color: #2C3038;
        font-size: 16px;
        line-height: 25px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .description a:hover {
        text-decoration: underline;
    }

    .principles-grids2 {
        background-color: #F5F5F5;
        position: absolute;
        top: 40%;
        right: 20%;
        width: 35%;
        padding: 50px 50px 50px 125px;
    }

        .principles-grids2 h3 {
            text-align: left;
            width: 50%;
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 50px;
            color: #1dc8d9;
        }

    .slider-4 p {
        line-height: 30px;
        font-weight: 400;
        color: #000;
    }

    .slider-4 h4 {
        float: right;
        margin-top: 20px;
        font-weight: 700;
        color: #1dc8d9;
    }

    /*-- //Principles --*/
    .gdw-about4 .new-block {
        display: grid;
        align-items: center;
        padding: 2rem 0;
    }

    .gdw-about4 .middle-section {
        max-width: 950px;
        margin: 0 auto;
    }

        .gdw-about4 .middle-section h2 {
            color: #2C3038;
            font-size: 45px;
            line-height: 55px;
            font-weight: 500;
        }

    .gdw-about4 .section-width p {
        color: #5a5a5a;
        font-size: 18px;
        line-height: 28px;
        font-weight: 400;
    }

    .gdw-about4 span.video-play-icon {
        background: #fff;
        display: inline-block;
        width: 55px;
        height: 55px;
        line-height: 55px;
        border-radius: 50%;
        transition: 0.3s ease-in-out;
        -webkit-animation: ripple 1s linear infinite;
        animation: ripple 1s linear infinite;
    }

    .gdw-about4 img.video-popup-image {
        box-shadow: 1px 5px 7.5px rgba(196, 196, 196, 0.2);
    }

    .gdw-about4 span.video-play-icon span {
        color: #72293b;
    }

    .gdw-about4 span.video-play-icon:hover {
        transform: scale(1.1);
        transition: 0.3s ease-in-out;
    }

    .gdw-about4 span.fa.fa-play {
        line-height: 55px;
    }

    .gdw-about4 .history-info {
        max-width: 700px;
        margin: 0 auto;
    }

    .gdw-about4 .play-view {
        left: 0;
        right: 0;
        top: calc(50% - 40px);
    }

    .gdw-about4 .modal-header {
        border-bottom: none;
        background: #fbfbfb;
    }

    .gdw-about4 h5#exampleModalCenterTitle {
        color: #2C3038;
        font-size: 30px;
        font-weight: 700;
    }

    .gdw-about4 .demo-request input {
        padding: 15px 20px;
        -webkit-appearance: none;
        border-radius: 0;
        color: #000;
        font-weight: 600;
        width: 100%;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 15px;
        border-radius: 6px;
        border: 1px solid #eee;
        background: #F7F9FC;
        height: 55px;
    }

        .gdw-about4 .demo-request input:focus {
            box-shadow: none;
            border: 1px solid #AC4481;
            background-color: #fff;
        }

    @media (max-width: 800px) {
        .gdw-about4 .middle-section a {
            margin-top: 40px;
        }

        .gdw-about4 .middle-section h2 {
            font-size: 40px;
            line-height: 50px;
        }
    }

    @media (max-width: 667px) {
        .gdw-about4 .middle-section a {
            margin-top: 30px;
        }

        .gdw-about4 .middle-section h2 {
            font-size: 32px;
            line-height: 42px;
        }

        .gdw-about4 .section-width p {
            font-size: 18px;
            line-height: 30px;
        }
    }

    @media (max-width: 384px) {
        .gdw-about4 .middle-section a {
            margin-top: 25px;
        }
    }

    @-webkit-keyframes ripple {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15), 0 0 0 10px rgba(255, 255, 255, 0.15), 0 0 0 20px rgba(255, 255, 255, 0.15);
        }

        100% {
            box-shadow: 0 0 0 10px rgba(0, 9, 0, 0.15), 0 0 0 20px rgba(255, 255, 255, 0.15), 0 0 0 40px rgba(50, 100, 245, 0);
        }
    }

    @keyframes ripple {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15), 0 0 0 10px rgba(255, 255, 255, 0.15), 0 0 0 20px rgba(255, 255, 255, 0.15);
        }

        100% {
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.15), 0 0 0 20px rgba(255, 255, 255, 0.15), 0 0 0 40px rgba(50, 100, 245, 0);
        }
    }

    /* Magnific Popup CSS */
    .mfp-bg {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1042;
        overflow: hidden;
        position: fixed;
        background: #0b0b0b;
        opacity: 0.8;
    }

    .mfp-wrap {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1043;
        position: fixed;
        outline: none !important;
        -webkit-backface-visibility: hidden;
    }

    .mfp-container {
        text-align: center;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        padding: 0 8px;
        box-sizing: border-box;
    }

        .mfp-container:before {
            content: '';
            display: inline-block;
            height: 100%;
            vertical-align: middle;
        }

    .mfp-align-top .mfp-container:before {
        display: none;
    }

    .mfp-content {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        margin: 0 auto;
        text-align: left;
        z-index: 1045;
    }

    .mfp-inline-holder .mfp-content,
    .mfp-ajax-holder .mfp-content {
        width: 100%;
        cursor: auto;
    }

    .mfp-ajax-cur {
        cursor: progress;
    }

    .mfp-zoom-out-cur,
    .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
        cursor: zoom-out;
    }

    .mfp-zoom {
        cursor: pointer;
        cursor: zoom-in;
    }

    .mfp-auto-cursor .mfp-content {
        cursor: auto;
    }

    .mfp-close,
    .mfp-arrow,
    .mfp-preloader,
    .mfp-counter {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .mfp-loading.mfp-figure {
        display: none;
    }

    .mfp-hide {
        display: none !important;
    }

    .mfp-preloader {
        color: #CCC;
        position: absolute;
        top: 50%;
        width: auto;
        text-align: center;
        margin-top: -0.8em;
        left: 8px;
        right: 8px;
        z-index: 1044;
    }

        .mfp-preloader a {
            color: #CCC;
        }

            .mfp-preloader a:hover {
                color: #FFF;
            }

    .mfp-s-ready .mfp-preloader {
        display: none;
    }

    .mfp-s-error .mfp-content {
        display: none;
    }

    button.mfp-close,
    button.mfp-arrow {
        overflow: visible;
        cursor: pointer;
        border: 0;
        -webkit-appearance: none;
        display: block;
        outline: none;
        padding: 0;
        z-index: 1046;
        box-shadow: none;
        touch-action: manipulation;
    }

    button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

    .mfp-close {
        line-height: 40px;
        position: absolute;
        right: 0px;
        top: -40px;
        text-decoration: none;
        text-align: center;
        padding: 0 0 18px 10px;
        color: #FFF;
        font-style: normal;
        font-size: 28px;
        font-family: Arial, Baskerville, monospace;
        background: transparent;
    }

    .mfp-close-btn-in .mfp-close {
        color: #fff;
    }

    .mfp-image-holder .mfp-close,
    .mfp-iframe-holder .mfp-close {
        color: #FFF;
        right: -6px;
        text-align: right;
        padding-right: 6px;
        width: 100%;
    }

    .mfp-counter {
        position: absolute;
        top: 0;
        right: 0;
        color: #CCC;
        font-size: 12px;
        line-height: 18px;
        white-space: nowrap;
    }

    .mfp-arrow {
        position: absolute;
        opacity: 0.65;
        margin: 0;
        top: 50%;
        margin-top: -55px;
        padding: 0;
        width: 90px;
        height: 110px;
        -webkit-tap-highlight-color: transparent;
    }

        .mfp-arrow:active {
            margin-top: -54px;
        }

        .mfp-arrow:hover,
        .mfp-arrow:focus {
            opacity: 1;
        }

        .mfp-arrow:before,
        .mfp-arrow:after {
            content: '';
            display: block;
            width: 0;
            height: 0;
            position: absolute;
            left: 0;
            top: 0;
            margin-top: 35px;
            margin-left: 35px;
            border: medium inset transparent;
        }

        .mfp-arrow:after {
            border-top-width: 13px;
            border-bottom-width: 13px;
            top: 8px;
        }

        .mfp-arrow:before {
            border-top-width: 21px;
            border-bottom-width: 21px;
            opacity: 0.7;
        }

    .mfp-arrow-left {
        left: 0;
    }

        .mfp-arrow-left:after {
            border-right: 17px solid #FFF;
            margin-left: 31px;
        }

        .mfp-arrow-left:before {
            margin-left: 25px;
            border-right: 27px solid #3F3F3F;
        }

    .mfp-arrow-right {
        right: 0;
    }

        .mfp-arrow-right:after {
            border-left: 17px solid #FFF;
            margin-left: 39px;
        }

        .mfp-arrow-right:before {
            border-left: 27px solid #3F3F3F;
        }

    .mfp-iframe-holder {
        padding-top: 40px;
        padding-bottom: 40px;
    }

        .mfp-iframe-holder .mfp-content {
            line-height: 0;
            width: 100%;
            max-width: 900px;
        }

        .mfp-iframe-holder .mfp-close {
            top: -40px;
        }

    .mfp-iframe-scaler {
        width: 100%;
        height: 0;
        overflow: hidden;
        padding-top: 56.25%;
    }

        .mfp-iframe-scaler iframe {
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            background: #000;
        }

    /* Main image in popup */
    img.mfp-img {
        width: auto;
        max-width: 100%;
        height: auto;
        display: block;
        line-height: 0;
        box-sizing: border-box;
        padding: 40px 0 40px;
        margin: 0 auto;
    }

    /* The shadow behind the image */
    .mfp-figure {
        line-height: 0;
    }

        .mfp-figure:after {
            content: '';
            position: absolute;
            left: 0;
            top: 40px;
            bottom: 40px;
            display: block;
            right: 0;
            width: auto;
            height: auto;
            z-index: -1;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            background: #444;
        }

        .mfp-figure small {
            color: #BDBDBD;
            display: block;
            font-size: 12px;
            line-height: 14px;
        }

        .mfp-figure figure {
            margin: 0;
        }

    .mfp-bottom-bar {
        margin-top: -36px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        cursor: auto;
    }

    .mfp-title {
        text-align: left;
        line-height: 18px;
        color: #F3F3F3;
        word-wrap: break-word;
        padding-right: 36px;
    }

    .mfp-image-holder .mfp-content {
        max-width: 100%;
    }

    .mfp-gallery .mfp-image-holder .mfp-figure {
        cursor: pointer;
    }

    @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
        /**
       * Remove all paddings around the image on small screen
       */
        .mfp-img-mobil .mfp-image-holder {
            padding-left: 0;
            padding-right: 0;
        }

        .mfp-img-mobil img.mfp-img {
            padding: 0;
        }

        .mfp-img-mobil .mfp-figure:after {
            top: 0;
            bottom: 0;
        }

        .mfp-img-mobil .mfp-figure small {
            display: inline;
            margin-left: 5px;
        }

        .mfp-img-mobil .mfp-bottom-bar {
            background: rgba(0, 0, 0, 0.6);
            bottom: 0;
            margin: 0;
            top: auto;
            padding: 3px 5px;
            position: fixed;
            box-sizing: border-box;
        }

            .mfp-img-mobil .mfp-bottom-bar:empty {
                padding: 0;
            }

        .mfp-img-mobil .mfp-counter {
            right: 5px;
            top: 3px;
        }

        .mfp-img-mobil .mfp-close {
            top: 0;
            right: 0;
            width: 35px;
            height: 35px;
            line-height: 35px;
            background: rgba(0, 0, 0, 0.6);
            position: fixed;
            text-align: center;
            padding: 0;
        }
    }

    @media all and (max-width: 900px) {
        .mfp-arrow {
            transform: scale(0.75);
        }

        .mfp-arrow-left {
            transform-origin: 0;
        }

        .mfp-arrow-right {
            transform-origin: 100%;
        }

        .mfp-container {
            padding-left: 6px;
            padding-right: 6px;
        }
    }

    /* Styles for dialog window */
    #small-dialog {
        max-width: 750px;
        margin: 40px auto;
        position: relative;
    }

    div#small-dialog iframe {
        width: 100%;
        height: 400px;
        display: block;
    }

    /**
   * Fade-zoom animation for first dialog
   */
    /* start state */
    .my-mfp-zoom-in .zoom-anim-dialog {
        opacity: 0;
        transition: all 0.2s ease-in-out;
        transform: scale(0.8);
    }

    /* animate in */
    .my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
        opacity: 1;
        transform: scale(1);
    }

    /* animate out */
    .my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
        transform: scale(0.8);
        opacity: 0;
    }

    /* Dark overlay, start state */
    .my-mfp-zoom-in.mfp-bg {
        opacity: 0;
        transition: opacity 0.3s ease-out;
    }

    /* animate in */
    .my-mfp-zoom-in.mfp-ready.mfp-bg {
        opacity: 0.95;
    }

    /* animate out */
    .my-mfp-zoom-in.mfp-removing.mfp-bg {
        opacity: 0;
    }

    /**
   * Fade-move animation for second dialog
   */
    /* at start */
    .my-mfp-slide-bottom .zoom-anim-dialog {
        opacity: 0;
        transition: all 0.2s ease-out;
        transform: translateY(-20px) perspective(600px) rotateX(10deg);
    }

    /* animate in */
    .my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
        opacity: 1;
        transform: translateY(0) perspective(600px) rotateX(0);
    }

    /* animate out */
    .my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
        opacity: 0;
        transform: translateY(-10px) perspective(600px) rotateX(10deg);
    }

    /* Dark overlay, start state */
    .my-mfp-slide-bottom.mfp-bg {
        opacity: 0;
        transition: opacity 0.3s ease-out;
    }

    /* animate in */
    .my-mfp-slide-bottom.mfp-ready.mfp-bg {
        opacity: 0.8;
    }

    /* animate out */
    .my-mfp-slide-bottom.mfp-removing.mfp-bg {
        opacity: 0;
    }

    .gdw-customers .logo-view img {
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
        transition: 0.3s ease;
        padding: 1.5rem 2rem;
    }

        .gdw-customers .logo-view img:hover {
            -webkit-filter: grayscale(0);
            filter: grayscale(0);
            transition: 0.3s ease;
        }

    .gdw-team {
        /*-- team --*/
    }

        .gdw-team .team {
            background: #fff;
        }

        .gdw-team .team-info {
            transition: 0.3s ease-in-out;
        }

            .gdw-team .team-info:hover {
                box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
                transform: translateY(-0.5rem);
                transition: 0.3s ease-in-out;
            }

        .gdw-team .img-circle {
            width: 100%;
            height: 250px;
            display: inline-block;
            overflow: hidden;
            background: #f3f6f9;
        }

            .gdw-team .img-circle a {
                display: block;
            }

            .gdw-team .img-circle img {
                width: 100%;
                min-height: 100%;
                -o-object-fit: cover;
                object-fit: cover;
                -o-object-position: center;
                object-position: center;
                display: block;
            }

        .gdw-team p.team-text {
            font-size: 18px;
            color: #5a5a5a;
            line-height: 30px;
            max-width: 650px;
        }

        .gdw-team .team-info p {
            font-size: 16px;
            line-height: 24px;
            color: #5a5a5a;
            margin: 2px 0px 14px;
        }

        .gdw-team h3.name-pos a {
            font-size: 20px;
            line-height: 26px;
            color: #2C3038;
            font-weight: 400;
        }

        .gdw-team .team-info:hover h3.name-pos a {
            color: #000;
            transition: 0.3s ease;
        }

        .gdw-team .column-btm {
            padding: 16px;
            background: #fff;
            border-radius: 0 0 6px 6px;
            border: 1px solid #eee;
            border-top: none;
            margin-top: -6px;
        }

        .gdw-team .column a img {
            display: block;
            border-radius: 6px 6px 0 0;
        }

        .gdw-team .social a {
            display: inline-block;
            margin-right: 10px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            line-height: 30px;
            text-align: center;
        }

            .gdw-team .social a span {
                font-size: 12px;
                line-height: 30px;
                display: block;
            }

            .gdw-team .social a.facebook {
                background: #3b5998;
            }

                .gdw-team .social a.facebook span {
                    color: #fff;
                }

            .gdw-team .social a.twitter {
                background: #1da1f2;
            }

                .gdw-team .social a.twitter span {
                    color: #fff;
                }

    @media (max-width: 767px) {
        .gdw-team .team-wrap:nth-child(1) {
            margin-top: 10px;
        }

        .gdw-team h3.name-pos a {
            font-size: 18px;
            line-height: 22px;
        }
    }

    @media (max-width: 667px) {
        .gdw-team .team-info p {
            font-size: 15px;
            line-height: 14px;
        }
    }

    @media (max-width: 568px) {
        .gdw-team .team-info img {
            width: 100%;
        }
    }

    .gdw-services1 h3 {
        font-size: 42px;
        line-height: 1;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .gdw-services1 h5 {
        font-size: 24px;
        line-height: 30px;
        color: #999;
    }

    .gdw-services1 h4 a {
        font-size: 20px;
        font-weight: 700;
        color: #2C3038;
        line-height: 24.5px;
    }

        .gdw-services1 h4 a:hover {
            color: #AC4481;
        }

    .gdw-services1 p.service-content {
        font-size: 16px;
        line-height: 20.5px;
        color: #5a5a5a;
        margin-top: 5px;
    }

    .gdw-services1 .features-with-17-left1 a.icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
        background: #F7F9FC;
        text-align: center;
        border-radius: 50%;
        margin-bottom: 15px;
        display: block;
        box-shadow: 1px 5px 7.5px rgba(196, 196, 196, 0.2);
    }

    .gdw-services1 .features-with-17-left1 a span.fa {
        line-height: 80px;
        font-size: 26px;
    }

    .gdw-services1 .features-with-17-left1 {
        padding: 0 30px;
    }

    @media (max-width: 1280px) {
        .gdw-services1 h3 {
            font-size: 40px;
        }
    }

    @media (max-width: 800px) {
        .gdw-services1 h3 {
            font-size: 30px;
            line-height: 1;
        }
    }

    @media (max-width: 480px) {
        .gdw-services1 h5 {
            font-size: 20px;
        }

        .gdw-services1 .features-with-17-left1 {
            padding: 0 15px;
        }

        .gdw-services1 h4 a {
            font-size: 18px;
        }
    }

    @media (max-width: 415px) {
        .gdw-services1 h3 {
            font-size: 26px;
            margin-bottom: 15px;
        }
    }

    @media (max-width: 375px) {
        .gdw-services1 h3 {
            font-size: 24px;
        }

        .gdw-services1 h4 a {
            font-size: 17px;
        }
    }

    .gdw-services2 .mobil-info {
        background: #F7F9FC;
    }

    .gdw-services2 .mobil-info-inn {
        align-items: center;
    }

    .gdw-services2 .mobil-right-icon {
        text-align: center;
    }

    .gdw-services2 .mobil-right-info p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        color: #5a5a5a;
        line-height: 20.4px;
    }

    .gdw-services2 img.service-img {
        border: 5px solid #fff;
    }

    .gdw-services2 .mobil-right-icon span {
        font-size: 20px;
        color: #AC4481;
        background: #ffffff;
        width: 40px;
        height: 40px;
        text-align: center;
        display: inline-block;
        line-height: 40px;
        border-radius: 50%;
        font-weight: 700;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
    }

    .gdw-services2 .mobil-right-info h6 a {
        font-size: 18px;
        color: #2C3038;
        margin-bottom: 5px;
        display: inline-block;
        transition: 0.3s ease-in;
        font-weight: 600;
        /* text-transform: uppercase;*/
    }

        .gdw-services2 .mobil-right-info h6 a:hover {
            color: #999;
            transition: 0.3s ease-in;
        }

    @media only screen and (max-width: 992px) {
        .gdw-services2 .mobil-right-icon {
            text-align: right;
        }

        .gdw-services2 .mobil-left {
            width: 300px;
            margin: 20px auto 40px;
        }
    }

    @media only screen and (max-width: 415px) {
        .gdw-services2 a.author {
            margin-top: 20px;
        }
    }

    .gdw-services3 .content-ab-left, .gdw-services3 .content-ab-right {
        border: 1px solid #eee;
        padding: 2rem;
        border-radius: 6px;
    }

    .gdw-services3 h3.service-title {
        color: #2C3038;
        font-size: 38px;
        line-height: 1;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .gdw-services3 ul.feature-list li {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 26px;
        color: #2C3038;
        margin: 15px 0;
        font-weight: 600;
    }

        .gdw-services3 ul.feature-list li span.fa {
            color: #AC4481;
            margin-right: 12px;
            background: rgba(220, 79, 114, 0.1);
            font-size: 10px;
            padding: 8px;
            border-radius: 50%;
            display: inline-block;
            opacity: 0.5;
        }

    .gdw-services3 .content-ab-grids p {
        font-style: normal;
        font-size: 16px;
        line-height: 24.5px;
        color: #5a5a5a;
        margin-bottom: 16px;
    }

    .gdw-services3 .abh-hd {
        margin-top: 30px;
    }

    @media (max-width: 992px) {
        .gdw-services3 .content-ab-grids {
            display: grid;
            grid-template-columns: 1fr;
            grid-gap: 20px;
        }

            .gdw-services3 .content-ab-grids h4 {
                font-size: 34px;
                line-height: 40px;
                margin-bottom: 16px;
            }

            .gdw-services3 .content-ab-grids h4 {
                font-size: 42px;
                line-height: 52px;
                margin-bottom: 24px;
                padding-left: 90px;
            }

                .gdw-services3 .content-ab-grids h4::before {
                    width: 70px;
                }

        .gdw-services3 h3.service-title {
            font-size: 34px;
        }

        .gdw-services3 .content-ab-left, .gdw-services3 .content-ab-right {
            padding: 1.5rem;
        }
    }

    @media (max-width: 667px) {
        .gdw-services3 .content-ab-grids h4 {
            font-size: 28px;
            line-height: 38px;
            margin-bottom: 16px;
        }

        .gdw-services3 .content-ab-grids h4 {
            font-size: 42px;
            line-height: 52px;
            margin-bottom: 24px;
            padding-left: 70px;
        }

            .gdw-services3 .content-ab-grids h4::before {
                width: 50px;
            }

        .gdw-services3 h3.service-title {
            font-size: 30px;
        }
    }

    @media (max-width: 480px) {
        .gdw-services3 .content-ab-grids h4 {
            font-size: 26px;
            line-height: 36px;
            margin-bottom: 10px;
        }

        .gdw-services3 h3.service-title {
            font-size: 26px;
        }

        .gdw-services3 .content-ab-left, .gdw-services3 .content-ab-right {
            padding: 1rem;
        }
    }

    .gdw-contact {
        position: relative;
    }

        .gdw-contact .contact-form {
            background: #fff;
            padding: 2rem;
            border-radius: 6px;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
            position: relative;
            left: -75px;
        }

        .gdw-contact .main-images a {
            display: inline-block;
        }

        .gdw-contact .contact-head {
            color: #5a5a5a;
            line-height: 50px;
            font-size: 45px;
        }

        .gdw-contact input.contact-input,
        .gdw-contact textarea {
            outline: none;
            padding: 15px 20px;
            -webkit-appearance: none;
            border-radius: 0;
            color: #000;
            font-weight: 600;
            width: 100%;
            font-size: 16px;
            line-height: 26px;
            margin-bottom: 15px;
            border-radius: 6px;
            border: 1px solid #eee;
            background: #F7F9FC;
        }

            .gdw-contact input.contact-input:focus,
            .gdw-contact textarea:focus {
                border: 1px solid #AC4481;
                background: #fff;
            }

        .gdw-contact textarea {
            height: 130px;
            resize: none;
        }

        .gdw-contact button.btn {
            padding: 0px 50px;
        }

        .gdw-contact .contactsi-top-bg {
            background: #F4F7FB;
        }

        .gdw-contact .map iframe {
            width: 100%;
            height: 400px;
            display: block;
        }

        .gdw-contact .contact-info h4 {
            font-size: 20px;
            color: #A8A8B7;
            margin: 0px 0 10px 0;
            font-weight: 400;
        }

        .gdw-contact .icon {
            width: 60px;
            margin: 0 auto;
            height: 60px;
            text-align: center;
            border-radius: 50%;
            line-height: 60px;
            background: #F4F7FB;
        }

        .gdw-contact .contact-info-left {
            grid-template-columns: 1fr 1fr 1fr;
            grid-gap: 50px;
        }

        .gdw-contact .contact-info {
            box-shadow: 1px 5px 7.5px rgba(196, 196, 196, 0.2);
            padding: 2rem;
            background: #fff;
            border-radius: 6px;
            display: grid;
            grid-template-rows: auto 1fr;
            grid-gap: 20px;
            transition: 0.3s ease-in-out;
            text-align: center;
        }

            .gdw-contact .contact-info:hover {
                box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);
                transform: translateY(-0.5rem);
                transition: 0.3s ease-in-out;
            }

        .gdw-contact .contact p {
            font-size: 18px;
            color: #585858;
            line-height: 28px;
            font-weight: 400;
        }

        .gdw-contact .contact a {
            display: block;
            color: #585858;
            transition: 0.3s ease-in;
        }

            .gdw-contact .contact a:hover {
                display: block;
                color: #000;
                text-decoration: underline;
                transition: 0.3s ease-in;
            }

        .gdw-contact .contact {
            grid-template-columns: 1fr;
        }

            .gdw-contact .contact span.fa {
                font-size: 20px;
                color: #2F2E7C;
                line-height: 60px;
            }

    @media (max-width: 1024px) {
        .gdw-contact .contact-info-left {
            grid-gap: 40px;
        }
    }

    @media (max-width: 991px) {
        .gdw-contact .contact-info-left {
            grid-template-columns: 1fr;
        }

        .gdw-contact .contact-form {
            left: 0;
            top: -20px;
        }
    }

    @media (max-width: 900px) {
        .gdw-contact .contact p {
            font-size: 17px;
        }
    }

    @media (max-width: 800px) {
        .gdw-contact .contact a {
            font-size: 16px;
        }

        .gdw-contact .contact {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 767px) {
        .gdw-contact .map {
            float: none;
            width: 100%;
            text-align: left;
        }

        .gdw-contact iframe {
            height: 280px;
        }
    }

    @media (max-width: 684px) {
        .gdw-contact .contact-form {
            border-top-left-radius: 0px;
            border-top-right-radius: 0px;
        }
    }

    @media (max-width: 375px) {
        .gdw-contact .contact p {
            font-size: 15px;
        }
    }

    /*# sourceMappingURL=style-starter.css.map */
