/* Basic Code */
:root{
  --color-1: #222 !important;
  --color-2: #BB2121 !important;
  --color-3: #f2f2f2 !important;
  --color-4: #f7f8f9 !important;
  --color-5: #0b243a !important;
  --logo-max-width: 120px;
  --logo-max-height: 60px;
  --e-global-typography-primary-font-family: "Roboto";
  --e-global-typography-secondary-font-family: "Montserrat";
}
::selection {
  color: var(--color-4);
  background: var(--color-2);
}
html, body{
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}
body{
    color: var(--color-1);
    font-family: var(--e-global-typography-primary-font-family);
}
a{
    color: var(--color-2);
    text-decoration: none !important;
    font-size: 16px;
}
p{
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 17px;
}
a:hover{
    color: var(--color-4);
    text-decoration: none;    
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--e-global-typography-primary-font-family);
}
h1{
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}
h2{
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
}
h3{
  font-size: 23px;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 15px;

}
h4{
  font-size: 21px;
  line-height: 1.2;
  font-weight: 500;

}
h5{
  font-size: 19px;
  line-height: 1.2;
  font-weight: 500;

}
h6{
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;

}
ul {
  list-style: none;
  padding-left: 0 !important;
}
p{
  margin-bottom: 0 !important;
}
h1.heading {
  margin-bottom: 2px;
  text-align: center;
  text-transform: capitalize;
}
h2.heading {
  font-size: 32px;
  margin-bottom: 2px;
  text-align: center;
  text-transform: capitalize;
}
.sub-heading h6{
  font-family: var(--e-global-typography-primary-font-family);
  /* letter-spacing: 1px; */
  margin-bottom: 10px;
}
.form-control {
  color: var(--color-1) !important;
}
/* button slide effect */
.btn-slide {
  padding: 12px 40px;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 3px 3px 3px 3px;
  color: var(--color-5);
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
}
.btn-slide i {
  padding-left: 10px;
}
.btn-slide:hover {
  /* Generic Hover style for a */
  color: #fff;
}

.btn-slide::after {
  /* Adds the overlay for creating slide effect */
  content: '';
  position: absolute;
  background-color: var(--color-2);
  z-index: -1;
  padding: 0.25em 0.5em;
  display: block;
  transition: all 0.35s;
}

.btn-slide:hover::after {
  /* Hover effect for the overlay slide effect */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.35s;
}

.left-slide::after {
  top: 0;
  bottom: 0;
  left: -100%;
  right: 100%;
}
/********************************
          My inCorp Css
********************************/
.incorp-header{
  display: block;
}
.section__header {
  display: none;
}
.incorp-header a{
  color: var(--color-1);
  transition:all 200ms ease-in-out;
  }
  .incorp-header a:hover {
  color: var(--color-2);
  transition:all 200ms ease-in-out;
  }
  .incorp-header ul{
  margin:0;
  padding:0;
  list-style-type:none;
  }

  .incorp-header .nav{
  display:flex;
  position:relative;
  margin-top: 6px;
  }
  .incorp-header .inner {
  display:flex;
  justify-content: space-between;    
  align-items: center;
  }
  .incorp-header .nav a{
  display:block;
  text-decoration:none;
  font-family: 'Roboto', sans-serif;
  }
  .incorp-header a.logo img {
      width: 90%;
  }
  .incorp-header .nav > li > a{
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-1);
  background-color: #FFFFFF;
  padding: 15px;
  border-bottom: 3px solid transparent;    
  margin: 0 5px;
  }
  .incorp-header .nav > li{
  position:relative;
  }
  .incorp-header .nav > li > ul{
  // display:none;
  background:rgba(0,0,0,0.1);
  position:absolute;
  top:100%;
  left:0;
  opacity:0;
  visibility: hidden;
  transform: translateY(20px);
  transition:all 300ms ease-in-out 500ms; // Added delay for usability
  transition:all 300ms ease-in-out;
  }
  .incorp-header .nav > li.big-nav > ul{
  // display:none;
  background:rgba(0,0,0,0.1);
  position:absolute;
  top:100%;
  left:0;
  opacity:0;
  visibility: hidden;
  transform: translateY(20px);
  transition:all 300ms ease-in-out 200ms; // Added delay for usability
  transition:all 300ms ease-in-out;
  }
  .incorp-header .nav > li > ul > li > a{
  padding: 4px 10px;
  }
  .incorp-header .nav > li:hover > ul{
  // display:block;
  opacity:1;
  visibility: visible;
  transform: translateY(0px);
  transition:all 300ms ease-in-out;
  }
  .incorp-header .nav > li.big-nav:hover > ul{
  // display:block;
  opacity:1;
  visibility: visible;
  transform: translateY(0px);
  transition:all 300ms ease-in-out;
  }
  .incorp-header .nav > li > a:hover{        
      border-bottom: 3px solid var(--color-2);
      color: var(--color-2);
  }
  .incorp-header .nav > li > a.active{        
    border-bottom: 3px solid var(--color-2);
    color: var(--color-2);
}
  .incorp-header .nav .big-nav{
  position:static;
  }
  .incorp-header .nav .big-nav > ul{
  min-height:400px;
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background-color: var(--color-3) !important;
  }
  .incorp-header .nav .big-nav > ul > li{
  width:20%;
  // position:relative;
  }
  .incorp-header .nav .big-nav > ul > li > a{
  padding: 15px 30px;
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;    
  }
  .incorp-header .nav .big-nav > ul > li > ul{
  display:none;
  position:absolute;
  top:0;
  left:20%;
  width:80%;
  background: #fff;
  }

  .incorp-header .nav .big-nav > ul > li.show > ul{
  display:block;
  background-color: #fff;
  }

  .incorp-header .nav .big-nav > ul > li > ul > li{
  display:block;
  width:100%;
  float:left;
  }
  .incorp-header .nav .big-nav > ul > li > ul > li.col3{
  width:33.3334%;
  padding:0 10px;
  }
  .incorp-header .nav .big-nav > ul > li > ul > li > a{
  font-weight:bold;
  border-bottom:1px solid #333;
  }
  .incorp-header .nav .big-nav > ul > li > ul > li a{
  padding:4px 10px;
  }


  .incorp-header .nav .big-nav.g-nav > ul{        
      width: 1080px;
      padding: 35px 0 20px;
      border-radius: 5px;
      border-style: solid;
      border-width: 0px 0px 10px 0px;
      border-color: var(--color-2);
      box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137254902);
      transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
      position: absolute;
      left: -20%;
      top: 100%;
      overflow: hidden;
  }
  .incorp-header .nav .big-nav.g-nav > ul ul.grid-nav {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
  }
  .incorp-header .nav .big-nav.g-nav > ul ul li ul {
      display: block;
      font-size: 13px;
      font-weight: 400;
      line-height: 1em;
  }
  .incorp-header .nav li.tab-nav-li.show a, li.tab-nav-li:hover a{
      background-color: var(--color-3);
      border-right: 1px solid var(--color-2);
      color: var(--color-2)
  }
  .incorp-header .nav li.tab-nav-li a{         
      padding: 15px 35px 15px 35px;
      border-right: 1px solid #66666630;
  }
  .incorp-header .nav .big-nav.g-nav > ul.tab-nav{
      padding: 0;
      background-color: #fff !important;
  }
  .incorp-header .nav .big-nav.g-nav > ul ul li.col3 a.li-heading{
      color: var(--color-1);
      margin: 0px 0px 0px 0px;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      padding: 0 0 10px 15px;
      position: relative;
  }
  .incorp-header .nav .big-nav.g-nav > ul ul li.col3 a.li-heading::before{
      width: 6.5px;
      height: 21%;
      top: 8px;
      left: 0;
      background-color: var(--color-2);        
      display: block;
      position: absolute;
      content: "";
      /* background-image: linear-gradient(180deg, var(--color-2) 0%, var(--color-2) 100%); */
  }
  .incorp-header .nav .big-nav.g-nav > ul ul li.col3 {
      padding-left: 35px;
      padding-bottom: 10px;
  }
  .incorp-header .nav .big-nav.g-nav > ul ul li.col3 ul li{
      color: var(--color-4);
      margin: 0px 0px 13px 0px;
      padding-left: 25px;
      display: block;
  }
  .incorp-header .nav .big-nav.g-nav > ul ul li.col3 ul li a{
      font-size: 14px;
      font-weight: 400;
  }
  /* incorp-advisory*/
  .incorp-header .item-box-container{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      overflow: hidden;
      padding: 10px;
  }
  .incorp-header .icon-boxes a{
      display: block;
      background-color: #f7f8f9 !important;
      border-radius: 5px;
      transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s);
  }
  .incorp-header .icon-boxes a:hover{
      background-color: #f2f2f2 !important;
  }
  .incorp-header .icon-boxes a.icon-border-boxed{
      display: block;
      padding: 48px 20px !important;
      background-color: #fff !important;
      border-radius: 5px;
      border: 1px solid #fff !important;
      transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s);
  }
  .incorp-header .icon-boxes a.icon-border-boxed img{
      width: 150px;
      height: 40px;
      object-fit: contain;
      margin-bottom: 20px;
  }
  .incorp-header a.call-icon{
      background-color: var(--color-2) !important;
  }
  .incorp-header a.call-icon:hover{
      background-color: var(--color-5) !important;
  }
  .incorp-header .icon-boxes a.icon-border-boxed:hover{
      border: 1px solid var(--color-3) !important;
  }
  .incorp-header .icon-boxes:hover h5{
      color: var(--color-2);
  }
  .incorp-header a.tab-nev-icon-box {
      border: none !important;
      text-align: center;
  }
  .incorp-header .tab-nev-icon-box img {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
  }
  .incorp-header h5.img-box-title {
      color: #222;
      font-family: var(--e-global-typography-primary-font-family);
      font-size: 18px;
      font-weight: 400;
  }
  .incorp-header .nav .big-nav.g-nav > ul.tab-nav li.tab-nav-li a.tab-nev-icon-box {
      padding: 40px 20px;
  }
  /* incorp mobile header */
  
    /* mobile incorp header */


.section__body {
	height: 100vh;
	background: #fff;
	width: 100%;
}

.section__header {
	padding: 30px 20px;
	position: relative;
	background: #fff;    
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137254902);
}
.section__header .brand img {
    width: 125px;
}

.section__header .nav__container {
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    background: var(--color-3);
    max-height: 0;
    overflow: hidden;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.36);
    transition: max-height 0.6s ease;
    z-index: 999;
}
.section__header .nav__container.open {
	max-height: auto;
}
.section__header .nav a {
	display: inline-block;
    width: 100%;
    padding: 16px 25px;
    font-weight: 400;
    color: var(--color-1);
    text-decoration: none;
    font-size: 16px;
    line-height: 1em;
    position: relative;
    transition: background 0.4s ease;
}
.section__header .nav a:hover {
	background: var(--color-2);
    color: var(--color-3);
}
.section__header .nav a.dropdown-toggle {
	position: relative;

}
/* .nav a.dropdown-toggle.open:before {
	transform: rotate(225deg) translateY(-50%);
} */
.section__header .nav a.dropdown-toggle:before {
	content: '';
	display: inline-block;
	height: 8px;
	width: 8px;
	border: 2.5px solid var(--color-1);
	border-left:0;
	border-top: 0;
	position: absolute;
	top: 50%;
	margin-top: -6px;
	transform: rotate(45deg) translateY(-50%);
	right: 5%;
	transition: transform 0.4s ease;
}
.section__header .nav ul.dropdown-menu.sub-menu-1.open a.dropdown-toggle:hover:before {
    content: '';
    display: inline-block;
    height: 8px;
    width: 8px;
    border: 2.5px solid #fff;
    border-left: 0;
    border-top: 0;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    transform: rotate(45deg) translateY(-50%);
    right: 5%;
    transition: transform 0.4s ease;
}
.section__header .nav a.dropdown-toggle:hover:before{
    content: '';
	display: inline-block;
	height: 8px;
	width: 8px;
	border: 2.5px solid #fff;
	border-left:0;
	border-top: 0;
	position: absolute;
	top: 50%;
	margin-top: -6px;
	transform: rotate(45deg) translateY(-50%);
	right: 5%;
	transition: transform 0.4s ease;

}
.section__header .dropdown-toggle::after{
    display: none;
}
.section__header ul.nav.nav-pills {
    display: block;
}
.section__header .dropdown-menu {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: max-height 0.6s ease;
    visibility: hidden;
    position: relative;
    /* display: block;     */
    padding: 0;
    border-radius: 0;
}
.section__header .dropdown-menu.open {
	max-height: auto;
    visibility: visible;
}
.section__header .dropdown-menu.open a {
    padding: 16px 25px;
}
.section__header .dropdown-menu.open li:first-child{
	/* padding-top: 10px; */
}
.section__header .dropdown-menu.open li:last-child {
	/* padding-bottom: 10px;  */
    border-bottom: 0;
}
.section__header nav.nav-main ul li {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #0B243A3B;
} 
.section__header ul.dropdown-menu.sub-menu-1 li a:hover {
    background-color: var(--color-5);
}
.section__header ul.dropdown-menu.sub-menu-1.open {
    display: block;
}
.section__header ul.dropdown-menu.sub-menu-2.open {
    display: block;
}
.section__header ul.dropdown-menu.sub-menu-2 {
    visibility: visible;
    background: #f2f2f2;
    /* z-index: 99999999; */
    overflow: hidden;
    position: relative;
    max-height: 0;
}
.section__header ul.dropdown-menu.sub-menu-2 li a:hover {
    background: var(--color-2);
    color: #fff;
}
.section__header ul.dropdown-menu.sub-menu-1.open a.dropdown-toggle.open {
    background: var(--color-5);
    color: #fff;
}
.section__header ul.nav.nav-pills a.dropdown-toggle.open {
    background: var(--color-2);
    color: #fff;
}

.section__header .btn__toggle {
  font-size: 9px;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  height: 40px;
  width: 50px;
  text-align: center;
  padding-top: 27px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 5px;
  z-index: 1;
  transition: background 0.6s ease, color 0.6s ease;
}
.section__header .btn__toggle.open span:nth-child(1),
.section__header .btn__toggle.open span:nth-child(4) {
	opacity: 0;
}
.section__header .btn__toggle.open span:nth-child(2) {
	transform: rotate(45deg);
}
.section__header .btn__toggle.open span:nth-child(3) {
	transform: rotate(-45deg);
}
.section__header span {
	display: block;
	height: 2.5px;
	width: 26px;
	background: var(--color-1);
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	transition: opacity 0.3s ease, transform 0.3s ease, background 0.6s ease;
}
.section__header .btn__toggle span:nth-child(1) {
	top: 12px;
}
.section__header .btn__toggle span:nth-child(2),
.section__header .btn__toggle span:nth-child(3) {
	top: 19px;
}
.section__header .btn__toggle span:nth-child(4) {
	top: 25px;
}

  /* incorp testimonial */
  section.testimonials-wrapper {
    background-color: var(--color-5);
    padding: 50px 0;
}
.content-left {
  margin-bottom: 20px;
}

  .ttm-half-col-bg {
    border: 15px solid #fff;
    position: relative;
    height: 100%!important;
    background-size: cover;
}
.ttm-bg-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
  .ttm-col-wrapper-bg-layer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}
.contnt-left-col {
  padding: 50px 40px;
}
.content-left h2{
  text-transform: capitalize;
  color: #fff;
  text-align: left;
}
.content-left h5.sub-heading {
  color: var(--color-3);
  font-weight: 400;
}
.testimonial-block {
  position: relative;
  overflow: visible;
}
.testimonial-block .inner-box {
  position: relative;
  padding: 30px 30px;
  background-color: var(--color-3);
  border-radius: 5px;
}
.testimonial-block .inner-box .image {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  /* margin-top: -50px; */
  margin-bottom: 25px;
  display: inline-block;
}
.testimonials-wrapper .owl-carousel .owl-item img {
  background: #333;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.content-img-box {
  display: flex;
}
.testimonial-block .inner-box .content {
  position: relative;
  flex: 1;
}

.testimonial-block .inner-box .content i {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 30px;
  font-style: italic;
  color: var(--color-2);
}
.testimonial-block .inner-box .content .author-info {
  padding: 20px 20px 0;
  position: relative;
}
h6.author-n {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-1);
}
.testimonial-block .inner-box .content span {
  position: relative;
  color: var(--color-1);
  font-size: 14px;
  font-family: var(--e-global-typography-primary-font-family);
}
.testimonial-block .content-txt .text {
  position: relative;
  color: var(--color-1);
  font-size: 17px;
}
.testimonials-wrapper .owl-next, .testimonials-wrapper .owl-prev {
  position: relative;
  height: 38px;
  width: 38px;
  line-height: 33px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  margin-left: 10px;
  display: inline-block;
  border: 2px solid #fff;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.testimonials-wrapper .owl-nav {
  position: absolute;
  right: 0;
  top: -80px;
  z-index: 99;
}
.testimonials-wrapper .owl-theme .owl-nav [class*=owl-] {
  border: 2px solid var(--color-5);
  color: var(--color-5);
}
.owl-theme .owl-nav [class*=owl-]:hover {
  border-color: var(--color-2)!important;
  color: var(--color-2)!important;
  background: 0 0;
}

/* incorp job view 1*/
.side-jobs-desc{
  padding: 50px 40px !important;
}
.job-view-icon-box {
  display: flex;
  margin-bottom: 15px;
}
.side-jobs-desc .btn-primary{
  width: 100%;
  margin-top: 20px;
}
.job-veiw-icon {
  line-height: 1.5;
  font-size: 18px;
  color: var(--color-2);
  margin-right: 12px;
}
.job-veiw-ixon-content h5 {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-1);
}
p.icon-box-desc {
  color: var(--color-1);
  font-size: 15px;
  font-weight: 300;
}
h3.jd-heading {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-family: var(--e-global-typography-primary-font-family);
  color: var(--color-1);
}
h3.jd-heading:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 7px;
  height: 3px;
  background: var(--color-2);
  border-radius: 100px;
}
h3.jd-heading:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 11px;
  width: 29px;
  height: 3px;
  background: var(--color-2);
  border-radius: 100px;
}
  /* incorp footer*/
  #footer {
      background-color: #000;
  }
  .footer-col-8{
      padding: 40px !important;
  }
  .footer-col-4{
      padding:0 !important; 
      border-left: 1px solid #ffffff30;
  }
  .feature-menu {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
  }
  li.fea-menu-list a h5 {
      color: #FFFFFF;
      margin: 0px 0px 0px 0px;
      font-family: var(--e-global-typography-primary-font-family);
      font-weight: 500;
      font-size: 16px;
  }
  li.fea-menu-list ul li a {
      font-family: var(--e-global-typography-primary-font-family);
      font-weight: 300;
      font-size: 13px;
      color: #f2f2f2;
  }
  hr.incorp-divider {
      width: 33px;
      height: 3px;
      color: var(--color-2);
      border-radius: 22px;        
      opacity: 1;
      margin: 10px 0px 12px;
  }
  .lets-talk-container {
      background-color: var(--color-2);
      padding: 15px 10px;
      text-align: center;
  }
  .lets-talk {
      display: inline-flex;
      align-items: center;
  }
  .lets-talk i {
      line-height: 1;
      background-color: transparent;
      color: #fff;
      font-size: 22px;
      padding: 0;
      border-radius: 50%;
      margin-right: 15px;
  }
  h5.lets-talk-heading {
      color: #FFFFFF;
      font-family: var(--e-global-typography-primary-font-family);
      font-size: 22px;
      font-weight: 400;
      text-transform: capitalize;
      margin-bottom: 0;
      vertical-align: middle;
      align-items: center;
  }
  .icon-box-flex-container {        
      padding: 40px;
  }
  .icon-box-flex {
      display: flex;    
      margin-bottom: 30px;
  }
  .icon-box-flex:last-child {
    margin-bottom: 0;
  }
  .icon-flex i {
      width: 1em;
      height: 1em;
      position: relative;
      font-size: 32px;
      display: block;
      color: #fff;
      margin-right: 21px;
      line-height: 1;
  }
  h5.icon-box-heading {
      font-family: var(--e-global-typography-primary-font-family);
      font-weight: 500;
      color: #fff;
      margin-bottom: 4px;
      font-size: 18px;
  }
  p.icon-box-content {
      color: #EEEEEE;
      font-family: var(--e-global-typography-primary-font-family);
      font-weight: 300;
      font-size: 14px !important;
  }

  ul.listed-menu {
      display: flex;
      margin: 50px 0 0;
      flex-wrap: wrap;
  }
  li.list-menu {
      margin-right: calc(50px/2);
      /* margin-left: calc(50px/2); */
  }
  li.list-menu a {
      color: #f7f8f9;
      font-family: var(--e-global-typography-primary-font-family);
      font-weight: 300;
      font-size: 13px !important;
  }
  li.list-menu.list-divider {
      color: #ffffff30;
  }
  li.list-menu:last-child{
    margin-right: 0;
  }
  /* country area */
  .country-box-container {
      padding: 20px 30px;
      display: flex;
      justify-content: space-between;
  }
  .country-box img {
      width: 45px;
      height: 45px;
      border-radius: 5px;
  }
  .country-box {
      text-align: center;
  }
  p.country-name {
      margin-bottom: 0px;
      color: #f7f8f9;
      font-family: var(--e-global-typography-primary-font-family);
      font-size: 15px;
      font-weight: 300;
  }
  /* copyright */
  #copyright{
      background-color: #131313;
      padding: 20px 30px;
  }
  .copyright-container {
      display: flex;
      align-self: center;
      align-items: center;   
  }
  .copyright-logo img {
      width: 100px;
      margin-right: 10px;
      margin-bottom: 0;
  }
  .copyright-text p {
      color: #f7f8f9;
      font-family: var(--e-global-typography-primary-font-family);
      font-size: 12px !important;
      font-weight: 400;
  }
  .copyright-links .listed-menu{
    margin: 0; 
    justify-content: flex-end;
  }
  .copyright-links li.icon:last-child{
    margin-right: 0;
  }
/* banner vdo */
.home {
  height: 450px;
  position: relative;
}
video {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 450px;
  position: absolute;
  z-index: 1;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(102.57deg,rgb(187 33 33 / 75%),rgb(11 36 58 / 75%) 100%);
  height: 450px
 }
.home-content {
width: 600px;
margin: 0 auto;
position: relative;
top: 50px;
color: #fff;
z-index: 3;
text-align: center;
}
 img.gptw_img {
    width: fit-content;
    height: 160px;
}
.home-content h1 {
text-align: center;
text-transform: uppercase;
font-size: 50px;
line-height: 1.1;
}
  
/* incorp about */
.video-container video {
  width: 415px;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--color-1);
  border-radius: 6px;
}


/* disclaimer */
.disclaimer-text.pb-2 {
    text-align: center;
    padding-right: 50px;
    padding-left: 50px;
}
.disclaimer-text p{
    font-size: 13px !important;
}
/* divider */
.sec-divider {
  border-style: solid;
  border-color: var(--color-2);
  border-width: 1px;
  width: 10%;
  margin-bottom: 10px;
}
.divider{
  width: 60px;
  height: 3px;
  background-color: var(--color-2);
  display: inline-block;
  border-radius: 50px
}
/* topbar*/

section.top-bar {
  background-color: var(--color-2);
  vertical-align: middle;
}
.top-bar-wrapper ul.topbar-list {
  justify-content: flex-end;
}
ul.topbar-list {
  margin-bottom: 0;
  align-items: center;
  vertical-align: middle;
}
li.topbar-content a {
  color: #fff;
  display: inline-flex;
}
li.topbar-content {
  color: #fff;
  display: inline-flex;
  margin-right: 10px;
}
li.topbar-content:last-child{  
  margin-right: 0;
}
li.topbar-content i {
  margin-right: 10px;
}
li.topbar-content h5 {
  margin: 0;
  font-size: 14px;
  /* padding: 0 6px; */
  font-weight: 400;
  font-family: var(--e-global-typography-primary-font-family);
}
li.topbar-btn {
  background-color: var(--color-5);
  padding: 10px 45px;
  text-transform: uppercase;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in;
}
li.topbar-btn:hover{
  background-color: #2F455A;
}
/* mob header*/
.mob-header{
    display: none;
}
.desk-header{
    display: block;
}
button.navbar-toggle {
    opacity: 0;
}
ul.nav.navbar-nav.pull-right li {
    background: #dc143c;
    color: #fff;
    border-radius: 2px;
}
ul.nav.navbar-nav.pull-right li a.btn {
    color: #fff;
}
.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%) !important;
}
.menu{
    right: 0;
    font-weight: bold;
    font-size: 0.8em;
    width: 100%;
    background: var(--color-2);
    position: absolute;
    text-align: center;
    margin: 0;
    top: 110px;
    left: 0;
    bottom: 0;
    z-index: 1;
    height: fit-content;
}
.menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
}
.menu li {
	display: block;
	padding:15px 0 15px 0;
	border-bottom: #fff 1px solid;
	}
.menu li:hover{
	display: block;
	background: #fff;
	padding:15px 0 15px 0;
	border-bottom: #fff 1px solid;
    color: var(--color-2);
}
.menu ul li a {
 text-decoration:none;
 margin: 0px;
 color:#fff;}
.menu ul li a:hover {
 color: #fff;
 text-decoration:none;
}
.menu a{
	text-decoration:none;
	color:white;
}
.menu a:hover{
	text-decoration:none;
	color:white;
}

/* header */
#header{
  background-color: #fff;
  position: relative;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137254902);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 15px 0px 15px 0px;
  z-index: 30;
}
#header .d-flex{    
    justify-content: space-between;
}
#header .sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
#header .sticky + .content {
  padding-top: 60px;
}
/* #header .logo{
    font-size:
} */

/* navigation menu */
.nav-menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu > ul{
    display: flex;
}
.nav-menu > ul > li{
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 22px;
}
.nav-menu  > ul > li > a{
    display: block;
    position: relative;
    color: var(--color-4) ;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--e-global-typography-primary-font-family);
    padding: 0 4px;
    text-transform: uppercase;
    text-decoration: none;
}
.nav-menu > ul > li > a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-2);
    width: 0px;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.nav-menu a:hover::before,
.nav-menu li:hover a::before,
.nav-menu li.active a:before{
    visibility: visible;
    width: 100%;
}
.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a{
    color: var(--color-2);
}
 /* get started btn */
 .get-started-btn{
    margin-left: 25px;
    border-radius: 4px;
    padding: 6px 25px 8px 25px;
    white-space: nowrap;
    transition: all 0.3s ease-in;
    font-size: 13px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--e-global-typography-primary-font-family);
    /* background: var(--color-2); */
    /* border: 1px solid var(--color-2);  */
    background: linear-gradient(102.57deg,#dc0916,#f41fd6 100%,#f41fd6 0);
    color: #fff;
    text-decoration: none;
 }
 .get-started-btn:hover{
  color: #fff;
  /* background: #fff; */
  background: linear-gradient(102.57deg,#f41fd6,#dc0916);
  /* border: 1px solid var(--color-2); */
 }
 /* resposive */

 /* mobile navigation menu */
 .mobile-nav-toggle{
    position: fixed;
    top: 18px;
    right: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;

 }
 .mobile-nav-toggle i{
    color: #fff
 }
 .mobile-nav{
    position: fixed;
    top: 55px;
    right: 15px;
    left: 15px;
    bottom: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
 }
 .mobile-nav-overlay{
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(17,17,17,0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
 }
 .mobile-nav-active{
    overflow: hidden;
 }
 .mobile-nav-active .mobile-nav{
    opacity: 1;
    visibility: visible;
 }
 .mobile-nav *{
    margin: 0;
    padding: 0;
    list-style: none;
 }
 .mobile-nav a{
    display: block;
    position: relative;
    color: var(--color-4);
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
    font-size: 15px;
 }
 .mobile-nav a:hover,
 .mobile-nav .active > a,
 .mobile-nav li:hover > a{
    color: var(--color-2);
    text-decoration: none;
 }
 .mobile-nav a:hover{
    background: var(--color-4);
    border: 2px solid var(--color-4);
 }
 /* sub menu */
 section.sub-menu {
  background-color: #202020;
  border-bottom: 3px solid;
  border-color: var(--color-2);
}

.sub-menu.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  /* top: 100px; */
  transition: all 0.4s ease-in-out;
  z-index: 1040;
}

.sub-menu.sticky + .content {
  padding-top: 102px;
}
.nav-menu2 ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu2 > ul{
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.nav-menu2 > ul > li{
  position: relative;
  white-space: nowrap;
  padding: 15px 0 15px 50px
}
.nav-menu2  > ul > li > a{
  display: block;
  position: relative;
  color: #f4f4f4;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--e-global-typography-primary-font-family);
  padding: 0 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav-menu2 > ul > li > a:hover{
  color: #fff ;

}
 /* banner */
 .banner-wrapper{  
    overflow: hidden;
    width: 100%;
    height: 550px;
 }
 .banner{
    /* background-image: url('../imgs/b1.jpg'); */
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 550px;
    -webkit-animation: zoomin 14s ease-in infinite;
    animation: zoomin 14s ease-in infinite;
    transition: all .5s ease-in;
    overflow: hidden;
 }
 
@-webkit-keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
}
@keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
} /*End of Zoom in Keyframes */

 /* about us */
 section.about {
    padding: 50px 0 70px;
}
/* .about-img{
  background-image: url("../imgs/about.png"); 
  background-position: center;
  background-size: cover;
  border-radius: 6px;
} */
.img-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 3px;
}
.img-container2 img {
  width: 100%;
  height: 237px;
  border-radius: 3px;    
  filter: brightness( 109% ) contrast( 101% ) saturate( 97% ) blur( 0px ) hue-rotate( 0deg );
  object-fit: cover;
}
.img-container2 {
    margin-bottom: 25px;
}
.img-container2:last-child {
    margin-bottom: 0;
}
.about h1.heading {
    margin-bottom: 0;
    text-align: left; 
    text-transform: none;
}
.about .sub-heading h4{
  font-family: var(--e-global-typography-primary-font-family);
  margin-bottom: 10px;
  width: 600px;
  font-weight: 500;
}
.about {
  line-height: 1.6;
  text-align: left;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 400;
  padding: 10px 30px;
}
.about-box-wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.about-box {
  text-align: center;
  padding: 20px;
  background-color: var(--color-5);
  border: 1px solid var(--color-3);
  /* box-shadow: 0 0 10px rgb(0 0 0 / 13%); */
  border-radius: 6px;
}
h6.box-heading {
  color: #fff;
  font-weight: 400;
}
.about-box img {
  width: 36%;
  margin: 10px 10px 20px;
  background-color: var(--color-4);
  padding: 14px;
  border-radius: 50%;
}
h3.box-heading {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  font-family: var(--e-global-typography-primary-font-family);
}
.about p.box-desc {
  font-size: 13px;
  margin-bottom: 20px !important;
  margin-top: 16px;
  text-align: justify;
}
a.explore {
  color: var(--color-4);
  line-height: 40px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
a.explore:hover{
  color: #000;
}
a.explore i {    
  width: 40px;
  height: 40px;
  margin-left: 10px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  /* background-color: #fff; */
  background: linear-gradient(102.57deg,#dc0916,#f41fd6 100%,#f41fd6 0);
  /* box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 9%); */
  position: absolute;
  -webkit-transition: all .5s;
  transition: all .5s;
}
a.explore:hover i{
  background: linear-gradient(102.57deg,#f41fd6,#dc0916);  
}
/* values */
.position{
    background-color: var(--color-4);
}
.position h2.heading {
  margin-bottom: 0;
  color: var(--color-1);
}
.position p {
  margin-top: 16px;
}
p.contnt-desc {
  text-align: end;
}
.position-contnt-left h5.sub-heading {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-1);
}
span.secnd-color {
  color: var(--color-2);
}
.row-con-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.icon-box-container {
  position: relative;
}
.icon-box {
  background-color: #fff;
  padding: 15px;
  text-align: left;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  /* box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 9%); */
  /* margin-bottom: 25px; */
  position: relative;
  overflow: hidden;
}
/* .icon-box img {
  background-color: #eee;
  padding: 12px;
} */
img.ico {
  width: 55px;
  height: auto;
  margin-bottom: 10px;
}
/* .img-ico-bg {
  opacity: 0.2;
}
.img-ico-bg img {
  opacity: 0.4;
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  padding: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
.icon-box h2.icon-heading {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3px;
    color: var(--color-5);
}
.icon-box p.icon-desc {
    font-size: 15px;
    margin-bottom: 0;
    text-align: justify;
}
span.location {
    font-size: 14px;
    color: #606060;
    margin-top: 7px;
    font-weight: 400;
    line-height: 1.6;
    display: block;
    font-family: var(--e-global-typography-primary-font-family);
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border: 1px solid #2e2e2e !important;
  outline: 0;
  box-shadow: none !important;
}
.btn.btn-primary {
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    border: 0;
    background: var(--color-2);
    /* background: linear-gradient(102.57deg,#dc0916,#f41fd6 100%,#f41fd6 0); */
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease-in;
}
.btn.btn-primary:hover {
    color:  #fff;
    /* border: 1px solid var(--color-2);  */
    /* background: linear-gradient(102.57deg,#f41fd6,#dc0916); */
    background: var(--color-5);
}

/* mob testimonial */
.testmonial_slider_area-mob.text-center.owl-carousel.owl-loaded.owl-drag {
    display: none;
}
.testmonial_slider_area-mob .box-area {
    padding: 0; 
    position: relative;
    display: block;
    background: #fff;
    color: #000;
    box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 9%);
    margin: 40px 5px 20px;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}
.testmonial_slider_area-mob .box-area .img-area {
    width: 100%;
    height: 227px;
    z-index: 1;
    position: relative;
    border-radius: 0%;
}
.testmonial_slider_area-mob .box-area .img-area img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    position: relative;
    box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 9%);
    position: relative;
    border-radius: 0%;
    border: 0;
}
.testmonial_slider_area-mob .box-area-content.box-area-half {
    padding: 30px 15px;
    margin-left: 0;
}
.testmonial_slider_area-mob .box-area span {
    color: var(--color-4);
    display: block;
    font-size: 12px;
}
.testmonial_slider_area-mob .box-area .content {
    color: var(--color-4);
    font-size: 13px;
}
#testimonial_area .testmonial_slider_area-mob  .owl-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    top: unset;
}
.testmonial_slider_area-mob .owl-prev, .testmonial_slider_area-mob .owl-next {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    color: #fff !important;
	border-radius: 50%;
	text-align: center;
    background-color: var(--color-2);
    /* background: linear-gradient(102.57deg,#dc0916,#f41fd6 100%,#f41fd6 0); */
    box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 9%);
    margin: 0 3px;

}
/* testimonial */
.section_padding{
  background: linear-gradient(102.57deg,#000000ab,#000000ab), url(../imgs/testimonial_bg.jpg);
 background-position: 0 -315px;
 background-size: cover;
 padding: 50px 0;
}
.section_padding .sec-divider{  
  border-color: #ffffff;
}
.testimonial-bg-content.about .divider {
  background-color: #fff;
}
.section_padding .sub-heading h6{
  color: #fff;
  text-align: center;
}
.section_padding h1.heading {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.section_padding p.p-desc {
  color: #f2f2f2;
}
.box-area {
	/* padding: 30px; */
	position: relative;
	display: flex;
	/* background: #fff; */
	color: #000;
	/* box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 9%); */
	margin: 40px 5px 20px;
  align-items: center;
}
.box-area-content.box-area-half {
  padding: 30px 60px;
	background: #fff;
	box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 9%);    
  border-radius: 40px 0;
  margin-left: 180px;
}
.box-area h5 {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-2);
	/* margin-top: 30px; */
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
  /* padding: 0 20px; */
  font-family: var(--e-global-typography-primary-font-family);
}
.box-area span {
	color: var(--color-4);
	display: block;
	font-size: 15px;
	margin: 0 0 10px;
	font-weight: 400;
  /* padding: 0 20px; */
  font-family: var(--e-global-typography-primary-font-family);
}
.box-area .content {
	color: var(--color-4);
  /* padding: 0 20px; */
  font-size: 14px;
  font-family: var(--e-global-typography-primary-font-family);
}
.testimonial-bg {
  align-items: center;
  align-self: center;
}
.box-area .img-area {
	position: absolute;
  border-radius: 50%;
  /* margin-right: -30px; */
  width: 220px;
  height: 220px;
  z-index: 1;
	/* top: -40px;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	right: 0;
	z-index: 1;
	border: 5px solid #fff;
	border-radius: 50%;
	box-shadow: 0 5px 4px rgb(0 0 0 / 14%); */
}
.box-area .img-area img {
	width: 230px !important;
  border: 5px solid #FFF;
  height: 100%;
  object-fit: cover;
  position: relative;
  border-radius: 50%;
	box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 9%);
}
.socials {
	padding: 20px 0 0;
}
.socials i {
	margin: 0 10px;
	color: var(--color-2);
	font-size: 18px;
}
#testimonial_area .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
}
.testmonial_slider_area .owl-prev, .testmonial_slider_area .owl-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	border-radius: 50%;
	text-align: center;
    background-color: var(--color-2);
    /* background: linear-gradient(102.57deg,#dc0916,#f41fd6 100%,#f41fd6 0); */
    box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 9%);
	position: absolute;
}
.testmonial_slider_area .owl-prev {
	left: -15px;
	top: -30px;
}
.testmonial_slider_area .owl-next {
	right: -15px;
	top: -30px;
}

/*get-jobs */
section.get-jobs{
  width: 100%;
  height: 100%;
  background-color: #1e2222;
  /* background-image: linear-gradient(0deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 80%)), url(../imgs/neutral-Img03.jpg); */
  background-size:cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 1;
  padding: 90px 0;
  mix-blend-mode: multiply;
  position: relative;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
section.get-jobs .sub-heading h6 {
  font-family: var(--e-global-typography-primary-font-family);
  letter-spacing: 1px;
  color: #fff;
}
.left-heading{
  text-align: left !important; 
  font-family: var(--e-global-typography-primary-font-family);   
  color: #fff;
  line-height: 1.4;
  font-size: 32px !important;
}
.get-jobs-wrapper p{
  color: #eee;
  font-size: 19px;
}
.csr-img-slider {
  width: 100%;
  height: 320px;
  padding: 10px 30px;
}
.csr-img-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}
.get-jobs .owl-dots {
  text-align: center;
}
.get-jobs button.owl-dot {
  width: 20px;
  height: 5px;
  margin-right: 5px;
}
.get-jobs button.owl-dot.active{
  background: var(--color-2);
}
.get-jobs button.owl-dot:last-child{
  margin-right: 0;
}


/* tab section */
.tab-sec{
  text-align: center;
}
.tabContainer{
    width: 100%;
    /* height: 350px; */
    height: 100%;
    
}
.tabContainer .buttonContainer{
    height: 15%;
    text-align: center;
}
.tabContainer .buttonContainer button{
    width: fit-content;
    height: 100%;
    float: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 30px;
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 18px;
    background-color: var(--color-4);
    border-radius: 50px;
    margin: 5px;
    transition: all 0.35s;
}
.tabContainer .buttonContainer button:hover{
    background-color: var(--color-3);
}
.tabContainer .tabPanel{
    text-align: center;
    padding: 40px 40px 0;
    box-sizing: border-box;
    font-family: var(--e-global-typography-primary-font-family);
    display: none;
}
/* opportunity panel */
.toggle{
  width: 100%;
  height: 100%;
  
}
.toggle .tabs {
  align-items: center;
  text-align: center;
  align-self: center;
  align-content: center;
  display: inline-flex;
}
.toggle .tabs .tab{
  width: auto;
  height: auto;
  float: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 6px 30px;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 18px;
  background-color: #fff;
  border-radius: 50px;
  margin: 5px;
}
.toggle .tabs .tab.active {
  color: #fff;
  background: linear-gradient(102.57deg,#dc0916,#f41fd6 100%,#f41fd6 0);
}
.toggle .panels{
  text-align: center;
  padding: 15px 40px 0;
  box-sizing: border-box;
  font-family: var(--e-global-typography-primary-font-family);
}
/* */
.toggle .tabs .tab {
  float: left;
  cursor: pointer;
}
.toggle .panels .panel {
  display: none;
}
.toggle .panels .panel:first-child {
  display: block;
}

/* Image Gallery */
.event-gallery .gallery {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    grid-gap: 10px;
    position: relative;
  }
  .event-gallery .gallery__item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 10px rgb(0 0 0 / 14%);
    justify-content: center;
    align-items: center;
    height: 222px;
    width: 100%;
    position: relative;
  }
  .event-gallery .gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
  }
  .event-gallery .gallery__item:hover .gallery__img{
    transform: scale(1.2);
  }
  .event-gallery .gallery__item:hover .title{
    opacity: 1;
  }
  .event-gallery .title {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    vertical-align: middle;
    font-stretch: normal;
    text-transform: capitalize;
    font-style: normal;
    line-height: 1.29;
    color: rgb(255, 255, 255);
    padding: 50px 0px 25px;
    position: absolute;
    bottom: -16px;     
    transition: all 0.3s ease-in-out;
    width: 100%;
    opacity: 1;
    text-align: center;
    background-image: linear-gradient(180deg,transparent,#000000);
}
  /* video gallery */
  .vdo-gallery {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }   
  .ytb-vdo {
    width: 376px;
    height: 215px;
    border-radius: 6px;
    /* box-shadow: 0 1px 4px rgb(0 0 0 / 14%); */
  }
  .vd0-box-area span {
    font-family: var(--e-global-typography-primary-font-family);
  }
  video#player {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 1px 4px rgb(0 0 0 / 14%);
  }
/* vdo testimonial */
section.vdo-testimonial{    
    background-color: #f4f4f4;
}
.vd0-box-area {
    padding: 10px;
    background-color: #fff;
    position: relative;
}
.vd0-box-area .ytb-vdo {
    width: 100%;
    height: 210px;
    border-radius: 6px;
    /* box-shadow: 0 1px 4px rgb(0 0 0 / 14%); */
}
.vd0-box-area h5 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 3px;
}
.vd0-box-area span {
    font-size: 15px;
    padding-bottom: 15px;
    display: block;
}

.vdo-testimonial .owl-nav {
	position: absolute;
	top: 100%;
	width: 100%;
}
.vdo-testimonial .owl-prev, .vdo-testimonial .owl-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #fff !important;
	border-radius: 50%;
	text-align: center;
  background: linear-gradient(102.57deg,#dc0916,#f41fd6 100%,#f41fd6 0);
  /* background-color: #dc143c !important; */
  box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 9%);
  -webkit-transition: all .5s;
  transition: all .5s;
	position: absolute;
}
.vdo-testimonial .owl-prev:hover, .vdo-testimonial .owl-next:hover {
  background: linear-gradient(102.57deg,#f41fd6,#dc0916);
}
.vdo-testimonial .owl-prev {
	left: -60px;
	top: -30px;
}
.vdo-testimonial .owl-next {
	right: -60px;
	top: -30px;
}
@media only screen and (max-width: 991px) {
	.owl-nav {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.box-area {
		text-align: center;
	}
	.owl-nav {
		display: none;
	}
}
  /*footer*/
  footer .footer {
    background: #000000;
    color: #fff;
  }
  .one-half-col {
    align-self: center;
    text-align: left;
    align-items: center;
    align-content: center;
  }
  
  h1.log-img {
    font-size: 70px;
    margin-top: 0;
    font-weight: 600;
  }
  .log-img img {
    width: 70%;
    height: 100%;
  }
  ul.social-icons {
    display: inline-flex;
    text-align: center;
    margin-top: 10px;  
  }
  li.icon {
    margin-right: 11px;
    padding: 0;
    background-color: transparent;
    line-height: 0;
    border-radius: 5px;
  }
  
  li.icon i {
    font-size: 16px;
    color: #f2f2f2;
}
  h4.link-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
  }
  h4.link-title:after {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--color-2);
    display: block;
    position: relative;
    bottom: -10px;
  }
  .contact-heading{
    font-family: var(--e-global-typography-primary-font-family);
  }
  .contact-heading a {
    font-size: 14px;
    font-weight: 300;
    color: #f5f5f5b5;
  }
  .contact-heading a:hover {
    color: #ffffff;
  }
  li.links {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--e-global-typography-primary-font-family);
  }
  li.links a {
    color: #d8d8d8;
    font-size: 15px;
  }
  /* copyright*/
  section.copyright {
    background-color: #0e0e0e;
    vertical-align: middle;
  }
  p.copyright {
    margin: 4px 0 0;
    font-size: 14px;
    color: #f5f5f5;
    text-align: center;
  }
  p.designed-by {
    margin: 15px 0 10px;
    text-align: end;
  }
  p.designed-by a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
  }
  /* opportunities-banner */
  .opportunities-banner{  
    background: linear-gradient(230deg,rgb(187 33 33 / 45%),rgb(11 36 58 / 70%) 100%), url(../imgs/collage-people1.jpg);
    /* background: linear-gradient(102.57deg,#00000069,#00000069), url(../imgs/collage-people1.jpg); */  
    /* background-image: url('../imgs/collage-people.jpg'); */
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 250px;
  }
  td.mailbox-view a {
    color: var(--color-2);
}
td.mailbox-name a {
  color: #2e2e2e;
}
.opportunity-table td {
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 14px;
}
/* job view */
.job-head-info {
  display: flex;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  align-content: center;
  vertical-align: middle;
  margin-bottom: 20px;
}
.job-head-info .social-icons li.icon {
  font-size: 20px;
  margin-right: 11px;
  padding: 9px;
  /* background-color: #dc143c; */
  line-height: 0;
  border-radius: 5px;
  color: #fff;
}
li.icon.linkedin {
  background-color: #3b5997;
}
li.icon.twitter {
  background-color: #1da0f1;
}
li.icon.whatsapp {
  background-color: #2cd44b;
}
li.icon.mail {
  background-color: #037cc0;
}
.job-head-info .social-icons li.icon:last-child {
  margin-right: 0;
}
h4.desg {
  margin-bottom: 0;
}
ul.social-icons {
  display: inline-flex;
  text-align: center;
  margin-top: 0;
  vertical-align: middle;
  align-self: center;
  align-items: center;
  margin-bottom: 0;
}
.job-head-info li.icon i {
  color: #fff;
}
h5.share-txt {
  margin-bottom: 0;
  margin-right: 14px;
}
hr.full-divider {
  height: 2px !important;
  background: var(--color-4);
  opacity: 1;
  margin: 5px 0 !important;
}
hr.full-divider1 {
  height: 5px !important;
  background: var(--color-2);
  opacity: 1;
  margin: 0 !important;
}
.jobs-desc {
  background-color: #fff;
  padding: 50px 60px;
  border: 1px solid #e9e9e9;
  border-radius: 6px;
}
.jobs .desc {
  
  font-family: var(--e-global-typography-primary-font-family);
}
h4.desc-heading {
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-4);
  font-weight: 600;
  font-family: var(--e-global-typography-primary-font-family);
}
.content--container {
  font-size: 17px;
  font-family: var(--e-global-typography-primary-font-family) !important;
}
.desc-m p{
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px !important;
  color: var(--color-1);
}
.desc-m ul {
  list-style: revert;
  padding-left: 20px !important; 
}
.desc-m li {
  font-size: 16px;
  margin-bottom: 10px;
  list-style: none;
  color: var(--color-1);
}
.desc-m li:before {
  font-family: 'FontAwesome';
  margin-right: 12px;
  color: var(--color-2);
  content: "\f0da";
}
.btn-wrapper {
  text-align: center;
}
.btn.bck-btn{
  background-color: var(--color-5) ;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 25px;
  margin: 0;
  border: 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
}
.btn.bck-btn:hover{
  background-color: var(--color-2);;
  color: #fff;

}
input[type="file"]::file-selector-button {
  background-color: #1da0f1;
  color: #fff;
  transition: 1s;
}
input[type="file"]::file-selector-button:hover,
input[type="file"]::file-selector-button:focus{
background-color: #1da0f1;
  color: #fff;;
}
.modal-footer button.btn.bck-btn {
  margin-right: 10px;
}
/* search open */
section.search-open {
  background-color: #1e2222;
}
.search-open-bg{
  background-image: url('../imgs/home-footer-careers-updated_Extra-Medium.jfif');
  background-position: center;
  background-size: cover;
  width: 100%;
}
.open-content {
  padding: 100px 80px;
  margin-left: 30px;
}
h1.open-heading {
  color: #fff;
  font-size: 40px;
}
p.open-desc {
  font-size: 16px;
  color: #f2f2f2;
}
a.btn.btn-primary.open-btn.mt-3 {
  border-radius: 100px;
  padding: 15px 25px;
  font-family: var(--e-global-typography-primary-font-family);
}

/* ytb vdo */
.ytube-vdo{
  background-color: #f4f4f4;
  padding: 50px 40px;
}
.ytube-vdo iframe {
  width: 100%;
  border-radius: 6px;
}
.ytb-vdo-row {
  padding: 0 40px;
}