@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat";
}

body {
    background-color: #fff;
    /* #2f3369 */
}

.main-wrapper {
    overflow: hidden;
    overflow-x: hidden;
}


/*------------------Navbar--------------------*/

#navbar .navbar {
    padding: 30px 0 0;
    margin: 0 30px;
}

#navbar .nav-link {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    color: #fff;
    transition: all 0.3s;
    text-transform: uppercase;
    padding: 0;
    position: relative;
}

#navbar .nav-link.active {
    color: #2f3369;
}

#navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    background-color: #2f3369;
    height: 2px;
    width: 0;
    transition: all 0.3s;
}

#navbar .nav-link.active::after {
    width: 100%;
}

#navbar .nav-link:hover::after {
    width: 100%;
}

#navbar .nav-link:hover {
    color: #2f3369;
}

.page-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 8;
}

.navbar-brand img {
    width: 95px;
}

.navbar-nav ul {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav ul li {
    list-style: none;
    padding: 10px 20px;
}

.page-header .social-media a {
    text-decoration: none;
    flex-shrink: 0;
}

.page-header .social-media a svg {
    width: 24px;
    height: 24px;
}

.page-header .social-media a svg path {
    transition: all 0.3s;
}

.page-header .social-media a:hover svg path {
    fill: #418dcc;
}

.navbar-brand {
    padding: 0;
    flex-shrink: 0;
}

.page-header .social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}

#navbar {
    margin: 20px 20px 0;
}


/*----------home---------------*/

.hero-section {
    height: calc(100dvh - 40px);
    background-image: url(../images/hero-img.jpg);
    background-position: 0 70%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin: 20px;
    border-radius: 40px;
    overflow: hidden;
    z-index: 0;
    display: flex;
    justify-content: center;
}

.hero-content h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    color: #2f3369;
    margin-bottom: 15px;
    text-transform: capitalize;
    background: linear-gradient(30deg, #ed6b00, #e8ba00);
    display: inline-block;
    border-radius: 100px;
    padding: 5px 20px;
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
    margin-bottom: 0;
}

.hero-content h5 {
    font-size: 60px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
}

.contact-button {
    display: flex;
    margin-top: 30px;
    justify-content: center;
}

.contact-button a {
    text-decoration: none;
    background-color: #fff;
    color: #2f3369;
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    padding: 12px 22px;
    border-radius: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.hero-content {
    margin-top: 24%;
}


/*---------------About------------*/

.custom-padding {
    padding: 90px 0;
}

.about-4 {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: bottom;
}

.about-5 {
    height: calc(100% - 20px);
    object-fit: cover;
}

.about-2 {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

#about img {
    border-radius: 20px;
}

.about-img .row>[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.about-img .row {
    margin: 0 -10px;
}

.section-left-right-padding {
    padding: 0 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #000;
    z-index: 0;
}

.section-title h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 10px;
    background-color: #418dcc;
    z-index: -1;
}

.about-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 0;
    color: #000;
}

.about-content h1 span {
    color: #418dcc;
}

.about-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    color: #000;
    margin-top: 20px;
}

.about-blocks {
    margin-top: 40px;
}

.about-box {
    background-color: rgba(65, 141, 204, 0.2);
    border: 1px solid rgb(47, 51, 105, 0.5);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    gap: 12px;
}

.about-box span,
.about-box h5 {
    font-size: 34px;
    font-weight: 600;
    line-height: 34px;
    color: #2f3369;
    margin-bottom: 15px;
    margin-bottom: 0;
}

.about-box p {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: #000;
    margin-bottom: 0;
    text-transform: capitalize;
    text-align: center;
    margin-top: 0;
}

.about-blocks .row>[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
}

.about-blocks .row {
    margin: 0 -10px;
}


/*----------------our membership----------------*/

.membership-logos .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.membership-logos {
    margin-top: 50px;
}

.membership-logos .swiper-slide {
    text-align: center;
}

.membership-logos .swiper-slide img {
    aspect-ratio: 3 / 2;
    object-fit: contain;
    object-position: center;
    width: 200px;
}


/*-------------product----------*/

.blue-background {
    background-color: #2f3369;
}

.blue-background .section-title h1 {
    color: #fff;
}

.product-box {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    overflow: hidden;
    padding: 10px;
}

.product-img {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.product-box img {
    transition: all 0.3s;
    transform: scale(1);
}

.product-name {
    padding: 20px 0 10px;
    text-align: center;
}

.product-name a {
    text-decoration: none;
    color: #2f3369;
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 0;
    text-transform: capitalize;
    text-align: center;
    display: inline-flex;
    justify-content: center;
}

.product-block .row>[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
}

.product-block .row {
    margin: 0 -10px;
}

.view-all-button {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all {
    background-color: #fff;
    color: #2f3369;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    display: inline-block;
    padding: 16px 30px;
    border-radius: 13px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}


/*--------------------why us----------------*/

.why-us-box {
    border: 1px solid #418dcc;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    border-radius: 20px;
    display: flex;
    gap: 24px;
    padding: 30px;
    align-items: center;
    background-color: #fff;
}

.why-us-box img {
    width: 80px;
}

.why-us-icon {
    flex-shrink: 0;
}

.why-us-details h6 {
    color: #2f3369;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 0;
}

.why-us-details p {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 8px;
}


/*--------------testimonial------------*/

.testimonial-silder .swiper-pagination-bullets {
    /* max-width: 250px; */
    display: block;
    margin: auto;
    overflow: hidden;
    position: unset;
    margin-top: 50px;
}

.testimonial-silder .swiper-pagination-bullets .swiper-pagination-bullet {
    display: inline-block;
    --swiper-pagination-bullet-size: 16px;
    --swiper-pagination-bullet-horizontal-gap: 10px;
    margin: 5px 7px;
    opacity: 1;
    background-color: transparent;
    border: 1px solid #1982c4;
    color: #E4E4E4;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.testimonial-silder .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.testimonial-silder .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.testimonial-silder .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #1982c4;
    border-color: #1982c4;
}

.testimonial-block {
    /* background-color: #fff; */
    /* overflow: hidden; */
    border-radius: 13px;
    height: 100%;
    padding: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.testimonial-block::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    border: 1px solid #1982c4;
    background-color: #ffffff;
    height: calc(100% - 50px);
    z-index: -1;
    border-radius: 13px;
    z-index: -1;
}

.testimonial-silder {
    margin-top: 30px;
    overflow: visible;
}

.client-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 2px solid #1982c4;
}

.testimonial-block p {
    color: #2f3369;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.testimonial-block h6 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    /* color: #032f4b; */
    color: #1982c4;
    margin-bottom: 0;
}


/*----------------call-to-action--------------*/

.call-to-action {
    background-image: url(../images/hero-img-1.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    position: relative;
    background-attachment: fixed;
    z-index: 0;
}

.call-to-action::after {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 51, 105, 0.8);
    z-index: -1;
}

.call-to-action h1 {
    font-size: 48px;
    line-height: 63px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.call-to-action p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}


/*---------------footer-----------------*/

.footer {
    background-color: #ffffff;
    position: relative;
    z-index: 0;
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid #021f32;
}

.company-brief p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 0;
    color: #021f32;
    margin-top: 30px;
    padding-right: 40px;
}

.quick-links h6 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: #1982c4;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.quick-links ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-links ul li {
    list-style: none;
}

.quick-links ul li a {
    font-size: 16px;
    line-height: 22px;
    color: #021f32;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    text-transform: capitalize;
}

.quick-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #c02728;
    transition: all 0.3s;
}

.footer-logo img {
    /* width: 200px; */
    height: 140px;
    object-fit: contain;
}

.address-info h5 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: #1982c4;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.address-info {
    margin-bottom: 50px;
}

.address-info p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
    color: #021f32;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1982c4;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: #fff;
    font-size: 14px;
}

.contact-info a {
    font-size: 16px;
    line-height: 16px;
    color: #021f32;
    text-decoration: none;
    font-weight: 400;
    position: relative;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #c02728;
    transition: all 0.3s;
}

.contact-info.phone {
    margin-bottom: 20px;
}

.footer .social-media {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.footer .social-media a {
    text-decoration: none;
    width: 35px;
    height: 35px;
    background-color: #1982c4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s;
    transform: translateY(0);
}

.footer .social-media a img {
    width: 20px;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-content p {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #021f32;
    margin-bottom: 0;
}

.terms-policy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.terms-policy a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #021f32;
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-bottom {
    padding: 12px 0;
}

.go-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: all 0.9s;
    background-color: #fff;
    transform: translateY(30px);
    border: 1px solid #1982c4;
}

.go-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.go-top a {
    text-decoration: none;
    cursor: pointer;
}

.go-top a i {
    font-size: 22px;
    color: #1982c4;
}

.shape-1 {
    position: absolute;
    bottom: -150px;
    left: 0;
    height: 400px;
    opacity: 0.8;
    z-index: -1;
}

.shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    height: 400px;
    opacity: 0.8;
    z-index: -1;
}


/*-------------------inner-hero-section-----------------*/

.inner-hero-section {
    height: 60vh;
    background-image: url(../images/inner-hero-bg.jpg);
    background-position: 0 65%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin: 20px 20px 0;
    border-radius: 40px;
    overflow: hidden;
    z-index: 0;
    display: flex;
    justify-content: center;
}

.inner-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(157, 155, 155, 0.4) 100%);
    z-index: -1;
}

.inner-hero-content .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.inner-hero-section .breadcrumb a {
    text-decoration: none;
    color: #2f3369;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 17px;
    line-height: 17px;
    padding: 0 10px;
    transition: all 0.3s;
}

.inner-hero-section .breadcrumb span i {
    color: #111111;
}

.inner-hero-section .breadcrumb p {
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
    font-size: 17px;
    line-height: 17px;
    padding: 0 10px;
}

.inner-hero-section h1 {
    color: #2f3369;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: capitalize;
}

.inner-hero-section .breadcrumb a i {
    margin-top: -2px;
}

.inner-hero-content {
    margin-top: 20%;
}

.mission-vission-block {
    background-color: transparent;
    border: 1px solid #418dcc;
    border-radius: 13px;
    padding: 50px 30px;
    text-align: center;
    height: 100%;
}

.mission-vission-block-img img {
    width: 80px;
    margin-bottom: 30px;
}

.mission-vission-content h1 {
    color: #418dcc;
    font-weight: 700;
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 20px;
}

.mission-vission-content p {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}


/*-------------contact page---------------*/

.office-map {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-form-section {
    background-color: transparent;
    padding: 50px;
    border: 1px solid #1982c4;
    border-radius: 30px;
}

.contact-form-section .section-header {
    text-align: start;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: #d5efff;
    border: 1px solid #1982c4;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #021f32;
    padding: 12px 15px;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    font-size: 14px;
    line-height: 14px;
}

.form-control:focus {
    box-shadow: none;
}

.form-field .form-label {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 12px;
}

.contact-form {
    margin-top: 30px;
}

.contact-section .contact-form-section .contact-form .row>[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.contact-section .contact-form-section .contact-form .row {
    margin: 0 -10px;
}

.header-text h6 {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #1982c4;
    text-transform: uppercase;
}

.header-text h1 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 42px;
    line-height: 42px;
    color: #1982c4;
    text-transform: uppercase;
}

.contact-form .btn-view-all {
    width: 100%;
}

.contact-form .view-all-button {
    margin-top: 10px;
}


/*-----------product page-----------*/

.products-section .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #1982c4;
    overflow: hidden;
    border-radius: 13px;
    background-color: rgba(25, 130, 196, 0.1);
}

.products-section .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.products-section .accordion-item .accordion-button {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    color: #021f32;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}

.product-images {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-img-box {
    width: 25%;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid #021f32;
    padding: 10px;
}

.product-img-box img {
    border-radius: 13px;
}

.product-img-box h6 {
    color: #021f32;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
    text-align: center;
    margin-top: 10px;
    text-transform: capitalize;
}

.products-section .accordion-item .accordion-body {
    padding-top: 0;
}

.product-page .product-box {
    border: 2px solid #2f3369;
}

.product-detail-info h1 {
    font-weight: 700;
    color: #418dcc;
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.product-detail-info p {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    margin-top: 20px;
}

.product-detail-info ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 25px;
}

.product-detail-info ul h5 {
    color: #1982c4;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.product-detail-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    margin-top: 0;
    padding-bottom: 15px;
}

.product-detail-info ul li:last-child {
    padding-bottom: 0;
}

.product-detail-info ul li img {
    width: 16px;
    flex-shrink: 0;
}

.other-product-box {
    background-color: #fff;
    border-radius: 13px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.other-product-box h6 {
    color: #2f3369;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.other-products-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.other-product-box .other-products-row:last-child {
    margin-bottom: 0;
}

.other-products-row img {
    border-radius: 10px;
    width: 80px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.other-products-row a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s;
}

.product-detail-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-detail-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}


/*----------pre load-------------*/

#pre-load {
    background-color: #E4E4E4;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 9999;
}

.loader .loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid #e4e4e4;
    border-radius: 50%;
}

.loader .loader-container:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-top: 3px solid #2f3369;
    border-radius: 50%;
    animation: loaderspin 1.8s infinite ease-in-out;
    -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

.loader .loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    text-align: center;
}

.loader .loader-icon img {
    animation: loaderpulse alternate 900ms infinite;
    width: 100px;
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

#offcanvasNavbar .offcanvas-body {
    justify-content: center;
}

.about-content {
    padding-left: 35px;
}

.other-product-box {
    margin-right: 40px;
}

.normal-button .btn-view-all {
    background-color: #2f3369;
    color: #fff;
}

.view-all-button.normal-button {
    text-align: start;
}

.view-all-button.inquiry-button .btn-view-all {
    display: flex;
    background-color: #2f3369;
    color: #fff;
    justify-content: center;
}

.types-product-box {
    display: flex;
    align-items: start;
    gap: 20px;
}

.product-detail-info .types-product-box p {
    font-size: 15px;
    line-height: 24px;
    margin-top: 0;
}

.types-product-img img {
    border-radius: 13px;
    width: 260px;
}

.types-product-img {
    flex-shrink: 0;
}

.prodoct-type-block .accordion-item {
    margin-bottom: 20px;
    border: 2px solid #418dcc;
    border-radius: 13px;
}

.prodoct-type-block .accordion-item .accordion-button {
    background-color: transparent;
    border-radius: 13px;
    box-shadow: none;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #2f3369;
    text-transform: uppercase;
    padding: 20px;
}

.prodoct-type-block .accordion-item .accordion-body {
    padding-top: 0;
}

.product-detail-info .prodoct-type-block .accordion-body ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 15px;
    column-count: 2;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232f3369' stroke-linecap='round' stroke-linejoin='round'><path d='M2 5L8 11L14 5'/></svg>");
}

.product-detail-info ul.type-list {
    margin-top: 50px;
}

.scrap-type-block {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.scrap-type-box {
    border: 1px solid #1982c4;
    padding: 10px;
    border-radius: 13px;
}

.scrap-type-box img {
    border-radius: 13px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.scrap-type-box h6 {
    font-weight: 600;
    text-align: center;
    font-size: 17px;
    line-height: 17px;
    color: #111111;
    margin-bottom: 0;
    padding: 15px 0 5px;
    text-transform: capitalize;
}