@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    max-width: 100%;
}

summary {
    display: list-item;
}

body,
html {
    scroll-behavior: smooth;
    /* font-family: "Inter", serif; */
    font-optical-sizing: auto;
    font-family: sans-serif ;
}

body {
    line-height: 1.4;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    transition: all 0.3s ease-in;
}

p {
    color: #041029 !important;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
    font-weight: 400;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none !important;
}

h1,
.h1 {
    font-size: 60px;
    color: #021e45;
}

h2,
.h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #021e45;
}

h3,
.h3 {
    font-size: 24px;
    color: #021e45;
}

h4,
.h4 {
    font-size: 20px;
    color: #021e45;
}

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

.sec_padding {
    padding: 80px 0px;
}

.sec_heading {
    position: relative;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #031f46;
}

span.heading_overlap {
    position: absolute;
    top: -23px;
    left: 0;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff00;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.2;
    z-index: 0;
    font-size: 1.979167vw;
    display: none;
}

.color-1 {
    color: var(--color-1);
}

.theme_btn {
    color: #0577b3;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 20px;
    position: relative;
    padding: 10px 50px 10px 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    margin-top: 22px;
    display: inline-block;
}

.theme_btn .bg {
    background: #0577b3;
    width: 30px;
    height: 2px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.theme_btn .bg:before {
    bottom: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.theme_btn .bg:before,
.theme_btn .bg:after {
    content: '';
    height: 2px;
    width: 10px;
    background: #0577b3;
    position: absolute;
    right: -2px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.theme_btn .bg:after {
    top: 3px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.theme_btn:hover {
    padding-right: 20px;
    color: #fff;
}

.theme_btn:hover .bg {
    height: 100%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.theme_btn:hover .bg:before {
    bottom: 6px;
}

.theme_btn:hover .bg:before,
.theme_btn:hover .bg:after {
    right: 0;
}

.theme_btn .bg:before {
    bottom: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bg-dark {
    /* background: #2A2A2A; */
    background: #f8f8f8;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bg-dark:before {
    content: '';
    position: absolute;
    background: url('/assets/images/bg_6.png');
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-dark::after {
    position: absolute;
    content: "";
    right: -5%;
    bottom: -5%;
    width: 300px;
    height: 200px;
    border: 15px solid #000;
    display: block;
    z-index: -1;
    opacity: .1;
    transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    -moz-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    animation: rotation 20s infinite linear;
    -webkit-animation: rotation 20s infinite linear;
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

p {
    color: #fff;
}


/* Header-css */

header {
    padding: 20px 0;
    background: #f8f8f8;
    /* position: fixed; */
    width: 100%;
    top: 0;
    z-index: 99999999;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.navbar ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav.navbar ul li a {
    color: #021f46;
    padding: 10px 18px;
    position: relative;
}

nav.navbar ul li a:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    display: block;
    background: #021f46;
    border-radius: 100px;
    display: none;
}

nav.navbar ul li a.active:before {
    display: block;
}

.flex-about-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.flex-about-row .col-div {
    width: calc(100% / 2 - 15px);
}

ul.slick-dots {
    display: flex;
        gap: 10px;
        justify-content: center;
        padding-top: 24px;
        position: absolute;
        bottom: 24px;
        left: 0;
        width: 100%;
}

ul.slick-dots li {
    background: #000000;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    position: relative;
    transition: all .3s ease;
}

ul.slick-dots li button {
    opacity: 0;
}

li.slick-active {
    background: #0577b3;
    border-color: #0577b3 !important;
}

ul.slick-dots li:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0577b3;
    border-radius: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease;
}

li.slick-active:before {
    opacity: 1 !important;
}

.service_info_box {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 55px;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    background: linear-gradient(0deg, hsl(0deg 0% 0% / 58%) 60%, transparent);
    transition: all .3s linear;
}

.service_slider .item:hover .service_info_box {
    background: linear-gradient(0deg, hsl(0deg 0% 0% / 80%) 60%, transparent);
}

.service_slider .item {
    position: relative;
    overflow: hidden;
}

.service_slider .item img {
    transition: all .3s linear;
}

.service_slider .item:hover img {
    transform: scale(1.1);
}

a.service_btn {
    color: #fff;
    font-size: 20px;
    display: inline-block;
    transition: all .3s linear;
    padding: 8px 18px 8px 18px;
    position: relative;
    z-index: 1;
    opacity: 0;
}

a.service_btn:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: #0577b3;
    transition: all .3s linear;
    z-index: -1;
}

.service_btn:hover:before {
    width: 100%;
}

.service_info_box .service_heading,
.service_info_box p,
.service_info_box .service_btn {
    transform: translateY(60px);
    transition: all .3s linear;
    color: #fff !important;
}

.service_slider .item:hover .service_info_box .service_heading,
.service_slider .item:hover .service_info_box p,
.service_slider .item:hover .service_info_box .service_btn {
    transform: translateY(0px);
    transition: all .3s linear;
    opacity: 1;
}

.heading-box {
    margin-bottom: 40px;
    text-align: center;
}

.heading-box .sec_heading {
    text-align: center;
    color: #031f46;
}

.heading-box .sec_heading .heading_overlap {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: none;
}

.service_slider {
    position: relative;
}

.service_slider {
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #0577b3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    transition: all .3s linear;
    cursor: pointer;
}

.slider-arrow.next {
    right: 0;
    transform: translateX(100%);
}

.slider-arrow.prev {
    transform: translateX(-100%);
}

.service_slider:hover .slider-arrow {
    transform: translateX(0%);
}

.tabs-content .tab {
    display: none;
}

.tabs-content .tab.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

ul.tabs-menu {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

ul.tabs-menu li {}

ul.tabs-menu li a {
    color: #031f46;
    font-size: 30px;
    font-weight: 700;
}

ul.tabs-menu li a .tab-num {
    width: 60px;
    height: 60px;
    display: inline-flex;
    background: #0577b3;
    border-radius: 100px;
    padding: 8px;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 26px;
    position: relative;
}

ul.tabs-menu li a .tab-num:before {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 100px;
    background: #0577b3;
}

ul.tabs-menu li:nth-last-child(1) a .tab-num:before {
    display: none;
}

.tabs-container {
    width: 999px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.tabs-container .tabs-content,
.tabs-container .tabs-menu {
    width: calc(100% / 2 - 15px);
}

.tabs-content {
    background: #5e5e5e;
    padding: 32px;
    border-radius: 4px;
}

.tabs-menu li.active a {
    background: #0577b3;
    padding: 10px 10px 10px 0px;
    color: #fff;
}

.approch_content_tab ul li {
    color: #0577b3;
}

.project_wrapper {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 320px;
    grid-auto-flow: dense;
    max-width: 100%;
}

.project_wrapper .showcase {
    overflow: hidden;
    border-radius: 8px;
}

.project_wrapper .showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.project_wrapper .showcase:hover img {
    transform: scale(1.3);
}

.project_wrapper .showcase:nth-child(1) {}

.project_wrapper .showcase:nth-child(2) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 1;
    grid-row: span 1;
}

.project_wrapper .showcase:nth-child(3) {}

.project_wrapper .showcase:nth-child(4) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 1;
    grid-row: span 1;
}

.project_wrapper .showcase:nth-child(5) {}

.project_wrapper .showcase:nth-child(6) {}

.project_wrapper .showcase:nth-child(7) {}

.project_wrapper .showcase:nth-child(9) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 1;
    grid-row: span 1;
}

.buttom_box {
    text-align: center;
    padding-top: 40px;
}

.theme_btn2 {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    padding: 12px 20px;
    color: #09193a;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.theme_btn2 i {
    margin-left: 10px;
}

.theme_btn2:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    border-radius: 28px;
    background: hsl(200.69deg 94.57% 36.08%);
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
    z-index: -1;
    transform: translateY(-50%);
}

.theme_btn2:hover:before {
    width: 100%;
    background: #0577b3;
}

.mt-5 {
    margin-top: 30px;
    display: inline-block;
}

.footer_row {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 22px;
}

.footer_col p {
    font-size: 13px;
}

h4.footer_heading {
    margin-bottom: 30px;
}

ul.footer_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.footer_list li a {
    color: #0679b4;
    font-size: 15px;
    padding: 5px 0;
    display: block;
    transition: all .3s linear;
    border-bottom: 1px dashed #9dcae2;
}

.contact_list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact_list li i {
    color: #0577b3;
}

.footer_col:nth-child(2) {
    padding-left: 38px;
}

ul.footer_list li a i {
    color: #0577b3;
    margin-right: 6px;
}

footer {
    padding-bottom: 0 !important;
}

footer {
    padding-bottom: 0 !important;
}

.copyright {
    padding: 12px 0;
    background: #0577b2;
    margin-top: 42px;
}

.copy-text p {
    margin-bottom: 0;
    font-size: 12px;
    text-align: center;
    color: #fff !important;
}

a.footer_logo {
    margin-bottom: 20px;
    display: block;
    width: 120px;
}

.mobile {
    display: none;
}

div#google_translate_element>div span {
    display: none;
}


/* .VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none;
} */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 100px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    width: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -12px);
}

footer.sec_padding.bg-dark {
   background: #fff;
}
footer::before{
    position: absolute !important;
    content: '' !important;
    left: 0 !important;
    top: 0 !important;
    width: 400px !important;
    height: 400px !important;
    background: hsl(200.34deg 93.55% 36.47% / 40%) !important;
    border-radius: 100%;
    filter: blur(67px);
}
footer::after{
    position: absolute !important;
    content: '' !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 400px !important;
    height: 400px !important;
    background: hsl(214.41deg 34.6% 53.04% / 24%) !important;
    border-radius: 100%;
    filter: blur(67px);
    opacity: 1 !important;
}
/* section.banner-section {
    height: 800px;
    overflow: hidden;
} */

section.breadcrumb_sec {
    background: linear-gradient(45deg, black, transparent), url(/assets/images/s-1.png);
    height: 400px;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.bread_info {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

section.breadcrumb_sec>div {
    height: 100%;
}

ul.bred_list {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.bred_list li,
ul.bred_list li a {
    color: #fff;
}

ul.bred_list li a {
    color: #0577b3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.row {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.col {
    width: calc(100% / 2 - 24px);
}

.col img {
    border-radius: 28px;
}

section.banner-section {
    background: #0577b3;
}

/* .hero_banner_container {
    padding: 22px;
} */

.contact_row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 30px;
    border-radius: 16px;
    border: 2px solid #1c1b1b;
    background: rgb(38 38 38);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.5px);
    -webkit-backdrop-filter: blur(6.5px);
}

.contact_row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background-attachment: red;
}

.form-control {
    width: 100%;
    padding: 19px;
    background: #424242;
    border: none;
}

.form_col form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-btn {
    background: transparent;
    border: none;
}

.contact_bg_div {
    /* width: 30%; */
}

.col.form_col {
    /* flex-grow: 1; */
}

.contact_heading {
    margin-bottom: 30px;
}

.language_box {
    background: url(/assets/images/language.png);
    width: 40px;
    height: 40px;
    background-size: contain;
}

.goog-te-gadget-simple {
    opacity: 0;
}

.card-slider-box .item {
    height: auto;
    display: flex !important;
    margin: 8px;
}

.card-slider-box .slick-track {
    display: flex;
}

.card-slider-box-left {
    direction: rtl;
    text-align: right;
    unicode-bidi: embed !important;
}

.importer_row {
    display: flex;
    gap: 34px;
    align-items: center;
}

.importer_row .col {
    width: calc(100% / 2 - 14px);
}

.content_flex_row {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.content_flex_row .item {
    padding-left: 24px;
    border-left: 2px solid #0577b3;
}

.cta_box {
    background: #0577b3;
    padding: 40px;
    border-radius: 22px;
    margin-top: 58px;
}

.cta_box h3 {
    font-size: 40px;
    margin-bottom: 18px;
}

html.translated-rtl {
    text-align: right;
}

html.translated-rtl ul.tabs-menu li a {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    width: 100%;
    display: block;
}

html.translated-rtl ul.tabs-menu li a .tab-num:before {
    display: none;
}

.logo-div img {
    width: 126px;
}

.sec_heading {
    font-size: 1.9791666666666667vw;
}