/* Basic styling */

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

* {
    margin: 0;
    box-sizing: border-box;
}

:before,
:after {
    box-sizing: border-box;
}

.container {
    max-width: 1700px;
    margin: auto;
}

.mainrow {
    display: flex;
    flex-wrap: wrap;
}

.v-center {
    align-items: center;
    justify-content: space-between;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* header */

.header {
    display: block;
    width: 100%;
    position: absolute;
    z-index: 99;
    /* background-color: #00306610; */
}

.header .container {
    width: 90%;
}

.header .item-left {
    flex: 0 0 10%;
    margin-left: 20px;
}

.header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .logo a img {
    width: 350px;
}

/* .header .item-center {
    flex: 0 0 70%;
    display: flex;
    justify-content: flex-end;
} */

.header .item-right {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
}

.header .item-right a {
    text-decoration: none;
    font-size: 16px;
    color: #555555;
    display: inline-block;
    /* margin-left: 10px; */
    transition: color 0.3s ease;
}

.header .menu > ul > li {
    display: inline-block;
    line-height: 50px;
    margin-left: 25px;
}

.header .menu > ul > li > a {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.header .menu > ul > li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 0 30px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

.list-item h4 {
    font-size: 13px !important;
    font-weight: 600 !important;
}

@media (min-width: 1200px) {
    .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

.header .menu > ul > li .sub-menu > ul > li {
    line-height: 1;
}

.header .menu > ul > li .sub-menu > ul > li > a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header .menu > ul > li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
    /* padding-right: 5px; */
    display: flex;
    flex-direction: column;
    /* margin: 5px 0; */
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
    line-height: 45px;
    /* display: block */
    display: flex;
    justify-content: center;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    padding: 5px 0;
    display: inline-block;
    font-size: 10px;
    color: #555555;
    transition: color 0.3s ease;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 {
    max-width: 750px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0px 10px;
    border-radius: 10px;
    text-align: center;
}

.header .menu > ul > li .sub-menu.mega-menu {
    left: 70%;
    transform: translateX(-50%);
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 25%;
    padding: 0 10px;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
    font-size: 12px;
    color: #3651ea;
    font-weight: 500;
    line-height: 1;
    padding: 10px 10px;
    /* height: 60px; */
    border-bottom: 1px solid gray;
}

.header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center
    .title {
    text-align: center;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a {
    color: #d8d8d8;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/*responsive*/

@media (max-width: 1200px) {
    .header .menu > ul > li > a {
        color: #3651ea;
    }
    .header .item-center {
        order: 3;
        flex: 0 0 100%;
    }
    .header .item-left,
    .header .item-right {
        flex: 0 0 auto;
    }
    .v-center {
        justify-content: space-between;
    }
    .header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-right: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: #333333;
        width: 24px;
        position: relative;
    }
    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333333;
    }
    .header .mobile-menu-trigger span:before {
        top: -6px;
    }
    .header .mobile-menu-trigger span:after {
        top: 6px;
    }
    .header .item-right {
        align-items: center;
    }
    .header .menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }
    .header .menu.active {
        transform: translate(0%);
    }
    .header .menu > ul > li {
        line-height: 1;
        margin: 0;
        display: block;
    }
    .header .menu > ul > li > a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .header .menu > ul > li > a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }
    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }
    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        display: none;
    }
    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }
    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }
    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 25px;
    }
    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .header .menu > ul > li .sub-menu.mega-menu,
    .header .menu > ul > li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }
    .header .menu > ul > li .sub-menu.active {
        display: block;
    }
    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }
        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }
    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }
        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
        margin-top: 0;
    }
    .header
        .menu
        > ul
        > li
        .sub-menu.mega-menu-column-4
        > .list-item.text-center
        .title {
        border-bottom: none;
        margin-bottom: 10px;
        height: 20px;
    }
    .header
        .menu
        > ul
        > li
        .sub-menu.mega-menu-column-4
        > .list-item.text-center:last-child
        .title {
        margin-bottom: 5px;
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
        flex: 0 0 100%;
        padding: 0px;
        border-bottom: 2px solid gray;
        margin-bottom: 10px;
    }
    .header
        .menu
        > ul
        > li
        .sub-menu.mega-menu-column-4
        > .list-item.text-center
        ul
        li
        a {
        margin-bottom: 10px;
        font-size: 12px;
        margin-left: 0;
    }
    .header .menu > ul > li .sub-menu > ul > li > a,
    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
        display: block;
    }
    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
        margin-bottom: 15px;
    }
    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }
    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 {
        justify-content: space-between;
        text-align: left;
    }
    /* .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
        text-align: left;
    } */
}

@media (max-width: 900px) {
    .header .item-left,
    .header .item-right {
        flex: 0 0 auto;
    }

    .header .logo a img {
        width: 270px;
        padding-top: 10px;
    }
}

/* Responsive for Medium Phone */
@media screen and (max-width: 480px) {
    .header .logo a img {
        width: 270px;
        padding-top: 10px;
    }
}

/* Benner */

.banner {
    /* background-color: lightblue; */
    background-image: url("/build/material/home/2.png");
    position: relative;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.bannerservice {
    /* background-color: lightblue; */
    background-image: url("/build/material/home/2.png");
    background-image: url("../../material/home/2.png");
    position: relative;
    height: 30vh;
    display: grid;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
}

.bannerservice h2 {
    font-size: 45px;
    font-style: italic;
    color: white;
    text-align: left;
}

.banner .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    justify-content: space-around;
    /* margin: 0; */
}

.banner h1 {
    /* margin-top: 50px; */
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    color: white;
    margin-left: 10%;
}

.moving-images {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-tracks {
    display: flex;
    /* transition: transform 0.5s linear; */
}

.carousel-tracks .cards {
    width: 340px;
    height: 340px;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.carousel-tracks .cards2 {
    width: 450px;
    height: 250px;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.options {
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.option {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 10px;
}

.option:hover,
.option.active {
    background-color: white;
    border-radius: 10px 10px 0 0;
}

/* Styles for content display */

.content {
    max-width: 1500px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    display: none;
}

.content.active {
    display: block;
}

.content p {
    text-align: justify;
}

.content h3 {
    margin-top: 20px;
}

/* services */

.services {
    padding: 20px;
}

.services h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.container1500 {
    max-width: 1500px;
    margin: auto;
}

.titleservices {
    font-size: 24px;
    color: #6397c4;
    font-style: italic;
}

.services ul {
    padding-left: 20px;
    list-style-type: circle;
}

.services ul li {
    margin-bottom: 10px;
}

/* Contact */

.containercontact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 25px;
}

.contact {
    margin-bottom: 50px;
}

.titlecontact {
    font-size: 24px;
    color: #6397c4;
}

.contact p {
    margin-bottom: 10px;
    font-size: large;
}

.contact a {
    color: gray;
    font-size: large;
}

.fa-contact-container {
    display: flex;
}

.fa-contact-container p {
    color: gray;
}

/* Company */

.aboutUs {
    padding: 35px 0px;
}

.titlecompany {
    font-size: 24px;
    color: #6397c4;
    margin-top: 20px;
}

.aboutUs p {
    margin-bottom: 10px;
    font-size: large;
    text-align: justify;
}

.aboutUs a {
    color: #6397c4;
    font-size: 24px;
}

.aboutUs a:hover {
    color: rgb(25, 0, 255);
    font-size: 24px;
}

.aboutUs li {
    font-size: large;
}

.flag-counter {
    margin-left: 45px;
}

/* section.html */

.sectionbanner {
    /* background-color: lightblue; */
    background-image: url("/build/material/home/2.png");
    position: relative;
    height: 35vh;
    display: grid;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    padding-right: 5%;
}

.sectionbanner h2 {
    font-size: 45px;
    font-style: italic;
    color: white;
    text-align: left;
}

.sectionbanner p {
    font-size: large;
    color: white;
    text-align: left;
}

#product-list {
    list-style: none;
    padding: 0;
    max-width: 1700px;
    margin: auto;
}

.product-item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.product-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.product-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-right: 20px;
}

.product-info {
    max-width: calc(100% - 220px);
}

.product-info h3 {
    margin: 0 0 10px;
}

.product-info p {
    margin: 0;
    color: #555;
}

/* product */

#item-list {
    list-style: none;
    padding: 0;
    max-width: 1700px;
    margin: auto;
}

.item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.item-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.item-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-right: 20px;
}

.item-content {
    display: flex;
    flex-direction: column;
}

.item-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
}

.item-desc {
    margin: 0;
    color: #555;
}

/* Section */

.product-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-section {
    width: 80%;
    justify-content: center;
    align-items: center;
}

.container-section h2 {
    font-style: italic;
    font-size: 30px;
    color: #ffffff;
}

.container-section p {
    margin: 20px 0px;
    color: #ffffff;
    font-weight: 600;
    font-size: 17px;
}

#section1 {
    background-image: url("/build/material/home/2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

#section2 {
    background-image: url("/build/material/home/3.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

#section2 h2,
#section2 p {
    text-align: right;
}

#section3 {
    background-image: url("/build/material/home/1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.product-carousel {
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s linear;
}

.carousel-track .card {
    width: 550px;
    height: 300px;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    overflow: hidden;
    justify-content: center;
    width: 100%;
}

.carousel-track .card {
    min-width: 250px;
    height: 300px;
    margin: 0 10px;
    background: #ffffff;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.carousel-track .card a {
    min-width: 250px;
    height: 300px;
    margin: 0 10px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.card a img {
    max-width: 100%;
    max-height: 70%;
}

.card a p {
    text-align: center;
    color: #000000;
}

.prev,
.next {
    display: none;
}

@media (max-width: 1700px) {
    .prev,
    .next {
        display: flex;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 45px;
        margin: 0px 5px 0px 5px;
        background-color: #d8d8d894;
        border-style: none !important;
        color: white;
        z-index: 1111;
    }
    .prev:hover,
    .next:hover {
        background-color: rgb(68, 68, 68);
        color: rgb(255, 255, 255);
    }
}

/* Footer */

.footer {
    /* background-color: rgb(143, 0, 0); */
    background-color: #6397c4;
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* border: 1px solid #fff; */
}

.footer .container {
    /* max-width: 1500px; */
    width: 95%;
    display: flex;
    justify-content: space-around;
    /* border: 1px solid #000; */
}

.footer .mainrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    /* width: 25%; */
    padding: 0 15px;
    /* border: 1px solid #fff; */
}

.col-inner {
    width: 100% !important;
}

.fa-top {
    margin-top: 10px !important;
}

.fa-container {
    margin-top: -7px;
    display: flex;
    /* border: 1px solid #000; */
}

svg:not(:host).svg-inline--fa,
svg:not(:root).svg-inline--fa {
    padding-top: 5px;
}

.fa-container p {
    margin-bottom: 5px;
    /* border: 1px solid #000; */
}

.fa-container .fa-text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    background-color: #0011ff;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    font-weight: 300;
    text-transform: capitalize;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* .footer-col .contact-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .contact-links a i {
    display: inline-block;
    line-height: 40px;
}

.footer-col .contact-links a:hover {
    color: #24262b;
    background-color: #ffffff;
} */

.public-footer {
    /* position: fixed; */
    bottom: 0;
    background: #353333;
    text-align: center;
    height: 50px;
    width: 100%;
    color: #fff;
    line-height: 50px;
}

/* .public-footer .textfooter {
    font-size: small;
} */

.text-footer {
    color: #fff;
    font-size: 13px;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

/* Tabel */

table {
    width: 100%;
    border-collapse: collapse;
}

.table {
    overflow-x: auto;
}

.table table td,
.table table th {
    border: 1px solid #000000;
    border-collapse: collapse;
    padding: 8px;
}

.table table th {
    background-color: lightblue;
    text-align: center;
}

.table table td:hover {
    background-color: lightgray;
}

td {
    border: 1px solid transparent;
    padding: 10px;
    vertical-align: center;
}

.circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.circle img {
    width: 25px;
    height: 25px;
    object-fit: cover;
}

.parameter {
    width: 30%;
    text-align: center;
}

.advertisement {
    width: 70%;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    gap: 2em;
    font-size: large;
}

.advertisement-text {
    display: inline-block;
    -moz-animation: marquee 30s linear infinite;
    -webkit-animation: marquee 30s linear infinite;
    animation: marquee 30s linear infinite;
}

@-moz-keyframes marquee {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes marquee {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

.clients-table {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-row {
    display: flex;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.clients-row span {
    display: inline-flex;
    align-items: center;
    margin-right: 30px;
}

.circle {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.circle img {
    width: 100%;
    height: auto;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* @keyframes marquee {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
} */

@media (max-height: 760px) {
    .banner {
        /* background-color: lightblue; */
        background-image: url("/build/material/home/2.png");
        position: relative;
        height: 70vh;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }
    .sectionbanner {
        /* background-color: lightblue; */
        background-image: url("/build/material/home/2.png");
        position: relative;
        height: 50vh;
        display: grid;
        align-items: center;
        justify-content: flex-start;
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 600px) {
    .banner h1 {
        /* margin-top: 50px; */
        margin-bottom: 10px;
        font-size: 25px;
        font-weight: bold;
        font-style: italic;
        text-align: left;
        color: white;
        /* margin-left: 10%; */
    }
    .carousel-track {
        justify-content: left;
    }
    .carousel-track .card {
        min-width: 95%;
        height: 300px;
        margin: 0 10px;
        border-radius: 10px;
    }
    .prev:hover,
    .next:hover {
        background-color: rgb(68, 68, 68);
        color: rgb(255, 255, 255);
    }
    .carousel-tracks .cards {
        width: 300px;
        height: 300px;
        margin: 0 10px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .sectionbanner h2 {
        font-size: 25px;
        font-style: italic;
        color: white;
        text-align: left;
    }
    .sectionbanner p {
        font-size: medium;
        color: white;
        text-align: left;
    }
    .aboutUs {
        padding: 35px 20px;
    }
    .contact {
        padding: 55px 20px;
    }
}

@media (max-width: 370px) {
    .carousel-track .card {
        min-width: 95%;
        height: 300px;
        margin: 0 10px;
        border-radius: 10px;
    }
    .carousel-track .card a {
        min-width: 95%;
        height: 300px;
        margin: 0 10px;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }
    .prev:hover,
    .next:hover {
        background-color: rgb(68, 68, 68);
        color: rgb(255, 255, 255);
    }
}
