/* Default CSS Code */

* {
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
    color: #fff;
    background: #43434f;
}

::selection {
    color: #fff;
    background: #43434f;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

:focus * {
    outline: 0;
}

.form-group {
    margin-bottom: 0;
}

figure {
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
	text-align:justify;
}

a {
    text-decoration: none;
    display: inline-block;
	color: #23a090;
}

a:hover {
    text-decoration: none;
	color: #23a090;
}

.overflow {
    overflow: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: none;
    line-height: 1;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Default CSS Code */

/* Bootstrap Code Customize */
@media (min-width: 1550px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1490px;
    }
}
/* Bootstrap Code Customize */

/*
font-family: 'Courier Prime', monospace;
font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif;
*/

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.4;
    font-size: 18px;
    color: #43434f;
    background: #eeeeee;
}

header,
main,
footer {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    background: #fff;
}

.page-wrapper {
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
}

/* NavBar Area */

.navbar {
    background: #fff;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

#sticky-wrapper {
    height: 100px !important;
}

.is-sticky .navbar {
    box-shadow: 0px 3px 15px rgba(34, 32, 32, 0.2);
    z-index: 9999;
}

.navbar-shadow {
    z-index: 9999;
}

.mobile-menu {
    display: none;
}

.navbar-brand,
.navbar {
    padding: 0;
    margin: 0;
}

#header .nav-link.active,
#header .nav-link,
.mobile-menu .nav-link.active,
.mobile-menu .nav-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #8e8e8e;
    text-transform: uppercase;
    padding: 40px 0 !important;
    position: relative;
}

.mobile-menu .nav-link.active,
.mobile-menu .nav-link {
    padding: 0 !important;
}

#header .nav-link:hover,
.mobile-menu .nav-link:hover {
    color: #1a1a32;
}

.navbar-nav li {
    margin-right: 32px;
}

.navbar-nav li:last-child {
    margin-right: 0;
}

.nav-link.active {
    color: #1a1a32;
}

.nav-link.active::before,
.nav-link::before {
    content: "";
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a32;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
}

.nav-link:hover {
    color: #1a1a32;
}

.nav-link.active:before,
.nav-link:hover:before {
    content: "";
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a1a32;
}

.mobile-menu .nav-link.active::before,
.mobile-menu .nav-link::before {
    bottom: -8px;
}

.mobile-menu .nav-link:hover:before {
    width: 100%;
}

/* Drop Down Menu Code */

.dropdown-hover {
    position: relative;
}

.dropdown-container {
    position: absolute;
    top: 80px;
    left: 50%;
    width: 220px;
    background: #fff;
    box-shadow: 0px 3px 15px rgba(34, 32, 32, 0.2);
    z-index: 99999;
    display: flex;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    display: none;
    opacity: 0;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
}

#header .dropdown-hover:hover .dropdown-container {
    display: flex;
    opacity: 1;
}

.is-sticky .dropdown-container {
    top: 97px;
}

.left-dropdown li:last-child {
    margin-bottom: 0;
}

.right-dropdown {
    padding-left: 40px;
}

.right-dropdown li:last-child {
    margin-bottom: 0;
}

.dropdown-container ul li {
    margin: 0;
    margin-bottom: 20px;
}

.dropdown-container ul li a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #8e8e8e;
    text-transform: uppercase;
    position: relative;
}

.dropdown-container ul li a::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a32;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
}

.dropdown-container ul li a:hover:before {
    width: 100%;
}
/* Drop Down Menu Code */

.navbar-toggler {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50px;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.navbar-toggler .toggler-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.toggler-btn .bar {
    width: 20px;
    display: block;
    height: 3px;
    background: #0c162b;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-bottom: 5px;
}

.toggler-btn .bar:nth-child(3) {
    margin-bottom: 0;
}

.navbar-toggler.change .toggler-btn .bar1 {
    background: #000000;
    transform: rotate(-45deg) translate(-4px, 4px);
    -webkit-transform: rotate(-45deg) translate(-4px, 4px);
    -moz-transform: rotate(-45deg) translate(-4px, 4px);
    -ms-transform: rotate(-45deg) translate(-4px, 4px);
    -o-transform: rotate(-45deg) translate(-4px, 4px);
}

.navbar-toggler.change .toggler-btn .bar2 {
    opacity: 0;
}

.navbar-toggler.change .toggler-btn .bar3 {
    background: #000000;
    transform: rotate(45deg) translate(-7px, -7px);
    -webkit-transform: rotate(45deg) translate(-7px, -7px);
    -moz-transform: rotate(45deg) translate(-7px, -7px);
    -ms-transform: rotate(45deg) translate(-7px, -7px);
    -o-transform: rotate(45deg) translate(-7px, -7px);
}

/* NavBar Area */

/* Banner CountUp Area */

.banner-area {
    padding-top: 70px;
    /* height: 100vh; */
}

.banner-content h1 {
    font-size: 67px;
    margin-bottom: 5px;
}

.banner-content h1 span {
    font-size: 67px;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

.banner-content p {
    font-size: 29px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 22px;
}

.banner-content p span {
    white-space: nowrap;
}

.fuel-lbs-area {
    max-width: 950px;
    width: 100%;
    border: 1px solid #272b2f;
    display: flex;
    justify-content: space-between;
    padding: 7px 27px 7px 7px;
}

.fuel-area {
    display: flex;
    align-items: center;
}

.lbs-area {
    display: flex;
    align-items: center;
}

.countup-number p {
    font-size: 26px;
    margin-bottom: 0;
    color: #fff;
    margin-top: 0;
    background: #43434f;
    letter-spacing: 3px;
    width: 240px;
    padding-top: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Courier Prime", monospace;
}

.fuel-text p,
.lbs-text p {
    font-size: 18px;
    margin-left: 10px;
    margin-bottom: 0;
    margin-top: 0;
}

#homeblock {
	margin-top: 50px;
	min-height: 400px;
}

.image-area {
    display: flex;
    /*margin-top: 138px;
    
    position: absolute;*/
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 2000px;
    /*transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%); */
}

#home-green {font-size: 18px;}

.single-image {
    width: 100%;
    max-height: 496px;
}

.image-down-icon {
    position: absolute;
    width: 28px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

/* Banner CountUp Area */

/* Green Technology Area */

.green-tec-area {
    overflow: hidden;
    margin-top: 50px;
}

.section-title h3 {
    font-size: 39px;
    text-align: center;
    margin-bottom: 110px;
}

.section-title h3 span {
    font-weight: 700;
    display: inline-block;
}

.single-box-text {
    position: relative;
}

.single-box-image {
    position: absolute;
    top: -65px;
    left: 0;
    width: 50vw;
    height: 553px;
}

.single-box-right-image {
    left: auto;
    right: 0;
}

.single-box-inner {
    max-width: 1475px;
    width: 100%;
    margin: 0 auto;
    border: 2px solid #a1a1a1;
    margin-bottom: 160px;
    padding: 0 25px;
    padding-left: 45px;
    padding-bottom: 82px;
}

.last-box .single-box-inner {
    margin-bottom: 0;
}

.box-text {
    width: 645px;
    max-width: 100%;
}

.box-right-text {
    margin-left: auto;
    margin-top: 40px;
}

.box-left-text {
    margin-left: 0;
}

.box-text h5 {
    font-size: 34px;
    margin-bottom: 15px;
}

.box-para-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.box-para-text p:last-child {
    margin-bottom: 0;
}

.learn-btn a {
    width: 164px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #23a090;
    color: #fff;
    font-size: 16.5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 30px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.learn-btn a:hover {
    color: #23a090;
    background: #fff;
    border: 1px solid #23a090;
}

/* Green Technology Area */

/* Center Details Area */

.center-details-content {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

.center-details-content h5 {
    font-size: 34px;
}

.center-details-content p {
    font-size: 18px;
    max-width: 1070px;
    width: 100%;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 50px;
}

.center-details-content .learn-btn a {
    margin: 0 auto;
}

/* Center Details Area */

/* Contact Us Area */
.contact-us {
    background: #23a090;
    padding-top: 65px;
    padding-bottom: 80px;
}

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

.contact-text p {
    color: #fff;
    font-size: 18px;
    width: 100%;
    max-width: 855px;
    margin-left: 35px;
}

.contact-btn a {
    width: 164px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: #fff;
    font-size: 16px;
    border: 1px solid #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-right: 45px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.contact-btn a:hover {
    background: #fff;
    color: #23a090;
}

/* Contact Us Area */

/* Footer Area */

.footer-area {
    background: #424151;
    padding-top: 35px;
    padding-bottom: 50px;
}

.footer-social-list {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-social-list li {
    background: #fff;
    width: 44px;
    height: 44px;
    margin-left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.footer-social-list li:first-child {
    margin-left: 0;
}

.footer-social-list li:hover {
    background: #424151;
    border: 1px solid #fff;
    cursor: pointer;
}

.footer-social-list li a svg {
    width: 22px;
    height: 22px;
    margin-top: -2px;
}

.footer-social-list li a svg path {
    fill: #424151;
}

.footer-social-list li:hover a svg path {
    fill: #fff;
}

.footer-content p {
    color: #fff;
    font-size: 13.5px;
    text-align: center;
}

.footer-content p::selection {
    background: #23a090;
}

/* Footer Area */


/* Single Technology Inner Page Start */

/* Technology / Finlets Area */

.single-technology-banner {
    display: flex;
    padding-top: 80px;
    padding-bottom: 65px;
    position: relative;
    overflow: hidden;
}

.single-tech-content {
    max-width: 650px;
    width: 100%;
    text-align: left;
}

.single-tech-content h1 {
    font-size: 67px;
    margin-bottom: 50px;
    font-weight: 700;
}

.single-tech-content h1 .heading-line1 {
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.single-tech-content h1 .heading-line1::before {
    content: "/";
    position: absolute;
    top: 13px;
    right: -25px;
    font-size: 50px;
}

.single-tech-content h1 span.heading-line2 {
    display: block;
    margin-top: 16px;
}


.single-tech-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.single-tech-image {
    position: absolute;
    top: 300px;
    right: 20px;
}

.single-tech-box {
    width: 850px;
    height: 550px;
    border: 2px solid #a1a1a1;
}

.single-tech-inner {
    position: relative;
}

.single-tech-main-img {
    position: absolute;
    top: -20px;
    right: -20px;
}

.single-tech-main-img {
    width: 850px;
    height: 550px;
}
/* Technology / Finlets Area */

/* Additional Benefits Area */
.additional-benefits {
    background: #424151;
    padding-top: 60px;
    padding-bottom: 70px;
}

.benefit-list li h5::selection,
.benefits-left-content h3::selection,
.benefits-left-content h3 span::selection {
    background: #fff;
    color: #424151;
}

.benefits-content {
    display: flex;
}

.benefits-left-content {
    max-width: 585px;
    width: 100%;
}

.benefits-left-content h3 {
    color: #fff;
    font-size: 39px;
    line-height: 48px;
    margin-bottom: 25px;
}

.benefits-left-content h3 span {
    font-weight: 700;
    white-space: nowrap;
}

.benefit-list li {
    margin-bottom: 20px;
    display: flex;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.benefit-list li span {
    margin-right: 25px;
}

.benefit-list li h5 {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
}

.right-benefits {
    margin-top: 75px;
    max-width: 630px;
    width: 100%;
    margin-left: 125px;
}

/* Additional Benefits Area */

/* Technology Development Area */

.tech-development-area {
    padding: 76px 0;
    padding-bottom: 88px;
}

.development-text-area h3 {
    font-size: 39px;
    line-height: 46px;
    margin-bottom: 35px;
}

.development-text-area h3 span {
    font-weight: 700;
    white-space: nowrap;
}

.development-text-area p {
    font-size: 18px;
    margin-bottom: 25px;
}

.development-text-area p:last-child {
    margin-bottom: 0;
}

.development-text-area h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.new-gap .single-tech-main-img {
    top: 10px;
    right: 10px;
}

.development-img-container {
    display: flex;
    justify-content: space-between;
    padding-left: 10px;
    margin-top: 50px;
}

.new-gap {
    width: 450px;
    height: 340px;
}

.new-gap .single-tech-main-img {
    width: 450px;
    height: 340px;
}

.mobile-dev-img {
    display: none;
}

/* Technology Development Area */

/* Applicable Aircraft Area */

.applicable-aircraft .section-title h3 {
    margin-bottom: 40px;
}

.applicable-aircraft {
    padding-bottom: 100px;
}

.single-applicable-tab {
    background: #f5f5f7;
    padding: 50px;
    padding-bottom: 10px;
    max-width: 1045px;
    width: 100%;
}

.applicable-description p {
    font-size: 18px;
    margin-bottom: 20px;
}

.applicable-description h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
}

.applicable-item-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    padding-left: 40px;
}

.bg-white-applicable {
    background: #fff;
}

.applicable-name {
    max-width: 490px;
    width: 100%;
}

.applicable-name h6 {
    font-size: 18px;
    line-height: 28px;
}

.applicable-value {
    max-width: 170px;
    width: 100%;
}

.applicable-value p {
    font-size: 18px;
}

.applicable-tab-area .d-flex {
    justify-content: space-between;
}

.applicable-tab-area .nav-pills .nav-link.active,
.applicable-tab-area .nav-pills .show > .nav-link,
.applicable-tab-area .nav-pills .nav-link:hover {
    background: transparent;
    color: #23a090;
}

.applicable-tab-area .nav-pills .nav-link {
    background: transparent;
    color: #43434f;
    font-size: 32px;
    margin-bottom: 47px;
    text-transform: none;
    font-weight: 700;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    text-align: left;
}

.applicable-tab-area .nav-pills .nav-link:last-child {
    margin-bottom: 0;
}

.applicable-tab-area .nav-link.active::before,
.applicable-tab-area .nav-link:hover::before {
    display: none;
}

#v-pills-tab {
    padding-top: 40px;
}

.tab-pane.fade.active.show {
    position: relative;
}

.tab-pane.fade.active.show::before {
    content: "";
    position: absolute;
    width: 29px;
    height: 33px;
    background: url(../img/tab-arrow.png);
    background-repeat: no-repeat;
}

#v-pills-boeing.tab-pane.fade.active.show::before {
    top: 43px;
    left: -25px;
}

#v-pills-c130.tab-pane.fade.active.show::before {
    top: 138px;
    left: -25px;
}

#v-pills-globemaster.tab-pane.fade.active.show::before {
    top: 236px;
    left: -25px;
}

/* Applicable Aircraft Area */

/* Single Technology Inner Page Start */

/* Company Page Start */

/* Technology / Finlets Area */
.company-technology .single-tech-content {
    max-width: 100%;
}
/* Technology / Finlets Area */

/* Additional Benefits Area */
.company-benefits {
    background: #00a489;
}

.company-benefits .benefits-left-content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
}

.company-benefits .benefits-left-content p span {
    font-weight: 700;
}

.company-benefits .benefits-left-content {
    max-width: 100%;
}

.mobile-blockquote {
    display: block;
}

 .mobile-blockquote p {
       
        margin-bottom: 10px !important;
        
    }

  .benefits-blockquote p {
        font-size: 18px !important;
        color: #fff;
        font-style: italic;
    }

    .benefits-blockquote h5 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        font-style: italic;
    }
	
	

/* Additional Benefits Area */

/* Executive Team Area */

.mobile-team-collapse {
    display: none;
}

.executive-team {
    padding-top: 80px;
}

.executive-team .section-title h3 {
    margin-bottom: 0;
}

.team-collapse-area {
    margin-top: 50px;
}

.team-collapse-area .nav-tabs {
    border: 0;
}

.team-collapse-area .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-color: transparent;
    margin-bottom: 450px;
}

.team-collapse-area .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent;
}

.team-collapse-area .nav-link::before {
    display: none;
}

.team-collapse-area .nav-link.active::before,
.team-collapse-area .nav-link.active:hover:before {
    position: absolute;
    bottom: -23px;
    left: 80px;
    background: url(../img/green-arrow.png);
    width: 23px;
    height: 16px;
    display: block;
}

.team-collapse-area .new-gap {
    width: 200px;
    height: 200px;
}

.team-collapse-area .new-gap .single-tech-main-img {
    width: 200px;
    height: 200px;
}

.team-collapse-area ul {
    display: flex;
    flex-wrap: wrap;
}

.team-collapse-area ul li {
    margin-right: 52px;
    margin-bottom: 52px;
}

.team-collapse-area ul li.six-last {
    margin-right: 0;
}

.team-profile h5 {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #d2d2d2;
    text-transform: none;
    padding-bottom: 17px;
    padding-right: 40px;
    color: #43434f;
}

.team-profile p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    text-transform: none;
    margin-top: 16px;
    max-width: 1353px;
    width: 100%;
    color: #43434f;
}

.team-collapse-area ul li .nav-link {
    position: relative;
    transition: display 0.8s linear;
    -webkit-transition: display 0.8s linear;
    -moz-transition: display 0.8s linear;
    -ms-transition: display 0.8s linear;
    -o-transition: display 0.8s linear;
    padding: 0;
    margin-top: -23px;
}

.team-collapse-area ul li .nav-link.active .team-profile {
    display: block;
}

.team-collapse-area ul li .nav-link .team-profile {
    display: none;
    position: absolute;
    top: 130%;
    max-width: 1490px;
    width: 1470px;
    text-align: left;
    background: #f5f5f7;
    padding: 45px 40px 35px 40px;
    color: #43434f;
    z-index: 99;
}

.team-collapse-area ul li:nth-child(1) .nav-link .team-profile,
.team-collapse-area ul li:nth-child(7) .nav-link .team-profile {
    left: -9px;
}

.team-collapse-area ul li:nth-child(2) .nav-link .team-profile,
.team-collapse-area ul li:nth-child(8) .nav-link .team-profile {
    left: -265px;
}

.team-collapse-area ul li:nth-child(3) .nav-link .team-profile,
.team-collapse-area ul li:nth-child(9) .nav-link .team-profile {
    left: -518px;
}

.team-collapse-area ul li:nth-child(4) .nav-link .team-profile,
.team-collapse-area ul li:nth-child(10) .nav-link .team-profile {
    left: -772px;
}

.team-collapse-area ul li:nth-child(5) .nav-link .team-profile,
.team-collapse-area ul li:nth-child(11) .nav-link .team-profile {
    left: -1027px;
}

.team-collapse-area ul li:nth-child(6) .nav-link .team-profile,
.team-collapse-area ul li:nth-child(12) .nav-link .team-profile {
    left: -1280px;
}

.team-overlay {
    position: relative;
}

.team-overlay-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.432);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-bottom: 15px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.team-overlay-title h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.team-overlay-title p {
    font-size: 16px;
    color: #fff;
	text-align: center;
}

.team-collapse-area .nav-link.active .team-overlay-title {
    opacity: 0;
}

.team-profile-inner {
    position: relative;
}

.bio-cross {
    position: absolute;
    top: -15px;
    right: 0;
}

/* Executive Team Area */

/* Directors Team Area with Reusable Executive Team Code */
.directors-team {
    padding-top: 30px;
    padding-bottom: 75px;
}

.section-title p {
    margin-top: 30px;
}

.mobile-directors-collapse {
    display: none;
}

/* Directors Team Area with Reusable Executive Team Code */

/* Company Page End */





/* Partners Page */
.form-control {
    width: 280px;
    height: 44px;
    padding: 10px;
    border: 1px solid #8e8e8e;
    font-size: 18px;
    color: #43434f;
}

.form-control:hover {
    border: 1px solid #43434f;
}

.form-area form input::-webkit-input-placeholder {
    /* Edge */
    color: #8e8e8e;
}

.form-area form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8e8e8e;
}

.form-area form input::placeholder {
    color: #8e8e8e;
    font-size: 18px;
}

.email-input {
    margin-bottom: 20px;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
    color: transparent;
    background-color: transparent;
    border-color: transparent;
    box-shadow: 0 0 0 0 rgba(49, 132, 253, 0);
}

.form-control:focus {
    box-shadow: 0 0 0 0 rgba(49, 132, 253, 0);
    border-color: #8e8e8e;
    border: 1px solid #43434f;
}

.login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 164px;
    height: 44px;
    margin-top: 30px;
    background: #23a090;
    color: #fff;
    font-size: 16.5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.login-btn:hover {
    color: #23a090;
    background: #fff;
    border: 1px solid #23a090;
}

/* Partners Page */
single-tech-content


/* Campaign Area */
.campaign {
  background: #424151;
  padding: 80px 0;
}

.campaign__layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.campaign__content {
  color: #fff;
  max-width: 600px;
  width: 100%;
}

.campaign__images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.campaign__content h2 {
  font-size: 44px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 30px;
}

.campaign__content h2 span {
  display: block;
  font-weight: 700;
  margin-top: 10px;
}

.campaign__social-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.campaign__social-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.campaign__social-list li a {
  color: #fff;
  text-align: center;
  text-decoration: underline;
}

.campaign__social-list li img {
  width: 46px;
  height: 32px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.campaign__social-list-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.campaign__social-list-content-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.campaign__social-list-content-links a {
  position: relative;
}

.campaign__social-list-content-links a::after {
  content: "|";
  position: absolute;
  top: 0;
  right: -10px;
}

.campaign__social-list-content-links a:last-of-type:after {
  display: none;
}

/* Campaign Area */

/* Campaign Responsive Code */

@media (max-width: 1399.98px) {
  .campaign__content {
    max-width: 500px;
  }
}

@media (max-width: 1199.98px) {
  .campaign__layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .campaign__content {
    max-width: 100%;
    padding: 0 30px 0 30px;
  }
}

@media (max-width: 767.98px) {
  .campaign__content h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .campaign__images {
    gap: 20px;
  }

  .campaign__social-list {
    gap: 26px;
    margin-left:-10px;
    display: unset;
  }

  .campaign__social-list li {
    padding-bottom: 20px;
  }

  .campaign__social-list li img {
    width: 37px;
    height: 26px;
  }

  .campaign__content p,
  .campaign__content a {
    font-size: 16px;
  }
}

/* Campaign Responsive Code */
