﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@font-face {
    font-family: 'montserrat-regular';
    src: url('../fonts/montserrat/montserrat-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-medium';
    src: url('../fonts/roboto/roboto-medium.ttf') format('truetype');
}

:root {
    --banner-height-250: 250px;
    --banner-height-200: 200px;
}

:root,
[data-bs-theme=light] {
    --lte-sidebar-width: 270px !important;
}

@keyframes topDownLeft {
    0%, 100% {
        top: 400px;
    }

    10% {
        top: 399px;
    }

    20% {
        top: 398px;
    }

    30% {
        top: 397px;
    }

    40% {
        top: 398px;
    }

    50% {
        top: 399px;
    }

    60% {
        top: 400px;
    }

    70% {
        top: 401px;
    }

    80% {
        top: 402px;
    }

    90% {
        top: 401px;
    }
}

@keyframes topDownRight {
    0%, 100% {
        top: 30px;
    }

    10% {
        top: 29px;
    }

    20% {
        top: 28px;
    }

    30% {
        top: 27px;
    }

    40% {
        top: 28px;
    }

    50% {
        top: 29px;
    }

    60% {
        top: 30px;
    }

    70% {
        top: 31px;
    }

    80% {
        top: 32px;
    }

    90% {
        top: 31px;
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

.home-project-image {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

    .home-project-image img {
        width: 100%;
        height: auto;
        transition: all 0.3s ease-in-out 0.2s;
        -webkit-transition: all 0.3s ease-in-out 0.2s;
        -moz-transition: all 0.3s ease-in-out 0.2s;
        -ms-transition: all 0.3s ease-in-out 0.2s;
        -o-transition: all 0.3s ease-in-out 0.2s;
    }

.home-project-name {
    position: absolute;
    bottom: 0;
    background: #2E2E33;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out 0.2s;
    -webkit-transition: all 0.3s ease-in-out 0.2s;
    -moz-transition: all 0.3s ease-in-out 0.2s;
    -ms-transition: all 0.3s ease-in-out 0.2s;
    -o-transition: all 0.3s ease-in-out 0.2s;
}

    .home-project-name a {
        text-decoration: none;
    }

    .home-project-name p {
        padding: 20px 15px;
        margin: 0;
        color: #fff;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
    }

.title-container {
    position: relative;
    padding: 50px 0;
}

    .title-container h1, .title-container h2, .title-container h3, .title-container h4, .title-container h5, .title-container h6 {
        font-weight: bold !important;
    }

.anim-title-1 {
    transform: translateX(-320px);
    opacity: 0;
    filter: blur(8px);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease-out, filter 1s ease-out;
}

    /* Scroll görünce aktif */
    .anim-title-1.show {
        transform: translateX(0) scale(1.02);
        opacity: 1;
        filter: blur(0);
    }

    /* Çok hafif bounce efekti — 0.2s sonra */
    .anim-title-1.show {
        transition-delay: 0.1s;
    }

        .anim-title-1.show:hover {
            transform: translateX(0) scale(1.03);
        }

.e-commerce-container {
    position: relative;
    height: 350px;
    width: 100%;
    background: #2E2E33;
    padding: 75px 0;
    text-align: center;
}

.box-slogan {
    cursor: pointer;
    min-height: 150px;
}

    .box-slogan i {
        color: #d60914;
        font-size: 30px;
    }

    .box-slogan h5 {
        font-weight: bold;
        color: #2E2E33;
    }

    .box-slogan p {
        color: #2E2E33;
    }

.anim-1 {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(10px);
    transition: opacity 0.8s ease-out, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease-out, box-shadow 0.6s ease-out;
}

    .anim-1:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .anim-1.show {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }

.home-project-container {
    position: relative;
    overflow: hidden;
}

    .home-project-container:hover .home-project-name {
        opacity: 1;
        transition: all 0.3s ease-in-out 0.2s;
        -webkit-transition: all 0.3s ease-in-out 0.2s;
        -moz-transition: all 0.3s ease-in-out 0.2s;
        -ms-transition: all 0.3s ease-in-out 0.2s;
        -o-transition: all 0.3s ease-in-out 0.2s;
    }

    .home-project-container:hover img {
        transform: scale(1.1);
        transition: all 0.3s ease-in-out 0.2s;
        -webkit-transition: all 0.3s ease-in-out 0.2s;
        -moz-transition: all 0.3s ease-in-out 0.2s;
        -ms-transition: all 0.3s ease-in-out 0.2s;
        -o-transition: all 0.3s ease-in-out 0.2s;
    }


.home-slick img {
    width: 100%;
    height: auto;
}

.text-dark {
    color: #666 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'montserrat-regular';
}

span, a, i, p, label, input, button {
    font-family: 'roboto-medium';
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
}

.custom-menu-collapse {
    z-index: 1;
    padding: 3px;
}

.main-logo {
    width: auto;
    height: 65px;
}

.nav-height-75 {
    height: 75px;
}

.body-full-width {
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
}

.container-vh-height {
    position: relative;
    padding: 15px;
    margin: 0;
    min-height: calc(100vh - 75px);
    width: 100%;
    overflow: hidden;
}

.home-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform .3s ease;
    background: url("/Assets/images/akuakultur.jpg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .home-box::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(20,20,20,.2);
    }

/*https://freefrontend.com/css-text-effects/*/

.fiberglass-txt-container {
    right: 150px;
    bottom: 150px;
}

.aquaculture-txt-container {
    left: 100px;
    top: 150px;
}

.home-product-txt a {
    text-decoration: none;
}

.home-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: calc(100vh - 75px);
    margin: 0;
    padding: 0;
}

.home-comment-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 400px;
    margin: 0;
    padding: 0;
}

.testimonial-slider {
    margin-bottom: 50px;
}

    .testimonial-slider .slick-slide {
        text-align: center;
        padding: 20px;
        color: #fff;
        background: #a5070e;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        min-height: 150px;
        margin: 0 10px;
    }

    .testimonial-slider .slider-item h3 {
        margin-bottom: 5px;
        font-size: 1.25rem;
        color: #fff;
    }

    .testimonial-slider .slider-item p {
        margin: 0;
        font-size: 1rem;
        opacity: 0.9;
    }

.footer-contact a {
    text-decoration: none;
}

.slick-dots {
    bottom: 25px;
}

    .slick-dots li button:before {
        font-size: 15px;
    }

    .slick-dots li.slick-active button:before {
        opacity: .75;
    }

.krl-slick-content {
    position: relative;
    height: calc(100vh - 75px);
    width: 100%;
    max-width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;*/
}

    .krl-slick-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
    }

    .krl-slick-content .krl-slide-title {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
    }

        .krl-slick-content .krl-slide-title h1, .krl-slick-content .krl-slide-title h6 {
            position: absolute;
            color: #fff;
            font-weight: bold;
            font-family: 'Helvetica-Bold' !important;
            left: 15%;
            padding: 10px 25px;
            opacity: 0;
            z-index: 1;
            width: 0;
            white-space: nowrap;
        }

        .krl-slick-content .krl-slide-title h1 {
            transform: translateY(-75px)
        }

        .krl-slick-content .krl-slide-title h6 {
            transform: translateY(0)
        }

            .krl-slick-content .krl-slide-title h1::before, .krl-slick-content .krl-slide-title h6::before {
                content: '';
                position: absolute;
                left: 0;
                height: 100%;
                width: 100%;
                background: #d60914;
                opacity: 0.6;
                z-index: -1;
                top: 0px;
            }

.slick-slide .krl-slide-title::before {
    content: '';
    position: absolute;
    left: calc(15% + 60px);
    top: 0px;
    height: 0px;
    width: 2px;
    background: #fff;
}

.slick-slide .krl-slide-title::after {
    content: '';
    position: absolute;
    left: calc(15% + 60px);
    top: 75%;
    height: 0px;
    width: 2px;
    background: #fff;
}

.slick-slide.slick-active .krl-slide-title::before {
    height: 25%;
    background: #d60914;
    -webkit-transition: all 1s ease-in-out 0.5s;
    -moz-transition: all 1s ease-in-out 0.5s;
    -ms-transition: all 1s ease-in-out 0.5s;
    -o-transition: all 1s ease-in-out 0.5s;
    transition: all 1s ease-in-out 0.5s;
}

.slick-slide.slick-active .krl-slide-title h1, .slick-slide.slick-active .krl-slide-title h6 {
    opacity: 1;
    width: auto;
    color: #d60914;
    -webkit-transition: all 1s ease-in-out 1s;
    -moz-transition: all 1s ease-in-out 1s;
    -ms-transition: all 1s ease-in-out 1s;
    -o-transition: all 1s ease-in-out 1s;
    transition: all 1s ease-in-out 1s;
}

    .slick-slide.slick-active .krl-slide-title h1::before, .slick-slide.slick-active .krl-slide-title h6::before {
        background: #fff;
        -webkit-transition: all 1s ease-in-out 1s;
        -moz-transition: all 1s ease-in-out 1s;
        -ms-transition: all 1s ease-in-out 1s;
        -o-transition: all 1s ease-in-out 1s;
        transition: all 1s ease-in-out 1s;
    }

.slick-slide.slick-active .krl-slide-title::after {
    height: 25%;
    background: #d60914;
    -webkit-transition: all 1s ease-in-out 1.5s;
    -moz-transition: all 1s ease-in-out 1.5s;
    -ms-transition: all 1s ease-in-out 1.5s;
    -o-transition: all 1s ease-in-out 1.5s;
    transition: all 1s ease-in-out 1.5s;
}

.krl-slide-btn {
    position: absolute;
    /*top: calc(51vh);*/
    transform: translateY(75px);
    left: 15%;
    opacity: 0;
    z-index: 1;
}

    .krl-slide-btn a {
        display: inline-block;
        font-weight: 400;
        line-height: 1.5;
        text-align: center;
        text-decoration: none;
        vertical-align: middle;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        background-color: transparent;
        border: 1px solid transparent;
        padding: 15px 25px;
        font-size: 1rem;
        border-radius: .25rem;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        text-decoration: none;
        color: white;
        background-color: #d60914;
        border: 1px solid #a5070e;
    }

        .krl-slide-btn a:hover {
            background-color: #b30810;
            border: 1px solid #90060c;
        }

.slick-slide.slick-active .krl-slide-btn {
    opacity: 1;
    -webkit-transition: all 1s ease-in-out 0.5s;
    -moz-transition: all 1s ease-in-out 0.5s;
    -ms-transition: all 1s ease-in-out 0.5s;
    -o-transition: all 1s ease-in-out 0.5s;
    transition: all 1s ease-in-out 0.5s;
}

.krl-bar {
    width: 0%;
    background: #d60914;
    height: 5px;
}

.krl-progress {
    margin-top: 10px;
    background: #2E2E33;
}

.more-projects {
    margin: 50px 0;
}

.krl-btn-projects {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    color: #fff;
    background: #2E2E33;
    border: 1px solid #2E2E33;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0.2s;
    -webkit-transition: all 0.3s ease-in-out 0.2s;
    -moz-transition: all 0.3s ease-in-out 0.2s;
    -ms-transition: all 0.3s ease-in-out 0.2s;
    -o-transition: all 0.3s ease-in-out 0.2s;
    min-width: 200px;
}

    .krl-btn-projects:hover {
        color: #2E2E33;
        background: #fff;
        border: 1px solid #2E2E33;
        transition: all 0.3s ease-in-out 0.2s;
        -webkit-transition: all 0.3s ease-in-out 0.2s;
        -moz-transition: all 0.3s ease-in-out 0.2s;
        -ms-transition: all 0.3s ease-in-out 0.2s;
        -o-transition: all 0.3s ease-in-out 0.2s;
    }

    .krl-btn-projects i {
        margin-left: 10px;
    }

.e-commerce-button-container {
    margin-top: 50px;
}

.e-commerce-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    color: #fff;
    background-color: #d60914;
    border: 1px solid #a5070e;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0.2s;
    -webkit-transition: all 0.3s ease-in-out 0.2s;
    -moz-transition: all 0.3s ease-in-out 0.2s;
    -ms-transition: all 0.3s ease-in-out 0.2s;
    -o-transition: all 0.3s ease-in-out 0.2s;
    min-width: 200px;
}

    .e-commerce-button:hover {
        color: #fff;
        background-color: #b30810;
        border: 1px solid #90060c;
        transition: all 0.3s ease-in-out 0.2s;
        -webkit-transition: all 0.3s ease-in-out 0.2s;
        -moz-transition: all 0.3s ease-in-out 0.2s;
        -ms-transition: all 0.3s ease-in-out 0.2s;
        -o-transition: all 0.3s ease-in-out 0.2s;
    }

    .e-commerce-button i {
        margin-left: 10px;
    }

#video .videoContent {
    position: absolute;
    top: 35%;
    width: 100%;
    color: #fff;
    text-align: center;
    z-index: 1;
}

#video h4 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

#video .youtube {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
}

    #video .youtube > div {
        opacity: 0.3;
    }

#video a > img {
    transform: scale(0.8);
    filter: drop-shadow(10px 3px 7px rgba(0, 0, 0, 0.5));
    transition: .3s ease;
    -moz-transition: .3s ease;
    -webkit-transition: .3s ease;
}

#video a:Hover > img {
    transform: scale(1);
    transition: .3s ease;
    -moz-transition: .3s ease;
    -webkit-transition: .3s ease;
}

#video .home-video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    background: #000;
}

#video #videospeedy {
    width: 100%;
}

.home-product-txt .title-wrapper .sweet-title {
    order: 2;
    color: #fff;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1em;
    text-align: center;
}

    .home-product-txt .title-wrapper .sweet-title span {
        display: block;
        position: relative;
        font-family: 'Cambay', sans-serif;
    }

        .home-product-txt .title-wrapper .sweet-title span:first-child {
            z-index: 2;
        }

        .home-product-txt .title-wrapper .sweet-title span:nth-child(2) {
            z-index: 1;
        }

.product-buy {
    text-align: center;
    background: #d60914;
}

    .product-buy a {
        text-decoration: none;
        display: block;
        color: white;
        padding: 10px;
    }

.melod-nav ul li {
    position: relative;
    padding: 3px;
}

    .melod-nav ul li a::before {
        content: "";
        left: 0;
        top: 0;
        position: absolute;
        width: 0;
        height: 100%;
        background: #d60914;
        transition: all .3s ease;
        z-index: -1;
    }

    .melod-nav ul li:hover a, .melod-nav ul li.menu-admin:hover span {
        color: white !important;
    }

        .melod-nav ul li:hover a::before {
            width: 100%;
        }


.home-about {
    position: relative;
    min-height: 500px;
    padding: 100px 0;
}

.container-home-base {
    position: relative;
    padding: 15px;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.container-home-references {
    background: #006aa4;
}

.container-home-aqua {
    background: #006aa4;
}

.container-home-other {
    background: #666;
}

.krl-social-container {
    padding: 15px 0;
}

.container-home-title-base {
    position: absolute;
    color: white;
    font-size: 15pt;
    left: -30px;
    top: 90px;
    transform: rotate(-90deg);
}

    .container-home-title-base::before {
        content: "";
        position: absolute;
        width: 2px;
        height: 180px;
        background-color: white;
        left: -110px;
        top: -72px;
        transform: rotate(-90deg);
    }

.container-home-title-aqua {
    left: -63px;
    top: 120px;
}

    .container-home-title-aqua::before {
        height: 100px;
        left: -80px;
        top: -33px;
    }

.container-home-title-other {
    left: -35px;
}

.krl-footer {
    position: relative;
}

.flogo-container {
    position: relative;
    margin: 0 0 0 0;
}

    .flogo-container img {
        position: relative;
        width: 150px;
        height: auto;
    }

.powered-by a, .copyright a {
    text-decoration: none;
}

.powered-by {
    background: #444;
    font-size: 11px;
}

    .powered-by a {
        font-weight: bold;
        color: #bbb !important;
    }

.krl-circle-up {
    width: 30px;
    height: 29px;
    font-size: 30px;
    border-radius: 20px;
    color: #333;
    background: white;
}

    .krl-circle-up:hover {
        color: #000;
    }

#scToTop {
    cursor: pointer;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.home-slick {
    position: relative;
    height: 100%;
}

.btn-slick-prev {
    border: none;
    background: none;
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 1;
}

.btn-slick-next {
    border: none;
    background: none;
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 1;
}

    .btn-slick-next svg, .btn-slick-prev svg {
        width: 30px !important;
        height: 30px !important;
        color: #1b1363;
        background: White;
    }

.slick-center-mode .slick-track img {
    padding: 5px;
    margin: 10px;
    background: white;
    border-radius: 5px;
    height: 150px !important;
    width: auto;
    filter: grayscale(100%);
    transition: all .6s ease;
}

    .slick-center-mode .slick-track img.slick-current, .slick-center-mode .slick-track img.slick-center, .slick-center-mode .slick-track .slick-current img {
        filter: grayscale(0%);
    }

.top-of-footer {
    position: relative;
    width: 100%;
    height: 50px;
    background: #333;
}

.home-product-txt {
    position: absolute;
}

    .home-product-txt h1, .home-product-txt h2, .home-product-txt h3, .home-product-txt h4, .home-product-txt h5, .home-product-txt h6 {
        margin: 0;
        padding: 0;
    }

.banner-container {
    height: 300px;
}

    .banner-container .banner {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 300px;
        position: relative;
        left: auto;
        padding: 0;
    }

        .banner-container .banner::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            background: rgba(0,0,0,0.5);
        }

    .banner-container h1 {
        position: relative;
        text-align: center;
        top: -175px;
        color: #FFF;
    }

.banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding-top: 20px;
    height: var(--banner-height-250);
    overflow: hidden;
}

.krl-brands-container {
    text-align: center;
}

    .krl-brands-container a {
        margin: 10px;
    }

.SocialMedia {
    padding: 50px 0;
}

.krl-brands-container > a > i, .krl-brands-container > a > svg {
    width: 30px !important;
    height: 30px !important;
    color: rgb(248,249,250);
    opacity: 1;
    font-size: 25px;
}

@keyframes deconstructed1 {
    0% {
        transform: translateX(300%);
    }

    26% {
        transform: translateX(0%);
    }

    83% {
        transform: translateX(-0.1%);
    }

    100% {
        transform: translateX(-320%);
    }
}

@keyframes deconstructed2 {
    0% {
        transform: translateX(300%);
    }

    24% {
        transform: translateX(0.5%);
    }

    82% {
        transform: translateX(-0.2%);
    }

    100% {
        transform: translateX(-325%);
    }
}

@keyframes deconstructed3 {
    0% {
        transform: translateX(300%);
    }

    22% {
        transform: translateX(0%);
    }

    81% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-330%);
    }
}

@keyframes deconstructed4 {
    0% {
        transform: translateX(300%);
    }

    20% {
        transform: translateX(0%);
    }

    80% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-335%);
    }
}

.main-container {
    position: relative;
    width: 100%;
    padding: 15px;
}

.title-breadcrumb-container {
    margin-top: 20px;
    padding-left: 15px;
}

.breadcrumb {
    font-size: 11px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #d60914;
}

.product-container {
    position: relative;
    width: 100%;
    padding: 15px;
    margin: 5px 0;
}

    .product-container .product-image-container {
        position: relative;
        width: 100%;
        padding: 0;
    }

        .product-container .product-image-container::before {
            position: absolute;
            content: " ";
            left: 5%;
            top: 5%;
            width: 90%;
            height: 90%;
            visibility: hidden;
            opacity: 0;
            transition: all .3s ease;
            background: rgba(20,20,20,0.7);
        }

    .product-container:hover .product-image-container::before {
        visibility: visible;
        opacity: 1;
    }

    .product-container .product-image-container i {
        position: absolute;
        width: 100%;
        padding: 0;
        margin: 0;
        height: 100%;
        color: white;
        text-align: center;
        top: calc(50% - 10px);
        visibility: hidden;
        opacity: 0;
        transition: all .3s ease;
    }

    .product-container:hover .product-image-container i {
        visibility: visible;
        opacity: 1;
    }

    .product-container .product-image-container img {
        width: 100%;
        height: auto;
        padding: 2px;
    }

    .product-container a {
        text-decoration: none;
        color: #444;
    }

.product-detail-main-img-container img {
    width: 100%;
    height: auto;
}

.product-detail-container img {
    width: 100%;
    height: auto;
}

.top-right-image {
    float: right;
    width: 450px;
    height: 300px;
    margin: 0 0 10px 10px;
}

.exhibition-image {
    width: 100%;
    height: auto;
}

.text-justify {
    text-align: justify;
}

gmp-map {
    height: 250px; /* The height is 400 pixels */
    width: 100%; /* The width is the width of the web page */
}

.contact-container {
    padding: 25px;
    background: #f9f9f9;
    margin: 0;
    border-radius: 4px;
    transition: all .3s;
}

    .contact-container:hover {
        background: #f4f4f4;
        box-shadow: 0 0 15px gray;
    }

.contact-title {
    position: relative;
}

    .contact-title::before {
        content: '';
        position: absolute;
        width: 100px;
        height: 2px;
        background: #d60914;
        top: 20px;
        left: 0;
    }

    .contact-title h3 {
        position: relative;
        padding-left: 120px;
        color: #d60914;
    }

.reference-image-container {
    padding: 0;
}

    .reference-image-container img {
        width: 100%;
        min-height: 220px;
        height: auto;
        padding: 25px;
        object-fit: scale-down;
        border: 1px solid #ccc;
    }

.reference-item {
    padding: 0;
}

.exhibition-images img {
    width: 100%;
    height: auto;
    padding: 15px;
}

.image-container-main {
    max-height: 250px;
    overflow: hidden;
}

.trueContentContainer {
    left: -100px;
}

.falseContentContainer {
    right: -100px;
    text-align: right;
}

.TCC {
    position: relative;
    padding: 15px 30px 15px 30px;
    background: #fff;
    z-index: 1;
}

    .TCC a {
        text-decoration: none;
    }

    .TCC i {
        font-size: .7rem;
        color: #1b1363;
    }

    .TCC p {
        font-size: .8rem;
        color: #1b1363;
    }

    .TCC svg {
        width: 10px !important;
        color: #1b1363;
    }

    .TCC h5 {
        color: #006AA4;
        text-transform: uppercase;
        font-weight: bold;
        -moz-transition: all .6s;
        -o-transition: all .6s;
        -webkit-transition: all .6s;
        transition: all .6s;
    }

    .TCC h6 {
        color: #1b1363;
    }

    .TCC p {
        line-height: 30px;
    }

    .TCC a.AAF:hover {
        letter-spacing: 5px;
        -moz-transition: all .6s;
        -o-transition: all .6s;
        -webkit-transition: all .6s;
        transition: all .6s;
    }

    .TCC A.AAF::after {
        content: '';
        position: absolute;
        top: 45px;
        width: 30px;
        height: 1px;
        /*background: #FFC634;*/
        /*background: #FD143D;*/
        background: #006AA4;
        -moz-transition: all .6s;
        -o-transition: all .6s;
        -webkit-transition: all .6s;
        transition: all .6s;
    }

    .TCC a.AAF:hover::after {
        width: 200px;
        -moz-transition: all .6s;
        -o-transition: all .6s;
        -webkit-transition: all .6s;
        transition: all .6s;
    }

    .TCC a.AAF h5 {
        color: #006aa4;
    }

.trueContentContainer a::after {
    left: 30px;
}

.falseContentContainer a::after {
    right: 30px;
}


.LC:last-child .LCG {
    display: none;
}

.LCG {
    z-index: 0;
}

.lcgL {
    height: 140px;
    background: #d4d4d4;
    width: 70%;
    position: absolute;
    left: 3%;
    top: -20px;
}

.lcgR {
    height: 140px;
    background: #d4d4d4;
    width: 70%;
    position: absolute;
    right: 3%;
    top: -20px;
}

.ptMt {
    position: relative;
    margin-bottom: 80px;
}

.text-left {
    text-align: left;
}

@media (max-width: 1200px) {
    .aquaculture-img-container img, .fiberglass-img-container img {
        width: 300px;
        height: auto;
    }

    .home-box-left-side:hover .aquaculture-img-container {
        animation: none;
        transition: none;
    }

    .home-box-right-side:hover .fiberglass-img-container {
        left: calc(100% - 315px);
        visibility: visible;
        animation: none;
        transition: none;
    }

    .aquaculture-img-container {
        position: relative;
        visibility: hidden;
        transition: all 0.5s ease;
        left: -400px;
        top: 440px;
    }


    .trueContentContainer {
        left: -50px;
    }

    .falseContentContainer {
        right: -50px;
    }
}

@media (max-width: 900px) {

    .ptMt {
        margin-bottom: 50px;
    }

    .aquaculture-img-container img,
    .fiberglass-img-container img {
        width: 250px;
        height: auto;
    }

    .home-box-left-side:hover .aquaculture-img-container {
        animation: none;
        transition: none;
    }

    .home-box-right-side:hover .fiberglass-img-container {
        left: calc(100% - 255px);
        visibility: visible;
        animation: none;
        transition: none;
    }

    .aquaculture-img-container {
        position: relative;
        visibility: hidden;
        transition: all 0.5s ease;
        left: -400px;
        top: 460px;
    }

    .banner-text {
        height: var(--banner-height-200);
    }
}

@media (max-width: 768px) {
    .home-box {
        position: relative;
        height: 380px;
        width: 100%;
        border-radius: 15px;
        transition: transform 1s ease;
    }

        .home-box:hover {
            transform: scale(0.98);
        }

    .home-box-left-side {
        clip-path: none;
    }

    .home-box-right-side {
        clip-path: none;
    }

    .aquaculture-img-container img,
    .fiberglass-img-container img {
        width: 250px;
        height: auto;
    }

    .aquaculture-img-container {
        top: 200px;
        left: calc(50% - 120px);
    }

    .fiberglass-img-container {
        top: 250px;
        left: calc(50% - 120px);
    }

    .home-box-left-side:hover .aquaculture-img-container {
        top: 200px;
        left: calc(50% - 120px);
        animation: none;
        transition: none;
    }

    .home-box-right-side:hover .fiberglass-img-container {
        top: 250px;
        left: calc(50% - 120px);
        animation: none;
        transition: none;
    }

    .slick-track img {
        padding: 20px;
    }

    .home-product-txt .title-wrapper .sweet-title {
        font-size: clamp(4rem, 9vw, 4rem);
    }

    .trueContentContainer {
        left: 0;
    }

    .falseContentContainer {
        right: 0;
    }
}

/*
*
* Preloader
*/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #F0F0F0;
    transition: .3s all ease;
}

    .preloader.loaded {
        opacity: 0;
        visibility: hidden;
    }

        .preloader.loaded .triangle,
        .preloader.loaded .pen {
            animation: none;
        }

.wrapper-triangle {
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    width: 304px;
    height: 250px;
    transform: translate(-50%, -50%);
}

.line-triangle {
    position: absolute;
    width: 250px;
    height: 54px;
    border: 1px solid transparent;
    transform-origin: 0 100%;
}

    .line-triangle:nth-last-of-type(1) {
        left: 313px;
        bottom: -21px;
        transform: rotate(-120deg);
        transform-origin: 0 100%;
    }

    .line-triangle:nth-last-of-type(2) {
        left: 156px;
        top: -54px;
        transform: rotate(120deg);
        transform-origin: 0 100%;
    }

    .line-triangle:nth-last-of-type(3) {
        top: 217px;
        left: 0;
    }

.triangle:nth-of-type(1) {
    animation: tri1 1.5s linear infinite;
}

@keyframes tri1 {
    0% {
        opacity: 0;
    }

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(2) {
    animation: tri2 1.5s linear infinite;
}

@keyframes tri2 {
    0% {
        opacity: 0;
    }

    14.28571% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(3) {
    animation: tri3 1.5s linear infinite;
}

@keyframes tri3 {
    0% {
        opacity: 0;
    }

    28.57143% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(4) {
    animation: tri4 1.5s linear infinite;
}

@keyframes tri4 {
    0% {
        opacity: 0;
    }

    42.85714% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(5) {
    animation: tri5 1.5s linear infinite;
}

@keyframes tri5 {
    0% {
        opacity: 0;
    }

    57.14286% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(6) {
    animation: tri6 1.5s linear infinite;
}

@keyframes tri6 {
    0% {
        opacity: 0;
    }

    71.42857% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(7) {
    animation: tri7 1.5s linear infinite;
}

@keyframes tri7 {
    0% {
        opacity: 0;
    }

    85.71429% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.triangle {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border: 31px solid transparent;
    border-bottom: 54px solid #b90000;
    animation: tri 1.5s linear infinite;
}

    .triangle:nth-of-type(1) {
        left: 0px;
    }

    .triangle:nth-of-type(2) {
        left: 31px;
    }

    .triangle:nth-of-type(3) {
        left: 63px;
    }

    .triangle:nth-of-type(4) {
        left: 94px;
    }

    .triangle:nth-of-type(5) {
        left: 125px;
    }

    .triangle:nth-of-type(6) {
        left: 156px;
    }

    .triangle:nth-of-type(7) {
        left: 188px;
    }

    .triangle:nth-child(even) {
        transform: rotate(180deg);
        top: 0;
    }

    .triangle:nth-child(1) {
        animation: none;
    }

.pen {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 312.5px;
    transform-origin: 50% 0;
    animation: move 1.5s cubic-bezier(0, 0, 0.5, 0.85) infinite;
}

@keyframes tri {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes move {
    0% {
        transform: scale(2.45);
    }

    100% {
        transform: scale(0.5);
    }
}