/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  font-family: 'Work Sans', sans-serif;
  color: #000000;
  background-color: #fff;
  font-family: 'Nunito Sans', sans-serif;
}

.home {
  background-color: #fff;
}

a {
  color: #D3A468;
  text-decoration: none;
}

img, video {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Yeseva One', serif;
}

h2 span {
  background: linear-gradient(-45deg,#d23cfc, #1719ab);
  -webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	background-clip: text;
}

p {
  font-size: 1.6rem;
  line-height: 2em;
}

article { padding: 4em 15px;}


/* -------------------------------- 

Hero Slider - by CodyHouse.co

-------------------------------- */
/* Main Header */
.cd-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
}

@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
    background-color: transparent;
    background-color: #161a1e;
    position: fixed;
  }
}

.cd-header__logo {
  float: left;
  margin: 3px 0 0 5%;
}

.cd-header__logo img {
  display: block;
}

@media only screen and (min-width: 768px) {
  .cd-header__logo {

  }


}

.cd-header__nav {
  /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../assets/cd-icon-menu.svg") no-repeat center center;
  /* margin-top: 20px; */
}

.cd-header__nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.cd-header__nav ul.cd-is-visible {

  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
          top: 30px;
          padding-left: 0px;
}

.cd-header__nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #21272c;
  border-top: 1px solid #333c44;
  color: #ffffff;
}

@media only screen and (min-width: 1024px) {

  .cd-header__nav {
    /* reset navigation values */
    width: auto;
    height: auto;
    background: none;
  }
  .cd-header__nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    line-height: 70px;
  }
  .cd-header__nav ul.cd-is-visible {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .cd-header__nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-header__nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    font-weight: bold;
  }

}

/* Slider */
.cd-hero {
  position: relative;
}

.cd-hero__slider {
  position: relative;
  height: 470px;
  width: 100%;
  overflow: hidden;
}

.cd-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
  will-change: transform;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-hero__slide.cd-hero__slide--selected {
  /* this is the visible slide */
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.cd-hero__slide.cd-hero__slide--move-left {
  /* slide hidden on the left */
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.cd-hero__slide.cd-hero__slide--is-moving,
.cd-hero__slide.cd-hero__slide--selected {
  /* the cd-hero__slide--is-moving class is assigned to the slide which is moving outside the viewport */
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 768px) {
  .cd-hero__slider {
    height: 500px;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-hero__slider {
    height: 680px;
  }
}

/* Slide style */

.left-btn {
  max-width: 520px;
}


.cd-hero__slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cd-hero__slide:first-of-type {
  background-image: url("../assets/heroa.jpg");
  background-color: #fff;
}

.cd-hero__slide:nth-of-type(2) {
  background-image: url("../assets/tech-a.jpg");
}

.cd-hero__slide:nth-of-type(3) {
  background-image: url("../assets/tech-2.png");
}

.cd-hero__slide:nth-of-type(4) {
  background-image: url("../assets/img.jpg");
}


.cd-hero__content.cd-hero__content--full-width,
.cd-hero__content.cd-hero__content--half-width {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 20px;
  /* this padding is used to align the text */
  padding-top: 100px;
  /* text-align: center; */
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.cd-hero__content h2, .cd-hero__content p, .cd-hero__btn, .cd-hero__content--img img {
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.cd-hero__content.cd-hero__content--img {
  /* hide image on mobile device */
  display: none;
}

.cd-hero__content--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.cd-hero__content.cd-hero__content--bg-video {
  /* hide video on mobile device */
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cd-hero__content--bg-video video {
  /* you won't see this element in the html, but it will be injected using javascript */
  display: block;
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.cd-hero__content h2, .cd-hero__content p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  margin: 0 auto 14px;
  color: #fff;
  width: 90%;
  max-width: 400px;
}

.cd-hero__content h2 {
  font-size: 2.4rem;
}

.cd-hero__content p {
  font-size: 1.6rem;
  line-height: 1.4;
}

.cd-hero__btn {
	display: inline-block;
	padding: 1.2em 1.4em;
	margin-top: .8em;
	/* background-color: #3B3E87; */
	/* background: linear-gradient(-45deg,#f27272, #ff0024); */
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff !important;
	text-transform: uppercase;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
	border-radius: 5px;
	width: fit-content;
	border: 3px solid #fff;
}

.cd-hero__btn:hover {
  background-color: #fff;
  color: #000 !important;
}




.cd-hero__btn2 {
  display: inline-block;
  padding: 1.2em 1.4em;
  margin-top: .8em;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #E47A17;
  text-transform: uppercase;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  border-radius: 5px;
  width: fit-content;
  border: 3px solid #E47A17;
}


.cd-hero__btn2:hover {
  background-color: #fff;
  color: #000 !important;
}


.cd-hero__btn3 {
	display: inline-block;
	padding: 1.2em 1.4em;
	margin-top: .8em;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff !important;
	text-transform: uppercase;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
	border-radius: 5px;
	width: fit-content;
	border: 3px solid #fff;
}


.cd-hero__btn3:hover {
  background-color: #fff;
  color: #000 !important;
}



.cd-hero__btn.cd-hero__btn--secondary {
  background-color: rgba(22, 26, 30, 0.8);
}


.cd-hero__btn.cd-hero__btn--secondary:hover {
  background-color: #161a1e;
}



.login__btn {
	display: inline-block;
	padding: 0.5em;
	margin-top: .8em;
	background-color: #3B3E87;
	background: linear-gradient(-45deg,#f27272, #ff0024);
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ffffff !important;
	text-transform: uppercase;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
	border-radius: 5px;
	width: fit-content;
}



@media only screen and (min-width: 768px) {
  .cd-hero__slide:nth-of-type(2),
  .cd-hero__slide:nth-of-type(3),
  .cd-hero__slide:nth-of-type(4) {
    
  }
  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {
    padding-top: 150px;
  }
  .cd-hero__content.cd-hero__content--bg-video {
    display: block;
  }
  .cd-hero__content.cd-hero__content--half-width {
    width: 45%;
  }
  .cd-hero__content.cd-hero__content--half-width:first-of-type {
    left: 5%;
  }
  .cd-hero__content.cd-hero__content--half-width:nth-of-type(2) {
    right: 5%;
    left: auto;
  }
  .cd-hero__content.cd-hero__content--img {
    display: block;
  }
  .cd-hero__content h2, .cd-hero__content p {
    max-width: 560px;
  }
  .cd-hero__content h2 {
    font-size: 3.4em;
    font-weight: 300;
  }
  .cd-hero__btn {
    font-size: 1.4rem;
  }

}

@media only screen and (min-width: 1170px) {
  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {
    padding-top: 20y0px;
  }
  .cd-hero__content h2, .cd-hero__content p {
    margin-bottom: 20px;
  }
  .cd-hero__content h2 {
    /* font-size: 2.2em; */
  }
  .cd-hero__content p {
    font-size: 1.6rem;
  }
}

/* Single slide animation */
@media only screen and (min-width: 768px) {
  .cd-hero__content.cd-hero__content--half-width {
    opacity: 0;
    -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
            transform: translateX(40px);
  }
  .cd-hero__slide--move-left .cd-hero__content.cd-hero__content--half-width {
    -webkit-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  .cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width {
    /* this is the visible slide */
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .cd-hero__slide--is-moving .cd-hero__content.cd-hero__content--half-width {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the <li> parent before set opacity to 0 and translate to 40px/-40px */
    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .cd-hero__slide--from-left.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:nth-of-type(2),
  .cd-hero__slide--from-right.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:first-of-type {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
  }
  .cd-hero__slide--from-left.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:first-of-type,
  .cd-hero__slide--from-right.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:nth-of-type(2) {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
  }
  .cd-hero__content--full-width h2,
  .cd-hero__content--full-width p,
  .cd-hero__content--full-width .cd-hero__btn {
    -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
            transform: translateX(100px);
  }
  .cd-hero__slide--move-left .cd-hero__content--full-width h2,
  .cd-hero__slide--move-left .cd-hero__content--full-width p,
  .cd-hero__slide--move-left .cd-hero__content--full-width .cd-hero__btn {
    -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  .cd-hero__slide--selected .cd-hero__content--full-width h2,
  .cd-hero__slide--selected .cd-hero__content--full-width p,
  .cd-hero__slide--selected .cd-hero__content--full-width .cd-hero__btn {
    /* this is the visible slide */
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .cd-hero__slide--is-moving .cd-hero__content--full-width h2,
  .cd-hero__slide--is-moving .cd-hero__content--full-width p,
  .cd-hero__slide--is-moving .cd-hero__content--full-width .cd-hero__btn {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the li parent before set translate to 100px/-100px */
    -webkit-transition: -webkit-transform 0s 0.5s;
    transition: -webkit-transform 0s 0.5s;
    transition: transform 0s 0.5s;
    transition: transform 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .cd-hero__slide--selected h2 {
    -webkit-transition: -webkit-transform 0.5s 0.2s;
    transition: -webkit-transform 0.5s 0.2s;
    transition: transform 0.5s 0.2s;
    transition: transform 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
    text-align: left;
  }
  .cd-hero__slide--selected p {
    -webkit-transition: -webkit-transform 0.5s 0.3s;
    transition: -webkit-transform 0.5s 0.3s;
    transition: transform 0.5s 0.3s;
    transition: transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
    text-align: left;
  }
  .cd-hero__slide--selected .cd-hero__btn {
    -webkit-transition: background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
    transition: background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
    transition: transform 0.5s 0.4s, background-color 0.2s 0s;
    transition: transform 0.5s 0.4s, background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
  }
}

/* Slider navigation */
.cd-hero__nav {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 1;
  text-align: center;
  height: 55px;
  display: none;
}

.cd-hero__nav nav, .cd-hero__nav ul, .cd-hero__nav li, .cd-hero__nav a {
  height: 100%;
}

.cd-hero__nav nav {
  display: inline-block;
  position: relative;
}

.cd-hero__marker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 100%;
 /*  color: #d44457; */
  /* background-color: #ffffff; */
  -webkit-box-shadow: inset 0 2px 0 currentColor;
          box-shadow: inset 0 2px 0 currentColor;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}

.cd-hero__marker.cd-hero__marker--item-2 {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.cd-hero__marker.cd-hero__marker--item-3 {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}

.cd-hero__marker.cd-hero__marker--item-4 {
  -webkit-transform: translateX(300%);
      -ms-transform: translateX(300%);
          transform: translateX(300%);
}

.cd-hero__marker.cd-hero__marker--item-5 {
  -webkit-transform: translateX(400%);
      -ms-transform: translateX(400%);
          transform: translateX(400%);
}

.cd-hero__nav ul::after {
  clear: both;
  content: "";
  display: table;
}

.cd-hero__nav li {
  display: inline-block;
  width: 60px;
  float: left;
}

.cd-hero__nav .cd-selected a {
  color: #ffffff;
}

.cd-hero__nav .cd-selected a:hover {
  background-color: transparent;
}

.cd-hero__nav a {
  display: block;
  position: relative;
  /* padding-top: 35px; */
  font-size: 1rem;
  font-weight: 700;
  color: #7ea1e2;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-hero__nav a::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 8px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  /* background: url(../assets/cd-icon-navigation.svg) no-repeat 0 0; */
}

.cd-hero__nav a:hover {
  background-color: rgba(0, 1, 1, 0.5);
}


.cd-hero__nav li:first-of-type a::before {
  background-position: 0 0;
}

.cd-hero__nav li.cd-selected:first-of-type a::before {
  background-position: 0 -24px;
}

.cd-hero__nav li:nth-of-type(2) a::before {
  background-position: -24px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(2) a::before {
  background-position: -24px -24px;
}

.cd-hero__nav li:nth-of-type(3) a::before {
  background-position: -48px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(3) a::before {
  background-position: -48px -24px;
}

.cd-hero__nav li:nth-of-type(4) a::before {
  background-position: -72px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(4) a::before {
  background-position: -72px -24px;
}

.cd-hero__nav li:nth-of-type(5) a::before {
  background-position: -96px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(5) a::before {
  background-position: -96px -24px;
}

@media only screen and (min-width: 768px) {
  .cd-hero__nav {
    height: 80px;
  }
  .cd-hero__marker,
  .cd-hero__nav li {
    width: 95px;
  }
  .cd-hero__nav a {
    padding-top: 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
  }
  .cd-hero__nav a::before {
    top: 18px;
  }


}

/* Main Content */
.cd-main-content {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;

}

.cd-main-content p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #000;
  margin: 2em 0;
}


.cd-page-content {
  width: 100%;
  margin: 0 auto;

}

.cd-page-content p {
  line-height: 1.8;
  color: #000;
  margin: 2em 0;
}


@media only screen and (min-width: 1170px) {
  .cd-main-content {

  }
  .cd-main-content p {
    font-size: 1.8rem;
  }
}

/* Javascript disabled */
.no-js .cd-hero__slide {
  display: none;
}

.no-js .cd-hero__slide.cd-hero__slide--selected {
  display: block;
}

.no-js .cd-hero__nav {
  display: none;
}


@media only screen and (min-width: 786px) {


  .cd-hero__content h2, .cd-hero__content p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    /* line-height: 1.2; */
    /* margin: 0 auto 14px; */
    color: #fff;
    /* color: #2e2e2e; */
    /* width: 80%; */
    /* max-width: 400px; */
    /* text-align: center; */
    margin: 0 auto;
    margin-bottom: 0px;
  }
  }


.bold-6 { font-weight: 600;}
.m-top {margin-top: 50px !important;}




/* CUSTOM CSS */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 25px 0;
  background-color: #fff;
}
#header.header-scrolled, #header.header-inner-pages {
 background: #EAEAEA;
}


#header.header-scrolled .navbar a {
  color: #000;
 }

 #header.header-scrolled .navbar .dropdown ul a {
  color: rgb(255, 255, 255);
 }


#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 40px;
}

header img {
	margin-top: 15px;
	width: 180px;
	margin-bottom: 0px;
}

.page #header { background-color: #ffffff;}
.page #header .navbar a {
  color: #000;
 }

 .page #header .navbar .dropdown ul li a {
  color: rgb(255, 255, 255);
 }

 #masthead {
	background-color: #ffffff;
	position: fixed;
	z-index: 2;
	width: 100%;
	box-shadow: 0px 7px 29px #1e1e1e12;
}




/*--------------------------------------------------------------
# Navigation Menu 1
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

.logo-menu {
	/* width: auto; */
	width: 220px;
	float: right;
}

..hamburger {
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  float: left;
  font: inherit;
  margin: 0.8125em 0 0;
  overflow: visible; 
  outline: none;
  padding: 0;
  text-transform: none;
  transition: opacity 0.15s;
  -webkit-appearance: none;
}

.hamburger:hover {
  opacity: 0.7; 
}

.hamburger-box {
  display: inline-block;
  position: relative;
  margin-top: -5px;
}

.hamburger-inner {
	display: block;
	top: 19%;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 27px;
	height: 4px;
	background-color: #000;
	border-radius: 10px;
	position: absolute;
	/* transition-property: -webkit-transform; */
	/* transition-property: transform; */
	transition-property: transform, -webkit-transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
#masthead.is-active .hamburger-inner, 
#masthead.is-active .hamburger-inner::before, 
#masthead.is-active .hamburger-inner::after {
    background-color: #2e2e2e;
}

.hamburger-inner::before, 
.hamburger-inner::after {
  content: "";
  display: block; 
}

.hamburger-inner::before {
	top: -8px;
}

.hamburger-inner::after {
	bottom: -8px;
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, 
.hamburger--boring .hamburger-inner::before, 
.hamburger--boring .hamburger-inner::after {
  transition-property: none; 
}

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); 
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0; 
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg); 
}

.hamburger-label {
  color: #2e2e2e;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-left: 0.3125em;
  text-transform: uppercase;
}

#masthead.is-active .hamburger-label {
  color: #000;
}

.hamburger-box,
.hamburger-label {
  display: inline-block;
  vertical-align: middle;
}

.hamburger.hamburger--boring {
	border: none;
	background-color: #0000;
}

#site-nav {
	clear: both;
	display: flex;
	flex-direction: column;
	height: 0;
	overflow: hidden;
	margin-top: -50px;
}


@media only screen and (min-width: 768px) {
    #site-nav {
      padding-top: 0px !important;
     }
  }



#site-nav.is-active {
  height: auto;
  overflow: visible;
}

#site-nav .col { 
  padding-bottom: 1.5em;
} 

@media screen and (min-width: 550px) {
  #site-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  #site-nav .col {
    flex: 0 0 50%;
  } 


}

@media screen and (min-width: 768px) {
  #site-nav .col {
    flex: 0 0 33.333333333%;
  } 

}

@media screen and (min-width: 960px) {
  #site-nav {
    flex-wrap: nowrap;
    margin-top: -30px;
  }
  
  #site-nav .col {
    flex: 0 0 20%;
  } 
  
  #site-nav .col:last-child {
  }  
}

#site-nav h4 {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-left: 20px;
  font-weight: 600;
  color: #000;
}

#site-nav ul {
  list-style-type: none;
  margin-top: 1em;
}

#site-nav li {
  margin-bottom: 0.3125em;
}

#site-nav li a {
  color: #7b7b7b;
  text-decoration: none;
  transition: color 0.3s ease;
}

#site-nav li a:hover,
#site-nav li a:focus {
  color: #E47A17;
}

#site-nav .social {
  margin: 0;
  overflow: hidden;
}

#site-nav .social li {
  float: left;
  margin: 0 0.3125em;
  width: 32px;
  height: 32px;
}

#site-nav .social li svg {
  display: block;
  fill: #b4b9ba;
  width: 100%;
  height: 100%;
  transition: fill 0.3s ease;
}

#site-nav .social li:hover svg {
  fill: #686d6e;
}






/* navigation menu 2 */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
  margin-right: 15px;
}
.navbar a, .navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: left;
	padding: 10px 0 10px 20px;
	font-size: 16px;
	font-weight: 700;
	color: #000;
	white-space: nowrap;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
	color: #E47A17;
}

.navbar li:active > a { color: #F2BE22;}

.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: rgb(42, 42, 42);
  font-size: 14px;
  border: 3px solid #F2BE22;
  font-weight: 600;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #F2BE22;
}
.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0px 0px 30px rgba(81, 81, 81, 0.25);
	background-color: #fff;
	background: #fff;
	transition: 0.3s;
	border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
  margin-right: 0px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  text-transform: none;
  font-weight: 500;
  color: #000000;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #E47A17;
  border-left: 2px solid #E47A17;
  border-right: 2px solid #E47A17;
  background-color: #cfcfcf35;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}





#masthead-search {
	float: left;
	width: 100%;
	max-width: 30em;
	position: relative;
	-webkit-appearance: none;
	margin-top: 10px;
}

#searchsubmit {
	/* right: -13px; */
	/* top: 24px; */
	background-color: darkorange;
	border: none;
	margin-left: -48px;
	border-radius: 3px;
	color: #fff;
	width: 40px;
}

.custom-form {
}

#masthead-search input {
	/* background: transparent; */
	/* border: none; */
	/* border-color: rgb(119, 119, 119); */
	border-style: solid;
	/* border-width: 1px; */
	/* border-radius: 50px; */
	/* outline: none; */
	/* width: 100%; */
	/* padding: 0.75em 1.125em; */
	/* transition: border-color 0.3s ease; */
	/* -webkit-appearance: none; */
	border-radius: 30px;
	padding: 6px 10px 10px 15px;
}

#masthead-search button {
  background: none;
  border: none;
  color: rgb(40, 40, 40);
  font-size: 1em;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 0.75em;
  transform: translateY(-50%);
  -webkit-appearance: none;
}

#masthead.is-active #masthead-search button {
  color: #b4b9ba;
}

#masthead.is-active #masthead-search input {
  border-color: #b4b9ba;
}

#masthead-search ::-webkit-input-placeholder {
    color:    #fff;
}

#masthead-search :-moz-placeholder {
   color:    #fff;
   opacity:  1;
}

#masthead-search ::-moz-placeholder {
   color:    #fff;
   opacity:  1;
}

#masthead-search :-ms-input-placeholder {
   color:    #fff;
}

#masthead.is-active #masthead-search ::-webkit-input-placeholder {
    color:    #b4b9ba;
}

#masthead.is-active #masthead-search :-moz-placeholder {
   color:    #b4b9ba;
   opacity:  1;
}

#masthead.is-active #masthead-search ::-moz-placeholder {
   color:    #b4b9ba;
   opacity:  1;
}

#masthead.is-active #masthead-search :-ms-input-placeholder {
   color: #b4b9ba
}

#masthead .col {
  opacity: 0;
}

#masthead.is-active .col {
  transform: translateY(40px);
  transition: opacity 0.3s ease;
  animation: fade-in-stagger 0.8s ease forwards;
}

#masthead.is-active .col:nth-child(1) {
    -webkit-animation-delay: 0;
}

#masthead.is-active .col:nth-child(2) {
    -webkit-animation-delay: 0.1s;
}

#masthead.is-active .col:nth-child(3) {
    -webkit-animation-delay: 0.2s;
}

#masthead.is-active .col:nth-child(4) {
    -webkit-animation-delay: 0.3s;
}

#masthead.is-active .col:nth-child(5) {
    -webkit-animation-delay: 0.4s;
}

@keyframes fade-in-stagger {
  to {
    opacity: 1;
    transform: translateY(0); 
  }
}
/* type writer css */
.text_1 {
  animation: text1;
}

.text_2 {
  animation: text2;
}

.text_3 {
  animation: text3;
}

.text_1, .text_2, .text_3 {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  position: absolute;
  animation-duration: 10s;
  animation-timing-function: steps(15, end);
  animation-iteration-count: infinite;
	background: linear-gradient(-45deg,#f27272, #f6a400);
  -webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	background-clip: text;
}

.text_1::after, .text_2::after, .text_3:after {
  content: "|";
  position: absolute;
  right: 0;
  animation: caret infinite;
  animation-duration: 1s;
  animation-timing-function: steps(1, end);
}



@keyframes text1 {
  0%, 50%, 100% {
    width: 0;
  }
  10%, 40% {
    width: 6em;
  }
}

@keyframes text2 {
  0%, 50%, 100% {
    width: 0;
  }
  
  60%, 90% {
    width: 6em;
  }
}

@keyframes text3 {
  0%, 50%, 100% {
    width: 0;
  }
  20%, 50% {
    width: 5em;
  }
}


@keyframes caret {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}







/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 16px;
  background: #ffffff;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}
#footer .footer-top {
  padding: 40px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}
#footer .footer-top .footer-contact p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: #000000;
}
#footer .footer-top h4 {
  font-size: 16px;
  color: #000;
  position: relative;
  padding-bottom: 12px;
  font-weight: bolder;
}
#footer .footer-top .footer-links {
  /* margin-bottom: 30px; */
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #353786;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #000000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #E47A17;
  
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #353786;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #209dd8;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
#footer .footer-bottom {
	padding-top: 30px;
	padding-bottom: 30px;
	color: #000;
	background-color: #fff;
	border-top: 2px solid;
}
#footer .copyright {
  float: left;
}
#footer .credits {
  float: right;
  font-size: 16px;
}
#footer .credits a {
  transition: 0.3s;
}
@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }

  #masthead-search { display: none !important;} 
  #masthead { padding-bottom: 15px;}

  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {
 /* text-align: center; */
  }

  .cd-hero__content h2 {
    font-size: calc(1.75rem + 3.9vw);
  }

section {
  padding: 1em 0 !important; 
}

.exp h2 {
	display: inline;
	font-size: 5em !important;
	font-weight: 900;
}


.navbar .dropdown ul {
  background-color: #000;
}


}


/* team section*/

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

.section-team .header-section {
	margin-bottom: 50px;
}

.section-team .header-section .small-title {
    margin-bottom: 25px;
	font-size: 16px;
    font-weight: 500;
}

.section-team .header-section .title {
    font-weight: 700;
    font-size: 45px;
}

.section-team .single-person {
	margin-top: 30px;
	padding: 30px;
	background-color: #f6f9ff;
	border-radius: 5px;
}

.section-team .single-person:hover {
	background: linear-gradient(to right, #242424, #4b4b4b);
}

.section-team .single-person .person-image {
    position: relative;
    margin-bottom: 50px;
    border-radius: 50%;
    border: 4px dashed transparent;
    transition: padding .3s;
}

.section-team .single-person:hover .person-image {
	padding: 12px;
}

.section-team .single-person .person-image img {
	width: 100%;
    border-radius: 50%;
}

.section-team .single-person .person-image .icon {
	position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,50%);
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(to right, #ec1101ad, #f70000);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
}

.section-team .single-person:hover .person-image .icon {
	background: none;
	background-color: #fff;
	color: #016cec;
}

.section-team .single-person .person-info .full-name {
	margin-bottom: 10px;
	font-size: 28px;
    font-weight: 700;
}

.section-team .single-person .person-info .speciality {
    text-transform: uppercase;
    font-size: 14px;
    color: #E47A17;
}

.section-team .single-person:hover .full-name,
.section-team .single-person:hover .speciality {
	color: #fff;
}

.person-info h3 {
  color: #000;
}

/* team section end */


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}
.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}
.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.why-us .content p {
  font-size: 16px;
  color: #848484;
}
.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.why-us .accordion-list {
  /*padding: 0 100px 60px 100px;*/
}
.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}
.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
	padding: 20px;
	/* background: #F2BE22; */
	border-radius: 4px;
	/* border: 2px solid #f2be22; */
	box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
  background-color: #fff;
}

.why-us .accordion-list a {
	display: block;
	position: relative;
	font-family: "Poppins", sans-serif;
	line-height: 24px;
	font-weight: 700;
	padding-right: 30px;
	outline: none;
	cursor: pointer;
	color: #191262;
  font-size: 20px;
}
.why-us .accordion-list span {
	color: #000;
	font-weight: 600;
	font-size: 18px;
	padding-right: 10px;
}
.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: #000;
}
.why-us .accordion-list .icon-show {
  display: none;
}
.why-us .accordion-list a.collapsed {
  color: #343a40;
}
.why-us .accordion-list a.collapsed:hover {
  color: #000000;
}
.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}
.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }

  #site-nav.is-active {
    height: auto;
    overflow: scroll;
    height: 500px;
  }

.logo-menu {
	/* width: auto; */
	width: 100%;
	float: right;
	margin-right: 20px;
	padding-left: 20px;
}

.hamburger.hamburger--boring {
	border: none;
	background-color: #0000;
	float: right;
	margin-top: 20px;
}


}





/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	/* border-top: 3px solid #F2BE22; */
	/* border-bottom: 3px solid #F2BE22; */
	padding: 30px;
	background: #fff;
	width: 100%;
	/* box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1); */
	border-radius: 10px;
}

.contact .info i {
	font-size: 20px;
	color: #E47A17 !important;
	float: left;
	width: 44px;
	height: 44px;
	/* background: #34377F; */
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000000;
}
.contact .info p {
	padding: 0 0 10px 60px;
	margin-bottom: 20px;
	font-size: 1.6rem;
	color: #161A1E;
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #F2BE22;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  color: #fff;
}

.email.col-md-4 {
	background-color: #f3f3f3;
	border-radius: 16px;
	padding: 10px;
}

.address.col-md-4 {
	background-color: #f3f3f3;
	border-radius: 16px;
	padding: 10px;
}


.phone.col-md-4 {
	background-color: #f3f3f3;
	border-radius: 16px;
	padding: 10px;
}

#wpcf7-f25-o1 {
	width: 100%;
}

#contact { background-color: #fff;}

.contact .wpcf7-form {
	width: 100%;
	/* border-top: 3px solid #F2BE22; */
	/* border-bottom: 3px solid #F2BE22; */
	padding: 30px;
	/* background: #fff; */
	/* box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12); */
}
.contact .wpcf7-form .form-group {
  padding-bottom: 8px;
}
.contact .wpcf7-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .wpcf7-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .wpcf7-form .error-message br + br {
  margin-top: 25px;
}
.contact .wpcf7-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .wpcf7-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .wpcf7-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .wpcf7-form .form-group {
  margin-bottom: 20px;
}

.contact .wpcf7-form-control {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #efefef;
	background-clip: padding-box;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.contact .wpcf7-form label {
  padding-bottom: 8px;
  width: 100%;
  font-size: 0.9em;
}

.contact .wpcf7-form input, .contact .wpcf7-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .wpcf7-form input:focus, .contact .wpcf7-form textarea:focus {
  border-color: #47b2e4;
}
.contact .wpcf7-form input {
  height: 54px;
}

.contact .wpcf7-submit {
  height: 54px;
  width: 200px;
  display: inline-block;
  padding: 1em 1.8em;
  margin-top: .8em;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000000;
  text-transform: uppercase;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  border-radius: 5px;
  width: fit-content;
  border: 3px solid #333;
}

.contact .wpcf7-submit:hover {
  height: 54px;
  background-color: #000;
  color: #fff;
}


.contact .wpcf7-form textarea {
  padding: 10px 12px;
}
.contact .wpcf7-form button[type=submit] {
  background: #F2BE22;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .wpcf7-form button[type=submit]:hover {
  background: #a37b02;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Gallery */

.ngg-galleryoverview.default-view {
 text-align: left !important; 
	font-size: 0 !important;
	letter-spacing: 0 !important;
}

.ngg-gallery-thumbnail-box {
	float: left;
	max-width: 100% !important;
	border: 5px solid #e1e1e1;
	margin: 4px;
}



ol, ul {
	padding-left: 2rem;
	line-height: 2.0;
}

section { padding: 5em 0px;}

.sol-section {
  background-color: #fff;
}


.about-section h1 { color: rgb(0, 0, 0);}

.antiterror-section {
  background-color: #161a1e;
  background-attachment: scroll;
  background-image: url(../assets/antiterror.jpg);
  background-size: cover;
}


.intro { margin:  0 auto; line-height: 2.5em;}

.info-box {
	/* border-radius: 20px; */
	position: relative;
	transition: all ease-in-out 0.4s;
	background-color: #fff;
	padding: 20px;
	/* box-shadow: 0px 3px 2px #23117724; */
	/* box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1); */
	border-radius: 0px 0px 20px 20px;
}

.shadow {
  box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
}

.info-box img {transition: all ease-in-out 0.4s}
.info-box img:hover { opacity: 0.4;}
.bg-grey {background-color: #1112136f;}

.sell-section { background-attachment: fixed; background-image: url(../assets/front_pic.jpg); background-size: cover;}

.otherhead-section { background-attachment: fixed; background-image: url(../assets/front_pic.jpg); background-size: cover;padding-top: 120px !important;}

.pagehead-section { background-attachment: fixed; background-image: url(../assets/page-head.jpg); background-size: cover; padding-top: 120px !important;}

.contacthead-section { background-attachment: fixed; background-image: url(../assets/contact-head.jpg); background-size: cover;}

.abouthead-section { background-attachment: fixed; background-image: url(../assets/about-head.jpg); background-size: cover;}

.sol-section { background-attachment: fixed; background-image: url(../assets/sol-pic.jpg); background-size: cover;}


.col-md-12.exp {
	background-color: #000;
  border-radius: 10px;
  margin: 0 auto;
}

.exp h2 { display: inline; font-size: 8em; font-weight: 900;}
.exp p {
	display: inline-block;
	/* line-height: 23px; */
	letter-spacing: 0px;
	/* line-height: 12px; */
  text-transform: uppercase;
}

.yellow { color: #D3A468 !important;}
.orange { color: #E47A17 !important;}
.serv-blue { color: #323279 !important;}
.lite-blue {color: #354995;}
.bg-blue { background-color: #404258;}
.bg-black { background-color: #000;}
.orange-bg { background-color: #D3A468 !important; }
.orange-bg {background: linear-gradient(-45deg,#f27272, #f6a400)};
.corp-color {
	background-color: #889C9B !important;
}
.corp-color:hover {background-color: #2a2a2a !important;}
.indiv-color {background-color: #6cc1ff !important;}
.indiv-color:hover {background-color: #47729D !important;}
.shadow-1 {
  box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
}

.drag-right {
  margin-right: -10px;
}

.dialog-box {
	margin: 0px 0px 16px !important;
	padding: 10px 0px !important;
	border-radius: 5px;
	bottom: 0;
	/* background-color: #07165378; */
	/* opacity: 0.7; */
}

.dialog-box h3 { color: rgb(27, 27, 27); font-size: 22px; font-weight: 600;}
.bg-serv-black { background-color: #161A1E;}

.nav-link { color: #1E1F21;}
.nav-pills { justify-content: center;}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	color: #fff;
	background-color: #1E1F21;
}

.nav-pills .nav-link {
	background: 0 0;
	border: 0;
	border-radius: 15px 15px 0px 0px;
	padding: 20px;
}


.nav-link { font-size: 20px;}
.tab-content { background-color: #1E1F21; }
.tab-content p { font-size: 18px; margin-bottom: 1em; line-height: 1.8;}

#pills-vessel {
  background-attachment: scroll;
background-image: url(../assets/vessel.png);
background-size: cover;
}

.page { background-color: #F2F2F2;}

.lightbox-gallery{background-image: linear-gradient(#4A148C, #E53935);background-repeat: no-repeat;color: #000;overflow-x: hidden}.lightbox-gallery p{color:#fff}.lightbox-gallery h2{font-weight:bold;margin-bottom:40px;padding-top:40px;color:#fff}@media (max-width:767px){.lightbox-gallery h2{margin-bottom:25px;padding-top:25px;font-size:24px}}.lightbox-gallery .intro{font-size:16px;max-width:500px;margin:0 auto 40px}.lightbox-gallery .intro p{margin-bottom:0}.lightbox-gallery .photos{padding-bottom:20px}.lightbox-gallery .item{padding-bottom:30px}


.current-item { background-color: #fff; padding: 10px; border-radius: 10px;}

.feat-blog .inner-content {
	background-color: #309898;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
	border-radius: 20px;
	margin-right: 75px;
	position: absolute;
	margin-top: -150px;
	padding: 30px;
}

.round { border-radius: 10px;}
.solutions-section {
  background-image: url("../assets/about.jpg");
  background-size: cover;
}

.about-content {
  background-color: #fff;
}


/**
* Text aligments
*/

.align-text-left {
  text-align: left;
}

.align-text-right {
  text-align: right;
}

.align-text-center {
  text-align: center;
}


/* Modal CSS */

.modal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 77, 77, .7);
  transition: all .4s;
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  border-radius: 4px;
  position: relative;
  width: 900px;
  max-width: 90%;
  background: #fff;
  padding: 1em 2em;
}

.modal__footer {
  text-align: right;
  a {
    color: #585858;
  }
  i {
    color: #E47A17;
  }
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #585858;
  text-decoration: none;
}
/* end modal */


.bar::after {
	background-color: #E47A17;
	border-radius: 3px;
	content: "";
	display: block;
	height: 6px;
	width: 75.2px;
	margin: .35em 0 5px;
	/* text-align: center; */
	margin-top: 20px;
}

.topic-bar::after {
	background-color: #E47A17;
	border-radius: 3px;
	content: "";
	display: block;
	height: 6px;
	width: 75.2px;
	margin: .35em 0 5px;
	margin-top: 10px;
  margin-bottom: 20px;
}

.w3eden a {
	color: #000;
	text-decoration: none;
	background-color: transparent;
}

.w3eden .btn-primary {
	color: #fff;
	background-color: #f00;
	border-color: var(--color-primary);
}

.posts-title a { }
.feat-blog h1 a {color: #161A1E;}
.feat-blog h1 a:hover {color: #f00;}

#custodial-serv, #brokerage-serv, #investment-adv,  #portfolio-mgt {
  background-color: #fff;
  }