html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}


:root {
    --primary-color: #273A97;
    --secondary-color: #F78E1E;
    --font-color: #0C0D13;
    --white-color: #fff;
    --dark-color: #000;
}

body {
    font-family: "Manrope", serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Inter Tight", serif;
}

h1 {
    font-weight: 600;
    font-size: 64px;
    line-height: 76.8px;
    color: var(--font-color);
}

h2 {
    font-weight: 500;
    font-size: 52px;
    line-height: 62.4px;
    color: #1E1E1E;
}

h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 39.2px;
    color: var(--font-color);
}

h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: var(--font-color);
}

p {
    font-family: "Manrope", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28.8px;
    color: #5C5D61;
}

a {
    font-family: "Manrope", serif;
    display: inline-block;
    text-decoration: none;
    transition: all .2s cubic-bezier(.11, 0, .5, 0);
}

.container {
    width: 1280px;
    max-width: 1280px;
}

body {
    font-family: "Manrope", serif;
}

.primary-btn {
    padding: 12px 32px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 22.4px;
    text-align: center;
    border-radius: 100px;
}

.secondary-btn {
    padding: 12px 32px;
    background-color: var(--white-color);
    color: var(--font-color);
    font-weight: 600;
    font-size: 14px;
    line-height: 22.4px;
    text-align: center;
    border-radius: 100px;
}

.contact-btn {
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 22.4px;
    text-align: center;
    color: #050508;
}

.contact-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.primary-btn:hover {
    background-color: #4d008cf4
}

/* Header  */

header .navbar {
    padding: 10px 0 !important;
    background-color: rgba(255, 255, 255, 0.3);
}

header .nav-link,
header .nav-item .btn.dropdown-toggle {
    padding: 0 20px !important;
    color: var(--font-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 25.6px;
}

header .nav-link:hover,
header .nav-item .btn.dropdown-toggle:hover,
header .nav-link.active,
header .nav-item .btn.dropdown-toggle.active {
    color: var(--primary-color) !important;
}


header .nav-item .btn.dropdown-toggle.active::after {
    filter: brightness(0) saturate(100%) invert(13%) sepia(99%) saturate(4245%) hue-rotate(273deg) brightness(61%) contrast(117%);
}

header .nav-item .btn.dropdown-toggle {
    border: none;
    outline: none;
}

header .navbar.fixed {
    background-color: var(--white-color);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
}

header .navbar-brand img {
    height: 65px;
}

/* Banner  */

.banner-sec {
    background: url('../images/bg-banner.JPG') no-repeat;
    background-size: cover;
    padding-top: 140px;
    background-color: rgba(0, 0, 0, 0.11);
    background-blend-mode: overlay;

}

.banner-sec .banner-contents {
    text-align: center;
}

.banner-sec .banner-contents p {
    color: var(--white-color);
    padding-top: 24px;
    padding-bottom: 48px;
}

.banner-sec .btn-row {
    gap: 24px;
    padding-bottom: 64px;
}

/* ServiceBox row  */

.service-row .serv-col {
    background-color: var(--white-color);
    box-sizing: border-box;
    height: 100%;
    padding: 24px;
    border: 1px solid #8F90923D;
    border-radius: 24px;
    transition: all .6s cubic-bezier(.25, 1, .5, 1);
}

.service-row .serv-single {
    height: 100%;
}

.service-row .serv-col p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    color: #5C5D61;
    padding-top: 12px;
}

.service-row .serv-col .icon-top {
    padding-bottom: 48px;
}

.service-row .serv-col .icon-top .icon-img {
    width: 52px;
    height: 52px;
    border-radius: 100px;
    border: 1px solid #8F90923D;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FAFAFA;
}

.service-row .serv-col .icon-top .icon-img img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.service-row .serv-col .icon-top img.arrow-img {
    width: 24px;
    height: 24px;
    object-fit: contain;

}

.service-row .serv-col:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.service-row .serv-col:hover h4,
.service-row .serv-col:hover p {
    color: var(--white-color);
}

.service-row .serv-col:hover img.arrow-img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(135deg) brightness(105%) contrast(101%);
}

.service-row .serv-col:hover .icon-img {
    background-color: var(--secondary-color);
}

.about-sec {
    background-color: #FAFAFA;
    padding: 80px 0;
}

.about-sec .about-box {
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 24px;
    text-align: center;
}

.about-sec .about-row {
    padding-top: 33px;
}

.about-sec .about-box img {
    width: 100%;
    height: 215px;
    border-radius: 30px;
    object-fit: cover;
}

.about-sec .about-box h3 {
    padding-top: 33px;
    padding-bottom: 23px;
}

.about-sec .about-box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    color: #5C5D61;
}

.about-sec .about-box .primary-btn img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    margin-left: 10px;
    border-radius: 0;
}

.about-sec .about-box .primary-btn {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.vision-sec {
    background: url('../images/bg-vision.jpg') no-repeat;
    background-size: cover;
    padding: 60px 0;
}

.vision-sec h2 span {
    color: var(--primary-color);
}

.vision-sec h3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 43.2px;
    color: #18030B;
}

.vision-sec .vision-row {
    padding: 24px;
    background: rgba(239, 241, 243, 0.5);
    border-radius: 24px;
}

.vision-sec .left-layout {
    position: relative;
    height: 100%;
    border-radius: 16px;
}

.vision-sec .left-layout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.vision-sec .vision-row {
    margin-top: 105px;
    box-sizing: border-box;
    height: 100%;
}

.vision-sec .left-layout .override-txt {
    position: absolute;
    width: 95%;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    padding: 24px;
    background: var(--white-color);
    bottom: 24px;
    border-radius: 16px;
}

.vision-sec .left-layout .override-txt h3 {
    font-weight: 400;
    font-size: 37px;
}

.vision-sec .vision-col {
    background-color: var(--white-color);
    padding: 55px 32px;
    border-radius: 24px;
    height: 100%;
    box-sizing: border-box;
}

.vision-sec .vision-col:hover {
    background-color: var(--primary-color);
    transition: all .6s cubic-bezier(.25, 1, .5, 1);
}

.vision-sec .vision-col:hover h3,
.vision-sec .vision-col:hover p {
    color: var(--white-color);
}

.vision-sec .vision-col h3 {
    padding-top: 30px;
    padding-bottom: 12px;
}

.vision-sec .vision-col p {
    color: #737373;
}

.vision-sec .vision-col:first-child {
    margin-bottom: 50px;
}

.vision-sec .layout-col {
    box-sizing: border-box;
    height: 100%;
}

.team-sec {
    padding: 80px 0;
}

.team-sec .team-row {
    padding-top: 64px;
}

.team-sec .team-row .team-col img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
}

.team-sec .team-row .team-col:hover {
    transform: scale(1.1);
}

.team-sec .team-row .team-col {
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.team-sec .team-row .about-memb {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 24px;
    width: 100%;
    text-align: center;
}

.team-sec .team-row .about-memb h6 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    font-family: "Manrope", serif;
}

.team-sec .team-row .about-memb p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

.contact-sec {
    background-color: var(--secondary-color);
}

.contact-sec p {
    color: var(--font-color);
    padding-top: 24px;
    padding-bottom: 30px;
}

.contact-sec .container {
    padding-top: 115px;
    padding-bottom: 150px;
    padding-left: 150px;
    padding-right: 135px;
    border-left: 1px solid #FFFFFF3D;
    border-right: 1px solid #FFFFFF3D;
    position: relative;
    background: url('../images/bg-contact.png') no-repeat;
    background-position: 70% bottom;
}

footer {
    background-color: #273A97;
    padding: 80px 0;
}

footer h5 {
    color: var(--white-color);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    font-family: "Manrope", serif;
    padding-top: 65px;
    padding-bottom: 24px;
}

footer h6 {
    font-family: "Manrope", serif;
    color: var(--white-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 24px;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer ul.footer-menu li {
    margin-bottom: 6px;
}

footer ul.footer-menu li a,
footer .footer-right p,
footer .footer-right a {
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px;
    color: var(--white-color);
}

footer ul.footer-menu li a:hover,
footer .footer-right a:hover {
    color: var(--secondary-color);
}

footer .social-icons li a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

footer .social-icons li a img:hover {
filter: brightness(0) saturate(100%) invert(68%) sepia(84%) saturate(2494%) hue-rotate(345deg) brightness(101%) contrast(98%);
}

footer ul.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .footer-right {
    padding-left: 50px;
}

.footer_whatsApp{
    padding-left: 93px;

}

/* About Page  */

.service-section {
    padding: 80px 0;
}

.about-banner {
    background: url('../images/about-banner.jpg') no-repeat;
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 40px;
    /* background-position: center; */
}

.about-banner p {
    color: var(--white-color);
}

.about-banner h1 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 48px;
    line-height: 57.6px;
}

.s-banner-sec {
    background: url('../images/bg-testimonial.jpg') no-repeat;
    background-size: cover;
    padding: 130px 0;
    position: relative;
    z-index: 2;
}

.s-banner-sec h2 {
    font-weight: 500;
    font-size: 52px;
    line-height: 62.4px;
    text-align: center;
    color: var(--white-color);
}

.goal-sec {
    padding: 80px 0;
}

.goal-sec .value-col {
    padding-bottom: 25px;
    border-bottom: 1px solid #D9D9D9
}

.goal-sec .value-col:last-child {
    border-bottom: 0;
}

.goal-sec .value-col h4 {
    padding-top: 20px;
    padding-bottom: 6px;
    font-weight: 500;
}

.goal-sec .md-testimonial {
    position: relative;
}

.goal-sec .md-testimonial {
    text-align: right;
    position: relative;
}

.goal-sec .md-testimonial .img-qoute {
    position: absolute;
    top: 140px;
    left: 22%;
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 0;
}

.goal-sec .md-testimonial img {
    width: 152px;
    height: 152px;
    object-fit: cover;
    border-radius: 16px;
}

.goal-sec .md-testimonial p.b-text {
    font-family: "Inter Tight", serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0px;
    color: #18030B;
    padding: 32px 0;
}

.goal-sec .md-testimonial p.b-text span {
    color: #A3A3A3;
}

.goal-sec .md-testimonial .about h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #1E1E1E;
    margin-bottom: 6px;
}

.goal-sec .md-testimonial .about p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #5C5D61;
}

.dropdown-toggle::after {
    border: 0 !important;
    background: url('../images/icon-dropArrow.svg') no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    top: 7px;
    position: relative;
}

.primary-btn-2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    width: fit-content;
    margin: auto;
}

.s-banner-sec p {
    color: var(--white-color);
    padding-top: 20px;
}

.banner-sec::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.service-section .future-row {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 64px;
    grid-row-gap: 20px;
}

.service-section .future-box {
    border-bottom: 1px solid #D9D9D9;
}

.service-section .future-box:last-child,
.service-section .future-box:nth-last-child(-n+2) {
    border-bottom: 0;
}

.service-section .future-box p {
    font-size: 14px;
    line-height: 22px;
    padding-top: 6px;
    padding-bottom: 25px;
}

.tech-banner {
    background: url('../images/bg-miras.png') no-repeat;
    background-position: center;
    background-size: cover;
}
.contract-banner {
    background: url('../images/bg-contract.jpg') no-repeat;
    background-position: center;
    background-size: cover;
}

.invest-banner {
    background: url('../images/bg-investment.png') no-repeat;
    background-position: center;
    background-size: cover;
}

.supply-banner {
    background: url('../images/bg-tech.png') no-repeat;
    background-position: center;
    background-size: cover;
}

.career-banner {
    background: url('../images/bg-career.jpg') no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-banner {
    background: url('../images/bg-contact-2.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    


}

.accordin-sec {
    padding: 80px 0;
}

.accordion-item {
    background: transparent;
    border: 0;
    padding: 24px;
    transition: all .1s cubic-bezier(.11, 0, .5, 0);
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 10px;
}

.accordion-item:last-child,
.accordion-item.active {
    border-bottom: 0;
}

.accordion-item.active {
    background-color: #FDF1AC;
    border-radius: 16px;
}

.accordion-item h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    color: #0C0D13;
    cursor: pointer;
}

.accordion-item h4 span {
    font-size: 17px;
    line-height: normal;
    margin-left: 5px;
}

.accordion-button {
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: unset !important;
    background-color: transparent !important;
}

.accordion-item ul {
    padding-left: 30px;
}

.accordion-item ul li,
.accordion-item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
}

.accordion-item p {
    color: #0C0D13;
}

.accordion-item a {
    font-weight: 700;
    color: #0C0D13;
}

.accordion-item ul li {
    color: #3D3D42;
}

.accordion-item .accordion-body {
    padding: 0;
}

.form-sec {
    padding: 80px 0;
}

.form-sec .form-col {
    padding-top: 80px;
}

.form-sec .form-col input,
.form-sec .form-col textarea {
    border: none;
    border-bottom: 1px solid #CACACA;
    padding: 10px;
    outline: none;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.form-sec .form-col .inp-box {
    margin-bottom: 48px;
}

.form-sec .form-col textarea {
    min-height: 140px;
}

.form-sec .form-col input::placeholder,
.form-sec .form-col textarea::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #18030B;
}

.form-sec .form-col textarea {
    margin-top: 0;
}