@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    /* background-color: #d9d9d9; */
}
* {
    box-sizing: border-box;
}
a {
    text-decoration: none !important;
}

:root {
    --poppins-font: 'Poppins', sans-serif;
    --oswald-font: 'Oswald', sans-serif;
}

.banner-heading.text {
    width: 100%;
    position: relative;
    z-index: 9;
}
.banner-heading.text h2 {
    font-family: var(--oswald-font);
    text-align: center;
    color: #fff;
    font-size: 35px;
    line-height: 40px;
    margin: 0 0 0px 0;
    text-transform: uppercase;
}

/* Loader CSS Start */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
.page-loader .overlayDoor:before, .page-loader .overlayDoor:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: #111;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    transition-delay: 0.8s;
}
.page-loader .overlayDoor:before {
    left: 0;
}
.page-loader .overlayDoor:after {
    right: 0;
}
.overlay.loaded .overlayDoor:before {
    left: -50%;
}
.overlay.loaded .overlayDoor:after {
    right: -50%;
}
.overlay.loaded .overlayContent {
    opacity: 0;
    margin-top: -15px;
}
.page-loader .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    -webkit-animation: spinInner 1s linear infinite;
            animation: spinInner 1s linear infinite;
}
  
@-webkit-keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
  
@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
@-webkit-keyframes spinInner {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-720deg);
    }
}
@keyframes spinInner {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-720deg);
    }
}

/* Loader CSS End */




.btn {
    padding: 15px 30px;
    font-size: 14px;
    color: #fff;
    border: 2px solid #fff;
    font-family: var(--poppins-font);
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}
.btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #363382;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border-radius: 0px;
}
.btn:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.btn:hover {
    color: #fff;
    border: 2px solid #363382;
}

.pa-top {
    padding-top: 100px;
}

.title {
    width: 100%;
    margin: 0 0 40px 0;
}
.title h2 {
    width: 100%;
    text-align: center;
    font-size: 50px;
    line-height: 55px;
    color: #000;
    font-family: var(--oswald-font);
    position: relative;
    margin-top: 0;
}
.title h2:before {
    position: absolute;
    content: '';
    width: 200px;
    height: 5px;
    background-color: #363382;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}
.header {
    width: 100%;
    padding: 20px 20px;
}
section.header {
    position: absolute;
    z-index: 99;
    background-color: #fff;
    transition: all 0.3s linear !important;
}
.header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .menu-sec ul {
    padding: 0;
    display: flex;
    margin: 0;
}
.header .menu-sec ul li {
    list-style: none;
    margin: 0 15px;
}
.header .menu-sec ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    font-family: var(--poppins-font);
    transition: all 0.2s ease-in-out;
}
.header .menu-sec ul li a:hover {
    color: #363382;
}
.header .toggle-button {
    width: 50px;
    height: 50px;
    display: none;
}
.header .toggle-button-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
}
.header .toggle-button-inner>span {
    width: 40px;
    height: 4px;
    background-color: #000;
    margin: 3px 0;
    display: block;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}
.header .header-inner .logo-sec a>img {
    width: 150px;
    transition: all 0.3s linear !important;
}

/* Menu Toggle Css Start */

.menubar-btn-area {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.menubar-btn {
    width: 34px;
    height: 21px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
.menubar-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.menubar-btn span:nth-child(1) {
    top: 2px;
}
.menubar-btn span:nth-child(2),
.menubar-btn span:nth-child(3) {
    top: 10px;
}
.menubar-btn span:nth-child(4) {
    bottom: 0px;
}
.menubar-btn.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}
.menubar-btn.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menubar-btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.menubar-btn.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

/* Menu Toggle Css End */

/* Header Sticky Css Start */

.header.sticky {
    position: fixed;
    padding: 10px 20px;
    /* background-color: #000; */
    box-shadow: 0px -6px 16px #363382;
}
.header.sticky .header-inner .logo-sec a>img {
    width: 120px;
}

/* Header Sticky Css End */

section.banner-sec {
    height: 100vh;
}
.banner-sec-slider, .banner-sec .banner-sec-inner {
    height: 100%;
}
.banner-slider h2 {
    font-family: var(--oswald-font);
    text-align: center;
    color: #fff;
    font-size: 35px;
    line-height: 40px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}
.banner-slider p {
    width: 100%;
    text-align: center;
    font-family: var(--poppins-font);
    font-size: 26px;
    line-height: 30px;
    color: #fff;
    margin: 0;
}
.banner-slider {
    padding: 100px 40px;
}
.banner-slider .banner-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-slider {
    background-color: #000000a1;
    background-blend-mode: overlay;
}
.banner-1 {
    background-image: url(../image/banner_image_1.jpg);
    background-size: cover;
    height: 100%;
}
.banner-2 {
    background-image: url(../image/banner_image_2.png);
    background-size: cover;
    height: 100%;
}
.banner-3 {
    background-image: url(../image/banner_image_3.png);
    background-size: cover;
    height: 100%;
}
.banner-sec-inner .swiper-pagination span.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.6;
    height: 15px;
    width: 15px;
}
.banner-sec-inner .swiper-pagination span.swiper-pagination-bullet-active-main {
    background-color: #363382;
    opacity: 1;
}
.banner-sec-inner .swiper-pagination {
    bottom: 80px;
}
.banner-sec-inner .swiper-button-prev {
    left: 20px;
}
.banner-sec-inner .swiper-button-next {
    right: 20px;
}
.banner-sec-inner .swiper-button-prev::after,
.banner-sec-inner .swiper-button-next:after {
    color: #fff;
}
.banner-sec-inner .autoplay-progress {
    position: absolute;
    right: 30px;
    bottom: 64px;
    z-index: 10;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}
.banner-sec-inner .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: #fff;
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}
.banner-sec-inner .autoplay-progress span {
    font-family: var(--oswald-font);
    font-size: 18px;
}

.about-sec .image-sec img {
    width: 100%;
}
.about-sec .about-content p {
    width: 100%;
    text-align: left;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-family: var(--poppins-font);
    margin: 0 0 20px 0;
}
.about-sec .about-content ul {
    padding: 0;
    margin: 0;
}
.about-sec .about-content ul li {
    list-style: none;
    margin: 10px 0;
    font-size: 18px;
    font-family: var(--poppins-font);
    padding-left: 30px;
    position: relative;
    display: flex;
    align-items: center;
}
.about-sec .about-content ul li:before {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #363382;
    border-radius: 50%;
    left: 0;
}
.about-sec .about-content ul li:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #363382;
    border-radius: 50%;
    left: 4px;
}
section.about-sec .row {
    display: flex;
    align-items: center;
    margin: 60px 0 0 0;
}
section.about-sec .row>.col-md-6:first-child {
    padding-left: 0;
}
section.about-sec .row>.col-md-6:nth-child(2) {
    width: 640px;
    margin-right: auto;
}
.about-sec .image-sec {
    border-radius: 0 30px 30px 0;
    overflow: hidden;
}

.product-content-sec-inner {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 20px;
}
.product-content-sec-inner .product-label {
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 51%);
    background-color: #363382;
    padding: 12px 0;
    margin-top: -44px;
}
.product-content-sec-inner .product-label h3 {
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-family: var(--oswald-font);
    margin: 0;
}
.product-image-sec>img {
    width: 100%;
}
.product-content-sec-main {
    padding: 0 15px;
    margin-top: -20px;
    z-index: 9;
    position: relative;
}
.product-image-sec {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.product-image-sec:before {
    position: absolute;
    content: '';
    background-color: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.product-content-sec-inner h4 {
    width: 100%;
    text-align: center;
    font-family: var(--oswald-font);
    font-size: 28px;
    line-height: normal;
    margin: 20px 0 20px 0;
    color: #000;
}
.product-content-sec-inner a.product-btn,
.all-product-sec a.all-product-btn {
    color: #363382;
    font-weight: 600;
    margin: 0 auto;
    display: table;
    border: 2px solid #363382;
}
.product-content-sec-inner a.product-btn:hover,
.all-product-sec a.all-product-btn:hover {
    color: #fff;
    border: 2px solid #363382;
}
.produc-sec-slider {
    padding-bottom: 60px;
}
.produc-sec-slider .swiper-pagination {
    bottom: 0;
}
.produc-sec-slider .swiper-pagination span.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    border: 2px solid #ccc;
    background-color: transparent;
    opacity: 1;
    position: relative;
}
.produc-sec-slider .swiper-pagination span.swiper-pagination-bullet:before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 3px;
}
.produc-sec-slider .swiper-pagination span.swiper-pagination-bullet-active {
    border: 2px solid #363382;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    /* border: 2px solid #ccc; */
    background-color: transparent;
    opacity: 1;
    position: relative;
}
.produc-sec-slider .swiper-pagination span.swiper-pagination-bullet-active:before {
    background-color: #363382;
}
.product-sec-inner {
    margin: 60px 0 0 0;
}
.all-product-sec {
    margin: 40px 0 0 0;
}
.working-us-sec-inner {
    width: 100%;
    position: relative;
}
.working-us-sec-inner .row {
    margin: 60px 0 0 0;
    display: flex;
}
.working-us-sec-inner .left-part {
    /* background-color: #363382; */
    padding: 60px 40px;
    height: auto;
    display: flex;
    align-items: center;
    background-image: -webkit-linear-gradient(0deg, #000 -40%, #363382 100%);
}
.working-us-sec-inner .working-content h2 {
    width: 100%;
    text-align: left;
    font-family: var(--poppins-font);
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    margin: 0 0 20px 0;
}
.working-us-sec-inner .working-content p {
    width: 100%;
    text-align: left;
    font-family: var(--poppins-font);
    font-size: 18px;
    line-height: 26px;
    color: #fff;
}
.working-us-sec-inner .right-part {
    padding: 0;
}
.working-us-sec-inner .right-part .image-sec img {
    width: 100%;
    height: 100%;
}
.working-us-sec-inner .right-part .image-sec {
    height: 100%;
}

.product-banner-main-sec,
.contact-banner-main-sec {
    width: 100%;
    background-image: url(../image/product-banner.jpg);
    background-size: cover;
    padding: 110px 0 0 0 !important;
    position: relative;
}
.contact-banner-main-sec {
    background-image: url(../image/contact-banner.jpg);
    background-position: center;
}
.product-banner-inner-sec,
.contact-banner-inner-sec {
    padding: 100px 0;
}
.product-banner-main-sec:before,
.contact-banner-main-sec:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    /* background-image: -webkit-linear-gradient(0deg, #363382 -20%, #000000 100%); */
    background-color: #000;
    left: 0;
    top: 0;
    opacity: 0.70;
}
.product-list-inner-sec>.container>.row {
    display: flex;
    flex-wrap: wrap;
}
.product-list-inner-sec .poduct-box-inner .image-part img {
    width: 100%;
}
.product-list-inner-sec .product-title-sec h3 {
    margin: 20px 10px 20px 10px;
}
.product-list-inner-sec .product-title-sec h3 a {
    width: 100%;
    text-align: center;
    font-family: var(--oswald-font);
    font-size: 28px;
    color: #000;
    display: block;
    line-height: 38px;
    margin: 0;
    transition: all 0.2s linear;
}
.product-list-inner-sec .product-title-sec h3 a:hover {
    color: #363382;
}
.product-list-inner-sec .poduct-box-inner {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 40%);
}
.product-list-inner-sec .product-box {
    display: flex;
    height: auto;
    margin: 15px 0;
}
.contact-inner-sec {
    width: 100%;
}
.contact-inner-sec .location {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}
.contact-inner-sec form .input-field label {
    text-align: left;
    font-size: 16px;
    font-family: var(--poppins-font);
    padding: 0;
    margin: 0 0 5px 0;
    color: #000;
    font-weight: normal;
}
.contact-inner-sec .right-part {
    background-color: rgb(4 152 204 / 40%);
    padding: 40px;
    border-radius: 10px;
}
.contact-inner-sec form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.contact-inner-sec form .input-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 50%;
    padding: 0 10px;
}
.contact-inner-sec form .input-field:nth-child(5),
.contact-inner-sec form .input-field:nth-child(6) {
    width: 100%;
}
.contact-inner-sec form .input-field:last-child {
    margin-bottom: 0;
}
.contact-inner-sec form .input-field input::placeholder,
.contact-inner-sec form .input-field textarea::placeholder {
    font-family: var(--poppins-font);
    color: #000;
}
.contact-inner-sec form .input-field input,
.contact-inner-sec form .input-field textarea {
    width: 100%;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--poppins-font);
    font-size: 15px;
    line-height: 30px;
    color: #000;
    border: 2px solid transparent;
    transition: all 0.2s linear;
}
.contact-inner-sec form .input-field input:focus,
.contact-inner-sec form .input-field textarea:focus {
    outline: none;
    border: 2px solid #363382;
}
.contact-inner-sec form .input-field textarea {
    resize: vertical;
    min-height: 200px;
}
.contact-inner-sec input::-webkit-outer-spin-button,
.contact-inner-sec input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contact-inner-sec input[type=number] {
    -moz-appearance: textfield;
}
.contact-inner-sec>.row {
    display: flex;
}
.contact-inner-sec .left-part {
    display: flex;
    flex-direction: column;
    height: auto;
}
.contact-submit-btn {
    padding: 10px 40px !important;
    font-size: 14px !important;
    color: #363382 !important;
    border: 2px solid #363382 !important;
    font-family: var(--poppins-font) !important;
    border-radius: 6px !important;
    transition: all 0.2s ease-in-out !important;
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
    background-color: transparent;
    width: auto !important;
    display: table !important;
    margin: 0 0 0 auto;
}
.contact-submit-btn:hover {
    background-color: #363382;
    color: #fff !important;
}

section.product-sec .swiper-slide {
    height: auto;
}
section.product-sec .product-box-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}
section.product-sec .product-box-main {
    height: 100%;
    display: flex;
}
/* section.product-sec .product-image-sec,
.product-content-sec-inner,
.product-content-sec-main {
    height: 100%;
} */
.product-content-sec-inner {
    display: flex;
    flex-direction: column;
}
.product-content-sec-inner a.product-btn {
    margin-top: auto;
}
.product-details-main-sec {
    padding-top: 100px;
    position: relative;
    width: 100%;
}
.product-details-main-sec .tab {
    margin-right: 50px;
    float: left;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    margin: 0px 0px 0px 0px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-family: var(--poppins-font);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #363382;
    transition: all 0.2s linear;
}
.product-details-main-sec .tab.active {
    background-color: #363382;
    color: #fff;
}
.product-details-main-sec .tab:hover {
    background-color: #363382;
    color: #fff;
}
.product-details-main-sec .tab_content {
    padding: 0 10px;
    float: left;
    width: 100%;
    min-height: 100px;
    display: none;
}
.product-details-main-sec .product-details-inner-sec {
    width: 100%;
    position: relative;
    display: flex;
}
.product-details-inner-sec .product-name-part {
    width: 30%;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}
.product-details-inner-sec .product-details-part {
    width: 70%;
}
.product-details-inner h2.title {
    width: 100%;
    text-align: left;
    font-size: 28px;
    font-family: var(--oswald-font);
    color: #fff;
    background-color: #000;
    margin: 0 0 30px 0;
    padding: 15px;
    border-radius: 8px;
}
.product-details-inner h3 {
    width: auto;
    display: flex;
    text-align: left;
    font-size: 26px;
    line-height: 36px;
    font-family: var(--oswald-font);
    color: #363382;
    margin: 0 0 15px 0;
    padding: 0 0 5px 0;
    position: relative;
}
.product-details-inner h3:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #000;
    bottom: 0;
    left: 0;
}
.product-details-inner ul {
    margin: 0px 0 20px 0;
    padding: 0 0 0 0px;
    display: flex;
    flex-direction: column;
}
.product-details-inner ul li {
    list-style: none;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--poppins-font);
    margin: 5px 0;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
}
.product-details-inner ul li:before {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #363382;
    border-radius: 50%;
    left: 0;
}
.product-details-inner ul li:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #363382;
    border-radius: 50%;
    left: 4px;
} 
.product-details-inner p {
    font-size: 16px;
    line-height: 26px;
    font-family: var(--poppins-font);
    margin: 0 0 20px 0;
}

section.cta-sec {
    margin-bottom: -50px;
    z-index: 9;
    position: relative;
    padding-top: 80px;
}
.cta-sec .cta-sec-inner {
    position: relative;
    width: 100%;
    padding: 70px 30px;
    background-image: url(../image/cta-sec-inner.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 40%);
}
.cta-sec .cta-sec-inner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(0deg, #363382 -20%, #000000 100%);
    left: 0;
    top: 0;
    opacity: 0.55;
}
.cta-content-sec h2 {
    width: 100%;
    text-align: left;
    font-family: var(--oswald-font);
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
}
.cta-sec .cta-sec-inner .row {
    display: flex;
    align-items: center;
}
.cta-sec .cta-sec-inner .row .col-md-2 {
    display: flex;
    justify-content: flex-end;
}
.cta-sec .cta-sec-inner .button-sec {
    display: flex;
}
section.cta-sec a.btn:focus {
    color: #fff;
}




footer {
    padding: 120px 0px 0px 0;
    position: relative;
    margin: 0px 0 0 0;
    background-image: url(../image/footer_background.jpg);
    background-size: cover;
    background-position: center center;
}
footer:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    /* background-image: -webkit-linear-gradient(0deg, #363382 -20%, #000000 100%); */
    background-color: #000;
    left: 0;
    top: 0;
    opacity: 0.90;
}
footer .footer-content p {
    text-align: left;
    font-size: 16px;
    font-family: var(--poppins-font);
    color: #fff;
    margin: 20px 0;
}
.footer-content .footer-logo a>img {
    width: 200px;
}
.social-icon ul {
    padding: 0;
    margin: 0;
    display: flex;
    margin: 0 -10px;
}
.social-icon ul li {
    list-style: none;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.2s linear;
}
.social-icon ul li:hover {
    background-color: #363382;
    border: 2px solid #363382;
}
.social-icon ul li>a {
    display: flex;
}
.social-icon ul li a i {
    font-size: 18px;
    color: #fff;
    transition: all 0.2s linear;
}
.social-icon ul li:hover a i {
    color: #fff;
}
footer .footer-content .address>.footer-title h2 {
    text-align: left;
    font-size: 28px;
    font-family: var(--oswald-font);
    color: #fff;
    margin: 0 0 20px 0;
}
footer .footer-content .address h3 {
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    font-family: var(--poppins-font);
    font-weight: normal;
    margin: 0 0 20px 0;
}
footer .footer-content .number a,
footer .footer-content .number span,
footer .footer-content .email a,
footer .footer-content .email span {
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    font-family: var(--poppins-font);
    font-weight: normal;
    margin: 0 0 20px 0;
}
footer .footer-content .address h3>span,
footer .footer-content .number span,
footer .footer-content .email span,
footer .copy-right-sec p a {
    color: #363382;
    font-weight: bold;
}
footer .footer-content .number {
    margin: 0 0 20px 0;
}
footer .footer-content .number:last-child {
    margin: 0;
}
footer .copy-right-sec {
    padding: 20px 0;
    background-color: #000;
    margin-top: 40px;
    position: relative;
    z-index: 9;
}
footer .copy-right-sec p {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin: 0;
}
footer .footer-content .number a span {
    /* font-size: 12px; */
    color: #fff;
    font-weight: normal;
    margin: 0 0 0 6px;
}
footer .footer-content .number.export a {
    display: block;
    margin-top: 6px !important;
}
.footer-sec-inner .row,
.footer-sec-inner .row .col-md-4 .location {
    height: 100%;
}
.footer-sec-inner .row .col-md-4 {
    /* height: auto; */
    display: flex;
}
.footer-sec-inner .row {
    /* height: 100%; */
    display: flex;
}
.footer-sec-inner .row .col-md-4 iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}
.footer-sec-inner .footer-content {
    width: 100%;
}
footer .footer-content .number.export {
    display: none;
}

 

@media screen and (max-width: 1200px) {
    .title h2 {
        font-size: 45px;
        line-height: 50px;
    }
}
@media screen and (max-width: 1024px) {
    .pa-top {
        padding-top: 40px;
    }
    .product-details-main-sec {
        padding-top: 50px;
    }
    section.cta-sec {
        padding-top: 40px;
    }
}
@media screen and (max-width: 991px) {
    .header .toggle-button {
        display: block;
    }
    .header .menu-sec {
        display: none;
    }
    .header .menu-sec {
        position: absolute;
        width: 100%;
        left: 0;
        top: 100px;
        background-color: #fff;
    }
    .header .menu-sec ul {
        flex-direction: column;
        margin: 0;
        padding: 15px;
    }
    .header .menu-sec ul li {
        margin: 10px 0px;
    }
    .header .menu-sec ul li a {
        color: #000;
    }
    section.about-sec .row,
    .cta-sec .cta-sec-inner>.row {
        flex-direction: column;
    }
    section.about-sec .row>.col-md-6:first-child {
        margin-bottom: 20px;
    }
    .cta-sec .cta-sec-inner .button-sec {
        margin-top: 20px;
    }
    .cta-sec .cta-sec-inner {
        padding: 40px 20px;
    }
    footer .footer-sec-inner .row .col-md-4 {
        width: 50%;
        margin-bottom: 40px;
    }
    footer .footer-sec-inner .row .col-md-4:last-child {
        margin-bottom: 0;
    }
    footer .footer-sec-inner .row {
        display: flex;
        flex-wrap: wrap;
    }
    section.about-sec .row>.col-md-6:nth-child(2) {
        width: 100%;
        margin-right: auto;
    }
    .cta-content-sec h2 {
        text-align: center;
    }
    .working-us-sec-inner .row {
        flex-direction: column-reverse;
    }
    section.about-sec .row,
    .product-sec-inner,
    .working-us-sec-inner .row {
        margin: 40px 0 0 0;
    }
    .header.sticky .menu-sec {
        top: 70px;
    }
    .product-list-inner-sec .product-box {
        width: 50%;
    }
    .product-list-inner-sec .poduct-box-inner {
        width: 100%;
    }
}
@media screen and (max-width: 840px) {
    .product-details-main-sec .tab {
        padding: 10px;
        font-size: 15px;
    }
}
@media screen and (max-width: 767px) {
    footer .footer-sec-inner .row .col-md-4 {
        width: 100%;
    }
    .title h2 {
        font-size: 40px;
        line-height: 45px;
    }
    .banner-sec-inner .swiper-button-prev,
    .banner-sec-inner .swiper-button-next {
        display: none;
    }
    .cta-content-sec h2 {
        font-size: 25px;
        line-height: 30px;
    }
    .banner-slider p {
        font-size: 18px;
    }
    .banner-slider h2 {
        font-size: 25px;
    }
    .about-sec .about-content p,
    .working-us-sec-inner .working-content p {
        font-size: 16px;
        line-height: 24px;
    }
    .about-sec .about-content ul li {
        font-size: 16px;
        padding-left: 25px;
    }
    .about-sec .about-content ul li:before {
        width: 16px;
        height: 16px;
    }
    .about-sec .about-content ul li:after {
        width: 8px;
        height: 8px;
    }
    footer {
        padding: 80px 0px 0 0;
    }
    .working-us-sec-inner .left-part {
        padding: 40px 20px;
    }
    section.cta-sec {
        padding-top: 40px;
    }
    .product-details-main-sec .product-details-inner-sec {
        flex-direction: column;
    }
    .product-details-inner-sec .product-name-part {
        width: 100%;
        display: flex;
        flex-direction: row;
        padding-right: 0px;
        overflow-x: auto;
        padding-bottom: 15px;
    }
    .product-details-inner-sec .product-details-part {
        width: 100%;
        margin-top: 15px;
    }
    .product-details-main-sec .tab {
        margin: 0 5px;
        white-space: nowrap;
    }
}
@media screen and (max-width: 640px) {
    .product-list-inner-sec .product-box {
        width: 100%;
    }
    .contact-inner-sec form .input-field {
        width: 100%;
    }
    section.product-sec .product-box-inner {
        width: 100%;
    }
    
}
@media screen and (max-width: 575px) {
    .header .header-inner .logo-sec a>img {
        width: 150px;
    }
    .header .menu-sec {
        top: 75px;
    }
    /* .header.sticky .menu-sec {
        top: 75px;
    } */
    .product-banner-main-sec {
        padding: 90px 0 0 0 !important;
    }
}