@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap');*/


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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font-size: 100%;*/
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

input.form-control:focus,
textarea.form-control:focus {
    border: 0;
    box-shadow: none;
}

a,
a:hover{
    text-decoration: none !important;
}


:root {
    --primary-color: #15b8ff; /*blue*/
    --secondary-color: #f49114; /*orange*/
    --content-color: #c9c9c9;
    --heading-color: #ffffff;
    --light-grey-color: #7D7D7D ;
    --border-color:  #707070;
}

html{
    font-size: 15px;
}


body {
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #1C2539;
    font-size: 14px;
    background-color: #070707;
    overflow-x: hidden;
}

p {
    line-height: initial;
    font-weight: 400;
    font-size: 1rem;
    color: var(--content-color);
}



.sec-padding{
    padding: 70px 0;
}


.section-header{
    position: relative;
    text-align: center;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}



.section-header h6 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1rem;
}


.section-header h2{
    
position: relative;
    
font-size: 2.3rem;
    
font-weight: 600;
    
max-width: 800px;
    
margin: 0 auto;
    
line-height: 1.4;
    
color: var(--heading-color);
    
padding-bottom: 15px;
}

.section-header h2:before {
    position: absolute;
    content: '';
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 50%;
    display: block;
    border-radius: 10px;
    transform:
    translate(-50%, -50%);
    transition: all 300ms linear;
}

.section-header h2 b {
    font-weight: 700;
}

.section-header h3{
    position: relative;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 auto;
    line-height: 1.4;
    padding: 5px;
    color: var(--primary-color);
    text-transform: uppercase;
}


.section-header p{margin-top: 10px;font-size: 15px;line-height: 26px;}

.section-header h2 i {
    display: block;
}

/*header style start*/

@media screen and (min-width: 1099px){
    header.bs-header.fixed {
        position: fixed;
        width: 100%;
        background: black;
        box-shadow: 1px 1px 20px #15b8ff3d;
        z-index: 9;
       animation: fadeInDown .5s ease-in-out both;;
    }
  }

  @keyframes fadeInDown{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
  }


.bs-header {
    background: #070707;
}

.bs-header .container {
    /*max-width: 95%;*/
}

.bs-header .navbar {
    background-color: transparent !important;
    padding: 10px 0;
}

.bs-header .navbar li {
    margin: 0 6px;
}

.bs-header .navbar li .nav-link{
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 8px;
    color: var(--heading-color);
    text-transform: uppercase;
    font-weight: 400;
}


.bs-header .navbar li .nav-link:before{
    content: "";
    width: 0;
    height: 2px;
    display: block;
    position: absolute;
    bottom: 1px;
    left: 0;
    background-color: var(--primary-color);
    transition: width .5s ease;
}

 .bs-header .navbar li .nav-link:hover:before {
    width: 100%;
}

.h-contact {
    position: relative;
    /*min-width: 200px;*/
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.h-contact .icons {
    background: #f0f0f0;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 7px;
    margin-right: 10px;
    line-height: 50px;
    text-align: center;
    font-size: 19px;
    color: var(--secondary-color);
}

.h-contact .content-box {}

.h-contact .content-box p {
    font-size: 1rem;
    font-weight: 500;
}

.h-contact .content-box h3 {
    font-size: 1.2rem;
    padding-top: 6px;
    font-weight: 700;
}


.h-top-bar {
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
    background: #fbfbfb;
}

.h-social {
    display: flex;
    align-items: center;
    margin-left: auto;
    text-align: right;
    justify-content: end;
}

.h-social ul {
    display: flex;
    margin-left: 5px;
}

.h-social ul li {}

.h-social ul li a {
    padding: 15px 10px;
    display: inline-block;
    color: var(--content-color);
    font-size: 1rem;
}

.h-welcome {
    height: 100%;
    max-width: 300px;
    position: relative;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
}

.h-welcome:after {
    content: '';
    position: absolute;
    width: 60px;
    background: #fbfbfb;
    height: 100%;
    top: 0;
    right: -1px;
    transform: skewY(124deg);
    transform-origin: top right;
}

.h-welcome:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0;
    left: -300px;
    background: var(--secondary-color);
}

.h-welcome p {
    color: #fff;
    font-size: 1rem;
}


/*navbar toggle menu animated cross*/

.navbar-toggler.anm-collapse {
  border: none;
  background: transparent !important;
}
.navbar-toggler.anm-collapse:hover {
  background: transparent !important;
}
.navbar-toggler.anm-collapse .icon-bar {
  width: 28px;
  transition: all 0.2s;
  background: #e8e8e8;
  display: block;
  margin: 6px 0;
  padding: 1px;
  border-radius: 10px;
}
.navbar-toggler.anm-collapse .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggler.anm-collapse .middle-bar {
  opacity: 0;
}
.navbar-toggler.anm-collapse .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggler.anm-collapse.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggler.anm-collapse.collapsed .middle-bar {
  opacity: 1;
}
.navbar-toggler.anm-collapse.collapsed .bottom-bar {
  transform: rotate(0);
}
.navbar-toggler.anm-collapse:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.navbar-toggler.anm-collapse.collapsed {
    padding-left: 12px;
    border-color: rgba(0,0,0,.1);
}

.navbar-toggler.anm-collapse {
    padding-left: 17px;
    z-index: 99;
    border-color: rgba(0,0,0,0) !important;
}

/*header style start*/

/*slider css*/

/*slieder*/

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 600px;
}

.carousel-inner {
    width: 100%;
    display: inline-block;
    position: relative;
}
.carousel-inner {
    /* padding-top: 43.25%; */
    /* display: block; */
    /* content: ""; */
}

/*.carousel-inner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7861738445378151) 20%, rgba(0,0,0,0) 100%);
    z-index: 1;
}*/

.carousel-item {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: skyblue;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.carousel-control-next, .carousel-control-prev{
    z-index: 3;
}

.carousel-item  .caption {
       position: absolute;
       top: 30%;
       left: 10%;
       transform: none;
       max-width: 520px;
       margin-top: 20px;
       text-align: left;
       padding: 12px;
       z-index: 2;

    display: none;
}
.carousel-item  .caption h5 {
    color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-item .caption h2 {
    font-size: 42px;
    line-height: 50px;
    padding: 15px 0;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.btn {
    padding: 12px 30px;
    font-size: 17px;
    font-weight: 500;
}

.theme-btn-white {
    background: #fff;
    color: #000;
}










.theme-btn-white {
    position: relative;
    background: #fff;
    padding: 16px 26px;
    display: inline-block;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    transform: scale(1);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    text-decoration: none;
    overflow: hidden;
    color: #000;
}

.theme-btn-white i {
    margin-right: 10px;
}

.theme-btn-white:hover {
    color: #fff;
    background: var(--secondary-color);
}



.theme-btn-white:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255,255,255,0.4);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.theme-btn-white:hover:after {
  width: 120%;
  background-color: rgba(255,255,255,0);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
}



/*theme-btn-orange*/

.theme-btn-orange {
    position: relative;
    padding: 10px 22px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 400;
    transform: scale(1);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    text-decoration: none;
    overflow: hidden;
    color: #000;
    border: 0;
}

.theme-btn-orange i {
    margin-right: 10px;
}

.theme-btn-orange:hover {
    color: #fff;
    background: var(--secondary-color);
}



.theme-btn-orange:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255,255,255,0.4);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.theme-btn-orange:hover:after {
  width: 120%;
  background-color: rgba(255,255,255,0);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
}












.theme-btn-orange {
    background: linear-gradient(45deg, #ee880f, #c0260c);
    color: #fff;
}



.theme-btn-orange:hover {
    background: var(--primary-color);
    color: #fff;
}




/*btn -3*/

.btn-border-white{
    position: relative;
    background: transparent;
    padding: 10px 22px;
    display: inline-block;
    border-radius: 30px;
    color: #fff;
    font-weight: 400;
    transform: scale(1);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    text-decoration: none;
    overflow: hidden;
    border: 2px solid #fff;
}

.btn-border-white i {
    margin-right: 5px;
}

.btn-border-white:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}




.btn-border-white:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255,255,255,0.4);
    -webkit-transition: none;
       -moz-transition: none;
            transition: none;
}
.btn-border-white:hover:after {
  width: 120%;
  background-color: rgba(255,255,255,0);
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
}




/*counter*/

.counter-section {
    position: relative;
    background-repeat: no-repeat;
   /* border-top: 1px solid #7c7b7b;
    border-bottom: 1px solid #7c7b7b;*/
    padding: 40px 0;
    padding-top: 0;
}

@media screen and (min-width:  1100px){
      
    .counter-inner {
        max-width: 90%;
        margin: 0 auto;
    }
  
}

.counter-section .icon-box {
    background: black;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
    position: absolute;
    left: 0;
}

.counter-section .icon-box i {
    font-size: 50px;
    color: #a8a8a8;
}

.counter-section .icon-box:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 40px;
    background: var(--secondary-color);
    right: -10px;
}

.counter-section .icon-box img {
    width: 70px;
}

.counter-section .counter-box h4 {
    padding: 10px 0;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.counter-section .counter-box p {
    font-size: 1em;
    color: var(--primary-color);
    font-weight: 500;
}

.counter-box {
    text-align: left;
    padding: 20px 0;
    position: relative;
    padding-left: 115px !important;
}

.counter-section .icon-box:hover {
    border-color: var(--primary-color);
}


footer {
    background: #000000;
    padding: 50px 0;
}

footer .widget {}

footer .widget h2 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    padding-bottom: 30px;
}

footer .widget ul li a, footer .widget p,footer p {
    color: #d3d3d3;
    font-size: 1rem;
}

footer .widget ul li a {
    padding: 8px 0;
    display: inline-block;
}

.foot-logo {
    width: 150px;
        border-radius: 15px;
}

.iconz-round {
    width: 35px;
    height: 35px;
    background: #303030;
    border-radius: 100%;
    text-align: center;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #0981cf;
    box-shadow: 1px 1px 1px #000;
}


.iconz-round:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.social-ic-row {
    display: flex;
}

.social-ic-row li {
    margin-right: 10px;
}


.foot-address {}

.foot-address li {
    display: block;
    position: relative;
    padding-left: 48px;
    margin-bottom: 20px;
    min-height: 30px;
}

.foot-address li .icon-wrap {
    position: absolute;
    left: 0;
    top: 0;
}

.foot-address li:last-child {
    margin-bottom: 0;
}

.foot-address li p {
    line-height: 25px;
}

.foot-address p a {
    color: white !important;
}

footer .widget ul li a:hover {
    color: #fff;
}
.foot-address li p b {
    color: #fff;
    font-weight: 600;
}


@media screen and (min-width: 1100px){
    .widget.foot-2 {
        padding-left: 50px;
    }

    .meeting-section .container,
    .counter-section .container {
        padding: 0 100px;
    }

}


.copyright-row {
    background: #000;
    padding: 14px;
    text-align: center;
}

.copyright-row p {
    font-size: 13px;
        font-weight: 300;
}

.newsletter-wrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

.newsletter-wrap input[type="text"] {
    padding: 10px 15px;
    width: 100%;
    height: 45px;
    border: 0;
}

.n-btn {
width: 55px;
    height: 45px;
    position: relative;
    border: 0;
    background: linear-gradient(26deg, #072694, #00a0e3);
    color: #fff;
}

.n-btn:hover {
    background: var(--secondary-color);
}


/*bread css*/

.plain-breadcrumb:after{
    display: none;
}

.bread-inner .right {
    display: none;
}

.bh-lg .bread-inner{
     min-height: 600px;
}


.bread-inner {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
}

.breadcrumb-wrapper {
    position: relative;
    background: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.bread-inner .left h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
}

.bread-inner .left p {
    max-width: 500px;
    margin-top: 20px;
    color: #f8f3f3;
    background: linear-gradient(45deg, black, transparent);
    padding: 10px;
}

.bread-inner .left h2 span {
    font-weight: 400;
}

.bread-inner .page-nav {
    background: #00000096;
    padding: 14px 20px;
    border-radius: 25px;
    color: #fff;
}

.bread-inner .page-nav a {
    color: var(--primary-color);
}


.breadcrumb-wrapper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
        background: linear-gradient(357deg, black, transparent);
}

.breadcrumb-wrapper:after {
    content: '';
    background-image: url(../../assets/images/bread-bg.png);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-size: inherit;
    left: 0;
}

.white-breadcrumb {
    background: #fff;
}

.white-breadcrumb:before,
.white-breadcrumb:after {
    display: none;
}

.white-breadcrumb .bread-inner .left h2 {
    color: #000;
}

.white-breadcrumb .page-nav {
    background: #000;
    color: #fff !important;
}

.white-breadcrumb .page-nav a {
    color: #fff;
}



/*about us*/
.about-section {
        /*background-image: url(../../assets/images/bg-1.png);*/
        position: relative;
        background-repeat: no-repeat;
        background-size: cover;
}

.about-section .content-box {padding: 90px 20px;}

.about-section .content-box h6 {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 15px 0;
}

.about-section .content-box h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
}

.about-section .content-box h2 b {
    font-weight: 700;
}

.about-section .content-box p {
    margin: 25px 0;
}

.about-section .image-box {
    position: relative;
    right: 0;
    top: 0;
    max-width: 500px;
    overflow: hidden;
    border-top-left-radius: 40px !important;
    border-bottom-right-radius: 40px !important;
    border-radius: 2px;
    box-shadow: 13px 11px 1px #3ba2daa3;
    background: transparent;
}

.about-section .image-box .v-btn {
    background: var(--primary-color);
    width: 100px;
    height: 100px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 20px;
    border-radius: 100%;
    color: #fff;
    border: 25px solid #fff;
    outline-offset: 15px;
    box-shadow: 1px 1px 20px #0000009e;
    position: absolute;
    bottom: 74px;
    right: 37%;
}


.about-bread::before {
    background: linear-gradient(108deg, #1310102b, transparent);
}




#aboutModal {}

#aboutModal .modal-content {
    background: transparent;
}

#aboutModal .modal-body {
    padding: 0;
}

#aboutModal .modal-body button.btn-close {
    position: absolute;
    top: -41px;
    right: 0;
    color: #fff !important;
    background-color: white;
    padding: 8px;
    border-radius: 100%;
    opacity: 0.7;
    background-size: 11px;
}

#aboutModal .modal-dialog {
    max-width: 600px;
}


.mission-section {}

.mission-section .inner-box {
    display: flex;
    flex-wrap: wrap;
}

.mission-section .inner-box .col {
  position: relative;
    min-height: 480px;
    display: flex;
    padding: 90px;
    overflow: hidden;
    min-width: 300px;
    flex: 1;
    max-width: 100%;
}



.mission-section .conent-box {
    position: relative;
}

.mission-section .conent-box h3 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    line-height: initial;
}

.mission-section .conent-box p {
    padding: 20px 0;
    color: #fff;
}

.mission-section .conent-box h3 b {
    font-weight: 800;
}

.mission-section .inner-box .col-right {
    align-items: flex-end;
    background: linear-gradient(45deg, #000809, #046671);
}

.mission-section .inner-box .col-right:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../../assets/images/mision.png);
    top: 0;
    left: 0;
    opacity: 0.2;
    filter: saturate(0.5);
}


.mission-section .inner-box .col-left {
    background: linear-gradient(45deg, #561500, #db4818);
}

.mission-section .inner-box .col-left:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../../assets/images/vision.png);
    top: 0;
    left: 0;
    opacity: 0.2;
}


.mission-section .inner-box .col-right:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 200px;
    background-image: url(../../assets/images/m-bg.png);
    top: -28px;
    right: 0;
    background-size: 100%;
    transform: scalex(-1) scaley(-1);
}


.mission-section .inner-box .col-left:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 200px;
    background-image: url(../../assets/images/m-bg.png);
    bottom: -28px;
    left: 0;
    background-size: 100%;
}

/*geeken-vision-section*/


.geeken-vision-section {
    /*background: linear-gradient(12deg, #e9e9e9, transparent);*/
}

.geeken-vision-section .video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    height: 360px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 18px 18px 0px 0px #00a0e36e;
}

.geeken-vision-section .video-wrapper iframe {
}


/*team*/

.team-section .item-box {
        padding: 15px;
}

.team-section .item-box .image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 1px 1px 11px #0000004d;
    height: 350px;
}

.team-section .item-box .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section .item-box .content-box {
    background: white;
    width: 80%;
    margin: 0 auto;
    position: relative;
    top: -35px;
    box-shadow: 0px 2px 17px #0000002b;
    padding: 18px 15px;
    border-radius: 20px;
    text-align: center;
}

.team-section .item-box .content-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10px;
}

.team-section .item-box .content-box h6 {
    color: var(--content-color);
}



/*esg-section*/

.esg-section .esg-inner {
    max-width: 900px;
    margin: 0 auto;
}

.esg-section .esg-inner .esg-head {
    text-align: center;
}

.esg-section .esg-inner .esg-head h2 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
}

.esg-section .esg-inner .esg-head h5 {
    padding-top: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: initial;
}



.esg-section .esg-inner .esg-content {}

.esg-section .esg-inner .esg-content {
    padding: 20px 0;
    text-align: center;
}

.esg-section .esg-inner .esg-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.esg-section .esg-img {
    margin-top: -100px;
}

.esg-section .esg-inner .esg-content p {
    padding: 10px 0;
}

/*.ewaste-section */

.ewaste-section {
    position: relative;
    background-image: url('../../assets/images/e-waste.png');
        background-size: cover;
}

.ewaste-section .inner-wrapper {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.ewaste-section h3 {
    font-size: 4rem;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.ewaste-section p {
    color: #fff;
}

.ewaste-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    top: 0;
    left: 0;
    right: 0;
}

/*process*/
.process-section .inner-box {
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}

.process-section .inner-box .image-box {}

.process-section .inner-box .image-box img {
    width: 220px;
    animation: updown 1s infinite  alternate;
}

.process-section .inner-box h2 {
    font-size: 10rem;
    position: absolute;
    top: 0;
    left: 50px;
    font-weight: 900;
    color: #ececec;
    z-index: -1;
    text-shadow: 2px 3px 0px #00000014;
}

.process-section .inner-box h5 {
    font-size: 1.2rem;
    line-height: initial;
    padding: 10px;
}


@keyframes updown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}


@keyframes mymove {
  
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
    20% {
    -webkit-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  54% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  82% {
    -webkit-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
 }


/*gallery*/

.gallery-section .gallery-inner {
    display: flex;
    flex-wrap: wrap;
}

.gallery-section .gallery-inner .img-gallery-magnific {
    min-width: 300px;
    flex: 1;
    max-width: 100%;
}


.gallery-section .magnific-img {
    width: 100%;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.gallery-section .magnific-img img {
    width: 100%;
}

.gallery-section .magnific-img i {
    position: absolute;
    left: 50%;
    top: 100%;
    font-size: 20px;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #0303033d;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #fff;
    border-radius: 100%;
    transition: .3s ease-in-out;
}

.gallery-section .magnific-img .overlay {
    background: #0000007d;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s ease-in-out;
}

.gallery-section .gallery-inner .img-gallery-magnific:hover {}

.gallery-section .gallery-inner .img-gallery-magnific:hover .overlay {
    opacity: 1;
}

.gallery-section .gallery-inner .img-gallery-magnific:hover .overlay i {
    top: 50%;
}


/*contact wrapper */

.contact-wrapper {
    background:#070707;
}

.contact-section {}

.contact-section h3 {
    font-size: 45px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.contact-section h3 span {
    font-weight: 200;
    color: var(--primary-color);
}

.contact-section p {
    color: #858587;
    text-align: center;
    padding: 25px 0;
    max-width: 484px;
    margin: auto;
}


.contact-section .input-group {
    background: #fffffffc;
    padding: 7px 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    border-bottom: 5px solid #625e5e29;
    box-shadow: -3px 11px 20px #00000012;
    border: 1px solid #e5e5e5;
}

.contact-section .input-group .form-control {
    background: transparent;
    border: 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    height: 45px;
}

.contact-section .input-group i {
    color: var(--primary-color);
}


.contact-section .input-sec {
    max-width: 900px;
    margin: 15px auto;
    margin-bottom: 40px;
}


.add-box {
    display: flex;
    padding: 20px;
    border-top: 1px solid #505050;
    margin-top: 60px;
}

.add-box .add-row {
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: flex-start;
    min-width: 300px;
    max-width: 100%;
    flex: 1;
}

.add-box .add-row i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00a0e3, #02577b);
    border-radius: 100%;
    margin-right: 10px;
    line-height: 50px;
    font-size: 18px;
    color: #fff;
}

.add-box .add-row .content-box {
    text-align: left;
    padding-left: 12px;
}

.add-box .add-row .content-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.add-box .add-row .content-box p {
    line-height: initial;
    margin-bottom: 8px;
    font-size: 1rem;
}

.add-box .add-row .content-box p a {
    word-break: break-all;
    color: #fff !important;
}

.add-box .add-row .content-box p b {
    font-weight: 700;
    color: #fff !important;
    font-weight: 400;
}




/*process-section*/

.process-section{
    position: relative;
}

.process-section .inner-wrapper{
    max-width: 700px;
    margin: 0 auto;
}

.process-tree .tree-row{
    display: flex;
    position: relative;
    justify-content: center;
    margin-bottom: 20px;
}

.process-tree .tree-row:nth-child(1){
    margin-bottom: 80px;
}

.process-tree .tree-row:nth-child(1) .tree-col {
    min-width: 210px;
}


.process-tree .tree-row  .tree-col {
      position: relative;
    margin: 10px;
    padding: 10px 30px;
    text-align: center;
    border: 2px solid #db4818;
    color: #000;
    border-radius: 40px;
    max-width: 400px;
    min-width: 400px;
    background: #fff;
    line-height: 26px;
}

.process-tree .tree-row:nth-child(1):after{
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #db4818;
    border-radius: 100%;
    bottom: -46px;
    transform: translate(-50%, 0px);
    left: calc(50% - 1px);
}


.process-tree .tree-row:nth-child(1):before {
    content: '';
    width: calc(100% - 238px);
    height: 1px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 10px);
    bottom: -32px;
    border-top: 2px dashed #db4818;
}

.process-tree .tree-row  .tree-col:before {
    content: '';
    width: 5px;
    height: 50px;
    position: absolute;
    bottom: -50px;
    transform: translate(-50%, 0%);
    left: 50%;
    border-left: 2px dashed #db4818;
    z-index: -1;
}


.process-tree .tree-row:nth-child(2)  .tree-col:after {
    content: '';
    width: 5px;
    height: 50px;
    position: absolute;
    top: -50px;
    transform: translate(-50%, 0%);
    left: 50%;
    border-left: 2px dashed #db4818;
    z-index: -1;
}


.process-tree .tree-row:last-child .tree-col {
    background: #db4818;
    color: #fff;
}

.process-tree .tree-row:last-child .tree-col:before {
   display: none;
}


.tree ul {
  margin: 0 0 0 13em;
  padding: 0;
  list-style: none;
  color: #db4818;
  position: relative;
}
.tree:before, .tree ul:before {
  content: "";
  display: block;
  width: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 2px dashed;
  background: white;
  z-index: -1;
}
.tree li {
  font-weight: bold;
  line-height: 3em;
  margin: 0;
  padding: 1.5em 0 0 2em;
  position: relative;
  z-index: -1;
}
.tree li:before {
  border-top: 2px dashed;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin-top: 1em;
  position: absolute;
  top: 1.5em;
  width: 2em;
}
.tree li:last-child:before {
  background: white;
  bottom: 0;
  height: auto;
  top: 1.5em;
}
.tree > li:before {
  border-top: none !important;
}
.tree li div {
  border-radius: 25px;
  border: 2px solid #db4818;
  margin: 0;
  max-width: 300px;
  min-width: 210px;
  padding: 10px 20px;
  background: white;
  color: #000;
  font-weight: 500;
  text-align: center;
  line-height: 27px;
}

ul.tree {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
ul.tree:before {
  border-left: none;
}

.sticky {position: relative;
  top: 0px;
  width: 100%;
}






/*new layout css start*/

.service-icon-wrap {
    display: flex;
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
}

.service-icon-wrap .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    outline: 1px solid #3d3d3d;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
    min-height: 210px;
    transition: all 300ms linear;
    min-width: 150px;
}

.service-icon-wrap .col img {
    width: 90px;
      animation: front-rotation 3s infinite;
      border-radius: 100%;
    /*box-shadow: 1px 1px 18px #15b8ff52;*/
}


@keyframes front-rotation{
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}


.service-icon-wrap .col h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 16px 0;
    position: relative;
        text-align: center;
    line-height: initial;
    padding-top: 10px;
}

.service-icon-wrap .col h3:before {
    position: absolute;
    content: '';
    width: 40px;
    height: 2px;
    background: white;
    bottom: 0;
    left: 50%;
    display: block;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    transition: all 300ms linear;
}

.service-icon-wrap .col h6.link-text {
    color: #d1cfce;
    padding: 10px;
    position: relative;
    bottom: -100px;
    transition: all 300ms linear;
    text-transform: uppercase;
    font-size: 13px;
}


.service-icon-wrap .col{
    position: relative;
    overflow: hidden;
}



.service-icon-wrap .col .bg {
    background-image: url(../../assets/images/bg-icon-box.jpeg);
    background-position: 50%;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
        position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


  .service-icon-wrap  .link-box {
    text-align: center;
}



@media screen and (min-width: 1092px){

    .service-icon-wrap .col:hover {
        min-height: 100px;
        margin: -25px 0;
        outline-color: #e87a0e00;
        box-shadow: -1px 3px 17px 0px #15b8ff78;
    }

    .service-icon-wrap .col:hover .bg {
        opacity: 1;
    }


    .service-icon-wrap .col:hover h6.link-text {
        bottom: 0;
        position: relative;
    }

    .service-icon-wrap .col:hover h3:before {
        bottom: -40px;
    }


}



.service-icon-wrap .col h6.link-text i {
    margin-left: 6px;
}


.content-wrap {
     padding: 30px;
}

.content-title {
    font-size: 2.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 42px;
}


/* home-video-section */

.home-video-section {
    position: relative;
    overflow: hidden;
}


.home-video-section:before {
    content: '';
    background-image: url(../../assets/images/shape-2.png);
    position: absolute;
    width: 300px;
    height: 300px;
    top: 0;
    left: -30px;
    background-size: contain;
    background-repeat: no-repeat;
}


.home-video-section:after {
    content: '';
    background-image: url(../../assets/images/shape-1.png);
    position: absolute;
    width: 285px;
    height: 279px;
    bottom: 0;
    right: -146px;
    background-size: contain;
    background-repeat: no-repeat;
}



.home-video-section .content-title {
    margin-left: -100px;
    max-width: 400px;
    /*background: linear-gradient(45deg, black, transparent);*/
}

.home-video-section .content-wrap {
    padding: 30px;
}


.home-video-section .content-wrap .btn {
    margin-top: 20px;
}

.home-video-section .video-wrapper {
    background: #1f1e1e;
    box-shadow: 1px 1px 14px 6px rgb(0 157 225 / 30%);
}


/*product section*/
.product-outer {
    position: relative;
    height: 450px !important;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

.product-outer .content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 40%);
    padding: 30px;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.product-outer .content-overlay .image-box {
    height: 100%;
}

.product-outer .content-overlay .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-outer .image-box {
     width: 100%;
    height: 100%;
}

.product-outer .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-outer .content-overlay h2 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: initial;
}

.product-outer .content-overlay a {
    margin-top: auto;
    width: 100%;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
}

.product-outer .content-overlay a i {
    color: var(--secondary-color);
}

.product-outer .hvr-effect {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: -120%;
        background-color: rgba(255, 255, 255, 0.3);
        transition: 0.4s;
        transform: skewX(10deg);
      }

      
.product-outer:hover .hvr-effect {
        left: 120%;
}



@media screen and (min-width:  1100px){
    .product-outer:hover .content-overlay {
        background: linear-gradient(219deg, #0e8ed685, #000000);
    }

    .product-outer:hover {
        transform: scale(1.1);
        z-index: 9;
        overflow: hidden;
    }

}

.home-product-slide .slick-track {
    padding: 50px 0;
}




/*gallery-wrapper*/
.insta-section {
    background: linear-gradient(163deg, #2f2f2f, transparent);
}

.insta-wrapper{}

.insta-wrapper .image-box{
    position: relative;
    margin-top: 0;
    height: auto;
    padding: 0;
        margin: 10px;
    border: 1px solid #383838;
}

.insta-wrapper .image-box:hover .content-overlay{
    opacity: 1;
}

.insta-wrapper .image-box:hover .content-box{
   transform: translateY(10%);
}
.insta-wrapper .image-box .content-box i {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
}

.insta-wrapper .image-box .content-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(188deg, rgba(88,81,216,0.9) 0%, rgba(131,58,180,0.9) 26%, rgba(193,53,132,0.9) 71%, rgba(225,48,108,0.8) 100%);
    transition: opacity .5s ease;
    text-align: left!important;
    opacity: 0;
    margin-top: -1px;
}

.insta-wrapper .image-box .content-box{
    transition: all .5s ease;
    width: 100%;
    padding: 0;
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.insta-wrapper .image-box .content-box h3{

color: #fff;

font-size: 16px;

text-transform: capitalize;

font-weight: 400;
}


.insta-wrapper .image-box .content-box h4{

color: #fff;

margin-top: 10px;

font-size: 25px;
}

.insta-wrapper .row [class*="col-"] {
    padding: 0;
}


/*testimonial*/

.testimonial-section{
    position: relative;
    background-image: url(../../assets/images/bg/bg-1.jpg) ;
        background-size: cover;
    background-attachment: fixed;
}



.testimonial-slide {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-box .image-box {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 100%;
    margin: auto;
}

.testimonial-box .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-box p {
    font-size: 1.3rem;
    padding: 25px 0px;
    position: relative;
    padding-top: 91px;
}

.testimonial-box h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 10px 0;
}

.testimonial-box h3 {
    color: #fff;
    padding: 5px 0px;
    display: none;
}   

.testimonial-box p:before {
    content: '"';
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 9rem;
    transform: translate(-50%, 0);
    color: var(--primary-color);
}


/* testimonial-slide arrow setting*/

.testimonial-slide .slick-arrow {
    background: #000;
    font-size: 18px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 100%;
    color: var(--secondary-color);
    position: absolute;
    top: 35px;
}

.testimonial-slide .slide-arr-right {
    right: 39%;
}

.testimonial-slide .slide-arr-left {
    left: 39%;
}

.slick-dots li button:before {
    color: #fff !important;
    font-size: 30px !important;
}

.slick-dots li {
    margin: 0 1px !important;
}

.slick-dots {bottom: -35px !important;}



/*solution-wrapper*/



.solution-wrapper{
    position: relative;
        margin-top: -60px;
}

.solution-wrapper .row {
    align-items: center;
        margin-bottom: 80px;
}


.solution-wrapper .content-box{
    position: relative;
    padding: 50px;
    max-width: 500px;
    margin: auto;
}


.solution-wrapper .content-box h3{
    position: relative;
    font-size: 2rem;
    color: #fff;
    line-height: initial;
}

.solution-wrapper .content-box ul {
    padding-left: 15px;
    margin-bottom: 20px;
}

.solution-wrapper .content-box ul li {
    color: var(--content-color);
    list-style: disc;
    padding-bottom: 12px;
}


.solution-wrapper .content-box b{
    position: absolute;
    color: #4f4f4f;
    font-size: 7rem;
    font-weight: 600;
    top: 12px;
    left: 12px;
}


.solution-wrapper .content-box p{
    position: relative;
    margin: 20px 0;
}

.solution-wrapper .image-box {
    height: 400px;
    width: 300px;
    margin: 0 auto;
}

.solution-wrapper .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -11px 11px 1px #4f4f4f;
}

.solution-wrapper .content-box a.btn-border-white {
    border-radius: 0px;
}


.solution-wrapper .container {
    max-width: 1200px;
}

.about-bread h2 {
    text-transform: uppercase;
}

.about-bread h2 b {
    font-size: 4rem;
}


/*cock-story-section*/

.aboutgotimeline {
    float: left;
    width: 100%;
    position: relative;
}


.aboutgotimeline  .image-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.aboutgotimeline  .image-box img {
      width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    object-position: top;
}

.aboutgotimeline .abLeftbox {
    float: left;
    width: 50%;
    height: 500px;
    -webkit-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
    background-size: 100% cover;
    background-position: bottom center;
     position: relative;
}

.aboutgotimeline .abrightbox {
    float: right;
    width: 50%;
    height: 500px;
    -webkit-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
    background-size: 100% cover;
    background-position: bottom center;
    position: relative;
}

.line-abTlline {
    position: absolute;
    top: 0;
    left: 0px;
    width: 7px;
    height: 33vh;
    background: var(--primary-color);
    z-index: 3;
}

.aboutgotimeline .wrapaboutlconten {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
}

.aboutgotimeline .abLeftbox:hover .image-box img,
.aboutgotimeline .abrightbox:hover .image-box img {
    filter: none;
}

.aboutgotimeline .wrapaboutlconten h2.hclass {
    color: #fff;
    margin-bottom: 10px;
    font-size: 40px;
    font-style: normal;
    margin-bottom: 30px;
}

.aboutgotimeline .wrapaboutlconten a.waves-effect {
    text-decoration: none;
    background: transparent;
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid white;
    color: #fff;
    font-size: 16px;
}

.aboutgotimeline .wrapaboutlconten a.waves-effect:hover {
    background: #fff;
    color: #000;
}

.aboutgotimeline .abLeftbox:before {
    content: '';
    background: rgb(0 0 0 / 6%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.aboutgotimeline .abrightbox:before {
    content: '';
    background: linear-gradient(45deg, #000000c7, transparent);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}


.msg-box {
    position: absolute;
    padding: 50px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, black, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 1;
    top: 0;
    left: 0;
}

.msg-box h3 {
   font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    line-height: initial;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 10px);
    transition: all .3s ease;
    top: 80%;
}

.msg-box h3 span {
    color: var(--secondary-color);
}

.msg-box p {
    color: #f2f2f2;
        position: relative;
        left: -150%;
        transition: all .3s ease;

}


@media screen and (min-width:  1100px){
    .msg-box:hover p {
        left: 50% !important;
        position: relative;
        text-align: center;
        padding-top: 10px;
        transform: translate(-50%, 0px);
    }

    .msg-box p {
        color: #f2f2f2;
        position: relative;
        left: -150%;
        transition: all .3s ease;
        max-width: 500px;
        text-align: left;
    }

}


.msg-box:hover h3 {
    top: 25%;
}

.msg-box:hover p {
    left: 0;
    position: relative;
    text-align: center;
    padding-top: 10px;
}

.clientele-box {padding: 15px;}

.clientele-box img {
    border-radius: 10px;
    /* filter: grayscale(1.9); */
        width: 100%;
    height: auto;
}


.wow {
  visibility: hidden;
}



























/*other pages css*/

.mile-box {
    background: #232323;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.mile-box h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.mile-box:nth-child(2) {
    color: red;
    background: red;
}

.milestone-wrapper {
    position: relative;
    max-width: 90%;
    margin: 100px auto;
}

.milestone-wrapper .container .row .col-md-6:nth-child(2) .mile-box {
    background: red;
    margin-top: 40px;
    margin-left: 20px;
}

.milestone-wrapper .container .row .col-md-6:nth-child(1) .mile-box {
    text-align: right;
    margin-right: 20px;
}


.mile-box {
    background: #232323;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.mile-box h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mile-box:nth-child(2) {
    color: red;
    background: red;
}

.milestone-wrapper {
    position: relative;
}

.milestone-wrapper .container .row .col-md-6:nth-child(2) .mile-box {
    background: #191919;
    margin-top: 100px;
    margin-left: 20px;
    position: relative;
    box-shadow: 12px 11px 0px #f58634;
    border: 3px solid #070707;
}

.milestone-wrapper .container .row .col-md-6:nth-child(1) .mile-box {
    text-align: right;
    margin-right: 20px;
    position: relative;
    box-shadow: -12px 11px 0px #3da2da;
    border: 3px solid #070707;
}

.milestone-wrapper:before {
    width: 3px;
    height: calc(100% - 100px);
    content: '';
    background: #474747;
    left: 50%;
    position: absolute;
    top: 106px;
}

.milestone-wrapper .container .row .col-md-6:nth-child(2) .mile-box:before {
    content: '';
    width: 20px;
    height: 20px;
    background: #f58634;
    position: absolute;
    left: -43px;
    border-radius: 100%;
    top: 50%;
    border: 4px solid #595959;
}

.milestone-wrapper .container .row .col-md-6:nth-child(1) .mile-box:before {
    content: '';
    width: 20px;
    height: 20px;
    background: #3da2da;
    position: absolute;
    right: -45px;
    border-radius: 100%;
    top: 50%;
    border: 4px solid #595959;
}

.milestone-wrapper .container .row .col-md-6:nth-child(2) .mile-box:after {
content: '';
    width: 40px;
    height: 3px;
    position: absolute;
    left: -34px;
    border-radius: 5px;
    top: 55%;
    border-bottom: 2px dashed #f58634;
    z-index: -1;
}


.milestone-wrapper .container .row .col-md-6:nth-child(1) .mile-box:after {
    content: '';
    width: 40px;
    height: 3px;
    position: absolute;
    right: -34px;
    border-radius: 5px;
    top: 55%;
    border-bottom: 2px dashed #3da2da;
    z-index: -1;
}


@media screen and (max-width:  667px) {
    .mile-box {}

    .why-col-wrap .col:nth-child(even) .why-box {
        background: linear-gradient(45deg, #07537d, #010f17);
    }

    .why-col-wrap .col:nth-child(odd) .why-box {
        background: linear-gradient(45deg, #020202, #313131);
    }

    .milestone-wrapper .container .row .col-md-6:nth-child(2) .mile-box {
        margin-top: 0;
    }

    
}


.why-box {
    background: #141212;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 0;
    min-height: 245px;
    box-shadow: 4px -5px 0px #3da2da00;
    border-top-left-radius: 39px;
    border-bottom-right-radius: 39px;
    /*border: 3px solid #3f3f3f;*/
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: flex-start;
    padding-top: 35px;
}

.why-box i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.why-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    border-top-left-radius: 39px;
    line-height: initial;
}

.why-box p {
}
.why-col-wrap {
    flex-wrap: wrap;
}

.why-col-wrap .col {
    min-width: 263px;
    flex: 1;
    max-width: 100%;
    width: 100%;
}

.why-col-wrap .col:nth-child(even) .why-box {
    background: linear-gradient(45deg, #07537d, #010f17);
}

.why-col-wrap .col:nth-child(odd) .why-box {
    background: linear-gradient(45deg, #020202, #313131);
}


/*our-strength*/

.our-strength .inner-box.strength-title {
    display: flex;
    align-items: center;
    border: 0;
}


.our-strength .inner-box.strength-title h3 {
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
    padding-right: 20px;
}

.our-strength .inner-box {
    min-height: 250px;
    border: 1px solid #313131;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 50px;
    position: relative;
}

.our-strength .inner-box h3 {
    font-size: 1.1rem;
    color: #fff;
    padding-bottom: 12px;
    padding-top: 2px;
}

.our-strength .inner-box i {
    font-size: 2rem;
    color: #fff;
    width: 65px;
    height: 60px;
    background: #222221;
    position: relative;
    margin-top: -34px;
    line-height: 60px;
    text-align: center;
    top: -13px;
    border-radius: 10px;
}



.our-strength {
    background-image: url(../../assets/images/why-bg.jpeg);
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.our-strength:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    top: 0;
    left: 0;
}


/*.our-strength:after {
    content: '';
    background-image: url(../../assets/images/shape-1.png);
    position: absolute;
    width: 285px;
    height: 279px;
    bottom: 0;
    right: -146px;
    background-size: contain;
    background-repeat: no-repeat;
}
*/


/*.our-strength:before {
    content: '';
    background-image: url(../../assets/images/shape-2.png);
    position: absolute;
    width: 300px;
    height: 300px;
    top: 0;
    left: -30px;
    background-size: contain;
    background-repeat: no-repeat;
}*/



.bs-header .navbar li{
    position: relative;
}

.bs-header .navbar li 
 .dropdown-menu {
    background: rgba(0, 0, 0, 0.8);
}

.bs-header .navbar li .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 7px 10px;
    text-transform: uppercase;
}

.bs-header .navbar li .dropdown-menu .dropdown-item:hover {
    background: black;
    color: var(--primary-color);
}


@media screen and (min-width:  992px){
  .bs-header .navbar li:hover ul.dropdown-menu {
        display: block;
    }  
}





.horizontal-tabs {
    /* background: red; */
    position: relative;
}

.horizontal-tabs .nav-tabs {
    justify-content: center;
    border: 0;
}

.horizontal-tabs .nav-tabs .nav-item {
}

.horizontal-tabs .nav-tabs .nav-link {
    padding: 10px 15px;
    border-radius: 0;
    margin: 6px;
    border: 1px solid white;
    color: #fff;
}

.horizontal-tabs .nav-tabs .nav-link.active {
    background: #3ba2da;
    border-color: #3ba2da;
}

.gallery-wrapper {}

.gallery-wrapper .image-box {
    height: 240px;
    margin-bottom: 20px;
}

.gallery-wrapper .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.upcoming-event {
    position: relative;
    position: relative;
    background: #151515de;
    overflow: hidden;
}

.upcoming-event:before {
    position: absolute;
    content: '';
    height: 500px;
    background: linear-gradient(195deg, #a5a5a552, transparent);
    width: 500px;
    top: 0;
    background: #dc4141;
    border-radius: 100%;
    filter: blur(81px);
    opacity: 0.3;
    left: -300px;
}

.upcoming-event .container {
    position: relative;
}

.upcoming-event:after {
    position: absolute;
    content: '';
    height: 500px;
    background: linear-gradient(195deg, #a5a5a552, transparent);
    width: 500px;
    bottom: 0;
    background: #3ba2da;
    border-radius: 100%;
    filter: blur(82px);
    opacity: 0.3;
    right: -300px;
}


.event-box img {
    padding: 10px;
    background: #18181899;
    box-shadow: -1px 16px 20px 7px #000;
}

/*brand-video*/

.brand-video {
    position: relative;
}

.brand-video:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #726c6c, transparent);
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 0;
    opacity: 0.5;
}

.brand-video-wrap {
    height: 300px;
    margin-bottom: 25px;
}


.hiring-section{
    position: relative;
    overflow: hidden;
}

.hiring-section:after {
    content: '';
    background-image: url(../../assets/images/shape-1.png);
    position: absolute;
    width: 285px;
    height: 279px;
    bottom: 0;
    right: -146px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}



.hiring-section:before {
    content: '';
    background-image: url(../../assets/images/shape-2.png);
    position: absolute;
    width: 300px;
    height: 300px;
    top: 0;
    left: -30px;
    background-size: contain;
    background-repeat: no-repeat;
}

.hiring-section .input-group {
    border-color: #56565600;
    background: #1d1c1cad;
    border-radius: 0;
}


.opening-jobs {
    /*border: 1px solid #f2ecec;*/
    border-radius: 20px;
}

.opening-jobs .image-box {
    max-width: 350px;
    margin: 0 auto;
}

.opening-jobs .image-box p {
    position: relative;
    font-weight: 400;
    font-size: 1.6rem;
    color: #fff;
}

.hiring-titile {
    font-size: 1.6rem;
    color: #fff;
    padding-bottom: 15px;
}

.job-card {
    background: #2c2c2c;
    border-radius: 0px;
    padding: 20px !important;
}

.job-card h3 {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}

.job-card p {
    margin-top: 10px;
}




.industry-wrapper {
    display: flex;
    flex-wrap: wrap;
}


.industry-section{
    position: relative;
    overflow: hidden;
}

.industry-section:after {
    content: '';
    background-image: url(../../assets/images/shape-1.png);
    position: absolute;
    width: 285px;
    height: 279px;
    bottom: 0;
    right: -146px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}



.industry-section:before {
    content: '';
    background-image: url(../../assets/images/shape-2.png);
    position: absolute;
    width: 300px;
    height: 300px;
    top: 0;
    left: -30px;
    background-size: contain;
    background-repeat: no-repeat;
}


.industry-wrapper .col {
    min-width: 250px;
    padding: 15px;
    position: relative;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 15px;
    transition: all .3s ease;
    /* box-shadow: 1px 1px 1px #000; */
}


.industry-wrapper .col:hover {
    transform: scale(1.1);
}


.industry-wrapper .col .image-box {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-left: auto;
    position: relative;
}

.industry-wrapper .col .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-wrapper .col h3 {
    color: #fff;
    font-size: 1rem;
    padding: 14px 0;
    text-align: center;
    background: #252525e8;
    position: relative;
    top: -11px;
    z-index: 1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: -1px 16px 18px #000;
}

/*.industry-wrapper .col .image-box:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00000070, transparent);
    background: rgb(0,0,0);
    background: linear-gradient(360deg, rgb(0 0 0 / 66%) 0%, rgb(0 0 0 / 3%) 30%, rgba(0,212,255,0) 100%);
}*/


.why-choose {
    background-image: url(https://img.freepik.com/free-vector/abstract-colorful-technology-dotted-wave-background_1035-17450.jpg?w=2000);
    position: relative;
    background-size: contain;
    background-attachment: fixed;
}

.why-choose:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    top: 0;
}

.why-choose .container {
    position: relative;
}



@media screen and (max-width:  667px){
    .bs-header .navbar li .dropdown-menu .dropdown-item {
        color: #fff;
        padding: 10px 0px;
        text-align: center;
    }

    .bs-header .navbar li.nav-item .dropdown-menu {
        background: #2a2a2a;
    }

    .msg-box h3 {
        position: relative;
        top: auto;
        padding-bottom: 10px;
    }


    .why-box{
        margin-bottom: 15px;
        min-height: auto;
    }

    .our-strength .inner-box.strength-title h3{
        font-size: 2rem;
    }

    .our-strength .inner-box{
        min-height: auto;
    }

    .opening-jobs {
        border-radius: 20px;
        margin-bottom: 25px;
    }

    .hiring-section:after{
            right: -186px;
    }

}







 .slider {
   display: flex;
   height: 350px;
   max-height: auto;
   overflow-y: hidden;
   overflow-x: scroll !important;
   padding: 16px;
   transform: scroll(calc(var(--i,0)/var(--n)*-100%));
   scroll-behavior: smooth;
   justify-content: center;
}
 .slider::-webkit-scrollbar {
   height: 5px;
   width: 150px;
   display: none;
}
 .slider::-webkit-scrollbar-track {
   background: transparent;
}
 .slider::-webkit-scrollbar-thumb {
   background: #888;
}
 .slider::-webkit-scrollbar-thumb:hover {
   background: #555;
}
 .slider img:hover {
   transform: scale(1.05);
   box-shadow: 10px 10px 10px rgba(0,0,0,0.15);
}
 .slide {

   position: relative;
}
 .slide img {
   height: 100%;
   width: 250px;
   margin: 0 10px;
   object-fit: cover;
   border-radius: 15px;
   cursor: pointer;
   transition: .25s ease-in-out;
}
 .control-prev-btn {
   position: absolute;
   top: 50%;
   left: 0;
   background-color: rgba(255,255,255,0.55);
   height: 100px;
   line-height: 100px;
   width: 45px;
   text-align: center;
   box-shadow: 0 1px 3px #888;
   user-select: none;
   color: #444;
   cursor: pointer;
}
 .control-next-btn {
   position: absolute;
   top: 50%;
   right: 0;
   background-color: rgba(255,255,255,0.55);
   height: 100px;
   line-height: 100px;
   width: 45px;
   text-align: center;
   box-shadow: 0 1px 3px #888;
   user-select: none;
   color: #444;
   cursor: pointer;
}
.slide img.zoomed{
    /* width: 500px;
    height: 600px; */
    width: auto;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -100px; /* Negative half of height. */
    margin-left: -250px; /* Negative half of width. */
    z-index: 1000;
    transform: scale(1) translatey(0) !important; 
  
}
.overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.45);
    top: 0;
    display: none;
}
.overlay.active{
  display: block;
}
 @media only screen and (max-width: 420px) {
   .slider {
     padding: 0;
     justify-content: left;
  }
   .slide {
     padding: 16px 10px;
  }
   .slide img {
     margin: 0;
  }
   .control-prev-btn {
     top: 37%;
  }
   .control-next-btn {
     top: 37%;
  }
  .slide img.zoomed{
    width: -webkit-fill-available;
    height: auto;
    position: fixed;
    top: 48%;
    left: 48%;
    margin-top: -101px;
    margin-left: -223px;
    z-index: 1000;
    transform: scale(1) translatey(0) !important;
}
 }

 

  .card {
    position: relative;
    width: 320px;
    height: 480px;
    background: #191919;
    border-radius: 20px;
    overflow: hidden;
    margin: auto;
  }
  
  .card::before {
    content: "";
    position: absolute;
    top: -50%;
    width: 100%;
    height: 100%;
    background: #ffce00;
    transform: skewY(345deg);
    transition: 0.5s;
  }
  
  .card:hover::before {
    top: -70%;
    transform: skewY(390deg);
  }
  
  .card::after {
    content: "CORSAIR";
    position: absolute;
    bottom: 0;
    left: 0;
    font-weight: 600;
    font-size: 6em;
    color: rgba(0, 0, 0, 0.1);
  }
  
  .card .imgBox {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 75px;
    z-index: 1;
  }
  /*
  .card .imgBox img {
      max-width: 100%;
      
      transition: .5s;
  }
  
  .card:hover .imgBox img {
      max-width: 50%;
        
  }
  */
  .card .contentBox {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
  }
  
  .card .contentBox h3 {
    font-size: 18px;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .card .contentBox .price {
    font-size: 24px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .card .contentBox .buy {
    position: relative;
    top: 100px;
    opacity: 0;
    padding: 10px 30px;
    margin-top: 15px;
    color: #000000;
    text-decoration: none;
    background: #ffce00;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.5s;
  }
  
  .card:hover .contentBox .buy {
    top: 0;
    opacity: 1;
  }
  
  .mouse {
    height: 300px;
    width: auto;
  }
  









