/*==== Desktop View ====*/
/*==== Laptop View ====*/
/*==== Ipad View ====*/
/*==== Tablet View ====*/
/*==== Mobile View ====*/
/*==== Small Mobile View ====*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57143;
  color: rgba(250, 250, 250, 0.7);
  background-color: #010101;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0 0 10px;
  color: #FAFAFA;
}

p {
  margin: 0 0 5px;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input,
textarea,
button {
  padding: 10px 25px;
  border: 1px solid #f1f1f1;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
  border-color: #f3f3f3;
}

nav ul li {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/*Hide number spin button*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/*==== SITE BOXED BUTTON ====*/
.site_btn {
  display: inline-block;
  background-color: #27ADE5;
  color: #ffffff;
  font-size: 17px;
  padding: 11px 30px;
  border-radius: 10px;
}

.site_btn:hover {
  background-color: #222735;
  color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .site_btn {
    font-size: 16px;
    padding: 10px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .site_btn {
    font-size: 14px;
  }
}

/*==== SECTION SEPARATE ====*/
.section_padding {
  padding: 120px 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section_padding {
    padding: 90px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_padding {
    padding: 80px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .section_padding {
    padding: 60px 0px;
  }
}

@media only screen and (max-width: 479px) {
  .section_padding {
    padding: 50px 0px;
  }
}

.section_title h2 {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section_title h2 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_title h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .section_title h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .section_title h2 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section_title h2 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .section_title h2 {
    margin-bottom: 15px;
  }
}

.section_title p {
  font-size: 17px;
  line-height: 1.52941;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section_title p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_title p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .section_title p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .section_title br {
    display: none;
  }
}

/*==== VIDEO CARD ====*/
.video_area {
  width: 100%;
  height: 425px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video_area {
    height: 350px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video_area {
    height: 300px;
  }
}

@media only screen and (max-width: 767px) {
  .video_area {
    height: 300px;
  }
}

@media only screen and (max-width: 479px) {
  .video_area {
    height: 250px;
  }
}

.video_area::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.video_area_play {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-content: center;
  border-radius: 100%;
  background-color: #010101;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.video_area_play:hover {
  background-color: #27ADE5;
  color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video_area_play {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .video_area_play {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
}

.mt-50 {
  margin-top: 50px !important;
}

.input-control {
  position: relative;
  margin-top: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .input-control {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .input-control {
    margin-top: 15px;
  }
}

.input-control-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.input-control-input {
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.85714;
  background-color: #ffffff;
  color: rgba(250, 250, 250, 0.7);
  background-color: #222735;
  font-weight: 500;
  border-color: transparent;
}

.input-control-input:focus {
  border-color: #27ADE5;
}

.input-control-input[type=submit] {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  background-color: #27ADE5;
}

.input-control-input[type=submit]:hover {
  background-color: #222735;
  color: #ffffff;
}

.input-control textarea {
  height: 170px;
  resize: none;
}

@media only screen and (max-width: 767px) {
  .input-control textarea {
    height: 150px;
  }
}

.d-flex {
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  .d-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.d-flex .input-control {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (max-width: 767px) {
  .d-flex .input-control {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu-hide {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .menu-hide {
    display: none !important;
  }
}

.social_media_list {
  display: inline-block;
}

.social_media_list:not(:last-child) a {
  margin-right: 2px;
}

.social_media_list_links {
  display: block;
  font-size: 14px;
  color: #FAFAFA;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 100%;
  text-align: center;
  background-color: #010101;
}

.social_media_list_links:hover {
  background-color: #27ADE5;
  color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .social_media_list_links {
    width: 28px;
    height: 28px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .social_media_list_links {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

/*==== ANIMATION UP TO DOWN ====*/
@-webkit-keyframes header {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes header {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

/*==== Desktop View ====*/
/*==== Laptop View ====*/
/*==== Ipad View ====*/
/*==== Tablet View ====*/
/*==== Mobile View ====*/
/*==== Small Mobile View ====*/
/*=== HEADER AREA CSS ====*/
.heading {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 0px 30px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
  .heading {
    padding: 0px 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .heading {
    padding: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .heading {
    padding: 15px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading {
    padding: 15px 10px;
  }
}

@media only screen and (max-width: 767px) {
  .heading {
    padding: 15px 0px;
  }
}

.heading_logo {
  display: inline-block;
  width: 145px;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  .heading_logo {
    width: 130px;
  }
}

@media only screen and (max-width: 479px) {
  .heading_logo {
    width: 110px;
  }
}

.heading_menu_list:first-child a {
  margin-left: 0px;
}

.heading_menu_list:last-child a {
  margin-right: 0px;
}

.heading_menu_list_links {
  display: block;
  font-size: 18px;
  padding: 25px 0px;
  margin: 0px 15px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.7);
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
  .heading_menu_list_links {
    margin: 0px 10px;
    font-size: 17px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .heading_menu_list_links {
    margin: 0px 10px;
    font-size: 16px;
  }
}

.heading_menu_list_links::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background-color: #27ADE5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0.3);
          transform: scaleX(0.3);
  opacity: 0;
  visibility: visible;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.heading_menu_list_links:hover {
  color: #FAFAFA;
}

.heading_menu_list_links:hover::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.heading .text-right a.site_btn {
  background-color: #ffffff;
  color: #010101;
}

.heading .text-right a.site_btn:hover {
  background-color: #27ADE5;
  color: #ffffff;
}

.heading_thum {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 50%;
  display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .heading_thum {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading_thum {
    display: block;
    width: 60%;
  }
}

@media only screen and (max-width: 767px) {
  .heading_thum {
    display: block;
    width: 93%;
    top: 7px;
  }
}

@media only screen and (max-width: 479px) {
  .heading_thum {
    top: 5px;
    width: 90%;
  }
}

.heading_thum .mean-bar {
  padding: 0px;
}

.heading_thum .mean-bar .meanmenu-reveal {
  padding: 0px;
}

@media only screen and (max-width: 479px) {
  .heading_thum .mean-bar .meanmenu-reveal div {
    width: 24px;
    height: 25px;
  }
}

.heading_thum .mean-bar .meanclose div {
  background-size: 80% 80%;
  background-position: center;
  background-repeat: no-repeat;
}

.heading_thum .mean-bar .mean-nav {
  margin-top: 50px;
  background-color: #010101;
}

@media only screen and (max-width: 479px) {
  .heading_thum .mean-bar .mean-nav {
    margin-top: 40px;
  }
}

.heading_thum .mean-bar .mean-nav li a {
  padding-left: 3%;
  padding-right: 7%;
  padding-top: 15px;
  padding-bottom: 15px;
  text-transform: capitalize !important;
  font-size: 16px;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

@media only screen and (max-width: 767px) {
  .heading_thum .mean-bar .mean-nav li a {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 400 !important;
    padding-left: 5%;
    padding-right: 5%;
  }
}

.heading_thum .mean-bar .mean-nav li .site_btn {
  margin-top: 10px;
  text-align: center !important;
}

@media only screen and (max-width: 767px) {
  .heading_thum .mean-bar .mean-nav li .site_btn {
    border-radius: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .heading_thum .mean-bar .mean-nav .d-none {
    display: block !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading_thum .mean-bar .mean-nav .d-none {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .heading_thum .mean-bar .mean-nav .d-none {
    display: block !important;
  }
}

.fixed {
  position: fixed !important;
  background-color: #010101;
  -webkit-animation: header .5s ease;
          animation: header .5s ease;
}

/*=== HERO AREA CSS ====*/
.hero_area {
  padding-top: 220px;
  padding-bottom: 180px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .hero_area {
    padding-top: 200px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_area {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_area {
    padding-top: 130px;
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .hero_area {
    padding-top: 120px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .hero_area {
    padding-top: 100px;
    padding-bottom: 0px;
  }
}

.hero_area::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-image: url(../images/hero-img.png);
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
  .hero_area::before {
    width: 45%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .hero_area::before {
    width: 45%;
  }
}

@media only screen and (max-width: 479px) {
  .hero_area::before {
    display: none;
  }
}

.hero_area_inner h1 {
  font-size: 60px;
  line-height: 1.66667;
  margin-bottom: 0px;
  font-weight: 700;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .hero_area_inner h1 {
    font-size: 55px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_area_inner h1 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_area_inner h1 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .hero_area_inner h1 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 479px) {
  .hero_area_inner h1 {
    font-size: 22px;
  }
}

.hero_area_inner h1 span {
  display: inline-block;
  color: #27ADE5;
  text-transform: uppercase;
  background-image: url(../images/logo-shape.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero_area_2 h1,
.hero_area_3 h1 {
  font-size: 74px;
  line-height: 1.35135;
  margin-bottom: 0px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
  .hero_area_2 h1,
  .hero_area_3 h1 {
    font-size: 70px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .hero_area_2 h1,
  .hero_area_3 h1 {
    font-size: 64px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_area_2 h1,
  .hero_area_3 h1 {
    font-size: 54px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_area_2 h1,
  .hero_area_3 h1 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 767px) {
  .hero_area_2 h1,
  .hero_area_3 h1 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 479px) {
  .hero_area_2 h1,
  .hero_area_3 h1 {
    font-size: 32px;
  }
}

.hero_area_2 {
  padding-top: 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_area_2 {
    padding-top: 180px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_area_2 {
    padding-top: 150px;
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .hero_area_2 {
    padding-top: 100px;
  }
}

.hero_area_2_img {
  position: absolute;
  right: 0;
  top: 150px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_area_2_img {
    width: 500px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_area_2_img {
    width: 380px;
    top: 130px;
  }
}

@media only screen and (max-width: 767px) {
  .hero_area_2_img {
    display: none;
  }
}

.hero_area_3 {
  padding: 230px 0px;
  position: relative;
  z-index: 1;
  background-image: url(../images/hero-bg-3.jpg);
  background-size: 100% 100%;
  background-position: 100% 100%;
  margin-top: 85px;
}

.hero_area_3::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #010101;
  background: -webkit-gradient(linear, left top, right top, from(rgba(1, 1, 1, 0.711922)), to(rgba(1, 1, 1, 0.05)));
  background: linear-gradient(90deg, rgba(1, 1, 1, 0.711922) 0%, rgba(1, 1, 1, 0.05) 100%);
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .hero_area_3 {
    padding: 180px 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero_area_3 {
    padding: 150px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_area_3 {
    padding: 120px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .hero_area_3 {
    padding: 80px 0px;
  }
}

@media only screen and (max-width: 479px) {
  .hero_area_3 {
    padding: 50px 0px;
  }
}

/*=== HOW WE WORK AREA CSS ====*/
.how_we_work_inner h2 {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .how_we_work_inner h2 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .how_we_work_inner h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .how_we_work_inner h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .how_we_work_inner h2 {
    font-size: 22px;
  }
}

.how_we_work_inner .video_area::before {
  background-image: url(../images/video-preview-1.jpg);
  background-color: #222735;
  opacity: .5;
}

@media only screen and (max-width: 767px) {
  .how_we_work_inner .video_area {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 479px) {
  .how_we_work_inner .video_area {
    margin-bottom: 30px;
  }
}

.how_we_work_inner_img {
  width: 552px;
  height: 425px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .how_we_work_inner_img {
    width: 500px;
    margin: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .how_we_work_inner_img {
    width: 100%;
    height: 350px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .how_we_work_inner_img {
    width: 100%;
    height: 295px;
  }
}

@media only screen and (max-width: 767px) {
  .how_we_work_inner_img {
    width: 100%;
    height: auto;
  }
}

.how_we_work_inner_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*=== MISSION AREA CSS ====*/
.mission_area {
  background-color: #222735;
  padding: 90px 0px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mission_area {
    padding: 70px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .mission_area {
    padding: 50px 0px;
  }
}

.mission_area::before {
  content: '';
  width: 100%;
  height: 95%;
  background-image: url(../images/mission-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  bottom: 0;
  left: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mission_area::before {
    width: 40%;
    height: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mission_area::before {
    width: 30%;
    height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .mission_area::before {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .mission_area_inner {
    padding-left: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mission_area_inner {
    padding-left: 100px;
  }
}

.mission_area_inner h3 {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mission_area_inner h3 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mission_area_inner h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .mission_area_inner h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .mission_area_inner h3 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mission_area_inner h3 {
    margin-bottom: 20px;
  }
}

.mission_area_inner h3 span {
  border-radius: 100%;
  border: 1px solid #27ADE5;
  padding: 10px 15px;
  display: inline-block;
  line-height: 1.5;
}

.mission_area_inner p {
  font-size: 24px;
  line-height: 1.33333;
  margin-bottom: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mission_area_inner p {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mission_area_inner p {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 767px) {
  .mission_area_inner p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .mission_area_inner p {
    font-size: 14px;
  }
}

.mission_area_inner p:last-child {
  margin-bottom: 0px;
}

/*=== MISSION AREA CSS ====*/
.profit_area_inner {
  padding-right: 65px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profit_area_inner {
    padding-right: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .profit_area_inner {
    padding-right: 0px;
  }
}

.profit_area_inner h3 {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .profit_area_inner h3 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profit_area_inner h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .profit_area_inner h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .profit_area_inner h3 {
    font-size: 22px;
  }
}

.profit_area_inner p {
  font-size: 24px;
  line-height: 1.33333;
  margin-bottom: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .profit_area_inner p {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profit_area_inner p {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 767px) {
  .profit_area_inner p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .profit_area_inner p {
    font-size: 14px;
  }
}

.profit_area_inner p:last-child {
  margin-bottom: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profit_area_inner p {
    margin-bottom: 20px;
  }
}

.profit_area_inner .site_btn {
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profit_area_inner .site_btn {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .profit_area_inner .site_btn {
    margin-top: 10px;
  }
}

.profit_area .video_area {
  background-image: url(../images/video-preview-2.jpg);
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .profit_area .video_area {
    margin-top: 50px;
  }
}

.profit_area .video_area::before {
  background-color: #222735;
  opacity: .7;
}

.profit_area .video_area h4 {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  padding-top: 75px;
  margin-bottom: 0px;
  text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .profit_area .video_area h4 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profit_area .video_area h4 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .profit_area .video_area h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .profit_area .video_area h4 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .profit_area .video_area h4 {
    padding-top: 50px;
    font-size: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profit_area .video_area h4 {
    padding-top: 30px;
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .profit_area .video_area h4 {
    font-size: 20px;
    padding-top: 30px;
  }
}

/*=== CTA AREA CSS ====*/
.cta_area {
  background-color: #27ADE5;
}

.cta_area_inner h3 {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-bottom: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta_area_inner h3 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta_area_inner h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .cta_area_inner h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .cta_area_inner h3 {
    font-size: 22px;
  }
}

.cta_area_inner .social_media {
  margin-top: 40px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
  .cta_area_inner .social_media {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta_area_inner .social_media {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta_area_inner .social_media {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .cta_area_inner .social_media {
    margin-top: 15px;
  }
}

.cta_area_inner .social_media li:last-child a {
  margin-right: 0px;
}

.cta_area_inner .social_media li a {
  background-color: #0D82B4;
  margin-right: 5px;
}

.cta_area_inner .social_media li a:hover {
  background-color: #000000;
}

@media only screen and (max-width: 767px) {
  .cta_area_btns {
    display: inline-block;
    margin-top: 25px;
  }
}

.cta_area_btns a {
  text-align: center;
  display: block;
  background-color: #ffffff;
  color: #010101;
  padding: 20px 30px;
}

.cta_area_btns a:hover {
  background-color: #222735;
}

.cta_area_btns a:not(:last-child) {
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .cta_area_btns a:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta_area_btns a {
    padding: 15px 40px;
  }
}

@media only screen and (max-width: 767px) {
  .cta_area_btns a {
    padding: 10px 30px;
  }
}

/*=== PAY AREA CSS ====*/
.pay_area_img {
  width: 100%;
  height: 100%;
}

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

@media only screen and (max-width: 767px) {
  .pay_area_inner {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 479px) {
  .pay_area_inner {
    margin-top: 30px;
  }
}

.pay_area_inner h3 {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pay_area_inner h3 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pay_area_inner h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .pay_area_inner h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .pay_area_inner h3 {
    font-size: 22px;
  }
}

.pay_area_inner p {
  font-size: 24px;
  line-height: 1.33333;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pay_area_inner p {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pay_area_inner p {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 767px) {
  .pay_area_inner p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .pay_area_inner p {
    font-size: 14px;
  }
}

.pay_area_inner .site_btn {
  margin-top: 30px;
  padding: 13px 70px;
}

/*=== CHARTS AREA CSS ====*/
.charts .section_title {
  margin-bottom: 140px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .charts .section_title {
    margin-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .charts .section_title {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .charts .section_title {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .charts_img {
    width: 250px;
    height: 250px;
    margin: 30px auto;
  }
}

.charts_item {
  position: relative;
  border-radius: 10px;
  padding: 3px;
}

.charts_item:not(:last-child) {
  margin-bottom: 180px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .charts_item:not(:last-child) {
    margin-bottom: 150px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .charts_item:not(:last-child) {
    margin-bottom: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .charts_item:not(:last-child) {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .charts_item:not(:last-child) {
    margin-bottom: 0px;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 479px) {
  .charts_item:not(:last-child) {
    margin-bottom: 15px;
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .charts_item {
    width: 48%;
    float: left;
  }
}

@media only screen and (max-width: 479px) {
  .charts_item {
    width: 100%;
  }
}

.charts_item_content {
  background-color: #222735;
  border-radius: 10px;
  padding: 22px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .charts_item_content {
    padding: 15px 10px;
  }
}

.charts_item_content h4 {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .charts_item_content h4 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .charts_item_content h4 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .charts_item_content h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .charts_item_content h4 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .charts_item_content h4 {
    font-size: 22px;
  }
}

.charts_item_content p {
  font-size: 17px;
  margin-bottom: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .charts_item_content p {
    font-size: 16px;
  }
}

.charts #border-1 {
  background: -webkit-gradient(linear, left top, right top, from(#242937), to(#27ADE5));
  background: linear-gradient(to right, #242937, #27ADE5);
}

.charts #border-2 {
  background: -webkit-gradient(linear, left top, right top, from(#242937), to(#1C09FA));
  background: linear-gradient(to right, #242937, #1C09FA);
}

.charts #border-3 {
  background: -webkit-gradient(linear, left top, right top, from(#EA555A), to(#242937));
  background: linear-gradient(to right, #EA555A, #242937);
}

.charts #border-4 {
  background: -webkit-gradient(linear, left top, right top, from(#098DFA), to(#242937));
  background: linear-gradient(to right, #098DFA, #242937);
}

/*=== ROAD MAP AREA CSS ====*/
.roadmap_area {
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .roadmap_area .row .col-md-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media only screen and (max-width: 479px) {
  .roadmap_area .row .col-md-6 {
    max-width: 90%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
            flex: 0 0 90%;
    margin-left: 5%;
  }
}

.roadmap_area .row .section_title {
  margin-bottom: 100px;
}

.roadmap_area_slider .owl-stage-outer {
  overflow: visible;
}

.roadmap_area_slider .owl-stage-outer .owl-stage {
  background-image: url(../images/line-border.png);
  background-size: auto;
  background-position: 100% 3%;
  background-repeat: no-repeat;
  background-repeat-x: repeat;
}

.roadmap_area_slider_item {
  padding-top: 140px;
  background-image: url(../images/arrow-shape.png);
  background-position: top center;
  background-size: 6%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .roadmap_area_slider_item {
    padding-top: 105px;
    background-size: 5%;
  }
}

@media only screen and (max-width: 767px) {
  .roadmap_area_slider_item {
    padding-top: 90px;
    background-size: 7%;
  }
}

.roadmap_area_slider_item::before {
  content: "Target " attr(data-count);
  position: absolute;
  bottom: 105%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #EA555A;
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  border-radius: 100px;
  padding: 2px 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .roadmap_area_slider_item::before {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .roadmap_area_slider_item::before {
    font-size: 14px;
  }
}

.roadmap_area_slider_item_inner {
  background-color: #222735;
  border-radius: 10px;
  padding: 20px 30px;
  height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .roadmap_area_slider_item_inner {
    height: 90px;
    padding: 15px 20px;
  }
}

.roadmap_area_slider_item_inner h4 {
  font-size: 20px;
  line-height: 1.45455;
  color: #ffffff;
  margin-bottom: 0px;
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .roadmap_area_slider_item_inner h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .roadmap_area_slider_item_inner h4 {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

/*=== TEAM AREA CSS ====*/
.team {
  overflow: hidden;
}

.team_slider .owl-stage-outer {
  overflow: visible;
}

.team_slider .owl-nav {
  text-align: center;
  margin-top: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team_slider .owl-nav {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team_slider .owl-nav {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .team_slider .owl-nav {
    margin-top: 25px;
  }
}

.team_slider .owl-nav button {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background-color: #222735 !important;
  color: #ffffff !important;
  font-size: 18px !important;
  margin: 0px 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team_slider .owl-nav button {
    width: 50px;
    height: 50px;
    margin: 0px 10px;
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 767px) {
  .team_slider .owl-nav button {
    width: 40px;
    height: 40px;
    margin: 0px 5px;
    font-size: 14px !important;
  }
}

.team_slider .owl-nav button:first-child {
  margin-left: 0px;
}

.team_slider .owl-nav button:last-child {
  margin-right: 0px;
}

.team_slider .owl-nav button:hover {
  background-color: #27ADE5 !important;
}

.team_items {
  margin-top: 65px;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team_items {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .team_items {
    margin-top: 30px;
  }
}

.team_items_links {
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #0D82B4;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team_items_links {
    top: 10px;
    right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .team_items_links {
    top: 10px;
    right: 10px;
  }
}

.team_items_links:hover {
  background-color: #0D82B4;
  color: #ffffff;
}

.team_items_img {
  width: 100%;
  height: 360px;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #292D3B;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .team_items_img {
    height: 350px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team_items_img {
    height: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team_items_img {
    height: 200px;
    border-radius: 20px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .team_items_img {
    height: 180px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 479px) {
  .team_items_img {
    height: 300px;
  }
}

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

.team_items_inner h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team_items_inner h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .team_items_inner h4 {
    font-size: 18px;
  }
}

.team_items_inner h4 span {
  display: block;
  font-size: 16px;
  line-height: 1.625;
  margin-top: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team_items_inner h4 span {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .team_items_inner h4 span {
    font-size: 14px;
  }
}

.team_items_inner h4 span span {
  margin-top: 0px;
}

.team_items_inner p {
  color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team_items_inner p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    opacity: .7;
  }
}

@media only screen and (max-width: 767px) {
  .team_items_inner p {
    font-size: 12px;
  }
}

/*=== ADVISOR AREA CSS ====*/
@media only screen and (max-width: 767px) {
  .advisor .col-md-4 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media only screen and (max-width: 479px) {
  .advisor .col-md-4 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.advisor_item {
  margin-top: 65px;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advisor_item {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .advisor_item {
    margin-top: 30px;
  }
}

.advisor_item_img {
  width: 100%;
  height: 360px;
  background-color: #292D3B;
  overflow: hidden;
  border-radius: 40px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .advisor_item_img {
    height: 350px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .advisor_item_img {
    height: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advisor_item_img {
    height: 200px;
    border-radius: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .advisor_item_img {
    height: 180px;
    border-radius: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .advisor_item_img {
    height: 300px;
  }
}

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

.advisor_item_inner h4 {
  font-size: 21px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advisor_item_inner h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .advisor_item_inner h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.advisor_item_inner h4 span {
  display: block;
  font-size: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advisor_item_inner h4 span {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .advisor_item_inner h4 span {
    font-size: 14px;
  }
}

/*=== PARTNERS AREA CSS ====*/
@media only screen and (max-width: 767px) {
  .partners .col-md-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media only screen and (max-width: 479px) {
  .partners .col-md-6 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.partners_item {
  width: 100%;
  height: auto;
  padding: 60px;
  background-color: #092B3A;
  border: 1px solid #ffffff;
  border-radius: 20px;
  margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .partners_item {
    padding: 50px 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .partners_item {
    padding: 50px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .partners_item {
    padding: 40px 0px;
  }
}

@media only screen and (max-width: 479px) {
  .partners_item {
    padding: 60px 0px;
  }
}

.partners_item_img {
  width: 135px;
  height: 135px;
  overflow: hidden;
  margin: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .partners_item_img {
    width: 110px;
    height: 110px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .partners_item_img {
    width: 100px;
    height: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .partners_item_img {
    width: 100px;
    height: 100px;
  }
}

.partners_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*=== NEWSLETTER AREA CSS ====*/
.newsletter .section_title h2 {
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter .section_title h2 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .newsletter .section_title h2 {
    margin-bottom: 15px;
  }
}

.newsletter .container {
  padding: 100px 90px;
  padding-right: 55px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .newsletter .container {
    padding: 70px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter .container {
    padding: 70px 50px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .newsletter .container {
    padding: 35px 25px;
  }
}

.newsletter .container::before {
  content: "";
  width: 98%;
  height: 100%;
  background-color: #222735;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter_inner {
    margin-top: 30px;
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .newsletter_inner {
    margin-top: 25px;
    display: block;
  }
}

.newsletter_inner .input-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 479px) {
  .newsletter_inner .input-control {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.newsletter_inner .input-control-input {
  max-width: 60%;
  background-color: #ffffff;
}

@media only screen and (max-width: 479px) {
  .newsletter_inner .input-control-input {
    max-width: 100%;
    width: 100%;
  }
}

.newsletter_inner .input-control-input[type=email] {
  padding-top: 14px;
  padding-bottom: 14px;
}

@media only screen and (max-width: 479px) {
  .newsletter_inner .input-control-input[type=email] {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.newsletter_inner .input-control-input[type=submit] {
  max-width: 40%;
  margin-left: 35px;
  color: #010101;
}

.newsletter_inner .input-control-input[type=submit]:hover {
  background-color: #27ADE5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .newsletter_inner .input-control-input[type=submit] {
    margin-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter_inner .input-control-input[type=submit] {
    margin-left: 20px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .newsletter_inner .input-control-input[type=submit] {
    margin-left: 15px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 479px) {
  .newsletter_inner .input-control-input[type=submit] {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}

/*=== PROJECTS LIST AREA CSS ====*/
.projects .section_title {
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .projects .section_title {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .projects .col-md-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media only screen and (max-width: 479px) {
  .projects .col-md-6 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.projects_list {
  background-color: #222735;
  border-radius: 20px;
  margin-top: 30px;
}

.projects_list_img {
  background-color: #092B3A;
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
}

.projects_list_img_inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.projects_list_inner {
  padding: 20px;
}

@media only screen and (max-width: 767px) {
  .projects_list_inner {
    padding: 15px;
  }
}

.projects_list_inner_title {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 500;
  display: block;
}

.projects_list_inner_title:hover {
  color: #27ADE5;
}

.projects_list_inner p {
  font-size: 14px;
  margin-bottom: 15px;
}

.projects_list_inner_bottom p {
  font-size: 18px !important;
  margin-bottom: 0px !important;
  color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects_list_inner_bottom p {
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 767px) {
  .projects_list_inner_bottom p {
    font-size: 14px !important;
  }
}

/*=== Contacts AREA CSS ====*/
.contact_details_inner {
  background-color: #222735;
  padding: 50px;
  height: 100%;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_details_inner {
    padding: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_details_inner {
    padding: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .contact_details_inner {
    padding: 20px;
    height: 250px;
  }
}

@media only screen and (max-width: 479px) {
  .contact_details_inner {
    height: 200px;
  }
}

.contact_details_inner > div {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.contact_details_inner h3 {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_details_inner h3 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_details_inner h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .contact_details_inner h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .contact_details_inner h3 {
    font-size: 20px;
  }
}

.contact_details_inner_item a {
  display: block;
  font-size: 22px;
  color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_details_inner_item a {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_details_inner_item a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .contact_details_inner_item a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .contact_details_inner_item a {
    font-size: 14px;
  }
}

.contact_details_inner_item a:hover {
  color: #27ADE5;
}

.contact_details_inner_item a span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #010101;
  border-radius: 100%;
  font-size: 14px;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_details_inner_item a span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 5px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .contact_details_inner_item a span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 5px;
    font-size: 12px;
  }
}

.contact_details_inner_item p {
  font-size: 22px;
  color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_details_inner_item p {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_details_inner_item p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .contact_details_inner_item p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .contact_details_inner_item p {
    font-size: 14px;
  }
}

.contact_details_inner_item p span {
  display: block;
  float: left;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #010101;
  border-radius: 100%;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  margin-right: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_details_inner_item p span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .contact_details_inner_item p span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
    font-size: 12px;
  }
}

.contact_details_inner .social_media .social_media_list:not(:last-child) .social_media_list_links {
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  .contact_details_form {
    margin-top: 30px;
  }
}

.contact_details_form h3 {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_details_form h3 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_details_form h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .contact_details_form h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .contact_details_form h3 {
    font-size: 20px;
  }
}

/*=== FOOTER AREA CSS ====*/
.footer {
  background-color: #222735;
  padding-top: 120px;
  padding-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer {
    padding-top: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer .col-sm-6 {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media only screen and (max-width: 479px) {
  .footer .col-sm-6 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media only screen and (max-width: 767px) {
  .footer .text-right {
    text-align: left !important;
  }
}

.footer_logo {
  width: 180px;
  display: block;
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_logo {
    width: 150px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer_logo {
    width: 130px;
    margin-bottom: 10px;
  }
}

.footer_item_logo_2 {
  width: 105px;
  height: 105px;
  border-radius: 100%;
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_item_logo_2 {
    width: 90px;
    height: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_item_logo_2 {
    width: 80px;
    height: 80px;
    margin-top: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .footer_item_logo_2 {
    width: 60px;
    height: 60px;
    margin-top: 25px;
  }
}

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

.footer_item p {
  font-size: 17px;
  line-height: 1.52941;
  margin-bottom: 75px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_item p {
    margin-bottom: 50px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_item p {
    font-size: 16px;
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .footer_item p {
    margin-bottom: 25px;
    font-size: 14px;
  }
}

.footer_item h5 {
  font-size: 22px;
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_item h5 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer_item h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.footer_item_links_list {
  display: block;
}

.footer_item_links_list_link {
  display: block;
  font-size: 17px;
  line-height: 1.52941;
  color: rgba(250, 250, 250, 0.9);
  padding-bottom: 10px;
  margin-bottom: 8px;
}

.footer_item_links_list_link:hover {
  color: #27ADE5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer_item_links_list_link {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer_item_links_list_link {
    font-size: 16px;
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .footer_item_links_list_link {
    font-size: 14px;
    margin-bottom: 0px;
    opacity: .8;
  }
  .footer_item_links_list_link:hover {
    opacity: 1;
  }
}

.footer_item .two-clumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer_item .two-clumn ul {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media only screen and (max-width: 767px) {
  .footer_item .two-clumn ul {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer .social_media {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.footer_copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(250, 250, 250, 0.1);
}

@media only screen and (max-width: 767px) {
  .footer_copyright {
    padding-top: 15px;
  }
}

.footer_copyright p {
  font-size: 16px;
  font-weight: 500;
  color: #FAFAFA;
  margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
  .footer_copyright p {
    font-size: 14px;
  }
}
/*# sourceMappingURL=style.css.map */