/* input(593,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@media'
input(616,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@media'
input(630,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@media' */
body {
    color: #212529;
}

a {
    text-decoration: none;
    color: #212529;
    display: block;
}

.wrapper {
    padding: 80px 160px;
}

input {
    height: 40px;
}

textarea {
    height: 200px;
}

iframe {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px
}

input, textarea {
    font-size: 14px !important;
    border-radius: 6px !important;
    border: 1px solid #1b4962 !important;
    color: #212529;
    font-weight: 500;
    margin-top: 5px !important;
}

    input::placeholder, textarea::placeholder {
        color: #212529 !important;
        font-weight: 500
    }


footer {
    background-color: #1b4962;
    padding-top: 75px;
    padding-bottom: 75px;
}

    footer h5 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    footer li {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
    }

.footer-bottom {
    padding: 25px;
    color: #000;
    font-weight: 500;
}

    .footer-bottom p {
        margin-bottom: 0;
    }


.product-row {
    gap: 30px;
}

    .product-row h2 {
        font-size: 36px;
        font-weight: 700;
    }

.product-card {
    margin-bottom: 60px;
    box-shadow: 4px 0 16px 2px rgba(0, 0, 0, 0.05);
    --border-width: 1px;
    --radius: 12px;
    position: relative;
    border-radius: var(--radius);
    border: var(--border-width) solid transparent;
    width: calc(33% - 30px);
    padding: 25px;
    height: 340px;
}

    .product-card::before, .product-page-card::before {
        content: " ";
        position: absolute;
        inset: calc(var(--border-width) * -1);
        z-index: -1;
        border: inherit;
        border-radius: inherit;
        background-image: conic-gradient(from var(--angle), #b3d9f2 80%, #5a8faf 88%, #1b4962 92%, #0f2c3f 100%);
        background-origin: border-box;
        -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
        mask: linear-gradient(black, black), linear-gradient(black, black);
        -webkit-mask-clip: content-box, border-box;
        mask-clip: content-box, border-box;
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: spin 3s linear infinite;
    }

    .product-card img {
        margin-bottom: 10px;
        padding: 15px;
        height: 200px;
    }

    .product-card h3 {
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .product-card p {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-card a, .product-card a:hover {
        background: #1b4962;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        width: 120px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
    }

#offCanvasGeneral {
    top: 100px;
    height: max-content;
    border: none;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

    #offCanvasGeneral h5 {
        color: #000;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 0;
    }

    #offCanvasGeneral p {
        font-size: 14px
    }

    #offCanvasGeneral .offcanvas-body {
        overflow: hidden !important;
    }

@supports not (background: paint(something)) {
    .product-card::before, .product-page-card::before {
        background-image: conic-gradient(#b3d9f2 80%, #5a8faf 88%, #1b4962 92%, #0f2c3f 100%);
    }
}

.product-card:hover::before, .product-page-card:hover::before {
    animation-play-state: paused;
}

@property --angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

@keyframes spin {
    to {
        --angle: 1turn;
    }
}

#references .content {
    padding: 0 20px;
}

#references .item {
    box-shadow: 4px 0 16px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #b3d9f2;
}

#references h2 {
    width: max-content;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

#references h3 {
    margin: 15px 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #1b4962;
}

#references p {
    font-size: 20px;
}

#references .owl-references .item, #references .owl-references .item img {
    border-radius: 12px;
}

    #references .owl-references .item img {
        height: 220px;
    }

.to-top {
    background-color: #1b4962;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#brands h2 {
    width: max-content;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.owl-brands {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

    .owl-brands .owl-nav {
        width: 105%;
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 0;
    }

        .owl-brands .owl-nav span {
            font-size: 48px;
            display: flex;
            align-items: center;
            height: 48px;
        }

.error-button {

}

.logo {
    height: 10svh;
}

a.nav-link {
    color: #212529;
    font-size: 16px;
    font-weight: 500;
}

.header-lang {
    font-size: 16px;
    font-weight: 500;
    color: #212529;
    text-transform: uppercase;
}

.dropdown-toggle::after {
    content: "";
    border: none;
}

.dropdown-menu.show {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: max-content;
    min-width: max-content;
    left: 45%;
    top: 75%;
}

.navbar .nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .navbar .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 0;
        background-color: #8cbe21 !important;
        transition: width 0.4s ease-out;
    }

    .navbar .nav-link:hover::after {
        width: 100%;
    }

.owl-slider img, .owl-slider video {
    height: 90svh;
    filter: brightness(0.5);
}

.owl-slider .item {
    position: relative;
}

.owl-slider .item .content {
    position: absolute;
    top: 25%;
    left: 7.5%;
    color: #fff;
    z-index: 1;
    width: 50%;
    padding-right: 30px;
}

.owl-slider .item .content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 20px;
}

.owl-slider .item .content p {
    font-size: 24px;
    line-height: 36px;
}

.owl-slider .item .content .btn {
    width: 200px;
    height: 50px;
    border-radius: 4px;
    background-color: #1b4962;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}


@media only screen and (min-width: 0px) and (max-width: 560px) {

    .owl-slider .item .content {
        position: absolute;
        top: 25%;
        left: 7.5%;
        color: #fff;
        z-index: 1;
        width: 100%;
    }

    .owl-slider .item .content h1 {
        font-size: 36px;
        font-weight: 700;
        line-height: 46px;
        margin-bottom: 20px;
    }

    .owl-slider .item .content p {
        font-size: 20px;
        line-height: 36px;
    }
}

.certificate-card {
    border: 1px solid #DFDFDF;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .04);
    height: 300px;
}

.certificate-card-description {
    padding: 30px 20px;
}

.certificate-card-description h2 {
    font-size: 20px;
    color: #1b4962;
    margin-bottom: 20px;
    border-bottom: 1px solid #DFDFDF;
    padding-bottom: 20px;
}

.certificate-card-description p {
    min-height: 100px;
    font-size: 18px;
}

.certificate-card-description a {
    background: #1b4962;
    font-size: 14px;
    font-weight: 500 !important;
    color: #fff !important;
    width: 120px;
    height: 35px;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 4px;
    padding: 10px;
}

.certificate-card-title {
    bottom: 30px;
}

@media only screen and (min-width: 0px) and (max-width: 560px) {
}

.contact-card {
    padding-bottom: 35px;
    padding-top: 35px;
    border-radius: 10px;
}

    .contact-card a,
    .contact-part p {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .contact-card p {
        line-height: 23px;
    }

    .contact-card img {
        margin-bottom: 25px;
        width: 75px;
        height: auto;
    }

    .contact-card:hover {
        background-color: transparent;
        cursor: pointer;
        transition: all 300ms ease-in-out;
        -webkit-transition: all 300ms ease-in-out;
        box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.05);
    }

#contact-page-form .btn {
    height: 40px;
    width: 150px;
    border-radius: 10px;
    background: #1b4962;
    color: #fff;
}

.contact-form-box {
    box-shadow: 4px 0px 16px 2px rgba(0,0,0,0.08);
    border-radius: 12px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.features-title {
    margin-bottom: 60px;
}

    .features-title h1 {
        font-size: 60px;
        font-weight: 300;
        line-height: 60px;
        color: #4b4e53 !important;
    }

.line {
    margin-top: 15px;
    height: 3px;
    width: 125px;
    background: #4b4e53;
}

.features-title h1 span {
    font-weight: 700;
    color: #4b4e53 !important;
    line-height: 60px;
}

.features-text h2 {
    font-weight: 700;
    font-size: 18px;
    color: #4b4e53;
}

.features-text p {
    color: #7e8082;
}

.technical-features img {
    width: 40px;
    height: 40px;
}

.history-part {
    background-color: #EEEEEE !important;
}

.history-part,
.company-features{
    padding: 80px 0;
}

.history-right {
    padding-left: 7.5%;
    padding-right: 7.5%;
}

.history-line span {
    margin-top: 15px;
    height: 1px;
    width: 60px;
    background: #4b4e53;
}

.history-line-right p {
    font-size: 18px !important;
    color: #8cbe21 !important;
    font-weight: 600 !important;
}

.history-line-top h1 {
    font-size: 32px;
    font-weight: 100;
}

.history-right h2 {
    margin-bottom: 30px;
}

    .history-right h2 span {
        color: #1b4962 !important;
        font-weight: 600 !important;
    }


.history-line-bottom h2 {
    color: #8cbe21 !important;
}


.why-choose-us {
    overflow: hidden;
    background-image: url('../media/why-you-choose-bg-blue.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    @media only screen and (max-width: 568px) {
        background-image: none !important;
    }
}

.fix-height {
    height: 115px;
}

.subtitle {
    color: #8cbe21 !important;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #010f34;
    margin-bottom: 45px;

    @media only screen and (max-width: 568px) {
        font-size: 32px;
    }
}

.feature-grid img {
    height: 60px;
    margin-bottom: 10px;
}

.feature-grid h4 {
    font-size: 20px;
    font-weight: 700;

    @media only screen and (max-width: 568px) {
        font-size: 20px;
    }
}

.feature-grid p {
    color: #788094;
}

@media only screen and (min-width: 0px) and (max-width: 560px) {
    .wrapper {
        padding: 60px 20px !important;
    }

    .contact-form-box {
        height: 600px;
    }

    .product-card {
        width: calc(100%);
        margin-bottom: 30px;
    }

    .navbar-toggle button {
        border: 1px solid #1b4962;
    }

    .navbar-toggle button:focus {
        box-shadow: none;
    }

    .dropdown-menu.show {
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 75px;
        min-width: max-content;
        left: 5%;
        top: 100%;
    }

    #offCanvasGeneral {
        height: max-content;
        width: 90%;
    }

    #offCanvasGeneral h5 {
        font-size: 16px;
    }

    .owl-brands .owl-nav {
        top: 25%;
    }

    .owl-brands .owl-nav span {
        font-size: 32px;
        display: flex;
        align-items: center;
        height: 0;
    }

    /*About Us Section Start*/
    .history-right h2 {
        margin-bottom: 10px !important;
    }

    .history-part, .company-features {
        padding: unset !important;
    }

    .features-title h1 {
        font-size: 36px;
        line-height: 50px;
    }


    .features-title {
        margin-bottom: 40px;
    }

    .history-right {
        padding: 7.5% !important;
    }

    /*About Us Section End*/

}

