/*-- Blue Color : #00476e --*/


/*-- Orange Color : #e9542f --*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: "UnivaNova";
    src: url(../fonts/UnivaNova-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "UnivaNova";
    src: url(../fonts/UnivaNova-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: "UnivaNova";
    src: url(../fonts/UnivaNova-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "UnivaNova";
    src: url(../fonts/UnivaNova-Heavy.ttf);
    font-weight: 800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #ededed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "UnivaNova";
}

::-webkit-scrollbar-track {
    background-color: #d1d1d1;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #e9542f;
}

::placeholder {
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.custom-padding {
    padding: 90px 0;
}


/*---------- Loader ----------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #00476e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 230px;
    position: relative;
    width: 230px;
    border-radius: 100%;
}

.loading-container {
    margin: 0 auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent #e9542f transparent #e9542f;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*---------- Header ----------*/

.page-header {
    position: fixed;
    /* background-color: rgba(255, 255, 255, 0.8); */
    width: 100%;
    transition: all 0.3s linear;
    z-index: 99;
    padding: 15px 0;
    top: 0;
}

.page-header.stick {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

.header.hide {
    transform: translateY(-100%);
}

.desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 200px;
    transition: all 0.3s;
}

.header-links-block .header-link-list {
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-links-block ul li {
    list-style: none;
    min-width: 135px;
}

.header-links-block ul li .btn-header-link {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    transition: all 0.5s;
    padding-left: 0;
}

.page-header.stick .header-links-block ul li .btn-header-link {
    color: #00476e;
}

.header-links-block ul li .btn-header-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #e9542f;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s;
}

.header-links-block ul li .btn-header-link.active {
    padding-left: 20px;
}

.header-links-block ul li .btn-header-link.active::before {
    opacity: 1;
}

.page-header .logo-original {
    display: none;
}

.page-header.stick .logo-original {
    display: inline-block;
}

.page-header.stick .logo-white {
    display: none;
}


/*----------------hero section----------*/

.hero {
    height: 100dvh;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0.8) 0%, rgba(25, 35, 36, 0.9) 80.94%);
    /* background-color: rgba(0, 71, 110, 0.85); */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.hero-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-video video[poster] {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text h1 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 800;
    font-size: 54px;
    line-height: 60px;
    text-transform: uppercase;
}

.page-loaded .hero-text h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-text p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    margin-top: 20px;
}

.page-loaded .hero-text p {
    opacity: 1;
    transform: translateY(0);
}

.hero-text .know-more {
    margin-top: 30px;
}

.page-loaded .hero-text .know-more {
    opacity: 1;
    transform: translateY(0);
}

.know-more a {
    text-decoration: none;
    color: #fff;
    padding: 5px 5px 5px 25px;
    border-radius: 50px;
    font-size: 15px;
    line-height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease-in-out;
    position: relative;
    font-weight: 700;
    /* background: linear-gradient(90deg, rgb(0 121 187) 0%, rgba(233, 84, 47, 1) 100%); */
    background-color: #00476e;
    transform: translateY(0);
    text-transform: uppercase;
    gap: 10px;
    min-width: 150px;
}

.know-more a .button-icon {
    width: 42px;
    height: 42px;
    background-color: #e9542f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.know-more a .button-icon i {
    font-size: 18px;
    transform: rotate(-45deg);
    transition: all 0.5s;
}

.down-arrow-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.down-arrow a img {
    width: 70px;
}


/*------- About Section --------*/

.about-img-container {
    position: relative;
    display: flex;
    justify-content: end;
    padding-top: 90px;
}

.about-image-block-2 {
    position: absolute;
    bottom: 50px;
    left: 0;
    z-index: 0;
}

.about-img-2 {
    width: 320px;
    border-radius: 200px;
    height: 190px;
    object-fit: cover;
}

.about-image-block-1 {
    position: relative;
    width: 100%;
    max-width: 390px;
    text-align: right;
    z-index: 1;
}

.about-img-1 {
    border: 8px solid #ededed;
    border-radius: 180px;
}

.about-logo-symbol {
    position: absolute;
    top: 0;
    left: -70px;
    transform: rotate(10deg);
    opacity: 0.2;
}

.section-title p {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    color: #e9542f;
    font-weight: 600;
    font-size: 14px;
    line-height: 13px;
    text-transform: capitalize;
}

.section-title p svg {
    width: 16px;
    height: 16px;
}

.section-title h1 {
    margin-bottom: 0;
    margin-top: 10px;
    color: #00476e;
    font-size: 44px;
    line-height: 54px;
    font-weight: 700;
    text-transform: capitalize;
}

.section-title h1 span {
    color: #e9542f;
    font-family: "UnivaNova";
}

.section-content-block {
    padding-left: 30px;
}

.section-content p {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    margin-top: 30px;
    letter-spacing: 0.5px;
}

.section-content .know-more {
    margin-top: 40px;
}

.about-logo-symbol.aos-animate {
    opacity: 0.2 !important;
}


/*------- Product Section --------*/

.product-section {
    background-color: #00476e;
    position: relative;
    z-index: 0;
}

.product-img {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-section .section-title h1 {
    color: #fff;
}

.product-section .section-title p svg path {
    fill: #fff;
}

.product-section .section-content p {
    color: #fff;
}

.product-section .know-more a {
    background-color: #fff;
    color: #00476e;
}

.product-section .know-more a i {
    color: #fff;
}


/*------- Client Section --------*/

.client-section {
    background-color: transparent;
}

.clients-logos .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.clients-logos {
    padding: 70px 0;
}

.clients-logos .swiper-slide {
    text-align: center;
    flex: 0 0 auto;
    width: 150px;
}

.clients-logos .swiper-slide img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    width: 100%;
}


/*------- Contact Section --------*/

.contact-section-box {
    border-radius: 40px;
    overflow: hidden;
    background-image: url(../images/contact-bg.jpg);
    background-position: top top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 50px;
    position: relative;
    background-attachment: fixed;
    z-index: 0;
    margin-top: 50px;
}

.contact-section-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 auto;
}

.contact-details .contact-box {
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 20px;
    align-items: center;
    gap: 12px;
    border: 1px solid #00476e;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.5s;
    position: relative;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.contact-icon svg path {
    fill: #00476e;
}

.contact-box .contact-text {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-transform: capitalize;
    margin-bottom: 0;
    font-family: "UnivaNova";
}

.contact-form {
    width: 50%;
    margin: 0 auto;
    background: rgba(0, 71, 110, 0.25);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.contact-form .section-title h1 {
    color: #fff;
}

.contact-form .form-field .form-control {
    box-shadow: none;
    background-color: transparent;
    border: 1px solid #3797cb;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    padding: 14px 17px;
}

.form-control::placeholder {
    color: #ababab;
}

.contact-form .form-field {
    margin-bottom: 15px;
}

.contact-form .form-field:last-child {
    margin-bottom: 0;
}

.contact-form form {
    margin-top: 30px;
}

.contact-form .know-more {
    text-align: center;
}

.contact-section-box .know-more a {
    background-color: #fff;
    color: #00476e;
}

.contact-section-box .know-more a i {
    color: #fff;
}


/*------- footer --------*/

.footer {
    padding: 50px 0 20px;
    background: url(../images/design-bg-2.png) #00476e;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 75%;
}

.footer-comoany-detail .footer-logo {
    width: 250px;
}

.footer-comoany-detail p {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
    margin-top: 30px;
    letter-spacing: 0.5px;
}

.social-media-platform {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.social-media-platform .social-media-link {
    text-decoration: none;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    flex-shrink: 0;
    transition: all 0.5s;
}

.social-media-platform .social-media-link img {
    width: 15px;
    flex-shrink: 0;
}

.quick-links h4 {
    margin-bottom: 0;
    text-transform: uppercase;
    color: #e9542f;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}

.quick-links ul {
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 30px;
}

.quick-links ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quick-links ul li svg {
    width: 24px;
    height: 24px;
}

.quick-links ul li svg path {
    fill: #fff;
}

.quick-links ul li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-bottom {
    border-top: 1px solid #ededed;
    padding-top: 20px;
    margin-top: 30px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
}

.bg-design-1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 750px;
    opacity: 0.6;
}

.bg-design-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 500px;
    mix-blend-mode: color-burn;
}

.bg-design-3 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 500px;
    mix-blend-mode: color-burn;
}

.go-top {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.9s;
    background-color: #00476e;
    transform: translateY(30px);
    border: 1px solid #fff;
}

.go-top a {
    text-decoration: none;
    cursor: pointer;
}

.go-top a i {
    font-size: 22px;
    color: #fff;
}

.go-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

#popUp {
    position: fixed;
    width: 300px;
    height: auto;
    bottom: 10%;
    margin-left: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 13;
    right: 0;
}

#popUp .close {
    color: #e9542f;
    right: 12px;
    top: 4px;
    position: absolute;
    font-size: 20px;
    cursor: pointer;
}

#plus {
    position: fixed;
    color: #fff;
    bottom: 50%;
    font-size: 17px;
    margin-left: -425px;
    -webkit-transition: all 1.25s ease;
    -moz-transition: all 1.25s ease;
    -o-transition: all 1.25s ease;
    transition: all 1.25s ease;
    cursor: pointer;
    text-align: right;
    letter-spacing: 1px;
    z-index: 8;
    right: -34px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00476e;
    transform: rotate(90deg);
    padding: 5px 10px;
    border: 1px solid #fff;
    border-top: 0;
}

#plus i {
    margin-right: 10px;
}

#popUp .contact__form-wrap {
    padding: 20px 20px 20px;
}

#popUp .contact__form-wrap .title {
    margin-bottom: 24px;
    color: #00476e;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    text-transform: capitalize;
}

#popUp button {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.contact__form-wrap {
    background: #f8f8f8;
    border: 1px solid var(--tg-border-1);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    padding: 35px 40px 40px;
    margin-left: 30px;
}

#popUp .contact-form {
    width: 100%;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

#popUp .contact-form .form-field .form-control {
    color: #000000;
    padding: 12px 15px;
}

#popUp .contact-form form {
    margin-top: 0;
}

#popUp .know-more a .button-icon {
    width: 36px;
    height: 36px;
}

#popUp .know-more a {
    font-size: 14px;
    line-height: 15px;
    min-width: unset;
    padding: 5px 5px 5px 20px;
}

#popUp .contact-form .form-field .form-control::placeholder {
    font-size: 13px;
    line-height: 13px;
}


/*------- Testimonials --------*/

.testimonila-section {
    background-color: #fff;
}

.testimonial-section-content {
    padding: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.testimonial-section-image {
    height: 100%;
}

.testimonial-section-image img {
    width: 100%;
    height: 100%;
    /* aspect-ratio: 1 / 0.82; */
    object-fit: cover;
}

.testimonials-block {
    margin-top: 50px;
}

.testimonial-box .ratings {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-box .ratings i {
    color: #00476e;
}

.testimonial-box p {
    font-size: 22px;
    line-height: 38px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0;
    margin-top: 20px;
}

.testimonial-box h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    text-transform: capitalize;
    color: #00476e;
    margin-bottom: 0;
    margin-top: 20px
}

.quote-img {
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: -1;
    width: 300px;
    opacity: 0.1;
}


/*------- inner-page-hero-section --------*/

.inner-page-hero-section {
    padding: 100px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    height: 45vh;
    border-radius: 0 0 150px 150px;
    overflow: hidden;
    background-color: rgba(0, 71, 110, 0.9);
}

.inner-page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/inner-page-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 0.2;
}

.inner-page-hero-content {
    text-align: center;
}

.inner-page-hero-content h1 {
    margin-bottom: 0;
    color: #fff;
    font-size: 54px;
    line-height: 54px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 5px 20px;
    background-color: rgba(233, 84, 47, 0.75);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.inner-page-hero-content .breadcrumb a,
.inner-page-hero-content .breadcrumb p {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.inner-page-hero-content .breadcrumb a {
    text-decoration: none;
    font-weight: 700;
    color: #00476e;
}

.about-page .section-content-block {
    padding: 0;
    text-align: center;
}

.about-page-image {
    width: 80%;
    margin: 60px auto;
}

.about-page-image img {
    width: 100%;
    border-radius: 70px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}

.about-page .section-content p {
    font-weight: 500;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
}

.section-content.about-page-other-content p:first-child {
    margin-top: 0;
}

.mission-vision-section {
    background-color: #00476e;
}

.mission-vision-block p {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.mission-vision-block ul {
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 20px;
}

.mission-vision-block ul li {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 24px;
}

.mission-vision-block ul li:last-child {
    margin-bottom: 0;
}

.mission-vision-block ul li svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.mission-vision-block ul li svg path {
    fill: #e9542f;
}

.mission-vision-block ul li p {
    margin-top: 0;
}

.mission-vision-content {
    padding-left: 60px;
}

.mission-vision-block.mission {
    margin-top: 50px;
}

.mission-vision-section .section-title h1 {
    color: #fff;
}

.mission-vision-image {
    height: 100%;
}

.mission-vision-image img {
    height: 100%;
    object-fit: contain;
}

.why-us-block {
    margin-top: 50px;
}

.why-us-box .box-icon img {
    width: 80px;
}

.why-us-box .why-us-content h5 {
    color: #e9542f;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 0;
    text-align: center;
    text-transform: capitalize;
}

.why-us-box .why-us-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #00476e;
    margin-bottom: 0;
    text-align: center;
    margin-top: 15px;
}

.why-us-box {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 13px;
    padding: 30px 20px 20px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.5s;
}

.why-us-content {
    margin-top: 20px;
}

.why-us-block .row>[class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.why-us-block .row {
    margin: 0 -15px;
}

.why-us-block .row>[class*='col-']:nth-child(4),
.why-us-block .row>[class*='col-']:nth-child(5),
.why-us-block .row>[class*='col-']:nth-child(6) {
    margin-bottom: 0;
}

.why-us-section {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.bg-design-5 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    z-index: -1;
    width: 700px;
    opacity: 0.07;
}

.aos-animate.bg-design-5 {
    opacity: 0.05 !important;
}


/*------- product-page --------*/

.product-section.product-page {
    background-color: transparent;
}

.product-section.product-page .section-title p svg path {
    fill: #00476e;
}

.product-section.product-page .section-title h1 {
    color: #00476e;
}

.product-section.product-page .section-content p {
    color: #000;
    font-size: 18px;
    line-height: 28px;
}

.product-page .product-content-block ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 40px;
}

.product-page .product-content-block ul h5 {
    color: #00476e;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
}

.product-page .product-content-block ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 17px;
    line-height: 17px;
    margin-bottom: 7px;
}

.product-page .product-content-block ul li:last-child {
    margin-bottom: 0;
}

.product-page .product-content-block ul li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.product-page .product-content-block ul li svg path {
    fill: #e9542f;
}

.product-parts {
    margin-top: 50px;
}

.products-parts-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    border-radius: 30px;
    padding: 15px 30px;
    border: 3px solid #00476e;
    margin-bottom: 30px;
}

.products-parts-details h6 {
    color: #00476e;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.products-parts-details ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

.products-parts-details ul li {
    list-style: none;
    gap: 15px;
    margin-bottom: 7px;
}

.products-parts-details ul li p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
}

.products-parts-details ul li:last-child {
    margin-bottom: 0;
}

.products-parts-details ul li strong {
    white-space: nowrap;
}

.products-parts-details ul li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.products-parts-details ul li svg path {
    fill: #e9542f;
}

.product-parts-image img {
    width: 250px;
}

.products-parts-details {
    width: 70%;
}

.product-parts-image {
    width: 30%;
    text-align: center;
}

.product-parts .row .col-lg-10 .products-parts-box:last-child {
    margin-bottom: 0;
}

.product-page .product-img {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.product-page .product-img img {
    margin: 0 auto;
    width: 400px;
}


/*------- contact-page --------*/

.contact-page-content-block {
    margin-top: 30px;
}

.contact-page-content-block .contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-page-content-block .contact-box:last-child {
    margin-bottom: 0;
}

.contact-page-content-block .contact-icon svg {
    width: 34px;
    height: 34px;
}

.contact-page-content-block .contact-box .contact-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    transition: all 0.3s;
}

.contact-form.contact-page-form {
    margin: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
}

.contact-form.contact-page-form .form-field .form-control {
    color: #00476e;
}

.contact-map {
    margin-top: 60px;
    height: 500px;
    border: 2px solid #00476e;
    border-radius: 30px;
    padding: 20px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.contact-page-content {
    padding-right: 30px;
}

.contact-form.contact-page-form form {
    margin-top: 0;
}

.contact-page-content-block .contact-icon {
    background-color: #00476e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-page-content-block .contact-icon svg {
    width: 30px;
    height: 30px;
}

.contact-page-content-block .contact-icon svg path {
    fill: #fff;
}
label.error {
    color: red;
}