/* Variables
======================*/
/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: #fff !important;
  color: #fff !important;
}

::-webkit-scrollbar {
  background-color: #000022;
  width: 10px;
  height: 5px;
  opacity: 1;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

::-webkit-scrollbar-track {
  background-color: #000022;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

body {
  font-family: "Cabinet Grotesk", sans-serif;
  overflow: hidden;
  width: 100%;
  font-weight: normal;
  position: relative;
  text-align: start;
  background-color: #002;
  color: #ffffff;
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Main Button
=======================*/
.main_btn {
  color: #fff;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  line-height: 44px;
  padding: 0 20px;
  border: 0;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0.3px;
}

/* Section
======================*/
section {
  padding: 76px 50px 0;
  position: relative;
}
@media (max-width: 575px) {
  section {
    padding: 35px 20px 0;
  }
}

.section_title {
  position: relative;
  color: #ffffff;
  font-weight: bold;
  line-height: 60px;
  margin: 0 0 48px;
  font-size: 48px;
}
@media (max-width: 575px) {
  .section_title {
    margin-bottom: 15px;
    font-size: 22px;
  }
}
.section_title .gradiant_color {
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.section_title:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: -71px;
  width: 71px;
  height: 59px;
  background: url(../images/section_shap.png) no-repeat;
}
.section_title h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 16px 0 0;
  line-height: 30px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
.section_title h4 span {
  color: #1684FF;
}
.section_title p {
  display: block;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  margin: 16px 0 0;
}
@media (max-width: 575px) {
  .section_title {
    padding-inline-start: 30px;
  }
  .section_title::before {
    inset-inline-start: -35px;
    width: 54px;
    height: 59px;
  }
  .section_title h4 {
    font-size: 20px;
    text-align: justify;
    line-height: 25px;
    margin-bottom: 16px;
  }
  .section_title h4 span {
    color: #1684FF;
  }
  .section_title p {
    text-align: justify;
    margin-top: 0;
    font-size: 16px !important;
    line-height: 25px !important;
  }
}

/* Loading
============================*/
.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000022;
}
.preloader p {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 14px;
  line-height: 20px;
  color: #fff;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 46%;
  left: 0;
  right: 0;
  margin: auto;
}

.pace {
  pointer-events: none;
  user-select: none;
  z-index: 9999999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  width: 290px;
  border: 0px;
  height: 4px;
  overflow: hidden;
  background-color: #ffffff;
}
.pace .pace-progress {
  z-index: 9999999;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Header
==========================*/
header {
  position: fixed;
  top: 60px;
  padding: 15px 55px;
  left: 0;
  width: 100%;
  z-index: 9998;
  background-color: transparent;
  -webkit-transition: 0.5s linear all;
  -moz-transition: 0.5s linear all;
  -ms-transition: 0.5s linear all;
  -o-transition: 0.5s linear all;
  transition: 0.5s linear all;
}
@media (max-width: 991px) {
  header {
    padding: 15px;
    top: 0;
    background-color: #000022;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  header .container-fluid {
    padding: 0;
  }
}
header.move {
  top: 0;
  background-color: #000022;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
header .logo {
  width: 195px;
  z-index: 9998;
}
@media (max-width: 575px) {
  header .logo {
    width: 120px;
  }
}
header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .btns {
  z-index: 9998;
}
header .btns a {
  position: relative;
  padding: 1px;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
header .btns a span {
  background-color: #000022;
  display: block;
  text-transform: capitalize;
  line-height: 28px;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.3px;
  padding: 14px 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.5s linear all;
  -moz-transition: 0.5s linear all;
  -ms-transition: 0.5s linear all;
  -o-transition: 0.5s linear all;
  transition: 0.5s linear all;
}
@media (max-width: 991px) {
  header .btns a span {
    padding: 6px 10px;
    letter-spacing: 0;
    font-size: 14px;
  }
}
header .btns a:hover span {
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
}
header .btns .menu_btn {
  padding: 0;
  border: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  display: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  margin-inline-start: 10px;
}
@media (max-width: 991px) {
  header .btns .menu_btn {
    display: inline-block;
  }
}
header .navbar {
  min-height: 58px;
  width: 100%;
  margin: -58px auto auto;
  padding: 0;
}
header .navbar ul a {
  text-transform: capitalize;
  line-height: 28px;
  font-size: 18px;
  color: #ffffff;
  margin: 0 15px;
  letter-spacing: 0.3px;
}
header .navbar ul a:hover, header .navbar ul a.active {
  color: #1684FF;
}
@media (max-width: 991px) {
  header .navbar {
    margin: 0;
    background-color: #000022;
    height: 100%;
    min-height: auto;
    max-height: 440px;
    overflow: hidden;
    overflow-y: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
  header .navbar ul {
    display: block !important;
    text-align: start;
    padding-bottom: 15px;
  }
  header .navbar ul li {
    display: block;
  }
  header .navbar ul li a {
    text-align: start;
    margin: 0;
    font-size: 14px;
  }
}

.page_head {
  background: url(../images/page_head.png) no-repeat center top;
  background-size: cover;
  position: relative;
  padding: 220px 0 60px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .page_head {
    padding: 160px 0 60px;
    background-position: center center;
  }
}
@media (max-width: 767px) {
  .page_head {
    padding: 115px 0 25px;
  }
}
@media (max-width: 575px) {
  .page_head {
    padding: 95px 0 25px;
  }
}
.page_head h3 {
  color: #ffffff;
  font-weight: 900;
  margin: 0 0 15px;
  font-size: 56px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .page_head h3 {
    font-size: 36px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .page_head h3 {
    font-size: 24px;
  }
}
.page_head li {
  color: #ffffff;
  font-size: 18px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .page_head li {
    font-size: 16px;
  }
}
.page_head a {
  display: inline-block;
  color: #1684FF;
  padding-inline-end: 10px;
  margin-inline-end: 10px;
  position: relative;
}
.page_head a::before {
  content: "";
  position: absolute;
  inset-inline-end: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
}

/* Forms
========================*/
.form-group {
  position: relative;
  margin-bottom: 25px;
  text-align: start;
}

label {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 10px;
  text-align: start;
  color: #000022;
}
label.big {
  margin-bottom: 15px;
  font-size: 18px;
}

sup {
  color: #1684FF;
}

.form-control {
  text-align: start;
  width: 100%;
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin: 0;
  padding: 0 25px;
  line-height: 48px;
  height: 48px;
  font-size: 16px;
  outline: 0;
  font-weight: normal;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.form-control:hover, .form-control:focus {
  outline: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  resize: none;
  min-height: 100px !important;
  padding: 15px !important;
  line-height: 25px;
}

.main {
  padding: 240px 0 210px;
  position: relative;
}
@media (max-width: 991px) {
  .main {
    padding: 140px 0 210px;
  }
}
@media (max-width: 575px) {
  .main {
    padding: 140px 0 90px;
  }
}
.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/stars.svg") no-repeat;
  background-size: cover;
}
.main::after {
  content: "";
  position: absolute;
  bottom: 10px;
  inset-inline-end: 0;
  width: 682px;
  height: 498px;
  background: url(../images/earth.png) no-repeat right;
  background-size: contain;
  margin: auto;
  z-index: -1;
}
@media (max-width: 991px) {
  .main::after {
    width: 460px;
    height: 420px;
  }
}
@media (max-width: 575px) {
  .main::after {
    width: 290px;
    height: 380px;
  }
}
.main .container-fluid {
  position: relative;
  padding: 0 65px;
}
@media (max-width: 575px) {
  .main .container-fluid {
    padding: 0 15px;
  }
}

.intro {
  max-width: 740px;
  position: relative;
  z-index: 99;
}
.intro h3 {
  font-weight: 900;
  font-size: 76px;
  line-height: 90px;
  color: #ffffff;
  margin: 0 0 50px;
}
.intro h3 span {
  text-transform: capitalize;
}
.intro h3 span:nth-child(1) {
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.intro h3 span:nth-child(2) {
  color: #ffffff;
}
.intro h3 span:nth-child(3) {
  padding: 0;
}
.intro p {
  font-size: 28px;
  line-height: 40px;
  color: #ffffff;
  text-transform: capitalize;
  position: relative;
}
.intro p::before {
  content: "";
  position: absolute;
  bottom: -211px;
  inset-inline-start: 147px;
  width: 140px;
  height: 211px;
  background: url(../images/arrow_shap.png) no-repeat;
  background-size: cover;
  margin: auto;
}
@media (max-width: 991px) {
  .intro h3 {
    text-align: center;
    font-size: 64px;
    line-height: 70px;
  }
  .intro p {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .intro h3 {
    font-size: 44px;
    line-height: 50px;
  }
  .intro p {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .intro h3 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .intro p {
    font-size: 18px;
    line-height: 25px;
  }
  .intro p::before {
    bottom: -101px;
    inset-inline-start: 77px;
    width: 66px;
    height: 100px;
  }
}

.client_box {
  padding: 40px 50px;
  position: relative;
  z-index: 999;
  -webkit-transform: rotate(1deg);
  -moz-transform: rotate(1deg);
  -ms-transform: rotate(1deg);
  -o-transform: rotate(1deg);
  transform: rotate(1deg);
}
.client_box::after {
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  transform: rotate(1deg);
  z-index: 98;
}
.client_box::before {
  background: linear-gradient(90deg, #77BEFF 0%, #3663D8 100%);
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  transform: rotate(-2deg);
  z-index: -1;
  opacity: 50%;
}
.client_box img {
  padding: 0 5px;
}

.main .intro h3,
.main .intro p {
  position: relative;
  opacity: 0;
  top: 50px;
  -webkit-transition: 0.4s linear all;
  -moz-transition: 0.4s linear all;
  -ms-transition: 0.4s linear all;
  -o-transition: 0.4s linear all;
  transition: 0.4s linear all;
}

.about .row {
  position: relative;
}
.about .row::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  opacity: 40%;
}
.about .row.custom {
  margin-top: 56px;
  margin-bottom: 56px;
}
.about .row.custom::before {
  display: none;
}
@media (max-width: 575px) {
  .about .row .custom_text {
    font-size: 16px;
    line-height: 25px;
    margin: 0;
    margin-bottom: 16px;
    text-align: start;
  }
}

.about_item {
  margin-bottom: 56px;
  color: #fff;
}
.about_item .icon {
  margin-bottom: 8px;
  position: relative;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_item .icon::before {
  content: "";
  top: 0;
  inset-inline-start: 0;
  width: 85px;
  height: 85px;
  border: 43px solid transparent;
  border-top-color: #FFF5F4;
  border-left-color: #FFF5F4;
  position: absolute;
  opacity: 7%;
}
.about_item .icon::after {
  content: "";
  top: 0;
  inset-inline-end: -35px;
  width: 35px;
  height: 35px;
  border: 18px solid transparent;
  position: absolute;
}
.about_item .icon img {
  margin: 0;
}
.about_item h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
}
.about_item p {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}
.about_item.vision h3 {
  color: #7CC800;
}
.about_item.vision .icon::after {
  border-top-color: #7CC800;
  border-left-color: #7CC800;
}
.about_item.mission h3 {
  color: #E5DC00;
}
.about_item.mission .icon::after {
  border-top-color: #E5DC00;
  border-left-color: #E5DC00;
}
@media (max-width: 575px) {
  .about_item {
    margin-bottom: 25px;
  }
  .about_item h3 {
    font-size: 22px;
    margin: 15px 0 0;
    line-height: 30px;
  }
  .about_item p {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 24px;
  }
}

.about_img {
  margin-bottom: 25px;
}

.timeline .time_item {
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
}
.timeline .time_item::before {
  content: "";
  position: absolute;
  inset-inline-start: 35px;
  bottom: -20px;
  width: 2px;
  height: 53%;
  margin: auto;
  border: 1px dashed #ffffff;
}
.timeline .time_item:last-child::before {
  display: none;
}
.timeline .time_item .num {
  min-width: 72px;
  height: 72px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  line-height: 72px;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.timeline .time_item .num::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  width: 60%;
  height: 60%;
  margin: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 20%;
}
.timeline .time_item .content {
  margin-inline-start: 56px;
}
.timeline .time_item h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 25px;
}
.timeline .time_item p {
  margin: 0;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 575px) {
  .timeline .time_item::before {
    inset-inline-start: 25px;
  }
  .timeline .time_item .num {
    min-width: 52px;
    height: 52px;
    line-height: 52px;
    font-size: 18px;
  }
  .timeline .time_item .content {
    margin-inline-start: 18px;
  }
  .timeline .time_item h3 {
    font-size: 18px;
    margin: 0 0 10px;
  }
  .timeline .time_item p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .timeline {
    margin-bottom: 56px;
  }
}

.features {
  margin: 56px auto;
}
.features .feature_item {
  position: relative;
  padding: 60px 20px;
  color: #ffffff;
  width: 33.33%;
  min-height: 470px;
  background: url(../images/about/feature_bc.png) no-repeat center;
  background-size: contain;
  justify-content: space-evenly;
}
.features .feature_item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 132, 255, 0.9);
}
.features .feature_item:nth-child(2) {
  background: url(../images/about/feature_bc2.png) no-repeat center;
}
.features .feature_item:nth-child(2)::before {
  background-color: rgba(0, 0, 34, 0.9);
}
.features h3 {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 25px;
  position: relative;
}
.features p {
  position: relative;
  margin: 0;
  font-size: 20px;
  color: #ffffff;
}
@media (max-width: 991px) {
  .features {
    flex-direction: column;
  }
  .features .feature_item {
    min-height: auto;
    padding: 25px;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .features h3 {
    font-size: 22px;
    margin: 0 0 15px;
  }
  .features p {
    font-size: 14px;
  }
}

.history {
  width: 100%;
  max-width: 640px;
  margin: auto;
  position: relative;
  padding: 25px 0;
}
.history::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 20px;
  height: 100%;
  -webkit-transform: rotateX(-180deg);
  -moz-transform: rotateX(-180deg);
  -ms-transform: rotateX(-180deg);
  -o-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
}
.history li {
  color: #ffffff;
  margin-bottom: 100px;
  width: 100%;
  position: relative;
}
.history li::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  inset-inline-start: 50px;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  border: 16px solid transparent;
  border-left-color: #6eb4fb;
}
.history li:nth-child(2) {
  flex-direction: row-reverse;
}
.history li:nth-child(2)::before {
  inset-inline-start: 0;
  inset-inline-end: 50px;
  border-left-color: transparent;
  border-right-color: #1481ed;
}
.history li:nth-child(2) .year::before {
  inset-inline-end: 0;
  inset-inline-start: -180px;
}
.history li:last-child {
  margin-bottom: 0;
}
.history li:last-child::before {
  border-left-color: #459cf4;
}
.history .year {
  min-width: 94px;
  width: 94px;
  height: 94px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  line-height: 94px;
  font-size: 32px;
  font-weight: bold;
  position: relative;
}
.history .year::before {
  content: "";
  position: absolute;
  inset-inline-end: -85px;
  bottom: 0;
  top: 0;
  width: 85px;
  height: 2px;
  margin: auto;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
}
.history h3 {
  letter-spacing: 0.5px;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .history h3 {
    max-width: 160px;
  }
}
@media (max-width: 575px) {
  .history li:nth-child(2) .year::before {
    inset-inline-start: -100px;
    inset-inline-end: 0;
  }
  .history .year {
    min-width: 64px;
    width: 64px;
    height: 64px;
    line-height: 64px;
    font-size: 18px;
  }
  .history .year::before {
    width: 35px;
    inset-inline-end: -35px;
  }
  .history h3 {
    max-width: 90px;
    font-size: 14px;
  }
}

.about_map {
  background: url(../images/about/map.png) repeat center;
  background-size: contain;
}

.services .row {
  position: relative;
  padding-bottom: 75px;
}
@media (max-width: 575px) {
  .services .row {
    padding-bottom: 30px;
  }
}
.services .row::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  opacity: 40%;
}
.services a {
  color: #ffffff;
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
  display: inline-block;
  text-transform: capitalize;
  text-decoration: underline;
}
.services a i {
  margin-inline-start: 5px;
  font-size: 18px;
}

.service_item {
  margin-bottom: 56px;
  color: #fff;
}
.service_item .icon {
  min-width: 90px;
  margin-inline-end: 45px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
}
.service_item .icon svg {
  position: relative;
}
.service_item .icon::before {
  content: "";
  clip-path: polygon(50% 0, 50% 0%, 100% 0%, 100% 50%, 50% 100%, 50% 100%, 0 100%, 0 50%);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.4s linear all;
  -moz-transition: 0.4s linear all;
  -ms-transition: 0.4s linear all;
  -o-transition: 0.4s linear all;
  transition: 0.4s linear all;
}
.service_item h3 {
  font-size: 32px;
  line-height: 80px;
  margin: 0;
  font-weight: bold;
}
.service_item p {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: normal;
}
@media (max-width: 575px) {
  .service_item {
    flex-direction: column;
    margin-bottom: 25px;
  }
  .service_item h3 {
    font-size: 22px;
    margin: 15px 0 0;
    line-height: 30px;
  }
  .service_item p {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 24px;
  }
}
.service_item.red .icon::before {
  background: #FF63AA;
}
.service_item.blue .icon::before {
  background: #1684FF;
}
.service_item.purple .icon::before {
  background: #9747FF;
}
.service_item.gold .icon::before {
  background: #FF9900;
}
.service_item.dark_red .icon::before {
  background: #9F1A07;
}
.service_item:hover .icon::before {
  clip-path: polygon(0 0, 50% 0, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%);
}
.service_item:hover.red h3 {
  color: #FF63AA;
}
.service_item:hover.blue h3 {
  color: #1684FF;
}
.service_item:hover.purple h3 {
  color: #9747FF;
}
.service_item:hover.gold h3 {
  color: #FF9900;
}
.service_item:hover.dark_red h3 {
  color: #9F1A07;
}

.achievements .row {
  position: relative;
  padding-bottom: 75px;
}
@media (max-width: 575px) {
  .achievements .row {
    padding-bottom: 30px;
  }
}
.achievements .row::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  opacity: 40%;
}

.achievement_item {
  text-align: center;
  color: #ffffff;
  position: relative;
}
.achievement_item::after, .achievement_item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.4s linear all;
  -moz-transition: 0.4s linear all;
  -ms-transition: 0.4s linear all;
  -o-transition: 0.4s linear all;
  transition: 0.4s linear all;
}
.achievement_item::before {
  background: linear-gradient(0deg, #1684FF 0%, transparent 50%);
  width: 320px;
  height: 320px;
  top: -30px;
}
.achievement_item::after {
  background-color: #000022;
  top: -27px;
  width: 314px;
  height: 314px;
  margin: auto;
}
.achievement_item .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
  position: relative;
  z-index: 998;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding-bottom: 20px;
  margin: auto;
  background-color: #1684FF;
  -webkit-transition: 0.4s linear all;
  -moz-transition: 0.4s linear all;
  -ms-transition: 0.4s linear all;
  -o-transition: 0.4s linear all;
  transition: 0.4s linear all;
}
.achievement_item.gold .content {
  background-color: #FF9900;
}
.achievement_item.gold::before {
  background: linear-gradient(0deg, #FF9900 0%, transparent 50%);
}
.achievement_item svg {
  margin-bottom: 24px;
  position: relative;
}
.achievement_item h3 {
  position: relative;
  font-size: 32px;
  line-height: 30px;
  margin: 0;
  font-weight: bold;
}
.achievement_item span {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 25px;
  margin: 16px auto 0;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
.achievement_item p {
  margin: 60px 0 32px;
  font-size: 16px;
  line-height: 30px;
  font-weight: normal;
}
.achievement_item:hover .content {
  background-color: #ffffff;
  color: #1684FF;
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
  transform: scale(1.01);
}
.achievement_item:hover svg path {
  fill: #1684FF;
}
.achievement_item:hover::before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.achievement_item:hover.gold .content {
  color: #FF9900;
}
.achievement_item:hover.gold svg path {
  fill: #FF9900;
}
@media (max-width: 575px) {
  .achievement_item::before, .achievement_item::after {
    width: 218px;
    height: 218px;
    top: 0;
  }
  .achievement_item::after {
    top: -3px;
  }
  .achievement_item p {
    margin-top: 40px;
  }
  .achievement_item .content {
    width: 190px;
    height: 190px;
  }
  .achievement_item .content span {
    max-width: 135px;
    line-height: 22px;
    font-size: 16px;
    margin: 0;
  }
  .achievement_item .content svg {
    margin: 0 0 10px;
  }
  .achievement_item .content h3 {
    font-size: 24px;
    margin: 0 auto 10px;
  }
}

canvas {
  background: #000022;
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  opacity: 15%;
  margin: auto;
  width: 100%;
  height: calc(100% + 120px);
}

.portfolio_item {
  color: #ffffff;
  text-align: center;
  margin-bottom: 120px;
}
.portfolio_item .icon {
  margin: auto;
  width: 98px;
  height: 98px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #1684FF;
  -webkit-transition: 0.5s linear transform;
  -moz-transition: 0.5s linear transform;
  -ms-transition: 0.5s linear transform;
  -o-transition: 0.5s linear transform;
  transition: 0.5s linear transform;
}
.portfolio_item .icon svg {
  margin: auto;
}
.portfolio_item:hover .icon {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
.portfolio_item p {
  margin: 32px auto;
  font-size: 18px;
  line-height: 25px;
  max-width: 370px;
}
.portfolio_item h3 {
  width: 100%;
  margin: 0 auto;
  padding: 27px 0;
  background: #1684FF;
  font-size: 24px;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  position: relative;
  max-width: 320px;
}
.portfolio_item h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  -webkit-mask: radial-gradient(100% 80% at top, white 79.5%, transparent 80%) left, radial-gradient(100% 80% at bottom, transparent 79.5%, white 80%) right;
  -webkit-mask-size: 50.1% 100%;
  -webkit-mask-repeat: no-repeat;
  background: linear-gradient(to bottom right, #0004, #fff0);
  opacity: 60%;
}
@media (max-width: 575px) {
  .portfolio_item p {
    margin: 15px auto;
    font-size: 16px;
    line-height: 22px;
    max-width: 100%;
  }
  .portfolio_item h3 {
    padding: 20px 0;
    font-size: 20px;
    max-width: 100%;
  }
}
.portfolio_item.gold .icon {
  background-color: #FF9900;
}
.portfolio_item.gold h3 {
  background-color: #FF9900;
}
.portfolio_item.green .icon {
  background-color: #7CC800;
}
.portfolio_item.green h3 {
  background-color: #7CC800;
}
.portfolio_item.red .icon {
  background-color: #FF63AA;
}
.portfolio_item.red h3 {
  background-color: #FF63AA;
}
.portfolio_item.purple .icon {
  background-color: #9747FF;
}
.portfolio_item.purple h3 {
  background-color: #9747FF;
}

.portfolio .section_title {
  margin-bottom: 108px;
}
@media (max-width: 767px) {
  .portfolio .section_title {
    margin-bottom: 48px;
  }
}
.portfolio .row.position-relative .col-lg-4:nth-of-type(2) .portfolio_item,
.portfolio .row.position-relative .col-lg-4:nth-of-type(5) .portfolio_item {
  margin-top: -54px;
}
.portfolio .row.position-relative .col-lg-4:nth-of-type(3) .portfolio_item,
.portfolio .row.position-relative .col-lg-4:nth-of-type(6) .portfolio_item {
  margin-top: -108px;
}
@media (max-width: 991px) {
  .portfolio .row.position-relative .portfolio_item {
    margin-bottom: 54px;
  }
  .portfolio .row.position-relative .col-lg-4:nth-of-type(1) .portfolio_item,
.portfolio .row.position-relative .col-lg-4:nth-of-type(3) .portfolio_item,
.portfolio .row.position-relative .col-lg-4:nth-of-type(5) .portfolio_item {
    margin-top: 0;
  }
  .portfolio .row.position-relative .col-lg-4:nth-of-type(2) .portfolio_item,
.portfolio .row.position-relative .col-lg-4:nth-of-type(4) .portfolio_item,
.portfolio .row.position-relative .col-lg-4:nth-of-type(6) .portfolio_item {
    margin-top: -54px;
  }
}
@media (max-width: 767px) {
  .portfolio .row.position-relative .portfolio_item {
    margin: 0 auto 25px !important;
  }
}

aside {
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 25px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}
aside h3 {
  padding: 16px;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  aside h3 {
    padding: 8px 16px;
  }
}
aside a {
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
aside a:hover {
  color: #1684FF;
  background-color: rgba(255, 255, 255, 0.05);
}
aside .tags {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
aside .tags li {
  margin: 5px auto;
  min-width: 30%;
}
aside .tags a {
  margin-inline-start: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
  line-height: 24px;
  padding: 10px 20px;
  border: 0;
  font-weight: normal;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
@media (max-width: 575px) {
  aside .tags {
    padding: 10px 0;
  }
  aside .tags a {
    line-height: 18px;
    padding: 5px 10px;
    font-size: 14px;
  }
}

.blog_item {
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.blog_item .cover {
  width: 100%;
  height: 210px;
  overflow: hidden;
  display: block;
}
.blog_item .cover img {
  -webkit-transition: 0.4s transform linear;
  -moz-transition: 0.4s transform linear;
  -ms-transition: 0.4s transform linear;
  -o-transition: 0.4s transform linear;
  transition: 0.4s transform linear;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_item .content {
  background-color: #1A2247;
  padding: 16px;
}
.blog_item .info {
  margin-bottom: 16px;
}
.blog_item .info .date {
  opacity: 75%;
  font-size: 14px;
  display: inline-block;
}
.blog_item .info .date i {
  margin-inline-end: 5px;
}
.blog_item .info a {
  margin-inline-start: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
  line-height: 24px;
  padding: 4px 8px;
}
.blog_item .info a:hover {
  background-color: #1684FF;
  color: #ffffff;
}
.blog_item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
.blog_item p {
  opacity: 75%;
  margin: 16px auto;
  font-size: 16px;
}
.blog_item a {
  color: #ffffff;
  font-size: 16px;
}
.blog_item a:hover {
  color: #1684FF;
}
.blog_item a i {
  margin-inline-start: 5px;
}
.blog_item:hover .cover img {
  -webkit-transform: scale(1.1) rotate(3deg);
  -moz-transform: scale(1.1) rotate(3deg);
  -ms-transform: scale(1.1) rotate(3deg);
  -o-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

.pagenation {
  margin: 25px auto;
}
.pagenation li {
  margin: 0 5px;
}
.pagenation a {
  display: block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  border: 1px solid #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.pagenation a.active, .pagenation a:hover {
  color: #1684FF;
  border-color: #1684FF;
}
.pagenation .next {
  border: 0;
  background-color: #1684FF;
  color: #ffffff;
}

@media (max-width: 991px) {
  .blog .container-fluid > .row {
    flex-direction: column-reverse;
  }
  .blog aside {
    margin: 0 auto 30px;
  }
  .blog aside .tags li {
    min-width: auto;
  }
}

.blog_details {
  color: #ffffff;
}
.blog_details img {
  margin: 0 auto 16px;
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.blog_details .date {
  opacity: 75%;
  font-size: 16px;
  display: inline-block;
}
.blog_details .date i {
  margin-inline-end: 5px;
}
.blog_details h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 16px 0;
}
.blog_details h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
.blog_details p {
  opacity: 75%;
  margin: 16px auto;
  font-size: 16px;
}
.blog_details .blog_tags {
  padding: 25px 0;
  border: solid rgba(22, 132, 255, 0.2);
  border-width: 1px 0;
  margin-bottom: 25px;
}
.blog_details .blog_tags h4 {
  margin: 0 0 25px;
}
.blog_details .blog_tags li {
  margin-inline-end: 10px;
  margin-bottom: 10px;
  min-width: 100px;
}
.blog_details .blog_tags a {
  background-color: rgba(255, 255, 255, 0.2);
  display: block;
  text-align: center;
  line-height: 24px;
  padding: 10px 20px;
  color: #ffffff;
  font-weight: normal;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
@media (max-width: 767px) {
  .blog_details .blog_tags a {
    line-height: 18px;
    padding: 5px 10px;
    font-size: 14px;
  }
}

.comment {
  margin-bottom: 25px;
}
.comment h4 {
  opacity: 70%;
}
.comment h3 {
  text-transform: capitalize;
}
.comment .form-control {
  margin: 0 0 15px;
}
.comment textarea.form-control {
  min-height: 175px !important;
}

.clients .row.custom {
  position: relative;
  margin-bottom: 75px;
}
@media (max-width: 575px) {
  .clients .row.custom {
    margin-bottom: 25px;
  }
}
.clients .row.custom::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  opacity: 40%;
}
.clients .section_title p {
  max-width: 640px;
  font-size: 22px;
  line-height: 40px;
  text-align: justify;
}

.client_item {
  margin: 40px auto;
}
.client_item img {
  width: 100%;
  height: 100%;
  max-width: 260px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .client_item {
    margin: 20px auto;
  }
}
@media (max-width: 575px) {
  .client_item img {
    width: 120px;
  }
}

.testimonials_box {
  position: relative;
  background-color: #fff;
  padding: 65px;
}
@media (max-width: 575px) {
  .testimonials_box {
    padding: 15px;
  }
}

.testimonial_item {
  text-align: center;
  color: #000022;
}
.testimonial_item img {
  width: 100px !important;
  height: 100px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.testimonial_item h3 {
  font-size: 16px;
  font-weight: bold;
}
.testimonial_item h5 {
  margin: 0;
  font-size: 14px;
}
.testimonial_item p {
  font-size: 24px;
  line-height: 35px;
  margin: 30px auto;
  max-width: 320px;
}
@media (max-width: 575px) {
  .testimonial_item h3 {
    font-size: 14px;
  }
  .testimonial_item h5 {
    font-size: 12px;
  }
  .testimonial_item p {
    font-size: 20px;
    line-height: 25px;
    margin: 15px auto;
  }
}

.contact_item {
  margin-bottom: 84px;
  padding: 32px;
  min-height: 260px;
}
.contact_item.green {
  background: linear-gradient(180deg, #7CC800 0%, #000022 90%);
}
.contact_item.gold {
  background: linear-gradient(180deg, #FF9900 0%, #000022 90%);
}
.contact_item.yellow {
  background: linear-gradient(180deg, #E5DC00 0%, #000022 90%);
}
.contact_item svg {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 40px;
}
.contact_item a,
.contact_item p {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 991px) {
  .contact_item {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .contact_item {
    padding: 15px;
    min-height: auto;
  }
  .contact_item svg {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
  }
  .contact_item a {
    font-size: 16px;
  }
  .contact_item p {
    font-size: 14px;
  }
}

.contact_form {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 40px;
  margin-bottom: 56px;
}
.contact_form form {
  color: #ffffff;
}
.contact_form form h3 {
  position: relative;
  font-size: 38px;
  line-height: 30px;
  margin: 0;
  font-weight: bold;
}
.contact_form form p {
  margin: 32px 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
}
.contact_form form .form-control {
  margin-bottom: 14px;
}
.contact_form .map {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, #000022 30%);
  width: 100%;
  height: 505px;
}
.contact_form .map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.contact_form .map h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-size: 28px;
  line-height: 40px;
  padding: 40px;
}
.contact_form .map h3 b {
  margin: 0 5px;
}
@media (max-width: 767px) {
  .contact_form {
    padding: 20px;
  }
  .contact_form form h3 {
    font-size: 32px;
    line-height: 28px;
  }
  .contact_form form p {
    margin: 16px 0;
    font-size: 16px;
    line-height: 24px;
  }
  .contact_form .map {
    margin-top: 20px;
    height: auto;
  }
  .contact_form .map h3 {
    font-size: 18px;
    line-height: 25px;
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .contact_form {
    padding: 15px;
  }
  .contact_form form h3 {
    font-size: 18px;
  }
  .contact_form form p {
    font-size: 13px;
    line-height: 22px;
  }
  .contact_form form .main_btn {
    padding: 10px 15px;
    line-height: 20px;
    letter-spacing: 0;
    font-size: 14px;
  }
  .contact_form .map {
    margin-top: 20px;
    height: auto;
  }
  .contact_form .map h3 {
    font-size: 14px;
    line-height: 20px;
    padding: 15px;
  }
}

.quote {
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  padding: 56px;
  color: #ffffff;
  margin: 56px auto;
}
.quote h3 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}
.quote p {
  margin: 20px auto 30px;
  font-size: 26px;
}
.quote img {
  display: inline-block;
  margin-inline-start: 8px;
  filter: brightness(0) invert(1);
}
.quote a {
  display: inline-block;
  background-color: #000022;
  color: #ffffff;
  padding: 14px 35px;
  text-decoration: none !important;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.4s linear all;
  -moz-transition: 0.4s linear all;
  -ms-transition: 0.4s linear all;
  -o-transition: 0.4s linear all;
  transition: 0.4s linear all;
}
.quote a:hover {
  background-color: #1684FF;
}
@media (max-width: 575px) {
  .quote {
    padding: 15px;
    margin: 25px auto;
  }
  .quote h3 {
    font-size: 22px;
  }
  .quote img {
    margin: 10px auto;
    width: 100px;
    display: block;
  }
  .quote p {
    margin: 10px auto 20px;
    font-size: 18px;
  }
}

footer {
  padding: 0 50px 50px;
  color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 25px;
  }
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/footer_bc.png) no-repeat;
}
footer .row {
  padding: 56px 0;
  position: relative;
}
footer .row::before, footer .row::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(180deg, #52A4F6 0%, #1380EC 50.52%, #87C3FF 100%);
  opacity: 30%;
}
footer .row::after {
  top: auto;
  bottom: 0;
}
footer h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 32px;
}
@media (max-width: 575px) {
  footer h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
footer .contacts {
  letter-spacing: 0.5px;
  padding-inline-end: 50px;
}
@media (max-width: 991px) {
  footer .contacts {
    padding-inline-end: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  footer .contacts {
    flex-wrap: wrap;
  }
  footer .contacts li {
    min-width: 50%;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  footer .contacts {
    margin-bottom: 0;
  }
}
footer .contacts li {
  text-transform: capitalize;
}
footer .contacts h4 {
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 8px;
}
footer .contacts p {
  font-size: 14px;
  margin: 0;
  line-height: 30px;
}
footer .quick_links li {
  margin-bottom: 24px;
  width: 50%;
  position: relative;
  padding-inline-start: 20px;
}
@media (max-width: 991px) {
  footer .quick_links li {
    width: 33.33%;
  }
}
@media (max-width: 575px) {
  footer .quick_links li {
    min-width: 50%;
  }
}
footer .quick_links li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  background-color: #ffffff;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
footer .quick_links li a {
  text-transform: capitalize;
  color: #ffffff;
  font-size: 16px;
}
footer .quick_links li a:hover {
  color: #1684FF;
}
footer .newsletters label {
  color: #ffffff;
  margin: 10px 0 16px;
  font-size: 22px;
}
footer .newsletters .form-control {
  background-color: transparent;
  border: 1px solid #ffffff;
}
footer .newsletters .main_btn {
  position: absolute;
  bottom: 3px;
  inset-inline-end: 3px;
}
@media (max-width: 575px) {
  footer .newsletters label {
    font-size: 18px;
    margin-bottom: 15px;
  }
  footer .newsletters .main_btn {
    position: relative;
    bottom: 0;
    inset-inline-end: 0;
    margin-top: 15px;
  }
}
footer .z-9 {
  z-index: 999;
  padding-top: 50px;
}
@media (max-width: 767px) {
  footer .z-9 {
    flex-direction: column;
  }
  footer .z-9 .social {
    margin: 15px auto;
  }
}
footer .social {
  color: #fff;
}
footer .social p {
  font-size: 18px;
  margin: 0 0 16px;
}
footer .social li {
  margin: 0 5px;
}
footer .social a {
  color: #fff;
}
footer .social a i {
  line-height: 32px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff;
}

/*# sourceMappingURL=style.css.map */
