/* poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



/* Default CSS */
:root {
    --primary-color: #343a40;
    --primary-color-low: #898989;
    --primary-color-dark: #000000;

    --secondary-color: #c27a33;
    --secondary-color-light: #ad69259c;
    --secondary-color-low: #ecb32c;
    --secondary-color-dark: #9b5e21;

    --bg-color: #e9e9e9;
    --bg-color-low: rgba(232, 232, 232, 0.5);
    --bg-color-dark: #d3cfcf;

    --text-dark: #31353a;
    --text-dark-low: #575e65;
    --text-dark-dark: #343a40;

    --text-light: #e1e4e6;
    --text-light-low: #f8f9fa;
    --text-light-dark: #9ea1a4;

    --button-color: #007bff;
    --button-color-low: rgba(0, 123, 255, 0.5);
    --button-color-dark: #0056b3;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

/* reset all the default styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

section {
    min-height: 100vh;
    display: flex;
    position: relative;
}


header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    padding-top: 20px;
}



header .navbar {
    width: 90%;
    height: 70px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
    border-radius: 5px;
}

[data-is-scrolled="true"] header .navbar {
    background-color: #ffffff;
    border-radius: 15px;
    width: 65%;
    transform: translateY(10px);
    padding: 0;
}

[data-mega-active="true"] header .navbar {
    background-color: #ffffff;
    border-radius: 15px;
    width: 65%;
    transform: translateY(10px);
    padding: 0;
}

[data-is-home="false"] header .navbar {
    background-color: #ffffff;
    border-radius: 15px;
    width: 65%;
    transform: translateY(10px);
    padding: 0;
}

header .navbar .logo {
    width: 15%;
    position: relative;
    transition: all 0.5s ease;
}

[data-is-scrolled="true"] header .navbar .logo {
    width: 20%;
    transform: translateY(7px);
}

[data-is-home="false"] header .navbar .logo {
    width: 20%;
    transform: translateY(7px);
}

[data-mega-active="true"] header .navbar .logo {
    width: 20%;
    transform: translateY(7px);
}


header .navbar .logo img {
    width: 100%;
    height: auto;

    /* image shadow */
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

[data-is-scrolled="true"] header .navbar .logo img {
    filter: none;
}


[data-is-home="false"] header .navbar .logo img {
    filter: none;
}

[data-mega-active="true"] header .navbar .logo img {
    filter: none;
}


header .navbar .menu {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
}

header .navbar .menu ul.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .navbar .menu ul.nav-menu li {
    margin: 0 25px;
    transition: all 0.5s ease;
}

header .navbar .menu ul li a {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 2px;
    background-blend-mode: difference;
    transition: all 0.5s ease;
    cursor: pointer;
}

[data-is-scrolled="true"] header .navbar .menu ul.nav-menu li {
    margin: 0 15px;
}

[data-mega-active="true"] header .navbar .menu ul.nav-menu li {
    margin: 0 15px;
}

[data-is-home="false"] header .navbar .menu ul.nav-menu li {
    margin: 0 15px;
}


[data-is-scrolled="true"] header .navbar .menu ul.nav-menu li a {
    letter-spacing: 1px;
}

[data-mega-active="true"] header .navbar .menu ul.nav-menu li a {
    letter-spacing: 1px;
}

[data-is-home="false"] header .navbar .menu ul.nav-menu li a {
    letter-spacing: 1px;
}


.navbar .burger {
    width: 38px;
    height: 40px;
    position: relative;
    margin-right: 20px;
    display: none;
}

.navbar .burger .line {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark-low);
    margin: 8px 0;
    border-radius: 5px;
    transition: all 0.5s ease;
}

header .navbar .mobile-menu-cont .mobile-menu {
    display: none;
}

header .navbar .mobile-close {
    display: none;
}



/* Header Responsive */
 
@media screen and (max-width: 1400px) {
    header .navbar {
        width:90%!important;
    }

    header .navbar .logo {
        width: 20%!important;
    }
}

@media screen and (max-width: 1200px) {
    header .navbar .menu ul.nav-menu li {
        margin: 0 10px!important;
    }
}

@media screen and (max-width: 1024px) {
    header .navbar {
        background-color: #ffffff;
        border-radius: 15px;
        transform: translateY(10px);
        padding: 0!important;
    }

    header .navbar .burger {
        display: block;
    }

    header .navbar .logo {
        width: 30%!important;
        transform: translateY(7px);
    }

    header .navbar .menu {
        position: absolute;
        top: -42%;
        right: -100%;
        width: 40%;
        height: 100vh;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        padding-left: 20px;
        transition: all 0.5s ease;
        opacity: 0;
    }

    header .navbar .menu.active {
        right: -6%;
        opacity: 1;
    }

    header .navbar .mobile-close {
        display: block;
        position: absolute;
        top: 24px;
        right: 34px;
        color: var(--text-dark);
    }

    header .navbar .mobile-close i {
        font-size: 2rem;
        font-weight: 600;
    }
    
    header .navbar .menu ul.nav-menu {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
        padding-top: 70px;
    }

    header .navbar .menu ul.nav-menu li {
        margin: 10px 0!important;
        width: 90%;
    }

    header .navbar .menu ul.nav-menu li a {
        font-size: 1.1rem;
        letter-spacing: 3px!important;
    }

    header .navbar .nav-menu .mega-menu-cont .mega-menu {
        display: none!important;
    }

    header .navbar .nav-menu .mini-menu-cont .mini-menu {
        display: none!important;
    }
    
    header .navbar .mobile-menu-cont .mega-menu-btn {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    header .navbar .mobile-menu-cont .mega-menu-btn::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 1.1rem;
        color: var(--text-dark);
        rotate: -90deg;
    }

    header .navbar .mobile-menu-cont .mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
        padding: 20px;
        border-radius: 15px;
        position: absolute;
        top: 0;
        left: 100%;
        background-color: #ffffff;
        z-index: 1000;
        transition: all 0.5s ease;
        opacity: 0;
    }

    header .navbar .mobile-menu-cont .mobile-menu.active {
        left: 0;
        opacity: 1;
    }

    header .navbar .mobile-menu-cont .mobile-menu .list {
        position: relative;
        width: 100%;
        padding-top: 70px;
        z-index: 100;
    }

    header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-back {
        display: block;
        position: absolute;
        top: 10px;
        right: 50px;
        padding: 0;

        color: var(--text-dark);
        width: max-content;
    }

    header .navbar .mobile-menu-cont .mobile-menu ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
    }

    header .navbar .mobile-menu-cont .mobile-menu ul .menu-name {
        display: block;
        position: absolute;
        top: 20px;
        left: 0px;
        padding: 0;

        color: var(--text-dark);
        width: max-content;

        font-size: 1.5rem;
        font-weight: 600;
    }

    header .navbar .mobile-menu-cont .mobile-menu ul li {
       width: 100%;
    }

    header .navbar .mobile-menu-cont .mobile-menu ul li a {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 15px 0;
        padding-left: 20px;

        font-size: 2rem!important;
        letter-spacing: 3px!important;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        
        display: flex;
    
    }

    header .navbar .mobile-menu-cont .mobile-menu ul li a .image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    header .navbar .mobile-menu-cont .mobile-menu ul li a span {
        z-index: 2;
    }

    header .navbar .mobile-menu-cont .mobile-menu ul li a  .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;

        mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 10%, var(--bg-color) 50%);

        filter: brightness(0.7);
    }

    header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub {
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        border-radius: 15px;
        z-index: 150;
        transition: all 0.5s ease;
        padding-left: 20px;
        opacity: 0;
    }

    header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub.active {
        right:0;
        opacity: 1;
    }

    
    header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: 100%;
        position: relative;
        padding-top: 70px;
    }

    header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub .menu-name {
        display: block;
        position: absolute;
        top: 20px;
        left: 0px;
        padding: 0;

        color: var(--text-dark);
        width: max-content;

        font-size: 1.5rem;
        font-weight: 600;
    }

    header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub ul li {
        width: 100%;
    }

    header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub ul li a {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 15px 0;
        padding-left: 20px;

        font-size: 2rem;
        letter-spacing: 3px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        display: flex;
    }

    header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub ul li a .image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    header .navbar .mobile-menu-cont .mobile-menu .mobile-menu-sub ul li a span {
        z-index: 2;
    }
}

@media screen and (max-width: 768px) {

    

    header .navbar .logo {
        width: 35%!important;
    }

    header .navbar .menu {
        width: 55%;
    }
}

@media screen and (max-width: 600px) {

    header {
        padding-top: 5px;    
    }

    header .navbar {
        width: 94%!important;
    }

    header .navbar .logo {
        width: 45%!important;
    }

    header .navbar .menu {
        width: 70%;
    }
}

/* navbar mega menu */

.navbar .mega-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 460px;
    opacity: 0;
    

    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    overflow-y: hidden;

    transition: all 0.5s ease;
}


.navbar .mega-menu .content-area {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;

    position: relative;
}

.navbar .mega-menu .image {
    width: 30%;
    height: 100%;
    position: relative;
}

.navbar .mega-menu .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;

    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 10%, var(--bg-color) 50%);
}

.navbar .mega-menu .list {
    width: 90%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    position: relative;
}

.navbar .mega-menu .list ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    grid-gap: 20px;
    position: relative;
}

.navbar .mega-menu .list ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 180px;
    height: 80px;
    margin: 0!important;
    opacity: 1;
    position: relative;
    cursor: pointer;
}

.navbar .mega-menu .list ul li:hover {
    color: var(--text-light);
    transform: scale(1.05) translateY(-5px);
    background-color: var(--secondary-color);
}

.navbar .mega-menu .list ul li .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.navbar .mega-menu .list ul li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;

    mask-image: unset!important;
    filter: brightness(0.7);
}

.navbar .mega-menu .list ul li h2,
.navbar .mega-menu .list ul li a {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}


.navbar .mega-menu .list ul .menu-part {
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0;
    opacity: 0;
    z-index: 0;
    width: 100%;
}

.navbar .mega-menu .list.main {
    opacity: 0;
    z-index: -1;
}

.navbar .mega-menu .list.main.active {
    opacity: 1;
    z-index: 1;
}



.navbar .mega-menu .list ul .menu-part.active {
    opacity: 1;
    z-index: 1;
}


.navbar .mega-menu .list ul .menu-part ul li {
    box-shadow: unset;
}

.navbar .mega-menu .content-area .button-area {
    position: absolute;
    bottom: 0;
    right: -2%;

    width: 98%;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 5px;
}

.navbar .mega-menu .content-area .button-area a {
    padding: 3px 12px;
    border-radius: 5px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.5s ease;
    margin-right: 10px;
}


.navbar .mega-menu .sub-menu-area {
    position: absolute;
    top: 0;
    left: 10;
    width: 100%;
    height: 100%;

    z-index: -1;
    opacity: 0;
}

.navbar .mega-menu .sub-menu-area.active {
    z-index: 1000;
    opacity: 1;
}

.navbar .mega-menu .sub-menu-area .list {position: relative;}


.navbar .mega-menu .sub-menu-area .button-area {
    margin-bottom: 46px;
}

.navbar .mega-menu .sub-menu-area .list.sub {
    opacity: 0;
    z-index: -1;
}

.navbar .mega-menu .sub-menu-area .list.sub.active {
    opacity: 1;
    z-index: 1;
}


.navbar .mini-menu {
    transition: all 0.5s ease;
}

.navbar .mini-menu .mini-menu-content  {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 45vh;
    opacity: 0;

    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    

    transition: all 0.5s ease;
    display: none;
}

.navbar .mini-menu .mini-menu-content.active {
    opacity: 1;
    display: flex;
    transition: all 0.5s ease;
}

.navbar .mini-menu .mini-menu-content .image {
    width: 30%;
    height: 100%;
    position: relative;
}

.navbar .mini-menu .mini-menu-content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;

    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 10%, var(--bg-color) 50%);
}

.navbar .mini-menu .mini-menu-content ul {
    width: 70%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    position: relative;
}

.navbar .mini-menu .mini-menu-content ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 10px;
    border-radius: 5px;
    width: 90%;
    margin: 5px 0!important;
    opacity: 1;
    position: relative;
    cursor: pointer;
}

.navbar .mini-menu .mini-menu-content ul li:hover {
    color: var(--text-light);
    transform: scale(1.05) translateY(-5px);
    background-color: rgba(0, 0, 0, 0.1);
}







.landing-sec {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}


.landing-sec .bg {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.landing-sec .bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-sec .bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bg-color) 100%);
    z-index: 1;
}

.landing-sec .content {
    width: 50%;
    margin-left: 10%;
    margin-top: 20%;
    position: relative;
}

.landing-sec .content .slogan {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;

    background: rgba(0, 0, 0, 0.8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    position: relative;
}

/* landing-sec responsive */

@media screen and (max-width: 1024px) {
    .landing-sec .content {
        width: 80%;
        margin-left: 5%;
    }

    .landing-sec .content .slogan {
        font-size: 2.3rem;
    }
}




.about-sec {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
}

.about-sec .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
}

.about-sec .content .about-content {
    width: 80%;
    padding: 0 50px;
    text-align: center;
}

.about-sec .content .about-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-sec .content .parallax {
    width: 70%;
    position: relative;
    overflow: hidden;
}

.about-sec .content .parallax img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;

    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 10%, var(--bg-color) 50%);
}

/* about-sec responsive */

@media screen and (max-width: 1024px) {
    .about-sec .content .about-content {
        width: 100%;
    }

    .about-sec .content .parallax {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .about-sec .content {
        padding: 0 30px;
    }
}

@media screen and (max-width: 550px) {
    .about-sec .content .about-content p {
        font-size: 1rem;
    }
}


.slider-sec {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin-top: -5%;
    position: relative;
    overflow-y: hidden;

}

.slider-sec .flickity-viewport {
    overflow: visible;
}

.slider-sec .slider .slide {
    width: 50%;
    height: 500px;
    margin: 0 15px;
    border-radius: 15px;
    overflow: visible;
}

.slider-sec .slider .slide .title {
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    z-index: 1;
    transition: all 1s ease;
    opacity: 0;
    white-space: nowrap;
    transform: translate(50%, 0%);
}

.slider-sec .slider .slide.is-selected .title {
    transform: translate(0%, 0%);
    opacity: 1;
}

.slider-sec .slider .slide .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: -1;
}

.slider-sec .slider .slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}


/* slider-sec responsive */

@media screen and (max-width: 1200px) {
    .slider-sec .slider .slide .title {
        font-size: 2.5rem;
    }

    .slider-sec .slider .slide {
        height: 450px;
        width: 60%;
        margin: 0 10px;
    }
}

@media screen and (max-width: 1024px) {
    .slider-sec .slider .slide .title {
        font-size: 2rem;
    }

    .slider-sec .slider .slide {
        height: 400px;
        width: 70%;
        margin: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .slider-sec .slider .slide .title {
        font-size: 1.4rem;
    }

    .slider-sec .slider .slide {
        height: 300px;
        width: 80%;
        margin: 0 5px;
    }
}


.flickity-page-dots {
    bottom: 10px;
}

.flickity-page-dots .dot {
    width: 20px;
    height: 6px;
    border-radius: 2px;
    background: var(--bg-color);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.flickity-page-dots .dot.is-selected {
    background: var(--secondary-color);
    width: 30px;
    transform: scale(1.2);
}

/* responsive */

@media screen and (max-width: 768px) {
    .flickity-page-dots .dot {
        width: 15px;
        height: 4px;
    }

    .flickity-page-dots .dot.is-selected {
        width: 20px;
    }
}

@media screen and (max-width: 550px) {
    .flickity-page-dots .dot {
        width: 10px;
        height: 3px;
    }

    .flickity-page-dots .dot.is-selected {
        width: 15px;
    }
}


.category-sec {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
}

.category-sec .sec-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    position: absolute;
    top: -12%;
    left: 5%;
}

.category-sec .btn {
    position: absolute;
    bottom: 25%;
    right: 5%;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.5s ease;
}

.category-sec .btn i {
    transition: all 0.5s ease;
    position: relative;
    top: 1px;
    font-size: 1.2rem;
}

.category-sec .btn:hover {
    background-color: var(--secondary-color-low);
}

.category-sec .btn:hover i {
    transform: translateX(5px);
}



.category-sec .cards {
    width: 100%;
    margin-top: 0%;
    overflow-x: hidden;
    position: relative;
    height: 100vh;
    overflow-x: hidden;
}

.category-sec .cards .card {
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    top: -100%;
    left: 0;
    width: 500px;
    height: 300px;
}

.category-sec .cards .card:first-child {
    top: 0%;
    left: 5%;
    width: 30%;
}

.category-sec .cards .card:nth-child(2) {
    top: 0%;
    left: 36%;
    width: 40%;
}

.category-sec .cards .card:nth-child(3) {
    top: 0%;
    left: 77%;
    width: 20%;
    height: 628px;
}


.category-sec .cards .card:nth-child(4) {
    top: 35%;
    left: 5%;
    width: 40%;
}

.category-sec .cards .card:nth-child(5) {
    top: 35%;
    left: 46%;
    width: 30%;
}


.category-sec .cards .card .title {
    position: absolute;
    z-index: 1000;
    bottom: 10px;
    left: 15px;
    font-size: 3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}


.category-sec .cards .card .card-btn {
    position: absolute;
    bottom: 20px;
    right: 0;
    transform: translateX(-50%);
    background-color: var(--secondary-color-dark);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.5s ease;
}


.category-sec .cards .card .card-btn i {
    transition: all 0.5s ease;
}

.category-sec .cards .card:hover .card-btn {
    background-color: var(--secondary-color);
}

.category-sec .cards .card:hover .card-btn:hover {
    background-color: var(--secondary-color-low);
}

.category-sec .cards .card:hover .card-btn:hover i {
    transform: translateX(5px);
}

.category-sec .cards .card .image {
    width: 100%;
    height: 100%;
    position: relative;
}

.category-sec .cards .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.7);
}

/* category-sec responsive */

@media screen and (max-height: 1500px) {
    .category-sec .cards .card .title {
        font-size: 2.5rem;
    }

    .category-sec .cards .card {
        width: 400px;
        height: 250px;
    }

    .category-sec .cards .card:nth-child(3) {
        height: 520px;
    }

    .category-sec .cards .card:nth-child(4) {
        top: 31%;
    }

    .category-sec .cards .card:nth-child(5) {
        top: 31%;
    }

    .category-sec .btn {
        bottom: 30%;
        padding: 10px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 1500px) {
    .category-sec .cards .card .title {
        font-size: 2.5rem;
    }

    .category-sec .cards .card {
        width: 400px;
        height: 250px;
    }

    .category-sec .cards .card:nth-child(3) {
        height: 520px;
    }

    .category-sec .cards .card:nth-child(4) {
        top: 31%;
    }

    .category-sec .cards .card:nth-child(5) {
        top: 31%;
    }

    .category-sec .btn {
        bottom: 32%;
        padding: 10px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .category-sec {
        height: 100%;
        min-height: auto;
        position: relative;
        padding-top: 4%;
        padding-bottom: 10%;
    }

    .category-sec .sec-title {
        top: -4%;
        left: 50%;
        width: 100%;
        transform: translateX(-50%);
        
        font-size: 2.5rem;
    }

    .category-sec .cards {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        overflow-y: hidden;
        
    }

    .category-sec a.btn {
        bottom: 0;
    }

    .category-sec .cards .card {
        position: relative!important;
        top: unset!important;
        left: unset!important;
        width: 44%!important;
        margin: 10px!important;
        height: 300px!important;
    }

    .category-sec .cards .card:nth-child(3) {
        width: 90%!important;
        height: 500px!important;
    }
}

@media screen and (max-width: 768px) {
    .category-sec .sec-title {
        font-size: 2rem;
        top: -2%;
    }

    

    .category-sec .cards .card {
        width: 90%!important;
        margin: 10px!important;
    }

    .category-sec .cards .card:nth-child(3) {
        width: 90%!important;
        height: 300px!important;
    }
}

.referances {
    margin-top: -8%;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: auto;
    overflow: hidden;

}

.referances .sliders {
    overflow: hidden;
}

.referances .sliders .referance-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
    left: 50%;
    padding: 40px 0;
    width: max-content;
    
}

.referances .sliders .referance-list:last-child {
    left: -110%;
    padding-bottom: 100px;
    
}

.referances .sliders .referance-list img {
    width: 300px;
    height: auto;
    margin: 0 20px;
    
}

.referances .sliders .referance-list h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 5px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}


.referances .catalogs {
    width: 50%;
    position: absolute;
    right: 0;
    
}

.referances .catalogs .catalog:first-child {
    padding-left: 20px;
}


.referances .catalogs .catalog {
    width: 300px;
    margin-left: 20px;
    padding-left: 20px;
}

.referances .content {
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.referances .image {
    position: absolute;
    width: 50%;
    height: 83%;
    left: 0%;
    top: 15%;
    
}

.referances .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 0 0;

    
}

.referances .image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, var(--bg-color) 95%);
    z-index: 1;
}

.referances .sec-title {
    display: none;
}

/* referances responsive */

@media screen and (max-width: 1024px) {
    .referances {
        margin-top: 0%;
    }

    .referances .catalogs {
        bottom: 0px;
    }
}

@media screen and (max-width: 768px) {
    .referances .slider {
        width: 100%;
    }

    .referances .sliders .referance-list img {
        width: 200px;
        height: auto;
        margin: 0 10px;
    }

    .referances .sliders .referance-list:last-child {
        margin-top: -50px;
    }


    .referances .content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .referances .image {
        display: none;
    }

    .referances .catalogs {
        width: 100%;
        position: relative;
        margin-top: 20px;
        padding-bottom: 10px;
    }

    .referances .catalogs .catalog {
        width: 50%;
        margin-left: 7px;
    }

    .referances .sliders .referance-list img {
        width: 200px;
        height: auto;
        margin: 0 10px;
    }

    .referances .sliders .referance-list h2 {
        font-size: 2rem;
    }

    .referances .sec-title {
        font-size: 2.5rem;
        font-weight: 600;
        top: -2%;
        display: block;
    }

    .referances .catalogs .flickity-page-dots {
        bottom: -5px;
    }

    .referances .catalogs .flickity-page-dots .dot {
        background: var(--primary-color);
        width: 10px;
        height: 5px;
    }

    .referances .catalogs .flickity-page-dots .dot.is-selected {
        background: var(--secondary-color);
    }
}





.fade-right {
    position: relative;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.5s ease;
}
.fade-left {
    position: relative;
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.5s ease;
}
.fade-down {
    position: relative;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1.5s ease;
}
.fade-up {
    position: relative;
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.5s ease;
}
.fade-active {
    transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    opacity: 1;
    transition: all 1.5s ease;
}


.testimonials-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
    position: relative;
    overflow-x: hidden;
    height: auto;
    min-height: auto;
    margin-top: 5%;
}

.testimonials-sec .sec-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-sec .flickity-viewport {
    overflow: visible!important;
}

.testimonials-sec .testimonials {
    width: 100%;
    overflow: visible;
    height: 45vh;
}

.testimonials-sec .testimonials .testimonial {
    width: 30%;
    margin: 0 20px;
    padding: 20px;
    height: 200px;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    background: #f1f1f1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: visible;
    padding-top: 40px;

    transition: all 0.5s ease;
}

.testimonials-sec .testimonials .testimonial .person {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    
}

.testimonials-sec .testimonials .testimonial .person .image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;

}

.testimonials-sec .testimonials .testimonial .person .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-sec .testimonials .testimonial .person h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.testimonials-sec .testimonials .testimonial .person span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark-low);
}


.testimonials-sec .testimonials .testimonial {
    rotate: 2deg;
    top: -50px;
}

.testimonials-sec .testimonials .testimonial.is-selected {
    rotate: 0deg!important;
    top: 0px;
}

/* .testimonials-sec .testimonials .testimonial.is-selected ' dan sonraki .testimonial 'ları seçmek için */
.testimonials-sec .testimonials .testimonial.is-selected ~ .testimonial {
    rotate: -2deg!important;
    top: 50px;
}

.testimonials-sec .flickity-page-dots {
    bottom: 30px;
}

.testimonials-sec .flickity-page-dots .dot {
    width: 20px;
    height: 6px;
    border-radius: 2px;
    background: var(--primary-color);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.testimonials-sec .flickity-page-dots .dot.is-selected {
    background: var(--secondary-color);
    width: 30px;
    transform: scale(1.2);
}

/* testimonials-sec responsive */

@media screen and (max-width: 1500px) {
    .testimonials-sec .testimonials {
        height: 50vh;
        padding-top: 50px;
    }

    .testimonials-sec .testimonials .testimonial {
        width: 40%;
        height: 220px;
    }
}

@media screen and (max-width: 1200px) {
    .testimonials-sec .testimonials {
        padding-top: 60px;
    }

    .testimonials-sec .testimonials .testimonial {
        width: 50%;
        height: 220px;
    }
}

@media screen and (max-width: 1024px) {
    .testimonials-sec .sec-title {
        font-size: 3rem;
        width: 97%;
    }

    .testimonials-sec .testimonials {
        padding-top: 80px;
    }

    .testimonials-sec .testimonials .testimonial {
        width: 60%;
        height: 220px;
    }
}

@media screen and (max-width: 768px) {

    .testimonials-sec .sec-title {
        font-size: 2.4rem;
    }

    .testimonials-sec .testimonials {
        padding-top: 100px;
    }

    .testimonials-sec .testimonials .testimonial {
        width: 80%;
        height: 220px;
    }
}

@media screen and (max-width: 550px) {
    .testimonials-sec .sec-title {
        font-size: 1.8rem;
    }

    .testimonials-sec .testimonials {
        padding-top: 120px;
    }

    

    .testimonials-sec .testimonials .testimonial:first-child {
        margin-left: 20px!important;
    }

    .testimonials-sec .testimonials .testimonial {
        width: 90%;
        height: 240px;
        top: unset!important;
        rotate: unset!important;
        margin: 0!important;
        margin-left: 20px!important;
    }

    .testimonials-sec .testimonials .testimonial.is-selected {
        rotate: unset!important;
        top: unset!important;
    }

    .testimonials-sec .testimonials .testimonial.is-selected ~ .testimonial {
        rotate: unset!important;
        top: unset!important;
    }

    .testimonials-sec .testimonials .testimonial .person .image {
        width: 50px;
        height: 50px;
    }

    .testimonials-sec .flickity-page-dots {
        bottom: 60px;
    }
}



.contact-sec  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
    position: relative;
    overflow-x: hidden;
    height: auto;
    min-height: auto;
    overflow: hidden;
}

.contact-sec .sec-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    position: absolute;
    top: 17%;
    left: 31%;
    transform: translateX(-50%);
}

.contact-sec .contact {
    width: 65%;
    height: 500px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    background-image: url("/assets/img/shower.png");
    background-size: cover;
    background-position: 40%;
    border-radius: 20px;
    
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 10%, var(--bg-color) 18%);
}

.contact-sec .contact form {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    position: relative;
}


.contact-sec .contact form .form-group {
    width: 45%;
    margin: 0 2%;
    display: flex;
    flex-direction: column;
}

.contact-sec .contact form .form-group.w-100 {
    width: 100%;
    position: relative;
    top: -10%;
    left: 1%;
}

.contact-sec .contact form .form-group input,
.contact-sec .contact form .form-group textarea {
    width: 80%;
    padding: 10px;
    border-bottom: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.5s ease;
}


.contact-sec .contact form .form-group textarea {
    height: 95px;
    resize: none;
}

.contact-sec .contact form .form-group input:focus,
.contact-sec .contact form .form-group textarea:focus {
    border-bottom: 2px solid var(--secondary-color);
}

.contact-sec .contact form .form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: -5px;
}

.contact-sec .contact form .form-group.bottom {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.contact-sec .contact form .form-group.bottom .privacy {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    width: 60%;
}

.contact-sec .contact form .form-group.bottom .privacy input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.contact-sec .contact form .form-group.bottom .privacy label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
}

.contact-sec .contact form  button {
    position: absolute;
    right: 8%;
    bottom: 20%;
    background-color: var(--secondary-color-light);
    color: var(--text-light);
    padding: 18px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.5s ease;

    box-shadow: inner 0 0 20px rgba(0, 0, 0, 1);
}

.contact-sec .contact form  button i {
    transition: all 0.5s ease;
}

.contact-sec .contact form  button:hover {
    background-color: var(--secondary-color-low);
}

.contact-sec .contact form  button:hover i {
    transform: rotate(5deg) translateX(5px) translateY(-7px);
}

@media screen and (max-width: 1500px) {
    .contact-sec .sec-title {
        font-size: 2.5rem;
        top: 10%;
    }

    .contact-sec .contact {
        height: 450px;
    }

    .contact-sec .contact form .form-group input,
    .contact-sec .contact form .form-group textarea {
        font-size: 0.9rem;
    }

    .contact-sec .contact form  button {
        padding: 15px 15px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 1200px) {
    .contact-sec .sec-title {
        font-size: 2.5rem;
        top: 6%;
    }

    .contact-sec .contact {
        height: 450px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contact-sec .contact form {
        width: 80%;
    }
    
    .contact-sec .contact form .form-group input,
    .contact-sec .contact form .form-group textarea {
        font-size: 0.9rem;
    }

    .contact-sec .contact form  button {
        position: relative;
        top: -15px;

    }
}

@media screen and (max-width: 1200px) {
    .contact-sec .sec-title {
        font-size: 2.5rem;
        top: 6%;
        left: 52%;
        transform: translateX(-50%);
        width: 100%;
    }
    

    .contact-sec .contact {
        width: 65%;
        height: 450px;
        background-image: none;
        mask-image: none;

        box-shadow: unset;
    }

    .contact-sec .contact form {
        width: 100%;
    }

    .contact-sec .contact form .form-group {
        width: 40%;
        margin: 0 5%;
    }

    .contact-sec .contact form .form-group.w-100 {
        width: 94%;
        position: relative;
        top: -6%;
        left: 0%;
    }

    .contact-sec .contact form .form-group input,
    .contact-sec .contact form .form-group textarea {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        border-bottom: unset;
        border-radius: 5px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .contact-sec .contact form .form-group textarea {
        height: 70px;
    }

    .contact-sec .contact form  button {
        position: relative;
        right: 0;
        bottom: 0;
        width: 70px;
        padding: 15px 0;
        background-color: var(--secondary-color);
    }


}

@media screen and (max-width: 768px) {
    .contact-sec .sec-title {
        font-size: 2rem;
        top: 4%;
    }

    .contact-sec .contact {
        width: 85%;
        height: 450px;
    }

    .contact-sec .contact form {
        width: 90%;
    }

    .contact-sec .contact form .form-group input,
    .contact-sec .contact form .form-group textarea {
        font-size: 0.8rem;
    }

    .contact-sec .contact form  button {
        padding: 15px 15px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 550px) {
    .contact-sec .sec-title {
        font-size: 1.8rem;
        top: 2%;
    }

    .contact-sec .contact {
        height: 450px;
    }

    .contact-sec .contact form {
        width: 98%;
    }

    .contact-sec .contact form .form-group input,
    .contact-sec .contact form .form-group textarea {
        font-size: 0.7rem;
    }

    .contact-sec .contact form .form-group label {
        margin-bottom: 2px;
    }

    .contact-sec .contact form  button {
        padding: 15px 15px;
        font-size: 1rem;
    }

    .contact-sec .contact form .form-group.bottom {
        flex-wrap: wrap;
    }

    .contact-sec .contact form .form-group.bottom .privacy {
        width: 100%;
    }

    .contact-sec .contact form .form-group.bottom button {
        width: 100%;
        top: 0;
        margin-top: 20px;
    }


}





footer {
    width: 100%;
    padding-top: 10%;
    overflow-x: hidden;
}

footer .head {
    width: 100%;
    z-index: 0;
    overflow: hidden;
    position: relative;
}

footer .head .footer-image {
    width: 100%;
    height: 60vh;
}



footer .head .footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 7%, var(--bg-color) 30%);
}

footer .head .footer-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, var(--bg-color) 95%);
    z-index: 1;
}

footer .body {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 20px;
    padding-top: 50px;
    width: 80%;
    margin: 0 auto;
    margin-top: -10%;
    z-index: 100;
    position: relative;
    background-color: var(--bg-color);
    border-radius: 20px 20px 0 0;
    height: 25vh;

}

footer .body .content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 25%;
    margin-top: 1%;
}

footer .body .content .left {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .body .content .left .logo {
    width: 100%;
    height: 100px;
}

footer .body .content .left .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer .body .content .left .info p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-left: 50px;
    position: relative;
    top: -20px;
    white-space: nowrap;
}

footer .body .content .right {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

footer .body .content .right .contact {
    width: 80%;
}

footer .body .content .right .contact ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

footer .body .content .right .contact ul li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

footer .body .content .right .contact ul li i {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-right: 10px;
}

footer .body .content .right .contact ul li span {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
}


footer .body .menu-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

footer .body .menu-list ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

footer .body .menu-list ul:nth-child(2) {
    margin: 0 20px;
}

footer .body .menu-list ul li {
    margin: 0 10px;
}

footer .body .menu-list ul li a {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: all 0.5s ease;
}

footer .body .menu-list ul li a:hover {
    color: var(--secondary-color);
}

/* footer responsive */

@media screen and (max-width: 1500px) {
    footer .body {
        padding-top: 0px;
        height: auto;
        margin-top: -10%;
    }

    footer .body .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    footer .body .content .left {
        width: 100%;
    }

    footer .body .content .left .logo {
        width: 40%;
        height: 80px;
    }

    footer .body .content .left .info p {
        margin-left: 0;
        top: 0;
        margin-bottom: 10px;
    }

    footer .body .content .right {
        width: 100%;
        margin-top: 0px;
    }

    footer .body .content .right .contact {
        padding-top: 5px;
    }

    footer .body .menu-list {
        align-items: start;
        justify-content: space-between;
        width: 80%;
    }

    footer .body .menu-list ul {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    footer .body .menu-list ul li {
        justify-content: start;
        align-items: start;
    }
}

@media screen and (max-width: 1090px) {
    
    footer .body .content .left .logo {
        width: 40%;
        height: 70px;
    }

    footer .body .content .left .info p {
        margin-left: 0;
        top: 0;
    }

    footer .body .content .right .contact {
        justify-content: center;
        align-items: center;
    }

    footer .body .content .right .contact ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    footer .body .content .right .contact ul li {
        margin-bottom: 10px;
        width: 40%
    }

    footer .body .menu-list ul {
        margin-top: 20px;
        justify-content: center;
        align-items: center;
    }




}

@media screen and (max-width: 940px) {

    footer .body .content .right .contact ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer .body .content .right .contact ul li {
        width: 100%;
    }

    footer .body .menu-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    footer .body .menu-list ul {
        margin-top: 0px;
        justify-content: center;
        align-items: center;
        width: 50%;
    }

    footer .body .menu-list ul li {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    footer .body .content .left .info p {
        font-size: 0.9rem;
    }

    footer .body .content .right .contact ul li i {
        font-size: 1.2rem;
    }

    footer .body .content .right .contact ul li span {
        font-size: 0.9rem;
    }

    footer .body .menu-list ul li a {
        font-size: 1rem;
    }
}





.breadcrumb {
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.breadcrumb .image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -1;
}

.breadcrumb .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.breadcrumb .image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, var(--bg-color) 95%);
    z-index: 1;
}

.breadcrumb .content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    width: 95%;
    flex-direction: column;
}

.breadcrumb .content h1 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* breadcrumb responsive */

@media screen and (max-width: 1500px) {
    .breadcrumb .content h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .breadcrumb .content h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 1024px) {
    .breadcrumb .content h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    

    .breadcrumb .content h1 {
        font-size: 2rem;
    }
}



.about {
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: 0 auto;
    padding-top: 100px;
}

.about.reversed {
    flex-direction: row-reverse;
}

.about.columned {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about .left {
    width: 60%;
    display: flex;
}

.about .left .image {
    width: 100%;
    height:600px;
    position: relative;
}

.about .left .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, var(--bg-color) 20%);
    border-radius: 60px;
}

.about .left .image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 80%, var(--bg-color) 100%);
}

.about .left .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 90%, var(--bg-color) 100%);
    z-index: 1;
}

.about .left .image .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 60%, var(--bg-color) 95%);
    z-index: 1;
}

.about .right {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.about.columned .right {
    width: 90%;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 50px;
}

.about.reversed .right {
    align-items: start;
}

.about.reversed .right .content {
    align-items: start;
}


.about .right .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding-top: 20%;
}

.about.columned .right .content {
    padding-top: 0;
    width: 40%;
}

.about .right .content h2 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about.columned .right .content h2 {
    text-align: center;
    width: 100%;
}

.about.right .content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about.columned .right .content p {
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .about .left .image {
        height: 500px;
    }

    .about .right .content h2 {
        font-size: 2.5rem;
    }

    .about .right .content p {
        font-size: 1rem;
    }

    .about.reversed .right {
        align-items: center;
    }

    .about.columned .left .image {
        height: 500px;
    }

    .about.columned .right .content h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .about .left .image {
        height: 450px;
    }

    .about .right .content h2 {
        font-size: 2.5rem;
    }

    .about .right .content p {
        font-size: 1rem;
    }

    .about.columned .left  {
        width: 95%;
    }

    .about.columned .left .image {
        height: 450px;
    }

    .about.columned .right {
        width: 95%;
    }

    .about.columned .right .content {
        width: 45%;
    }

    .about.columned .right .content h2 {
        font-size: 2.5rem;
    }

    .about.columned .right .content p {
        font-size: 1rem;
    }

    .about.reversed .right {
        align-items: center;
    }
}

@media screen and (max-width: 1024px) {
    .about {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about.reversed .right {
        align-items: center;
    }

    .about.reversed .right .content {
        align-items: center;
    }

    .about.reversed .right .content h2 {
        text-align: center;
    }

    .about.reversed .right .content p {
        text-align: center;
    }

    .about .left {
        width: 90%;
    }

    .about .left .image {
        height: 400px;
    }

    .about .right {
        width: 90%;
        padding-top: 30px;
    }

    .about .right .content {
        padding-top: 0;
    }



    .about.columned .left  {
        width: 95%;
    }

    .about.columned .left .image {
        height: 450px;
    }

    .about.columned .right {
        width: 95%;
    }

    .about.columned .right .content {
        width: 45%;
    }
}

@media screen and (max-width: 768px) {
    .about {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding-bottom: 20px;
    }

    .about.reversed  {
        flex-direction: column;
    }

    .about .left {
        width: 90%;
    }

    .about .left .image {
        height: 400px;
    }

    .about .right {
        width: 90%;
        padding-top: 50px;
    }

    .about .right .content {
        padding-top: 0;
    }

    .about .right .content h2 {
        font-size: 2rem;
    }

    .about .right .content p {
        font-size: 1rem;
    }

    .about.columned .right {
        flex-direction: column;
    }

    .about.columned .right .content {
        width: 100%;
        margin-bottom: 20px;
    }

    .about.reversed .right {
        align-items: center;
    }
}

@media screen and (max-width: 550px) {
    .about .left .image {
        height: 300px;
    }

    .about .right .content h2 {
        font-size: 1.8rem;
    }

    .about .right .content p {
        font-size: 0.9rem;
    }

    .about.columned .left .image {
        height: 300px;
    }

    .about.columned .right .content h2 {
        font-size: 1.8rem;
    }

    .about.columned .right .content p {
        font-size: 0.9rem;
    }
}


.timeline-sec {
    width: 70%;
    margin: 0 auto;
    margin-top: -200px;
    
}

.timeline-sec .list {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-top: 150px;
    
}

.timeline-sec .list .item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 40%;
    position: relative;
}


.timeline-sec .list .item:nth-child(odd) {
    align-self: flex-start;
    margin-left: 5%;
}

.timeline-sec .list .item:nth-child(even) {
    align-self: flex-end;
    margin-right: 5%;
}

.timeline-sec .list .item .content {
    width: 100%;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}




.timeline-sec .list .line {
    width: 3px;
    height: calc(88% + 150px);
    background-color: var(--secondary-color);
    position: absolute;
    top: -150px;
    left: 50%;
    z-index: -1;
}



.timeline-sec .list .item::after {
    content: '';
    position: absolute;
    left: 118%;
    top: 52%;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.timeline-sec .list .item:nth-child(even)::after {
    left: -7%;
}

/* timeline-sec responsive */

@media screen and (max-width: 1500px) {
    .timeline-sec .list .item:after {
        left: 113%;
        top: 100%;
    }

    .timeline-sec .list .item:nth-child(even)::after {
        left: -12%;
    }

    .timeline-sec .list .line {
        height: calc(95% + 200px);
    }

}

@media screen and (max-width: 1024px) {
    .timeline-sec .list .line {
        left: -10%;
    }


    .timeline-sec .list {
        padding-top: 200px;
    }

    .timeline-sec .list .item:nth-child(odd) {
        align-self: center;
        margin-left: 0;
    }

    .timeline-sec .list .item:nth-child(even) {
        align-self: center;
        margin-right: 0;
    }

    .timeline-sec .list .item::after {
        left: 0%!important;
        top: 0%;
    }

    .timeline-sec .list .item {
        width: 90%;
    }


    
    
    
}

@media screen and (max-width: 768px) {
    
    .timeline-sec .list .line {
        top: -350px;
        left: -10%;
        height: calc(95% + 350px);
    }

    .timeline-sec .list {
        padding-top: 200px;
    }

    .timeline-sec .list .item {
        width: 90%;
    }


}



.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 99999;
}

.loader-wrapper .loader {
    width: 50%;
}

.loader-wrapper .loader svg {
    width: 100%;
    height: 100%;
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .loader-wrapper {
        width: 100%;
    }

    .loader-wrapper .loader {
        width: 120%;
    }
    
}


.loader-wrapper .loader .logo {
    position: relative;
}

.loader-wrapper .loader svg .icon-side {
    position: relative;
}

.loader-wrapper .maskedBox {
    position: absolute;
    top: -2%;
    left: 37.4%;
    width: 23.4%;
    height: 86%;
    
    background-color: rgba(255, 0, 0, 0.4);
    z-index: 100000;
    overflow: hidden;

    clip-path: polygon(0 40%, 100% 0, 100% 55%, 0% 99%);
    border-radius: 0 0px 0 0;
    opacity: 0;
}

.loader-wrapper .maskedBox .images {
    width: 100%;
    height: 100%;
    position: relative;
}

.loader-wrapper .maskedBox .images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 0;
}


.contact {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
    height: auto;
    min-height: auto;
}

.contact .left {
    width: 45%;
    display: flex;
    border-radius: 0 30px 30px 0;
}

.contact .left .map {
    width: 100%;
    height: 600px;
    position: relative;
    border-radius: 0 30px 30px 0;
}


.contact .left .map iframe {
    width: 100%;
    height: 100%;
    border-radius: 0 30px 30px 0;

    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, var(--bg-color) 20%);
}

.contact .left .map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, var(--bg-color) 100%);
    z-index: 1;
}

.contact .left .map::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bg-color) 100%);
    z-index: 1;
    user-select: none;
}


.contact .right {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.contact .right .contact-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.contact .right .contact-items .contact-item {
    width: 35%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin:0 30px;
    margin-bottom: 50px;

    background-color: rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    position: relative;
}

.contact .right .contact-items .contact-item:last-child {
    width: 80%;
}

.contact .right .contact-items .contact-item .icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact .right .contact-items .contact-item .icon i {
    font-size: 2.8rem;
    color: var(--secondary-color);
}

.contact .right .contact-items .contact-item .content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.contact .right .contact-items .contact-item .content h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact .right .contact-items .contact-item .content p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* contact responsive */

@media screen and (max-width: 1500px) {
    .contact .left .map {
        height: 500px;
    }

    .contact .right .contact-items {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact .right .contact-items .contact-item {
        width: 37%;
    }

    .contact .right .contact-items .contact-item .icon {
        width: 50px;
        height: 50px;
    }

    .contact .right .contact-items .contact-item .icon i {
        font-size: 2.5rem;
    }

    .contact .right .contact-items .contact-item .content h2 {
        font-size: 1.5rem;
    }

    .contact .right .contact-items .contact-item .content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1200px) {
    .contact .left .map {
        height: 450px;
    }

    .contact .right .contact-items .contact-item {
        width: 45%;
    }

    .contact .right .contact-items .contact-item .icon {
        width: 50px;
        height: 50px;
    }

    .contact .right .contact-items .contact-item .icon i {
        font-size: 2.5rem;
    }

    .contact .right .contact-items .contact-item .content h2 {
        font-size: 1.5rem;
    }

    .contact .right .contact-items .contact-item .content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .contact {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contact .left {
        width: 90%;
    }

    .contact .left .map {
        height: 400px;
    }

    .contact .right {
        width: 90%;
        padding-top: 50px;
    }

    .contact .right .contact-items {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

    }

    .contact .right .contact-items .contact-item {
        width: 40%;
        margin-left: 10px;
        margin-right: 5px;
        margin-bottom: 15px;
    }

    .contact .right .contact-items .contact-item:last-child {
        width: 86%;
    }

    .contact .right .contact-items .contact-item .icon {
        width: 50px;
        height: 50px;
    }

    .contact .right .contact-items .contact-item .icon i {
        font-size: 2.5rem;
    }

    .contact .right .contact-items .contact-item .content h2 {
        font-size: 1.5rem;
    }

    .contact .right .contact-items .contact-item .content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .contact .left .map {
        height: 300px;
    }

    .contact .right .contact-items .contact-item {
        width: 90%!important;
    }

    .contact .right .contact-items .contact-item .icon {
        width: 50px;
        height: 50px;
    }

    .contact .right .contact-items .contact-item .icon i {
        font-size: 2.5rem;
    }

    .contact .right .contact-items .contact-item .content h2 {
        font-size: 1.5rem;
    }

    .contact .right .contact-items .contact-item .content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 550px) {
    .contact .left .map {
        height: 250px;
    }

    .contact .right .contact-items .contact-item .icon {
        width: 40px;
        height: 40px;
    }

    .contact .right .contact-items .contact-item .icon i {
        font-size: 2rem;
    }

    .contact .right .contact-items .contact-item .content h2 {
        font-size: 1.3rem;
    }

    .contact .right .contact-items .contact-item .content p {
        font-size: 0.9rem;
    }
}




.products {
    display: flex;
    flex-direction: column;
    width: 92%;
    margin: 0 auto;
    padding-top: 100px;
    height: auto;
    min-height: auto;
    overflow: hidden;
}


.products .products-cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.products .products-cont .pdf-item {
    width: 32%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 10px;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 8px;
    position: relative;
}

.products .products-cont .pdf-item canvas {
    width: 45%;
    height: 400px;
    border-radius: 20px;
    position: relative;
    object-fit: contain;
    top: 0;
    left: 0;
    padding: 20px;
}

.products .products-cont #pdf-loader {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

.products .products-cont .pdf-item .content {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px;
    padding-top: 50px;
}

.products .products-cont .pdf-item .content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.products .products-cont .pdf-item .content p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
    width: 100%;
    text-align: start;
}

.products .products-cont .pdf-item .content .btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 40px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.5s ease;
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
}

.products .products-cont .pdf-item .content .btn:hover {
    background-color: var(--primary-color-low);
    transform: translateY(-5px) translateX(-50%) scale(1.1);
}

.products .products-cont .pdf-item .content .btn i {
    font-size: 1.2rem;
    position: relative;
    top: 1px;
    transition: all 0.5s ease;
}

/* products responsive */

@media screen and (max-width: 1500px) {
    .products .products-cont .pdf-item {
        width: 45%;
    }

    .products .products-cont .pdf-item canvas {
        width: 50%;
        height: 350px;
    }

    .products .products-cont .pdf-item .content h2 {
        font-size: 1.8rem;
    }

    .products .products-cont .pdf-item .content p {
        font-size: 0.9rem;
    }

    .products .products-cont .pdf-item .content .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .products .products-cont .pdf-item .content .btn i {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1200px) {
    .products .products-cont .pdf-item {
        width: 45%;
    }

    .products .products-cont .pdf-item canvas {
        width: 50%;
        height: 300px;
    }

    .products .products-cont .pdf-item .content h2 {
        font-size: 1.8rem;
    }

    .products .products-cont .pdf-item .content p {
        font-size: 0.9rem;
    }

    .products .products-cont .pdf-item .content .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .products .products-cont .pdf-item .content .btn i {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .products {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 50px;
    }

    .products .products-cont {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .products .products-cont .pdf-item {
        width: 90%;
    }

    .products .products-cont .pdf-item canvas {
        width: 100%;
        height: 300px;
    }

    .products .products-cont .pdf-item .content {
        width: 100%;
        padding-top: 20px;
    }

    .products .products-cont .pdf-item .content h2 {
        font-size: 1.5rem;
    }

    .products .products-cont .pdf-item .content p {
        font-size: 0.9rem;
    }

    .products .products-cont .pdf-item .content .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .products .products-cont .pdf-item .content .btn i {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {

    .products {
        padding-top: 00px;
    }

    .products .products-cont .pdf-item {
        width: 90%;
    }

    .products .products-cont .pdf-item canvas {
        width: 100%;
        height: 250px;
    }

    .products .products-cont .pdf-item .content h2 {
        font-size: 1.3rem;
    }

    .products .products-cont .pdf-item .content p {
        font-size: 0.8rem;
    }

    .products .products-cont .pdf-item .content .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .products .products-cont .pdf-item .content .btn i {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 550px) {
    .products .products-cont .pdf-item {
        width: 90%;
    }

    .products .products-cont .pdf-item canvas {
        width: 100%;
        height: 200px;
    }

    .products .products-cont .pdf-item .content h2 {
        font-size: 1.1rem;
    }

    .products .products-cont .pdf-item .content p {
        font-size: 0.7rem;
    }

    .products .products-cont .pdf-item .content .btn {
        padding: 10px 20px;
        font-size: 0.7rem;
    }

    .products .products-cont .pdf-item .content .btn i {
        font-size: 0.8rem;
    }
}


.survey {
    display: flex;
    flex-direction: column;
    width: 92%;
    margin: 0 auto;
    padding-top: 100px;
    height: auto;
    min-height: auto;
    overflow: hidden;
    padding-bottom: 70px;
}

.survey .survey-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.survey .survey-content .survey-question {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 8px;
    position: relative;
}

.survey .survey-content .survey-question .question {
    width: 100%;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 8px;
    position: relative;
}

.survey .survey-content .survey-question .question h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.survey .survey-content .survey-question .answers {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.survey .survey-content .survey-question .answers .answer {
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin: 0 10px;
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    position: relative;
}

.survey .survey-content .survey-question .answers .answer input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.survey .survey-content .survey-question .answers .answer input[type="radio"]:checked {
    background-color: var(--primary-color);
}


.survey .survey-content .survey-question .answers .answer input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
}

.survey .survey-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.survey .survey-title h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-top: 40px;
}

.survey #submitSurvey {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 40px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.5s ease;
    position: relative;
    top: 20px;
}


@media screen and (max-width: 1500px) {
    .survey .survey-content .survey-question {
        width: 45%;
    }

    .survey .survey-content .survey-question .question h2 {
        font-size: 1.3rem;
    }

    .survey .survey-content .survey-question .answers .answer {
        width: 35%;
    }

    .survey .survey-content .survey-question .answers .answer input[type="text"] {
        padding: 10px;
    }

    .survey .survey-title h1 {
        font-size: 1.8rem;
    }

    .survey #submitSurvey {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1200px) {
    .survey .survey-content .survey-question {
        width: 45%;
    }

    .survey .survey-content .survey-question .question h2 {
        font-size: 1.3rem;
    }

    .survey .survey-content .survey-question .answers .answer {
        width: 35%;
    }

    .survey .survey-content .survey-question .answers .answer input[type="text"] {
        padding: 10px;
    }

    .survey .survey-title h1 {
        font-size: 1.8rem;
    }

    .survey #submitSurvey {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1024px) {
    .survey {
        padding-top: 50px;
    }

    .survey .survey-content .survey-question {
        width: 90%;
    }

    .survey .survey-content .survey-question .question {
        padding: 20px;
    }

    .survey .survey-content .survey-question .question h2 {
        font-size: 1.3rem;
    }

    .survey .survey-content .survey-question .answers {
        padding: 20px;
    }

    .survey .survey-content .survey-question .answers .answer {
        width: 40%;
    }

    .survey .survey-content .survey-question .answers .answer input[type="text"] {
        padding: 10px;
    }

    .survey .survey-title h1 {
        font-size: 1.5rem;
    }

    .survey #submitSurvey {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .survey .survey-content .survey-question {
        width: 90%;
    }

    .survey .survey-content .survey-question .question {
        padding: 20px;
    }

    .survey .survey-content .survey-question .question h2 {
        font-size: 1.3rem;
    }

    .survey .survey-content .survey-question .answers {
        padding: 20px;
    }

    .survey .survey-content .survey-question .answers .answer {
        width: 40%;
    }

    .survey .survey-content .survey-question .answers .answer input[type="text"] {
        padding: 10px;
    }

    .survey .survey-title h1 {
        font-size: 1.5rem;
    }

    .survey #submitSurvey {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}


.marketing-sec {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
    height: auto;
    min-height: auto;
    overflow: hidden;
    padding-bottom: 70px;
}

.marketing-sec .left {
    width: 60%;
}


.marketing-sec .logos {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;


    
}

.marketing-sec  .logos .row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    transition: all 0.5s ease;
}

.marketing-sec  .logos .row:hover {
    transform: translateY(-10px);
}

.marketing-sec .logos .row a {
    margin: 0 20px;
    width: 25%;
}

.marketing-sec .logos .row .logo {
    width: 100%;
    mix-blend-mode: multiply;
    filter: grayscale(100%);
    transition: all 0.5s ease;
    
}

.marketing-sec .logos .row:hover .logo {
    filter: grayscale(0%);
}





.marketing-sec  .logos .row:nth-child(even){
    margin-left: 70px;
}


.marketing-sec .right {
    width: auto;
}

.marketing-sec .right .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px;
    padding-top: 200px;
}

.marketing-sec .right .content h2 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    width: 86%;
    white-space: nowrap;
}

.marketing-sec .right .content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
    width: 80%;
    margin: 10px 0;
}

.marketing-sec .right .content .btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 40px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.5s ease;
    margin-top: 20px;
}

@media screen and (max-width: 1800px) {
    .marketing-sec .right .content h2 {
        font-size: 3.5rem;
    }

    .marketing-sec .right .content p {
        font-size: 1.1rem;
    }

    .marketing-sec .right .content .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
    
}

@media screen and (max-width: 1024px) {
    .marketing-sec .left {
        width: 650%;
    }

    .marketing-sec .right {
        width: 35%;
        padding-top: 0px;
    }

    .marketing-sec .right .content h2 {
        font-size: 2rem;
    }

}

@media screen and (max-width: 800px) {
    .marketing-sec {
        flex-direction: column-reverse;
        margin-top: -250px;
    }

    .marketing-sec .left {
        width: 93%;
        margin: 0 auto;
    }

    .marketing-sec .left .row {
        margin-bottom: 15px;
    }

    .marketing-sec .right {
        width: 93%;
        padding-top: 50px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .marketing-sec .right .content h2 {
        font-size: 2rem;
        text-align: center;
        /* br bile olsa alt satıra geçme!*/
        white-space: nowrap;
        width: 100%;
    }

    .marketing-sec .right .content h2 span {
        display: none;
    }

    
}

@media screen and (max-width: 768px) {
    .marketing-sec .right .content h2 {
        font-size: 1.8rem;
    }

    .marketing-sec .right .content p {
        font-size: 1rem;
    }

    .marketing-sec .right .content .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}


@media screen and (max-width: 600px) {
    .marketing-sec .left {
        justify-content: center;
        align-items: center;
        
    }

    .marketing-sec .left .row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;

    }

    .marketing-sec .left .row a {
        width: 40%;
        margin: 0 10px;
        
    }

    .marketing-sec .left .row .logo {
        width: 100%;
        margin-bottom: 20px;
    }

    .marketing-sec .left .row:nth-child(even){
        margin-left: 0;
    }
    

}
