@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Header Start */

header a {
    text-decoration: none;
    color: #1e3362;
}

header a:hover {
    scale: 1.05;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar .container-fluid {
    background: #fff;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.navbar-brand img {
    width: 80px;
}

.navbar-nav {
    column-gap: 70px;
}

.navbar .nav-link {
    color: #1e3362;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 0 !important;
    cursor: pointer;
}

.navbar .dropdown .nav-link:focus {
    color: #000;
}

.navbar .nav-link.dropdown-toggle::after {
    display: none;
}

.navbar .nav-link.effect-underline:after {
    content: '';
    position: absolute;
    left: 0;
    display: inline-block;
    height: 1em;
    width: 100%;
    border-bottom: 2px solid;
    margin-top: 10px;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.7s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.navbar .nav-link.effect-underline:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.language {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}

.language a {
    text-decoration: none;
    color: #1e3362;
    font-size: 18px;
}

.language a:hover {
    scale: 1.10;
}

.language span {
    color: #1e3362;
}

.navbar-nav .dropdown-menu.show {
    width: max-content;
}

@media screen and (max-width: 992px) {
    
    .navbar-nav {
        row-gap: 20px;
        margin-top: 35px;
        margin-bottom: 35px;
        padding-left: 10px;
    }

    .submenu {
        margin-left: calc(20%) !important;
    }

    .language {
        display: flex;
        justify-content: start;
        align-items: center;
        column-gap: 15px;
        margin-bottom: 15px;
        padding-left: 10px;
    }

}

/* Header End */

/* Homepage */

.carousel-item {
    background: #252b39;
}

.slider-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: calc(12%);
    opacity: 0;
}

.carousel-item.active .slider-text-box {
    opacity: 1;
}

.slider-text-box img {
    width: 150px !important;
    margin-bottom: 30px !important;
}

.carousel-item.active .slider-text-box img {
    animation: fadeInTop 1.5s ease forwards;
}

@keyframes fadeInTop {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.slider-text-box h1 {
    font-size: 3.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.carousel-item.active .slider-text-box h1 {
    animation: fadeInLeft 1.5s ease forwards;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.slider-text-box .slider-btn {
    width: 151px;
    height: 40px;
    border: solid #fff 2px;
    border-radius: 8px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item.active .slider-btn {
    animation: fadeInBottom 1.5s ease forwards;
}

@keyframes fadeInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.slider-text-box .slider-btn:hover {
    background: #fff;
    color: #3c40c6;
}

.carousel-control-prev {
    width: max-content;
    padding-left: 5px;
}

.carousel-control-next {
    width: max-content;
    padding-right: 5px;
}

@media screen and (max-width: 1300px) {

    .slider-text-box img {
        width: 100px !important;
        margin-bottom: 20px;
    }

    .slider-text-box h1 {
        font-size: 2.2rem;
        margin-bottom: 35px;
        color: #fff;
    }

}

@media screen and (max-width: 1100px) {

    .slider-text-box {
        padding-left: calc(10%);
    }

    .slider-text-box img {
        margin-bottom: 20px !important;
    }

    .slider-text-box h1 {
        font-size: 2.0rem;
        margin-bottom: 20px;
        color: #fff;
    }

}

@media screen and (max-width: 991.9px) {

    header a {
        text-decoration: none;
        color: #3c40c6;
        z-index: 9999;
    }

    .home-slider-section {
        margin-top: 0px;
    }

    .carousel-item .row {
        flex-direction: column-reverse;
    }

    .slider-text-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 25px 10px 35px 10px;

    }

    .carousel-indicators {
        display: none;
    }

}

@media screen and (max-width: 768px) {

    header a {
        text-decoration: none;
        color: #3c40c6;
        z-index: 9999;
        font-size: 12px;
    }

    .carousel-item .row {
        flex-direction: column-reverse;
    }

    .home-slider-section {
        margin-top: 0px;
    }

    .slider-text-box .slider-btn {
        width: 200px;
        height: 40px;
        border: solid #fff 2px;
        border-radius: 8px;
        font-size: 16px;
        letter-spacing: 1px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

.home-main-section {
    margin-top: 70px;
}

.about-container {
    margin-bottom: 90px;
}

.about-container .about-img-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    overflow: hidden !important;
}

.about-container .about-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    line-height: 2.5rem;
    padding-left: 70px;
}

.about-container .about-text-box h2 {
    color: #0657a5;
    margin-bottom: 25px;
    font-size: 35px;
}

.about-container .about-text-box p {
    color: #000;
    margin-bottom: 25px;
}

.main-btn {
    width: 180px;
    height: 40px;
    border-radius: 8px;
    font-size: 16px;
    background: #0657a5;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.main-btn:hover {
    border: solid #0657a5 2px;
    background: #fff;
    color: #0657a5;
}

.product-container {
    margin-bottom: 70px;
    background: linear-gradient(to right, #252b39, #2b32b2);
    /* background: #252b39; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* border-radius: 10px; */
    padding: 70px 12px;
}

.product-container h2 {
    color: #ececec;
    margin-bottom: 15px;
    font-size: 35px;
}

.product-container p {
    color: #ececec;
    line-height: 2rem;
}

.product-container ul li {
    color: #ececec;
    line-height: 2rem;
}

.main-btn-2 {
    width: 180px;
    height: 40px;
    border-radius: 8px;
    font-size: 16px;
    background: #0657a5;
    color: #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.main-btn-2:hover {
    border: solid #0657a5 2px;
    background: #ececec;
    color: #0657a5;
}

.gallery-container {
    position: relative;
    padding: 0;
}

.gallery-container .mySlides {
    display: none;
}

.gallery-container .mySlides img {
    height: auto;
    border-radius: 10px;
}
  
.gallery-container .cursor {
    cursor: pointer;
}
  
.gallery-container .gallery-prev,
.gallery-container .gallery-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}
  
.gallery-container .gallery-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
  
.gallery-container .gallery-prev:hover,
.gallery-container .gallery-next:hover {
    background-color: #252b39;
}
  
/* .numbertext {
    color: #172356;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
} */
  
.gallery-container .caption-container {
    text-align: center;
    background-color: #fff;
    padding: 2px 16px;
}

.gallery-container .caption-container p {
    margin: 0;
    color: #0657a5;
}
  
.gallery-container:after {
    content: "";
    display: table;
    clear: both;
}

.gallery-container .column {
    float: left;
    width: 14.65%;
    padding: 0px;
    margin-left: 11.5px;
}
  
.gallery-container .demo {
    opacity: 0.6;
    border-radius: 7px;
}
  
.gallery-container .active,
.gallery-container .demo:hover {
    opacity: 1;
}

.home-contact-container {
    border-radius: 10px;
    padding: 100px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../../images/home/contact-bg.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

.home-contact-container .col-md-12 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 800px;
}

.home-contact-container .col-md-12 h2 {
    margin-bottom: 30px;
    color: #0657a5;
    font-size: 35px;
}

.home-contact-container .col-md-12 h5 {
    margin-bottom: 30px;
    line-height: 2.5rem;
    color: #1e3362;
}

@media screen and (max-width: 850px) {

    .about-container .about-text-box {
        line-height: 1.8rem;
        padding-left: 12px;
    }
    
    .about-container .about-text-box h2 {
        color: #0657a5;
        margin-bottom: 10px;
        font-size: 35px;
    }
    
    .about-container .about-text-box p {
        color: #000;
        margin-bottom: 15px;
    }

    .product-container p {
        line-height: 1.8rem;
    }
    
    .home-contact-container .col-md-12 {
        width: 100%;
    }

}


/* Homepage */

/* Footer */

footer {
    background: #252b39;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

footer .container-fluid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

footer h5 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

footer li {
    line-height: 24px;
}

footer li a {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}

footer li a:hover {
    text-decoration: underline;
}

.footer-social li a {
    margin-right: 26px;
}

.footer-privacy {
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
}

.footer-privacy a {
    text-decoration: none;
    margin-bottom: 0;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
}

.footer-privacy a:hover {
    text-decoration: underline;
}

.footer-privacy p {
    margin-bottom: 0;
    color: #fff;
    font-size: 13px;
}

@media screen and (max-width: 1024px) {

    footer h5 {
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 50px;
    }

    footer .container-fluid {
        padding: 0;
    }

    footer .col {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    footer li {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-social li a {
        margin-right: 0px;
        margin: 0px 10px;
    }
}

/* Footer */

/* About Us */

.about-us-container {
    padding: 0;
}

/* About Us */

/* Products */

.all-products-container {
    padding: 0;
}

.portfolio-products {
    background-color: #fff;
    margin-top: 100px;
    margin-bottom: 100px;
}

.portfolio-product-box {
    position: relative;
    z-index: 0;
    padding: 0;
      
}

.portfolio-product-titles {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.3) !important;
    padding: 25px;
}

.portfolio-product-titles:hover {
    background-color: transparent !important;
}

.portfolio-product-titles h5 {
    margin-bottom: 0;
    font-size: 20px;
    color: #fff;
}

.portfolio-product-titles img {
    margin-bottom: 0;
    width: 80px;
}

@media screen and (max-width: 768px) {

    .portfolio-products {
        background-color: #fff;
        margin-top: 50px;
        margin-bottom: 50px;
    }

}

/* Products */

/* Product Detail */

.product-detail-container {
    padding: 0;
}

.product-detail-container .container {
    width: 1100px;
    background: #fff;
    border-radius: 10px;
    padding: 50px;
    margin-top: 70px;
    line-height: 2rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.product-detail-container .container p {
    color: #252b39;
    margin-bottom: 0;
}

.product-detail-container .container ul li {
    list-style-type: circle;
}

.galleryContainer {
    background: #1e3362;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: max-content;
    padding: 70px 12px;
    margin-top: 70px;
}

.wrapper {
    max-width: 1170px !important;
}

.wrapper .gallery {
    display: flex;
    flex-wrap: wrap;
    width: 1100px !important;
}

.gallery span {
    display: flex;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .image {
    padding: 3px;
    width: calc(100% / 3) !important;
}

.gallery .image img {
    width: 611px;
    height: 307px;
    vertical-align: middle;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery .image:hover img {
    transform: scale(1.1);
}

.preview-box {
    position: fixed;
    max-width: 600px;
    width: 100%;
    max-height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.preview-box.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1.2);
    transition: all 0.3s ease;
}

.preview-box .details {
    display: flex;
    align-items: center;
    padding: 5px;
    justify-content: space-between;
}

.preview-box .details .icon {
    color: #ececec;
    cursor: pointer;
    font-size: 20px;
    z-index: 9999;
}

.details .title {
    display: flex;
    font-size: 18px;
    font-weight: 400;
}

.details .title p {
    margin: 0 5px;
}

.details .title p.current-img {
    font-weight: 600;
}

.preview-box .img-box {
    display: flex;
    width: 100%;
}

.img-box .slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    z-index: 3;
}

.img-box .slide.prev {
    left: 0;
    margin-left: -75px;
}

.img-box .slide.next {
    right: 0;
    margin-right: -75px;
}

.preview-box .img-box img {
    width: 100%;
    border-radius: 0 0 3px 3px;
    z-index: 9999;
}

.shadow {
    position: fixed;
    top: 0;
    left: 0;
    height: 100% !important;
    width: 100% !important;
    display: none;
    background: rgba(0,0,0,0.4);
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {

    .product-detail-container .container {
        width: 100%;
        padding: 50px;
    }

    .img-box .slide {
        width: 100% !important;
    }

    .preview-box {
        width: 70% !important;
    }

    .wrapper .gallery {
        width: 100% !important;
    }

    .gallery .image img {
        width: 100% !important;
    }

    .gallery .image {
        width: calc(100% / 2) !important;
    }

    .img-box .slide.prev {
        margin: 0;
        left: -25px !important;
    }
    
    .img-box .slide.next {
        margin: 0;
        right: calc(-102%) !important;
    }
    
    .preview-box .img-box img {
        width: 100% !important;
        border-radius: 0 0 3px 3px;
    }

}

@media only screen and (max-width: 767px) {

    .product-detail-container .container {
        width: 100%;
        padding: 30px 12px;
        margin-top: 50px;
        text-align: center;
    }

    .product-detail-container .container p {
        margin-bottom: 0;
    }

    .wrapper {
        width: 100% !important;
    }

    .wrapper .gallery {
        width: 100% !important;
    }

    .img-box .slide {
        width: 100% !important;
    }

    .preview-box {
        width: 80% !important;
    }

    .gallery .image img {
        width: 100% !important;
    }

    .gallery .image {
        width: calc(100% / 1) !important;
    }

    .img-box .slide {
        top: 55%;
    }

    .img-box .slide.prev {
        margin: 0;
        left: 4px !important;
    }
    
    .img-box .slide.next {
        margin-right: 20px;
        right: calc(-100%) !important;
    }
    
    .preview-box .img-box img {
        width: 100% !important;
        border-radius: 0 0 3px 3px;
        z-index: 0;
    }

}

/* Product Detail */

/* Contact */

.contact-container {
    margin-top: 100px;
    margin-bottom: 100px;
}

.contact-information {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
}

.contact-information a {
    font-size: 20px;
    text-decoration: none;
    letter-spacing: 1px;
    color: #000;
}

.contact-information a:hover {
    text-decoration: underline;
}

.contact-information p {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 0;
}

.contact-information i {
    color: #0657a5;
}

.main-form form label {
    font-size: 20px;
    color: #0657a5;
}

.main-form .form-control {
    border-radius: 5px !important;
}

.main-form .form-control:focus {
    box-shadow: 1px 1px 5px 1px #0657a5;
    border-color: #0657a5;
    outline: 0;
}

.form-submit-btn {
    margin-top: 0px;
    border-radius: 5px;
    background: #0657a5;
    color: #fff;
    text-decoration: none;
    width: 180px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-btn:hover {
    border: solid #0657a5 2px;
    background: #fff;
    color: #0657a5;
}

@media screen and (max-width: 768px) {
    
    .contact-container {
        margin-top: 50px;
        margin-bottom: 50px;
    }

}

/* Contact */