@font-face {
  font-family: 'Montserrat-Bold';
  src: url("../fonts/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Bold.otf") format("opentype"), url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype"), url("../fonts/Montserrat-Bold.svg#Montserrat-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Light';
  src: url("../fonts/Montserrat-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Light.otf") format("opentype"), url("../fonts/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light.ttf") format("truetype"), url("../fonts/Montserrat-Light.svg#Montserrat-Light") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url("../fonts/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-SemiBold.otf") format("opentype"), url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.ttf") format("truetype"), url("../fonts/Montserrat-SemiBold.svg#Montserrat-SemiBold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Medium';
  src: url("../fonts/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Medium.otf") format("opentype"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype"), url("../fonts/Montserrat-Medium.svg#Montserrat-Medium") format("svg");
  font-weight: normal;
  font-style: normal;
}

:root {
  font-size: 16px;
  color: #141414;
}

@media (max-width: 767px) {
  :root {
    font-size: 12px;
  }
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Montserrat-Medium";
  color: #141414;
}

h1, h2, h3, h4, h5, h6, ul, li, p {
  margin: 0;
  padding: 0;
}

img:focus, button:focus, input:focus, select:focus {
  outline: none;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.header {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  z-index: 15;
}

@media (max-width: 767px) {
  .header {
    top: 15px;
  }
}

.header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header_inner .logo img {
  width: 10rem;
}

@media (max-width: 1024px) {
  .header .header_inner .nav_list {
    display: none;
  }
}

.header .header_inner .nav_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .header_inner .nav_list ul li {
  list-style-type: none;
  margin: 0 1.5rem;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header_inner .nav_list ul li a {
  color: #141414;
  font-size: .90rem;
  text-decoration: none;
}

.header .header_inner .nav_list ul li ul {
  position: absolute;
  background-color: white;
  width: 200px;
  border-radius: 3px;
  top: 42px;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0 10px 15px 0 #2f2f2f71;
          box-shadow: 0 10px 15px 0 #2f2f2f71;
}

.header .header_inner .nav_list ul li ul li {
  margin: 0;
  border-bottom: 1px solid #cccccc50;
  width: 100%;
}

.header .header_inner .nav_list ul li ul li a {
  padding: 12px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Montserrat-Light";
  font-size: .85rem;
}

.header .header_inner .nav_list ul li ul li:last-child {
  border-bottom: none;
}

.header .header_inner .nav_list ul li:hover ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .header_inner .nav_list ul li.active::after {
  content: '';
  position: absolute;
  width: 12px;
  border-radius: 5px;
  height: 4px;
  background-color: #d4ac00;
  bottom: 0;
}

.header .header_inner .menu_btn {
  padding-left: 4rem;
  cursor: pointer;
}

.header .header_inner .menu_btn img {
  width: 2rem;
}

.header.about_header .nav_list ul li a {
  color: white;
}

.header.about_header .nav_list ul li ul li a {
  color: #141414;
}

#banner {
  height: 100vh;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdd000), to(#fec701));
  background: linear-gradient(#fdd000, #fec701);
  -webkit-transform: skewY(5.8deg);
          transform: skewY(5.8deg);
  -webkit-box-shadow: 0 10px 15px 0 #cea10050;
          box-shadow: 0 10px 15px 0 #cea10050;
}

@media (max-width: 1024px) {
  #banner {
    height: auto;
  }
}

#banner .banner_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1024px) {
  #banner .banner_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 70px;
  }
}

#banner .banner_inner .banner_img {
  width: 600px;
  -webkit-transform: skewY(-5.8deg);
          transform: skewY(-5.8deg);
  position: absolute;
  bottom: -20px;
  left: 0;
}

@media (max-width: 1024px) {
  #banner .banner_inner .banner_img {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 767px) {
  #banner .banner_inner .banner_img {
    bottom: -10px;
  }
}

#banner .banner_inner .banner_right {
  width: 40%;
  -webkit-transform: skewY(-5.8deg);
          transform: skewY(-5.8deg);
}

@media (max-width: 1024px) {
  #banner .banner_inner .banner_right {
    width: 100%;
    padding-top: 50px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  #banner .banner_inner .banner_right {
    width: 100%;
  }
}

#banner .banner_inner .banner_right h2 {
  font-size: 3.75rem;
  font-family: "Montserrat-Bold";
  text-transform: uppercase;
  color: white;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  #banner .banner_inner .banner_right h2 {
    font-size: 3rem;
  }
}

#banner .banner_inner .banner_right p {
  font-size: .9rem;
  font-family: "Montserrat-Light";
  line-height: 1.5rem;
  margin: 2rem 0;
}

#banner .banner_inner .top_social {
  -webkit-transform: skewY(-5.8deg);
          transform: skewY(-5.8deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  bottom: -120px;
  left: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  #banner .banner_inner .top_social {
    left: 0;
    right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#banner .banner_inner .top_social p {
  font-size: 1rem;
  margin-right: .85rem;
}

#banner::before {
  content: '';
  background-color: #fdd000;
  position: absolute;
  right: 0;
  left: 0;
  height: 160px;
  top: -150px;
}

#banner.solution_banner {
  -webkit-transform: unset;
          transform: unset;
  height: auto;
  padding: 120px 0 80px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, white), color-stop(50%, #fec701));
  background: linear-gradient(90deg, white 50%, #fec701 50%);
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 1024px) {
  #banner.solution_banner {
    padding: 80px 0;
    background: white;
  }
}

#banner.solution_banner .banner_inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 1024px) {
  #banner.solution_banner .banner_inner {
    padding-top: 20px;
  }
}

#banner.solution_banner .banner_inner .heading_left {
  width: 40%;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  #banner.solution_banner .banner_inner .heading_left {
    width: 100%;
    margin: 0;
  }
}

#banner.solution_banner .banner_inner .heading_left h6 {
  font-size: 2.4rem;
  color: #fdcf00;
  margin: 0 0 20px;
}

#banner.solution_banner .banner_inner .heading_left h6 span {
  border-bottom: 4px solid #2E1F27;
  color: #2E1F27;
}

#banner.solution_banner .banner_inner .heading_left p {
  font-size: .85rem;
  font-family: "Montserrat-Light";
  line-height: 1.75rem;
}

#banner.solution_banner .banner_inner .heading_left p.sub_head {
  font-size: 1rem;
  font-family: "Montserrat-SemiBold";
  margin: 15px 0 0;
}

#banner.solution_banner .banner_inner .heading_left ul {
  padding: 0 0 0 15px;
  margin: 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#banner.solution_banner .banner_inner .heading_left ul li {
  font-size: .85rem;
  font-family: "Montserrat-Light";
  line-height: 1.75rem;
}

#banner.solution_banner .banner_inner .heading_left ul.half_list li {
  width: 48%;
}

#banner.solution_banner .banner_inner .heading_left .customButton {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fdcf00), color-stop(50%, transparent));
  background: linear-gradient(to right, #fdcf00 50%, transparent 50%);
  margin: 20px 0 0;
}

#banner.solution_banner .banner_inner .content_right {
  width: 55%;
}

@media (max-width: 1024px) {
  #banner.solution_banner .banner_inner .content_right {
    display: none;
  }
}

#banner.solution_banner .banner_inner .content_right .img_wrap {
  width: 100%;
  height: 450px;
  -webkit-box-shadow: 0 10px 15px 0 #2525251c;
          box-shadow: 0 10px 15px 0 #2525251c;
  border: 25px solid #2E1F2730;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1024px) {
  #banner.solution_banner .banner_inner .content_right .img_wrap {
    height: 250px;
  }
}

#banner.solution_banner .banner_inner .content_right .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#banner.solution_banner .banner_inner .content_right p.highlights {
  font-size: 1rem;
  text-align: left;
  line-height: 2rem;
  color: black;
  margin: 20px 0 0 -6px;
}

#banner.solution_banner .banner_inner .content_right p.highlights span {
  display: inline-block;
  padding: 0 15px;
}

#banner.solution_banner::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, white), color-stop(50%, #fec701));
  background: linear-gradient(90deg, white 50%, #fec701 50%);
  top: -155px;
}

@media (max-width: 1024px) {
  #banner.solution_banner::before {
    background: #fec701;
  }
}

#banner.about_banner {
  -webkit-transform: unset;
          transform: unset;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: #3c1e2f;
}

@media (max-width: 767px) {
  #banner.about_banner {
    height: 50vh;
  }
}

#banner.about_banner video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}

@media (max-width: 767px) {
  #banner.about_banner video {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}

#banner.about_banner::before {
  content: unset;
}

#banner.about_banner button.down_btn {
  width: 40px;
  height: 40px;
  background: white;
  position: absolute;
  z-index: 15;
  border: none;
  border-radius: 50%;
  bottom: 20px;
  -webkit-box-shadow: 0 5px 10px 0 #1b1b1b73;
          box-shadow: 0 5px 10px 0 #1b1b1b73;
  cursor: pointer;
}

#banner.about_banner button.down_btn img {
  width: 15px;
  opacity: .7;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 2px;
  position: relative;
}

@media (max-width: 767px) {
  #banner.about_banner button.down_btn {
    display: none;
  }
}

#banner.service_banner {
  -webkit-transform: skewY(0);
          transform: skewY(0);
  height: 80vh;
  position: relative;
  z-index: 10;
  background: black;
}

@media (max-width: 1024px) {
  #banner.service_banner {
    height: 60vh;
  }
}

#banner.service_banner .banner_inner {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media (max-width: 1024px) {
  #banner.service_banner .banner_inner {
    padding-top: 0;
  }
}

#banner.service_banner .banner_inner .content_wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 60px;
}

@media (max-width: 1024px) {
  #banner.service_banner .banner_inner .content_wrap {
    padding-top: 0;
  }
}

#banner.service_banner .banner_inner .content_wrap h6 {
  font-size: 2.2rem;
  text-align: center;
  line-height: 3.2rem;
  width: 100%;
  color: #fdcf00;
}

#banner.service_banner .banner_inner .content_wrap p {
  font-size: 1rem;
  text-align: center;
  font-family: "Montserrat-Light";
  line-height: 1.6rem;
  margin: 10px 0 0;
  color: white;
  opacity: .9;
  width: 100%;
}

#banner.service_banner .banner_inner .content_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: .9;
}

#banner.service_banner .banner_inner .content_wrap ul li {
  list-style-type: none;
  font-size: .8rem;
  font-family: "Montserrat-Light";
  color: white;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 25px;
  margin: 0 0 15px;
}

#banner.service_banner .banner_inner .content_wrap ul li::before {
  content: '';
  position: absolute;
  background: url("./../icons/check.svg");
  width: 15px;
  height: 15px;
  left: 0;
}

#banner.service_banner .banner_inner .service_button {
  position: absolute;
  bottom: -20px;
}

#banner.service_banner.content_sevice {
  background: url("./../img/services/content_marketing.jpg");
}

#banner.service_banner.crm_service {
  background: url("./../img/services/crm.jpg");
}

#banner.service_banner.design_service {
  background: url("./../img/services/design.jpg") no-repeat center center;
}

#banner.service_banner.personal_branding_service {
  background: url("./../img/services/personal_branding.jpg") no-repeat center center;
}

#banner.service_banner.pr_service {
  background: url("./../img/services/pr.jpg") no-repeat center center;
}

#banner.service_banner.seo_service {
  background: url("./../img/services/seo.jpg") no-repeat center center;
}

#banner.service_banner.apps_service {
  background: url("./../img/services/mobile_apps.jpg") no-repeat center center;
}

#banner.service_banner.digital_service {
  background: url("./../img/services/digital_asset.jpg") no-repeat center center;
}

#banner.service_banner.digital_events_service {
  background: url("./../img/services/digital_events.jpg") no-repeat top center;
}

#banner.service_banner.marketing_auto_service {
  background: url("./../img/services/marketing_automation.jpg") no-repeat center center;
}

#banner.service_banner.performance_service {
  background: url("./../img/services/performance_marketing.jpg") no-repeat center center;
}

#banner.service_banner.smm_service {
  background: url("./../img/services/smm.jpg") no-repeat center center;
}

#banner.service_banner.website_service {
  background: url("./../img/services/websites.jpg") no-repeat center center;
}

#banner.service_banner.video_service {
  background: url("./../img/services/video.jpg") no-repeat center center;
}

#banner.service_banner.career_banner {
  background: url("./../img/careers.jpg") no-repeat center center;
}

#banner.service_banner::before {
  top: -156px;
  z-index: 15;
}

#banner.service_banner video {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: .75;
}

@media (max-width: 767px) {
  #banner.service_banner video {
    opacity: .45;
  }
}

#banner.contact_banner {
  -webkit-transform: skewY(0);
          transform: skewY(0);
  background: white;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#banner.contact_banner .contact_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#banner.contact_banner .contact_inner .left_wrap {
  width: 50%;
  overflow: hidden;
  height: 100vh;
  -webkit-box-shadow: 0 5px 20px 0 #ccc;
          box-shadow: 0 5px 20px 0 #ccc;
  border-radius: 0 0 150px;
}

@media (max-width: 1024px) {
  #banner.contact_banner .contact_inner .left_wrap {
    width: 100%;
    height: 50vh;
    border-radius: 0 0 40px;
  }
}

#banner.contact_banner .contact_inner .left_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#banner.contact_banner .contact_inner .content_wrap {
  width: 50%;
  padding: 120px 5% 100px 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1024px) {
  #banner.contact_banner .contact_inner .content_wrap {
    width: 100%;
    padding: 40px;
  }
}

#banner.contact_banner .contact_inner .content_wrap h6 {
  font-size: 2.2rem;
  color: #fdcf00;
  margin: 0 0 20px;
}

#banner.contact_banner .contact_inner .content_wrap p {
  font-size: .9rem;
  font-family: "Montserrat-Light";
  opacity: .85;
  line-height: 1.7rem;
}

#banner.contact_banner::before {
  height: 0;
}

#service_banner {
  width: 100%;
}

#service_banner img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.customButton {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, white), color-stop(50%, transparent));
  background: linear-gradient(to right, white 50%, transparent 50%);
  border: none;
  font-family: "Montserrat-Medium";
  font-size: .85rem;
  padding: .75rem 1.5rem .75rem 1.2rem;
  position: relative;
  cursor: pointer;
}

.customButton::before {
  content: '';
  width: .75rem;
  height: .75rem;
  background: url("./../icons/right_arrow.svg") no-repeat center center;
  position: absolute;
  right: 0;
  top: .85rem;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

.customButton:hover::before {
  right: -.85rem;
}

#service_content {
  position: relative;
  z-index: 5;
}

#service_content .content_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 0 120px;
  position: relative;
  z-index: 10;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1024px) {
  #service_content .content_inner {
    padding-bottom: 80px;
  }
}

#service_content .content_inner .head_part {
  width: 30%;
}

@media (max-width: 1024px) {
  #service_content .content_inner .head_part {
    width: 100%;
  }
}

#service_content .content_inner .head_part h6 {
  font-size: 2.8rem;
  color: #444444;
  line-height: 3.6rem;
}

@media (max-width: 1024px) {
  #service_content .content_inner .head_part h6 {
    margin-bottom: 20px;
  }
}

#service_content .content_inner .head_part h6 span {
  position: relative;
}

#service_content .content_inner .head_part h6 span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  background-color: #fdcf00;
  bottom: 0;
}

#service_content .content_inner .content_part {
  width: 50%;
}

@media (max-width: 1024px) {
  #service_content .content_inner .content_part {
    width: 100%;
  }
}

#service_content .content_inner .content_part p {
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-family: "Montserrat-Light";
  opacity: .8;
  margin: 10px 0 0;
}

#service_content .content_inner .content_part p.with_head {
  font-size: .85rem;
  line-height: 1.6rem;
}

#service_content .content_inner .content_part p.with_head span {
  font-size: 1rem;
  font-family: "Montserrat-Medium";
}

#service_content .content_inner .content_part ul {
  padding: 0 0 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#service_content .content_inner .content_part ul li {
  font-size: 1rem;
  line-height: 1.6rem;
  font-family: "Montserrat-Light";
  opacity: .8;
  margin: 10px 0 0;
  width: 100%;
}

#service_content .content_inner .content_part ul.half_list li {
  width: 48%;
}

#service_content .content_inner .content_part ul.no_tmargin {
  margin-top: 0;
}

#service_content .content_inner:nth-of-type(1) {
  padding-top: 120px;
}

@media (max-width: 1024px) {
  #service_content .content_inner:nth-of-type(1) {
    padding-top: 80px;
  }
}

#service_content::before, #service_content::after {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  background-color: #fdcf00;
  border-radius: 50%;
  opacity: .2;
  top: -150px;
  left: -150px;
}

#service_content::after {
  bottom: -150px;
  top: unset;
  left: unset;
  right: -150px;
  opacity: .1;
  background-color: #2E1F27;
}

@media (max-width: 1024px) {
  #service_content::after {
    display: none;
  }
}

#service_content .content_full {
  margin: 160px auto 110px;
  padding: 0 20%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1024px) {
  #service_content .content_full {
    padding: 0 15px;
  }
}

#service_content .content_full p {
  font-size: 1.2rem;
  line-height: 2rem;
}

#service_content .content_full p.sub_content {
  font-size: .85rem;
  font-family: "Montserrat-Light";
  line-height: 1.5rem;
  margin: 15px 0 0;
}

#service_content .content_full ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#service_content .content_full ul li {
  list-style-type: none;
  font-size: .95rem;
  font-family: "Montserrat-Light";
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 25px;
  margin: 0 0 15px;
}

#service_content .content_full ul li::before {
  content: '';
  position: absolute;
  background: url("./../icons/check.svg");
  width: 15px;
  height: 15px;
  left: 0;
}

#service_content .content_full a {
  font-family: "Montserrat-Light";
  text-decoration: none;
  background: #fdcf00;
  color: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 35px 0 0;
  padding: 10px 20px;
  border-radius: 3px;
  -webkit-box-shadow: 6px 6px 0 0 #fdcf0026;
          box-shadow: 6px 6px 0 0 #fdcf0026;
}

#service_content.parallax {
  position: relative;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 0;
}

#service_content.parallax::after, #service_content.parallax::before {
  content: unset;
}

#service_content.parallax p {
  color: white;
  opacity: 1 !important;
}

#service_content.parallax .head_part h6 {
  color: #fdcf00;
}

#service_content.parallax ul li {
  color: white;
}

#service_testimonial {
  width: 100%;
  padding: 100px 0 300px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #2E1F27), color-stop(35%, #fdcf00));
  background: linear-gradient(90deg, #2E1F27 35%, #fdcf00 35%);
  bottom: -50px;
}

@media (max-width: 767px) {
  #service_testimonial {
    background: #2E1F27;
    padding: 60px 0 300px;
  }
}

#service_testimonial .testimonial_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#service_testimonial .testimonial_inner .left_part {
  width: 30%;
}

@media (max-width: 767px) {
  #service_testimonial .testimonial_inner .left_part {
    width: 100%;
    margin-bottom: 40px;
  }
}

#service_testimonial .testimonial_inner .left_part p {
  font-size: 2.2rem;
  font-family: "Montserrat-SemiBold";
  color: #fdcf00;
}

#service_testimonial .testimonial_inner .left_part p span {
  display: none;
  font-size: .85rem;
  font-family: "Montserrat-Light";
  color: white;
  margin: 10px 0 0;
  opacity: .6;
}

#service_testimonial .testimonial_inner .right_box {
  width: 60%;
  background-color: white;
  padding: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  -webkit-box-shadow: 15px 15px 0 0 #fdcf0050;
          box-shadow: 15px 15px 0 0 #fdcf0050;
}

@media (max-width: 767px) {
  #service_testimonial .testimonial_inner .right_box {
    width: 100%;
    padding: 30px;
  }
}

#service_testimonial .testimonial_inner .right_box img {
  width: 30px;
  margin: 0 0 40px;
}

#service_testimonial .testimonial_inner .right_box p {
  font-family: "Montserrat-Light";
  line-height: 2rem;
  margin: 0 0 20px;
}

#service_testimonial .testimonial_inner .right_box .author_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#service_testimonial .testimonial_inner .right_box .author_wrap .user_img {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 15px 0 #c5c5c5;
          box-shadow: 0 5px 15px 0 #c5c5c5;
  text-align: center;
  line-height: 46px;
}

#service_testimonial .testimonial_inner .right_box .author_wrap .user_img img {
  width: 20px;
  margin: 0;
}

#service_testimonial .testimonial_inner .right_box .author_wrap p {
  font-family: "Montserrat-SemiBold";
  font-size: .95rem;
  margin: 0 0 0 15px;
}

.service_button {
  background-color: white;
  border: none;
  font-family: "Montserrat-Medium";
  font-size: 1rem;
  padding: 12px 40px;
  border-radius: 35px;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 0 5px 10px 0 #ffe883;
          box-shadow: 0 5px 10px 0 #ffe883;
  cursor: pointer;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

.service_button:hover {
  -webkit-box-shadow: 0 15px 20px 0 #ffe36a;
          box-shadow: 0 15px 20px 0 #ffe36a;
}

ul.social_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

ul.social_list li.social_box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  list-style-type: none;
  margin-right: .9rem;
  opacity: .4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

ul.social_list li.social_box.fb_box {
  background-color: #4267b2;
  -webkit-box-shadow: 0 5px 0 0 #4267b240;
          box-shadow: 0 5px 0 0 #4267b240;
}

ul.social_list li.social_box.tw_box {
  background-color: #03a9f4;
  -webkit-box-shadow: 0 5px 0 0 #03a9f440;
          box-shadow: 0 5px 0 0 #03a9f440;
}

ul.social_list li.social_box.in_box {
  background-color: #cf3b9c;
  -webkit-box-shadow: 0 5px 0 0 #cf3b9c40;
          box-shadow: 0 5px 0 0 #cf3b9c40;
}

ul.social_list li.social_box.li_box {
  background-color: #006fb0;
  -webkit-box-shadow: 0 5px 0 0 #006fb040;
          box-shadow: 0 5px 0 0 #006fb040;
}

ul.social_list li.social_box:last-child {
  margin-right: 0;
}

ul.social_list li.social_box img {
  width: 16px;
  margin-top: 3px;
}

ul.social_list li.social_box:hover {
  opacity: 1;
}

#about {
  width: 100%;
  padding: 80px 0;
  margin: 120px 0 50px;
}

@media (max-width: 1024px) {
  #about {
    margin-top: 80px;
  }
}

#about .about_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#about .about_inner .about_left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 1024px) {
  #about .about_inner .about_left {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

#about .about_inner .about_left .inner_content {
  padding: 0 0 0 22px;
}

@media (max-width: 1024px) {
  #about .about_inner .about_left .inner_content {
    padding: 0;
  }
}

#about .about_inner .about_left .inner_content p {
  font-size: 1rem;
  font-family: "Montserrat-Light";
  line-height: 1.8rem;
  color: #565656;
  margin: 0 0 25px;
}

#about .about_inner .about_right {
  width: 450px;
  margin-left: 120px;
  height: 500px;
  border-radius: 70px 0;
  background-color: white;
  -webkit-box-shadow: 15px -15px 0 0 #2e1f27;
          box-shadow: 15px -15px 0 0 #2e1f27;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media (max-width: 1024px) {
  #about .about_inner .about_right {
    margin: 80px 15px 0 0;
    height: 450px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  #about .about_inner .about_right {
    height: 320px;
  }
}

#about .about_inner .about_right img.video_bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 10;
  border-radius: 70px 0;
}

#about .about_inner .about_right img.play_icon {
  position: absolute;
  width: 45px;
  z-index: 15;
}

#about .about_inner .about_right span.bg_shadow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fdcf00;
  -webkit-box-shadow: 0 15px 25px 0 #31222a36;
          box-shadow: 0 15px 25px 0 #31222a36;
  border-radius: 70px 0;
}

#about .about_inner .about_right video {
  width: 100%;
  z-index: 10;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 70px 0;
}

#about .about_inner .about_right video:focus {
  outline: none;
}

#about .about_inner .customButton {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fdcf00), color-stop(50%, transparent));
  background: linear-gradient(to right, #fdcf00 50%, transparent 50%);
  margin: 10px 0 0;
}

#about.about_page {
  margin: 0;
  padding: 140px 0 120px;
}

@media (max-width: 1024px) {
  #about.about_page {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

#about.about_page .about_right {
  width: 40%;
  border-radius: 0;
  -webkit-box-shadow: 35px -35px 0 0 #2e1f2710;
          box-shadow: 35px -35px 0 0 #2e1f2710;
}

@media (max-width: 1024px) {
  #about.about_page .about_right {
    width: 100%;
  }
}

#about.about_page .about_right img.video_bg {
  border-radius: 0;
  opacity: 1;
}

#about.about_page .about_right span.bg_shadow {
  border-radius: 0;
}

#about.about_page .about_left {
  width: 45%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}

@media (max-width: 1024px) {
  #about.about_page .about_left {
    width: 100%;
  }
}

#about.about_page.about_page_odd {
  padding-top: 50px;
}

#about.about_page.about_page_odd .about_inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#about.about_page.about_page_odd .about_right {
  margin: 0 120px 0 0;
  -webkit-box-shadow: -35px -35px 0 0 #fdcf0050;
          box-shadow: -35px -35px 0 0 #fdcf0050;
}

@media (max-width: 1024px) {
  #about.about_page.about_page_odd .about_right {
    margin: 40px 0 0;
  }
}

#about.about_page.about_page_odd .about_right span.bg_shadow {
  -webkit-box-shadow: 0 15px 25px 0 #fdcf004f;
          box-shadow: 0 15px 25px 0 #fdcf004f;
}

#about.why_us .about_inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#about.why_us .about_inner .about_left p.sec_head {
  font-size: 3.5rem;
}

#about.why_us .about_inner .about_left p.sub_head {
  font-size: 1rem;
  line-height: 2rem;
  font-family: "Montserrat-Light";
  opacity: .8;
}

#about.why_us .about_inner .about_right {
  height: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 45%;
  margin: 0;
}

@media (max-width: 1024px) {
  #about.why_us .about_inner .about_right {
    width: 100%;
  }
}

#about.why_us .about_inner .about_right ul.believe_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0 0;
  padding: 0 0 0 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#about.why_us .about_inner .about_right ul.believe_list li {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 50px;
}

@media (max-width: 767px) {
  #about.why_us .about_inner .about_right ul.believe_list li {
    width: 100%;
    margin: 0 0 20px;
  }
}

#about.why_us .about_inner .about_right ul.believe_list li i {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  border: 1px solid #fdcf00;
  -webkit-box-shadow: 0 5px 10px 0 #f3f3f3;
          box-shadow: 0 5px 10px 0 #f3f3f3;
  border-radius: 50%;
  margin-right: 20px;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

#about.why_us .about_inner .about_right ul.believe_list li i img {
  width: 28px;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

#about.why_us .about_inner .about_right ul.believe_list li p {
  color: #444444;
  font-family: "Montserrat-SemiBold";
  font-size: 1.25rem;
  line-height: 1.5rem;
}

#about.why_us .about_inner .about_right ul.believe_list li p span {
  display: block;
  color: #2E1F27;
  font-family: "Montserrat-Light";
  font-size: .75rem;
}

p.sec_head {
  font-family: "Montserrat-Bold";
  font-size: 4rem;
  position: relative;
  margin: 0 0 45px;
  color: #2E1F27;
}

@media (max-width: 1024px) {
  p.sec_head {
    font-size: 3rem;
    margin-bottom: 30px;
    width: 100%;
  }
}

p.sec_head span {
  font-size: 1rem;
  display: block;
  margin: 0 0 0 .2rem;
  opacity: .7;
}

p.sec_head:before {
  content: '';
  position: absolute;
  width: 2rem;
  background-color: #fdcf00;
  height: 4rem;
  left: -9px;
  top: 2.05rem;
  z-index: 5;
}

p.sec_head i {
  font-style: normal;
  z-index: 10;
  position: relative;
}

p.sec_head.no_span {
  padding-top: 16px;
}

#believe_us {
  width: 100%;
  padding: 100px 0 150px;
  background-color: #2E1F27;
}

#believe_us p.sec_head {
  color: white;
}

#believe_us p.sec_head:before {
  background-color: #fdcf00;
}

#believe_us ul.believe_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 80px 0 0;
  padding: 0 0 0 22px;
}

@media (max-width: 1024px) {
  #believe_us ul.believe_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
}

#believe_us ul.believe_list li {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 60px;
}

@media (max-width: 1024px) {
  #believe_us ul.believe_list li {
    width: 31%;
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  #believe_us ul.believe_list li {
    width: 48%;
  }
}

#believe_us ul.believe_list li i {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(253, 207, 0, 0.2);
  border-radius: 50%;
  margin-right: 20px;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

@media (max-width: 767px) {
  #believe_us ul.believe_list li i {
    width: 44px;
    height: 44px;
  }
}

#believe_us ul.believe_list li i img {
  width: 28px;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

@media (max-width: 767px) {
  #believe_us ul.believe_list li i img {
    width: 20px;
  }
}

#believe_us ul.believe_list li p {
  color: white;
  font-family: "Montserrat-SemiBold";
  font-size: 1.25rem;
  line-height: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#believe_us ul.believe_list li p span {
  display: block;
  color: #b5b5b5;
  font-family: "Montserrat-Light";
  font-size: .75rem;
}

#believe_us ul.believe_list li:hover i {
  background: rgba(253, 207, 0, 0);
}

#believe_us ul.believe_list li:hover i img {
  width: 40px;
}

#solutions {
  width: 95%;
  padding: 100px 0;
  background-color: #fdcf00;
  margin-left: 5%;
  margin-top: -100px;
}

#solutions p.sec_head:before {
  background-color: white;
}

#solutions ul.solution_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1024px) {
  #solutions ul.solution_list {
    margin-top: 50px;
  }
}

#solutions ul.solution_list li {
  width: 18%;
  background-color: white;
  padding: 20px;
  list-style-type: none;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 15px 0 #e8be00;
          box-shadow: 0 10px 15px 0 #e8be00;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
  cursor: pointer;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 1024px) {
  #solutions ul.solution_list li {
    width: 48%;
    margin-bottom: 4%;
    height: 250px;
  }
}

@media (max-width: 767px) {
  #solutions ul.solution_list li {
    width: 48%;
    height: 250px;
  }
}

#solutions ul.solution_list li img {
  width: 45px;
}

#solutions ul.solution_list li .btm_sec {
  height: 110px;
}

#solutions ul.solution_list li .btm_sec p {
  font-family: "Montserrat-Light";
  font-size: .8rem;
  color: #565656;
  line-height: 1.25rem;
}

#solutions ul.solution_list li .btm_sec p.heading {
  font-family: "Montserrat-SemiBold";
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #2E1F27;
  margin-bottom: 10px;
}

#solutions ul.solution_list li:hover {
  -webkit-box-shadow: 0 25px 30px 0 #d0aa00;
          box-shadow: 0 25px 30px 0 #d0aa00;
}

#clients {
  width: 100%;
  padding: 100px 0;
}

#clients .clients_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0 0 22px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1024px) {
  #clients .clients_list {
    padding-left: 0;
  }
}

#clients .clients_list .clients_col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  #clients .clients_list .clients_col {
    width: 33%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

@media (max-width: 767px) {
  #clients .clients_list .clients_col {
    width: 50%;
  }
}

#clients .clients_list .clients_col:nth-of-type(2n) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

#clients .clients_list .clients_col .clients_box {
  width: 100%;
  height: 180px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

@media (max-width: 767px) {
  #clients .clients_list .clients_col .clients_box {
    height: 140px;
  }
}

#clients .clients_list .clients_col .clients_box:nth-of-type(2) {
  background-color: #f5f5f5;
}

#clients .clients_list .clients_col .clients_box:nth-of-type(2) .img_box {
  -webkit-box-shadow: 0 8px 12px 0 #e4e4e4;
          box-shadow: 0 8px 12px 0 #e4e4e4;
}

#clients .clients_list .clients_col .clients_box .img_box {
  width: 75%;
  height: 75%;
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
}

#clients .clients_list .clients_col .clients_box .img_box img {
  width: 100%;
  height: 100%;
}

#technology {
  width: 95%;
  padding: 100px 0 206px;
  background-color: #2E1F27;
}

#technology p.sec_head {
  color: white;
}

#technology p.sec_head:before {
  background-color: #fdcf00;
}

#technology ul.tech_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0 0 22px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1024px) {
  #technology ul.tech_list {
    padding-left: 0;
  }
}

#technology ul.tech_list li {
  width: 30%;
  height: 250px;
  list-style-type: none;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 5px 10px 0 #ccc;
          box-shadow: 0 5px 10px 0 #ccc;
  -webkit-box-shadow: 0 8px 15px 0 #191216;
          box-shadow: 0 8px 15px 0 #191216;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

@media (max-width: 1024px) {
  #technology ul.tech_list li {
    height: 120px;
  }
}

@media (max-width: 767px) {
  #technology ul.tech_list li {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
  }
}

#technology ul.tech_list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#technology ul.tech_list li .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(46, 31, 39, 0.3);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

#technology ul.tech_list li .overlay p {
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  color: white;
  font-family: "Montserrat-Bold";
  font-size: 1.85rem;
  text-shadow: 0 2px 5px #11111150;
  letter-spacing: 2px;
}

#technology ul.tech_list li .overlay img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  height: 0;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

#technology ul.tech_list li:hover {
  -webkit-box-shadow: 0 14px 20px 0 #191216;
          box-shadow: 0 14px 20px 0 #191216;
}

#technology ul.tech_list li:hover .overlay {
  background: rgba(46, 31, 39, 0.6);
}

#technology ul.tech_list li:hover .overlay img {
  height: 60px;
}

#ping_us {
  width: 95%;
  background-color: white;
  padding: 50px 0;
  margin: -106px 0 -106px 5%;
  position: relative;
  z-index: 10;
}

#ping_us p.heading {
  font-family: "Montserrat-SemiBold";
  font-size: 1.85rem;
  margin: 0 0 35px;
}

#ping_us form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#ping_us form .input_field {
  width: 21%;
}

@media (max-width: 1024px) {
  #ping_us form .input_field {
    width: 48%;
  }
}

@media (max-width: 767px) {
  #ping_us form .input_field {
    width: 100%;
  }
}

#ping_us form .input_field input, #ping_us form .input_field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #141414;
  font-family: "Montserrat-Light";
  font-size: .85rem;
  padding: 12px 0;
}

@media (max-width: 1024px) {
  #ping_us form .input_field input, #ping_us form .input_field select {
    margin-bottom: 15px;
  }
}

#ping_us form .input_field input:focus, #ping_us form .input_field select:focus {
  border-color: #fdcf00;
}

#ping_us form .input_field select {
  padding: 11px 0;
}

#ping_us form .customButton {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fdcf00), color-stop(50%, transparent));
  background: linear-gradient(to right, #fdcf00 50%, transparent 50%);
}

#footer {
  width: 100%;
  padding: 176px 0 70px;
  background-color: #141414;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #fdcf00), color-stop(35%, #2E1F27));
  background: linear-gradient(90deg, #fdcf00 35%, #2E1F27 35%);
}

@media (max-width: 1024px) {
  #footer {
    background: -webkit-gradient(linear, left top, right top, color-stop(40%, #fdcf00), color-stop(40%, #2E1F27));
    background: linear-gradient(90deg, #fdcf00 40%, #2E1F27 40%);
  }
}

@media (max-width: 767px) {
  #footer {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, #fdcf00), color-stop(35%, #2E1F27));
    background: linear-gradient(#fdcf00 35%, #2E1F27 35%);
  }
}

#footer .footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#footer .footer_inner .footer_left {
  background-color: #fdcf00;
  width: 35%;
  padding: 0 5% 0 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1024px) {
  #footer .footer_inner .footer_left {
    width: 40%;
  }
}

@media (max-width: 767px) {
  #footer .footer_inner .footer_left {
    width: 100%;
    padding-bottom: 50px;
  }
}

#footer .footer_inner .footer_left img {
  width: 200px;
  opacity: .8;
  margin: 0 0 25px;
}

#footer .footer_inner .footer_left ul.footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#footer .footer_inner .footer_left ul.footer_links li {
  list-style-type: none;
  font-size: .8rem;
  font-family: "Montserrat-Light";
  color: white;
  opacity: .7;
  margin-right: 50px;
  position: relative;
}

#footer .footer_inner .footer_left ul.footer_links li a {
  color: white;
  text-decoration: none;
}

#footer .footer_inner .footer_left ul.footer_links li::after {
  content: '/';
  position: absolute;
  font-size: .5rem;
  bottom: 2px;
  right: -25px;
  opacity: .5;
}

#footer .footer_inner .footer_left ul.footer_links li:last-child::after {
  content: '';
}

#footer .footer_inner .footer_left h6 {
  font-size: 2rem;
}

#footer .footer_inner .footer_left p {
  font-size: .9rem;
  opacity: .85;
  line-height: 1.4rem;
  margin: 5px 0 0;
}

#footer .footer_inner .footer_left p.info_text {
  font-size: .75rem;
  font-family: "Montserrat-Light";
  opacity: 1;
  line-height: 1.2rem;
  margin: 60px 0 0;
}

#footer .footer_inner .footer_left form {
  margin: 25px 0 0;
}

#footer .footer_inner .footer_left form .form_field {
  width: 100%;
  margin: 0 0 20px;
  position: relative;
}

#footer .footer_inner .footer_left form .form_field label {
  font-size: .75rem;
  font-family: "Montserrat-Light";
  text-transform: uppercase;
  margin: 0 0 7px;
  display: block;
}

#footer .footer_inner .footer_left form .form_field input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #2E1F27;
  padding: 0 10px;
  font-family: "Montserrat-Light";
}

#footer .footer_inner .footer_left form .form_field .customButton {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fdcf00), color-stop(50%, transparent));
  background: linear-gradient(to right, #fdcf00 50%, transparent 50%);
  margin: 5px 0 0;
}

#footer .footer_inner .footer_right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 65%;
}

@media (max-width: 767px) {
  #footer .footer_inner .footer_right {
    width: 100%;
    padding-top: 50px;
    background-color: #2E1F27;
  }
}

#footer .footer_inner .footer_right .link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#footer .footer_inner .footer_right .link_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 22%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

@media (max-width: 1024px) {
  #footer .footer_inner .footer_right .link_wrap ul {
    width: 48%;
    margin-bottom: 40px;
  }
}

#footer .footer_inner .footer_right .link_wrap ul.link_list li {
  list-style-type: none;
  width: 100%;
  margin: 6px 0;
}

#footer .footer_inner .footer_right .link_wrap ul.link_list li a {
  text-decoration: none;
  font-size: .8rem;
  color: white;
  opacity: .65;
  font-family: "Montserrat-Light";
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

#footer .footer_inner .footer_right .link_wrap ul.link_list li a:hover {
  opacity: 1;
}

#footer .footer_inner .footer_right .link_wrap ul.link_list.top_margin {
  padding-top: 26px;
}

#footer .footer_inner .footer_right .link_wrap ul p {
  font-size: .8rem;
  color: white;
  margin: 6px 0;
}

#footer .footer_inner .footer_right .footer_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0 0;
}

#footer .footer_inner .footer_right .footer_bottom .bottom_left ul.social_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
}

#footer .footer_inner .footer_right .footer_bottom .bottom_left ul.social_list li {
  margin-right: 15px;
}

#footer .footer_inner .footer_right .footer_bottom .bottom_left ul.social_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .footer_inner .footer_right .footer_bottom .bottom_left ul.social_list li img {
  width: 14px;
  opacity: .8;
}

#footer .footer_inner .footer_right .footer_bottom .bottom_left p.copy {
  font-size: .75rem;
  color: white;
  font-family: "Montserrat-Light";
  opacity: .7;
  margin: 15px 0 0;
}

#footer .footer_inner .footer_right .footer_bottom .bottom_right img {
  width: 60px;
}

@media (max-width: 767px) {
  #footer .footer_inner .footer_right .footer_bottom .bottom_right img {
    width: 40px;
  }
}

#footer.about_footer {
  padding: 70px 0;
}

.solution_banner_img {
  width: 95%;
  margin: -100px 0 80px 5%;
  height: 450px;
  -webkit-box-shadow: 0 5px 15px 0 #ccc;
          box-shadow: 0 5px 15px 0 #ccc;
  -webkit-box-shadow: 15px 25px 25px 0 #e6e6e6;
          box-shadow: 15px 25px 25px 0 #e6e6e6;
}

.solution_banner_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.solution_banner_img.about_banner_img {
  width: 100%;
  margin: -100px 0 80px 0;
}

.highlights {
  width: 100%;
  margin: 0 0 100px;
}

.highlights p {
  font-size: 1rem;
  text-align: center;
  line-height: 2rem;
  color: #444444;
}

.highlights p span {
  display: inline-block;
  padding: 0 15px;
}

#solutionP_why {
  width: 100%;
  padding: 100px 0 60px;
  background-color: #f9f9f9;
}

#solutionP_why .inner_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0 0 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1024px) {
  #solutionP_why .inner_wrap {
    padding: 15px 0 0;
  }
}

#solutionP_why .inner_wrap .content_area {
  width: 45%;
}

@media (max-width: 1024px) {
  #solutionP_why .inner_wrap .content_area {
    width: 100%;
  }
}

#solutionP_why .inner_wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  #solutionP_why .inner_wrap ul li {
    margin-bottom: 20px;
  }
}

#solutionP_why .inner_wrap ul li i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2E1F27;
  font-style: normal;
  font-size: 1rem;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#solutionP_why .inner_wrap ul li p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 15px;
  line-height: 1.5rem;
}

#solutionP_why .inner_wrap ul li p span {
  display: block;
  font-size: .8rem;
  line-height: 1.5rem;
  font-family: "Montserrat-Light";
  color: #444444;
  margin-top: 5px;
}

#solutionP_why p.para_head {
  font-size: 1.5rem;
  font-family: "Montserrat-SemiBold";
  line-height: 2.2rem;
  margin: 0 0 30px;
}

#solutionP_why.leads_why .inner_wrap {
  padding: 15px 0 0;
}

#solutionP_why.leads_why .inner_wrap p {
  font-size: 1rem;
  font-family: "Montserrat-Light";
  line-height: 1.75rem;
  margin: 0 0 30px;
  color: #444444;
}

#solutionP_why.leads_why .inner_wrap p b {
  font-family: "Montserrat-Bold";
  color: #fdcf00;
  text-decoration: underline;
}

#solutionP_why.ceo_message {
  margin: 0;
  padding: 100px 0 280px;
}

@media (max-width: 1024px) {
  #solutionP_why.ceo_message {
    padding-bottom: 80px;
  }
}

#solutionP_why.ceo_message .content_area img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  #solutionP_why.ceo_message .content_area img {
    height: 300px;
  }
}

#solutionP_why.ceo_message .message_text {
  position: absolute;
  left: 35%;
  right: 0;
  background-color: white;
  padding: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 150px;
}

@media (max-width: 1024px) {
  #solutionP_why.ceo_message .message_text {
    left: 0;
    top: 0;
    padding: 30px;
    position: relative;
  }
}

#solutionP_why.ceo_message .message_text p {
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-family: "Montserrat-Light";
}

#solutionP_why.ceo_message .message_text::after {
  content: '';
  background: #fdcf00;
  width: 250px;
  height: 4px;
  position: absolute;
  bottom: -5px;
  right: -1px;
}

#solutionP_why.ceo_message .message_text::before {
  content: '';
  background: #fdcf00;
  width: 4px;
  height: 250px;
  position: absolute;
  bottom: -5px;
  right: -5px;
}

#testimonial {
  width: 100%;
  background-color: #2E1F27;
  padding: 80px 0;
  margin: 0;
}

#testimonial .testimonial_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#testimonial .testimonial_inner .cont_area {
  width: 45%;
}

@media (max-width: 1024px) {
  #testimonial .testimonial_inner .cont_area {
    width: 100%;
  }
}

#testimonial .testimonial_inner .cont_area img {
  width: 30px;
  margin: 0 0 40px;
}

#testimonial .testimonial_inner .cont_area p {
  font-family: "Montserrat-Light";
  line-height: 2rem;
  margin: 0 0 20px;
  color: white;
}

#testimonial .testimonial_inner .cont_area .author_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#testimonial .testimonial_inner .cont_area .author_wrap .user_img {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 15px 0 #2b1f26;
          box-shadow: 0 5px 15px 0 #2b1f26;
  text-align: center;
  line-height: 46px;
}

#testimonial .testimonial_inner .cont_area .author_wrap .user_img img {
  width: 20px;
  margin: 0;
}

#testimonial .testimonial_inner .cont_area .author_wrap p {
  font-family: "Montserrat-SemiBold";
  font-size: .95rem;
  margin: 0 0 0 15px;
}

#testimonial .testimonial_inner .img_area {
  width: 45%;
  height: 600px;
  background-color: white;
  margin: -260px 0 0;
  -webkit-box-shadow: 0 15px 30px 0 #42424245;
          box-shadow: 0 15px 30px 0 #42424245;
}

@media (max-width: 1024px) {
  #testimonial .testimonial_inner .img_area {
    display: none;
  }
}

#testimonial .testimonial_inner .img_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#testimonial.leads_testimonial {
  padding-bottom: 320px;
  margin-bottom: -222px;
}

#research_sec {
  width: 100%;
  padding: 120px 0;
}

#research_sec .research_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#research_sec .research_inner .content_area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 5rem 0 0 80px;
}

@media (max-width: 1024px) {
  #research_sec .research_inner .content_area {
    margin: 0;
    width: 100%;
    padding: 20px 15px 0;
  }
}

#research_sec .research_inner .content_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#research_sec .research_inner .content_area ul li {
  list-style-type: none;
  width: 46%;
  margin: 0 0 30px 0;
  font-size: 1.1rem;
  line-height: 1.8rem;
  position: relative;
  color: #444444;
}

@media (max-width: 1024px) {
  #research_sec .research_inner .content_area ul li {
    width: 100%;
    margin: 0 0 15px;
  }
}

#research_sec .research_inner .content_area ul li:last-child {
  width: 100%;
}

#research_sec .research_inner .content_area ul li::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background: url("./../icons/check.svg") no-repeat center center;
  background-size: contain;
  left: -25px;
  top: 6px;
}

#quote_sec {
  width: 100%;
  margin: 0 0 -110px 0;
  z-index: 15;
  position: relative;
}

#quote_sec .quote_inner {
  padding: 50px;
  background-color: #444444;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

#quote_sec .quote_inner h6 {
  font-family: "Montserrat-Bold";
  font-size: 2.85rem;
  color: white;
  margin: 0 0 15px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  #quote_sec .quote_inner h6 {
    font-size: 2rem;
  }
}

#quote_sec .quote_inner p {
  font-family: "Montserrat-Light";
  font-size: 1.2rem;
  color: white;
}

#quote_sec .quote_inner a {
  text-decoration: none;
  color: #2E1F27;
  font-size: .9rem;
  font-family: "Montserrat-Light";
  padding: 12px 45px 12px 20px;
  border-radius: 3px;
  margin: 10px 0 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #fdcf00;
  position: relative;
  -webkit-box-shadow: 5px 5px 0 0 #14141424;
          box-shadow: 5px 5px 0 0 #14141424;
}

#quote_sec .quote_inner a::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: url("./../icons/right_arrow.svg") no-repeat center center;
  right: 17px;
  top: 16px;
}

#quote_sec.mr_minus {
  margin-top: -140px;
}

#quote_sec.mr_minus170 {
  margin-top: -170px;
}

@media (max-width: 1024px) {
  #quote_sec.mr_minus170 {
    margin-top: -200px;
  }
}

#content_sec {
  width: 100%;
  padding: 100px 0 240px;
  background-color: white;
  margin: 50px 0 0;
}

#content_sec .content_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#content_sec .content_inner .left_cont {
  width: 100%;
}

#content_sec .content_inner .left_cont h6 {
  font-size: 2rem;
  color: #fdcf00;
  font-family: "Montserrat-SemiBold";
  width: 80%;
}

@media (max-width: 1024px) {
  #content_sec .content_inner .left_cont h6 {
    width: 100%;
  }
}

#content_sec .content_inner .right_cont {
  width: 100%;
}

#content_sec .content_inner .right_cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px 0 0;
  padding: 0 0 0 22px;
}

#content_sec .content_inner .right_cont ul li {
  width: 25%;
  margin: 0 0 20px;
  list-style-type: none;
  position: relative;
  font-family: "Montserrat-Light";
  font-size: .95rem;
  line-height: 1.5rem;
}

@media (max-width: 1024px) {
  #content_sec .content_inner .right_cont ul li {
    width: 31%;
    margin: 0 0 15px;
  }
}

@media (max-width: 767px) {
  #content_sec .content_inner .right_cont ul li {
    width: 48%;
  }
}

#content_sec .content_inner .right_cont ul li::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background: url("./../icons/check.svg") no-repeat center center;
  background-size: contain;
  left: -25px;
  top: 4px;
}

#content_sec .content_inner .right_cont ul.mr_list li {
  width: 20%;
  margin: 0 6.5% 30px 0;
}

#content_sec .content_inner .right_cont ul.mr_list li:nth-child(4n) {
  margin-right: 0;
}

@media (max-width: 767px) {
  #content_sec .content_inner .right_cont ul.mr_list li {
    width: 100%;
    margin: 0 0 15px;
  }
}

#content_sec.no_margin {
  margin: 0;
}

#work_with {
  width: 100%;
  padding: 100px 0;
  background-color: #fdcf00;
}

#work_with p.sec_head {
  width: 100%;
}

#work_with p.sec_head:before {
  background-color: white;
}

#work_with .work_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

#work_with .work_inner .content_area {
  padding: 0 0 0 22px;
  width: 45%;
}

#work_with .work_inner .content_area p {
  font-family: 1rem;
  line-height: 1.8rem;
  font-family: "Montserrat-Light";
  opacity: .9;
}

#work_with .work_inner .content_area p.sub_head {
  font-size: 1.3rem;
  font-family: "Montserrat-SemiBold";
  margin: 0 0 15px;
  opacity: 1;
}

#work_with .work_inner .form_area {
  width: 45%;
  background-color: white;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  right: 0;
  top: -100px;
  bottom: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#work_with .work_inner .form_area form {
  width: 100%;
}

#work_with .work_inner .form_area form .form_field {
  width: 100%;
  margin: 0 0 20px;
  position: relative;
}

#work_with .work_inner .form_area form .form_field label {
  font-size: .75rem;
  font-family: "Montserrat-Light";
  text-transform: uppercase;
  margin: 0 0 7px;
  display: block;
}

#work_with .work_inner .form_area form .form_field label.label_place {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  height: 38px;
  margin: 0;
  background-color: white;
  border-radius: 4px;
  line-height: 38px;
  padding-left: 10px;
  cursor: pointer;
}

#work_with .work_inner .form_area form .form_field label.label_place img {
  width: 20px;
  position: relative;
  top: 5px;
  margin-right: 6px;
}

#work_with .work_inner .form_area form .form_field input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  padding: 0 10px;
  font-family: "Montserrat-Light";
}

#work_with .work_inner .form_area form .form_field input:focus {
  border-color: #fdcf00;
}

#work_with .work_inner .form_area form .form_field .customButton {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fdcf00), color-stop(50%, transparent));
  background: linear-gradient(to right, #fdcf00 50%, transparent 50%);
  margin: 5px 0 0;
}

#work_with .work_inner .form_area form .form_field:last-of-type {
  margin-bottom: 0;
}

#about_clients {
  width: 100%;
  padding: 100px 0;
}

#about_clients p.sec_head {
  width: 100%;
}

#about_clients .clients_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#about_clients .clients_inner .clients_left {
  width: 30%;
  padding: 0 0 0 22px;
}

@media (max-width: 1024px) {
  #about_clients .clients_inner .clients_left {
    width: 100%;
    padding: 0;
  }
}

#about_clients .clients_inner .clients_left p {
  font-family: 1rem;
  line-height: 1.8rem;
  font-family: "Montserrat-Light";
  opacity: .9;
}

#about_clients .clients_inner .clients_left p.sub_head {
  font-size: 1.3rem;
  font-family: "Montserrat-SemiBold";
  margin: 0 0 15px;
  opacity: 1;
}

#about_clients .clients_inner .clients_right {
  width: 60%;
  margin: -110px 0 0;
}

@media (max-width: 1024px) {
  #about_clients .clients_inner .clients_right {
    width: 100%;
    margin: 40px 0 0;
  }
}

#about_clients .clients_inner .clients_right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#about_clients .clients_inner .clients_right ul li {
  list-style-type: none;
  width: 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #cccccc50;
  border-radius: 5px;
  margin-bottom: 2%;
  height: 100px;
  -webkit-box-shadow: 0 5px 6px 0 #f7f7f7;
          box-shadow: 0 5px 6px 0 #f7f7f7;
}

@media (max-width: 767px) {
  #about_clients .clients_inner .clients_right ul li {
    width: 31%;
    margin-bottom: 3%;
  }
}

#about_clients .clients_inner .clients_right ul li img {
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.sidebar {
  width: 400px;
  background-color: #2E1F27;
  position: fixed;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 30px;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

@media (max-width: 767px) {
  .sidebar {
    width: 100%;
  }
}

.sidebar i.close_icon {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin: 0 0 20px;
  opacity: .7;
  -webkit-transition: .2s all ease;
  transition: .2s all ease;
}

.sidebar i.close_icon img {
  width: 12px;
}

.sidebar i.close_icon img.back_icon {
  display: none;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sidebar i.close_icon img.close_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidebar i.close_icon:hover {
  opacity: 1;
}

.sidebar.activeNav i.close_icon img {
  width: 12px;
}

.sidebar.activeNav i.close_icon img.back_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidebar.activeNav i.close_icon img.close_icon {
  display: none;
}

.sidebar ul {
  list-style-type: none;
}

.sidebar ul li a {
  color: white;
  padding: 15px 0;
  text-decoration: none;
  font-size: 2.2rem;
  opacity: .8;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
  font-family: "Montserrat-Light";
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.sidebar ul li a:hover {
  opacity: 1;
  color: #fdcf00;
}

.sidebar ul li a.active {
  color: #fdcf00;
  opacity: 1;
}

.sidebar ul li:nth-child(2) a::after {
  content: '';
  background: url("./../icons/right_arrow_white.svg") no-repeat center center;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
}

.sidebar ul li:nth-child(3) a::after {
  content: '';
  background: url("./../icons/right_arrow_white.svg") no-repeat center center;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
}

.sidebar ul li ul {
  position: absolute;
  background: #2E1F27;
  z-index: 15;
  top: 60px;
  bottom: 0;
  right: 0;
  left: 400px;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
  width: 420px;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
}

.sidebar ul li ul li a {
  font-size: 1rem;
}

.sidebar ul li ul li a::after {
  background: unset !important;
}

.sidebar ul li.hide_desk {
  display: none;
}

@media (max-width: 1024px) {
  .sidebar ul li.hide_desk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sidebar.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#contact_form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: -90px 0 0 0;
  position: relative;
}

@media (max-width: 1024px) {
  #contact_form {
    margin: 0;
    border-bottom: 5px solid #2E1F27;
  }
}

#contact_form .form_wrap {
  width: 65%;
  background-color: #fdcf00;
  padding: 100px 5% 100px 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 150px 0 0;
}

@media (max-width: 1024px) {
  #contact_form .form_wrap {
    width: 100%;
    padding: 40px;
    border-radius: 40px 0 0;
  }
}

#contact_form .form_wrap p.form_head {
  font-size: 2rem;
  font-family: "Montserrat-Bold";
}

#contact_form .form_wrap hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  width: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 15px 0 40px;
}

#contact_form .form_wrap hr:nth-of-type(1) {
  margin-bottom: 20px;
}

#contact_form .form_wrap hr:nth-of-type(2) {
  margin-top: 25px;
}

#contact_form .form_wrap form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#contact_form .form_wrap form .input_field {
  width: 48%;
  margin: 0 0 4%;
}

#contact_form .form_wrap form .input_field input, #contact_form .form_wrap form .input_field select, #contact_form .form_wrap form .input_field textarea {
  width: 100%;
  border: 1px solid #e0b700;
  font-family: "Montserrat-Light";
  font-size: .85rem;
  padding: 15px 12px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contact_form .form_wrap form .input_field input:focus, #contact_form .form_wrap form .input_field select:focus, #contact_form .form_wrap form .input_field textarea:focus {
  border-color: #2E1F27;
}

#contact_form .form_wrap form .input_field select {
  padding: 11px 0;
}

#contact_form .form_wrap form .input_field.full_field {
  width: 100%;
}

#contact_form .form_wrap form .input_field.full_field textarea {
  min-height: 120px;
}

#contact_form .form_wrap form .input_field.full_field .service_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#contact_form .form_wrap form .input_field.full_field .service_area .checkfield {
  width: 23.5%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 2.5%;
}

#contact_form .form_wrap form .input_field.full_field .service_area .checkfield label {
  width: 100%;
  border: 1px solid #e0b700;
  font-family: "Montserrat-Light";
  cursor: pointer;
  text-transform: none;
  font-size: .85rem;
  padding: 12px 12px 12px 45px;
  border-radius: 4px;
  background-color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}

#contact_form .form_wrap form .input_field.full_field .service_area .checkfield input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

#contact_form .form_wrap form .input_field.full_field .service_area .checkfield input:checked + span {
  background-color: #fdcf00;
  border-color: #fdcf00;
}

#contact_form .form_wrap form .input_field.full_field .service_area .checkfield input:checked + span img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contact_form .form_wrap form .input_field.full_field .service_area .checkfield span {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  top: 0;
  border-radius: 4px;
  left: 15px;
  top: 12.2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contact_form .form_wrap form .input_field.full_field .service_area .checkfield span img {
  display: none;
  width: 10px;
}

#contact_form .form_wrap form label {
  font-family: "Montserrat-Light";
  text-transform: uppercase;
  font-size: .8rem;
  margin: 0 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contact_form .form_wrap ul.contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#contact_form .form_wrap ul.contact_list li {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  #contact_form .form_wrap ul.contact_list li {
    width: 100%;
  }
}

#contact_form .form_wrap ul.contact_list li span {
  font-size: .65rem;
  opacity: .9;
}

#contact_form .form_wrap ul.contact_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #2E1F27;
  margin-top: 5px;
}

#contact_form .form_wrap ul.contact_list li i {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  margin: 0 15px 0 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact_form .form_wrap ul.contact_list li i img {
  width: 20px;
}

@media (max-width: 767px) {
  #contact_form .form_wrap ul.contact_list li:last-child {
    margin-top: 20px;
  }
}

#career_sec {
  width: 100%;
  padding: 100px 0;
  margin: 60px 0 0;
}

@media (max-width: 1024px) {
  #career_sec {
    padding-top: 50px;
  }
}

#career_sec .career_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#career_sec .career_inner .career_left {
  width: 45%;
}

@media (max-width: 1024px) {
  #career_sec .career_inner .career_left {
    width: 100%;
    margin-bottom: 40px;
  }
}

#career_sec .career_inner .career_left h6 {
  font-family: "Montserrat-SemiBold";
  font-size: 3rem;
  color: #2E1F27;
  margin: -8px 0 20px;
}

#career_sec .career_inner .career_left p {
  font-size: 1rem;
  line-height: 2rem;
}

#career_sec .career_inner .career_right {
  width: 45%;
  margin: 0 0 0;
  z-index: 10;
}

@media (max-width: 1024px) {
  #career_sec .career_inner .career_right {
    width: 100%;
  }
}

#career_sec .career_inner .career_right .form_area {
  width: 100%;
  background-color: #fdcf00;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 25px 0 #ffe77d;
          box-shadow: 0 5px 25px 0 #ffe77d;
}

@media (max-width: 1024px) {
  #career_sec .career_inner .career_right .form_area {
    padding: 25px;
  }
}

#career_sec .career_inner .career_right .form_area form {
  width: 100%;
}

#career_sec .career_inner .career_right .form_area form .form_field {
  width: 100%;
  margin: 0 0 20px;
  position: relative;
}

#career_sec .career_inner .career_right .form_area form .form_field label {
  font-size: .75rem;
  font-family: "Montserrat-Light";
  text-transform: uppercase;
  margin: 0 0 7px;
  display: block;
}

#career_sec .career_inner .career_right .form_area form .form_field label.label_place {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  height: 38px;
  margin: 0;
  background-color: white;
  border-radius: 4px;
  line-height: 38px;
  padding-left: 10px;
  cursor: pointer;
}

#career_sec .career_inner .career_right .form_area form .form_field label.label_place img {
  width: 20px;
  position: relative;
  top: 5px;
  margin-right: 6px;
}

#career_sec .career_inner .career_right .form_area form .form_field input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  padding: 0 10px;
  font-family: "Montserrat-Light";
}

#career_sec .career_inner .career_right .form_area form .form_field input:focus {
  border-color: #fdcf00;
}

#career_sec .career_inner .career_right .form_area form .form_field:last-of-type {
  margin-bottom: 0;
}

#perks {
  width: 100%;
  padding: 20px 0 120px;
}

#perks h6 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 70px;
}

#perks ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#perks ul li {
  text-align: center;
  margin: 0 35px;
}

@media (max-width: 1024px) {
  #perks ul li {
    width: 25%;
    margin: 0 0 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 767px) {
  #perks ul li {
    width: 48%;
  }
}

#perks ul li img {
  width: 60px;
  margin: 0 0 12px;
}

#perks ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: .85rem;
  opacity: .85;
}

#error_page {
  width: 100%;
  height: 80vh;
}

#error_page .error_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  padding-bottom: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#error_page .error_inner img {
  width: 550px;
}

#thankyou_page {
  width: 100%;
  height: 80vh;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #2E1F27), color-stop(35%, #fdcf00));
  background: linear-gradient(90deg, #2E1F27 35%, #fdcf00 35%);
}

@media (max-width: 1024px) {
  #thankyou_page {
    background: white;
    height: 60vh;
  }
}

#thankyou_page .thankyou_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
}

#thankyou_page .thankyou_inner .thank_left {
  width: 35%;
  height: 100%;
  background: url("./../img/thank_left.jpg") no-repeat center center;
  background-size: cover;
  background-color: red;
}

@media (max-width: 1024px) {
  #thankyou_page .thankyou_inner .thank_left {
    display: none;
  }
}

#thankyou_page .thankyou_inner .thank_right {
  width: 65%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5% 0 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1024px) {
  #thankyou_page .thankyou_inner .thank_right {
    width: 100%;
    padding: 0 5%;
  }
}

@media (max-width: 767px) {
  #thankyou_page .thankyou_inner .thank_right {
    padding: 0 15px;
  }
}

#thankyou_page .thankyou_inner .thank_right h6 {
  font-size: 3rem;
}

#thankyou_page .thankyou_inner .thank_right h6 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-family: "Montserrat-Light";
  margin: 10px 0 0;
  padding: 0 100px 0 0;
  line-height: 2rem;
}

@media (max-width: 1024px) {
  #thankyou_page .thankyou_inner .thank_right h6 span {
    padding-right: 0;
  }
}

.modal {
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 155;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

.modal .modal_inner {
  width: 60%;
  height: 70vh;
  position: relative;
}

.modal .modal_inner video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 5px solid white;
  -o-object-position: center center;
     object-position: center center;
  background-color: black;
}

.modal .modal_inner video:focus {
  outline: none;
}

.modal .modal_inner button.modal_close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  position: absolute;
  right: -50px;
  top: 0;
  line-height: 34px;
  cursor: pointer;
  z-index: 155;
  font-size: 1.5rem;
}

.modal .modal_inner iframe {
  width: 100%;
  height: 100%;
}

.modal.fade {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.formModal {
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 155;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

.formModal .modal_inner {
  width: 600px;
  height: 400px;
  background: -webkit-gradient(linear, left top, right top, color-stop(45%, #fdcf00), color-stop(45%, white));
  background: linear-gradient(90deg, #fdcf00 45%, white 45%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .formModal .modal_inner {
    width: 95%;
    background: white;
    height: auto;
  }
}

.formModal .modal_inner .form_left {
  width: 45%;
  background: url("./../img/pop_bg.jpg") no-repeat center center;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
}

@media (max-width: 767px) {
  .formModal .modal_inner .form_left {
    width: 100%;
  }
}

.formModal .modal_inner .form_left h6 {
  font-size: 2.2rem;
  color: white;
}

@media (max-width: 767px) {
  .formModal .modal_inner .form_left h6 br {
    display: none;
  }
}

.formModal .modal_inner button.modal_close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  position: absolute;
  right: -40px;
  top: 0;
  line-height: 34px;
  cursor: pointer;
  z-index: 155;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .formModal .modal_inner button.modal_close {
    top: -40px;
    right: 0;
  }
}

.formModal .modal_inner form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.formModal .modal_inner form .input_field {
  width: 100%;
  margin: 0 0 10px;
}

.formModal .modal_inner form .input_field input {
  width: 100%;
  border: 1px solid #ccc;
  font-family: "Montserrat-Light";
  font-size: .75rem;
  padding: 12px 12px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.formModal .modal_inner form .input_field input:focus {
  border-color: #fdcf00;
}

.formModal .modal_inner form label {
  font-family: "Montserrat-Light";
  text-transform: uppercase;
  font-size: .65rem;
  margin: 0 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.formModal .modal_inner form .customButton {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fdcf00), color-stop(50%, transparent));
  background: linear-gradient(to right, #fdcf00 50%, transparent 50%);
}

.formModal.fade {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#terms {
  width: 100%;
  padding: 120px 0;
}

#terms .terms_inner h6 {
  font-size: 2rem;
  margin: 0 0 15px;
}

#terms .terms_inner p {
  font-size: .85rem;
  font-family: "Montserrat-Light";
  line-height: 1.5rem;
  margin: 0 0 10px;
}

#terms .terms_inner p.sub_head {
  font-size: 1rem;
  font-family: "Montserrat-SemiBold";
  margin: 30px 0 10px;
}

#sitemap_page {
  width: 100%;
  padding: 140px 0 120px;
}

#sitemap_page .sitemap_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#sitemap_page .sitemap_inner p {
  font-family: "Montserrat-SemiBold";
  font-size: 1.5rem;
  color: #fdcf00;
  width: 100%;
  margin: 0;
}

#sitemap_page .sitemap_inner hr {
  border: none;
  border-bottom: 3px solid #fdcf00;
  width: 60px;
  margin: 10px 0 35px;
}

#sitemap_page .sitemap_inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 18px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

#sitemap_page .sitemap_inner ul li {
  width: 100%;
  margin-bottom: 12px;
}

#sitemap_page .sitemap_inner ul li a {
  text-decoration: none;
  color: #2E1F27;
  font-size: .85rem;
}

#sitemap_page .sitemap_inner ul li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 12px 0 0;
}

#sitemap_page .sitemap_inner ul li ul li {
  width: 25%;
}

#sitemap_page .sitemap_inner ul li ul li a {
  font-size: .75rem;
  font-family: "Montserrat-Light";
}
/*# sourceMappingURL=styles.css.map */