/*========== Variables ==========*/
/*======BG Colors ======*/
@media only screen and (min-width: 768px) {
  @font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: rgba(65, 65, 65, 0.9);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 80px;
  line-height: 1.5;
  color: #ffb81d;
  font-weight: bold;
  margin-bottom: 15px;
}

h2 {
  font-size: 46px;
  line-height: 58px;
  font-weight: bold;
  color: #110302;
  margin: 0 0 15px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  color: #110302;
  margin: 0 0 15px;
}

h4 {
  font-size: 20px;
  color: #110302;
  font-weight: bold;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
  color: #5e6373;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 15px;
}

a {
  color: rgba(65, 65, 65, 0.9);
  text-decoration: none;
}

ul {
  list-style: none;
}
ul li {
  color: rgba(65, 65, 65, 0.9);
  font-size: 16px;
  line-height: 26px;
}

.container {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 20px;
}

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

section {
  position: relative;
}

.light-theme {
  background: #f6f8fb;
}

.dark-theme {
  background: #05247e;
}
.dark-theme .heading h2 {
  color: #ffffff;
}
.dark-theme .heading h2::after {
  background: #ffffff;
}
.dark-theme .heading p {
  color: #ffffff;
}
.dark-theme .heading a {
  color: #ffffff;
}

.width-100 {
  width: 100%;
}

.dis-flex {
  display: flex;
  flex-wrap: wrap;
}

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

.justify-center {
  justify-content: center;
}

.item-end {
  align-items: flex-end;
}

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

.justify-sb {
  justify-content: space-between;
}

.block {
  display: block;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}

.flex-1 {
  flex-basis: 100%;
}

.flex-2 {
  flex-basis: 50%;
}

.flex-3 {
  flex-basis: 33.33%;
}

.flex-4 {
  flex-basis: 25%;
}

.flex-5 {
  flex-basis: 20%;
}

.padding-t-120 {
  padding-top: 120px;
}

.padding-b-120 {
  padding-bottom: 120px;
}

.padding-t-70 {
  padding-top: 70px;
}

.padding-b-70 {
  padding-bottom: 70px;
}

.padding-t-60 {
  padding-top: 60px;
}

.padding-b-60 {
  padding-bottom: 60px;
}

.padding-t-50 {
  padding-top: 50px;
}

.padding-b-50 {
  padding-bottom: 50px;
}

.margin-t-100 {
  margin-top: 100px;
}

.margin-t-80 {
  margin-top: 80px;
}

.margin-t-70 {
  margin-top: 70px;
}

.margin-t-60 {
  margin-top: 60px;
}

.margin-t-50 {
  margin-top: 50px;
}

.margin-t-20 {
  margin-top: 20px;
}

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

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

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

.learn-more {
  color: #016be3;
  font-size: 16px;
  line-height: 22px;
  position: relative;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}
.learn-more::after {
  content: "";
  background: url(../images/service/know-more-arrow-icon.png) top center no-repeat;
  position: relative;
  width: 15px;
  height: 11px;
  background-size: 100%;
  top: 0;
  left: 6px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.learn-more:before {
  content: "";
  clear: both;
  display: block;
  background: #016be3;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 16px);
  height: 1px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.learn-more:hover:before {
  opacity: 1;
}
.learn-more:hover::after {
  left: 10px;
}

::placeholder {
  color: #737373;
  font-weight: 400;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.cmn-btn {
  color: #016be3;
  border: 1.5px solid #016be3;
  border-radius: 3px;
  background: transparent;
  font-size: 18px;
  line-height: 36px;
  display: block;
  width: 100%;
  padding: 8px 0 12px;
  margin: 30px 0 0;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.cmn-btn:hover {
  background-color: #016be3;
  color: #fff;
}

.white-btn {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 14px 20px;
  display: inline-block;
  font-size: 16px;
  line-height: 21px;
  transition: 0.5s all ease-in-out;
}
.white-btn:hover {
  background-color: #fff;
  color: #016be3;
  border: 1px solid #fff;
}
.white-btn.blue {
  color: #016be3;
  border: 1.5px solid #016be3;
  font-weight: 500;
}
.white-btn.blue:hover {
  background-color: #016be3;
  color: #fff;
}
.white-btn.white {
  background-color: #fff;
  color: #000;
}
.white-btn.white:hover {
  background-color: #016be3;
  color: #000;
  border: 1.5px solid #016be3;
}

.heading h2 {
  position: relative;
  margin-bottom: 40px;
}
.heading h2:after {
  content: "";
  background: #016be3;
  width: 80px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -20px;
}
.heading p {
  width: 90%;
  margin: auto;
  font-size: 18px;
  color: #414141;
  line-height: 29px;
}
.heading ul li {
  font-size: 18px;
  color: #414141;
  line-height: 29px;
}

.get-started {
  background: #05247e;
}
.get-started h2 {
  color: #fff;
}
.get-started p {
  margin-top: 15px;
  color: #fff;
}
.get-started p:first-child {
  margin-top: 0;
}
.get-started p a {
  color: #ffffff;
}

.breadcrumbs {
  position: relative;
  top: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  text-align: left;
  z-index: 2;
  font-weight: 500;
}
.breadcrumbs a {
  display: inline-block;
  position: relative;
  color: rgba(197, 197, 215, 0.61);
  padding-right: 14px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.breadcrumbs a:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3px;
  width: 6px;
  height: 10px;
  background: url(../../assets/images/breadcrumbs-arrow.png) 0 1px no-repeat;
  background-size: 100%;
}
.breadcrumbs a:hover {
  color: #fff;
}

.service-breadcrumbs {
  color: #016be3;
  margin-bottom: 30px;
}
.service-breadcrumbs a {
  color: #253053;
  transition: all 0.3s ease-in-out;
}
.service-breadcrumbs a:hover {
  color: #016be3;
}

.for-home-client-logo {
  margin-top: 20px;
}
.for-home-client-logo i {
  width: 98px;
  height: 59px;
  background: url(../images/home/home-awards-icon.svg) 0 0 no-repeat;
  display: inline-block;
  background-size: cover;
}
.for-home-client-logo i:nth-child(1) {
  background-position: 0px 0px;
}
.for-home-client-logo i:nth-child(2) {
  background-position: -101px 0px;
}
.for-home-client-logo i:nth-child(3) {
  background-position: -203px 0;
}
.for-home-client-logo i:nth-child(4) {
  background-position: -304px 0;
}
.for-home-client-logo i:nth-child(5) {
  background-position: -406px 0;
}

.body-pop {
  position: relative;
  overflow: hidden;
}
.body-pop::after {
  content: "";
  clear: both;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  background: #656565;
  opacity: 0.8;
}

.free-trail-pop-up {
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 9999;
}
.free-trail-pop-up.open-pop {
  display: grid;
}
.free-trail-pop-up .pop-up-inner {
  background-color: #ffffff;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.free-trail-pop-up .pop-close {
  text-align: right;
  display: block;
  margin: 25px 25px 25px auto;
  color: #212121;
  background: url(../images/pop-close.png) 0 0 no-repeat;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.free-trail-pop-up .pop-up-box {
  padding: 30px 100px 100px;
}
.free-trail-pop-up h2 {
  color: #212121;
}
.free-trail-pop-up p {
  margin-top: 10px;
  color: #656565;
}
.free-trail-pop-up p:first-of-type {
  margin-top: 20px;
}
.free-trail-pop-up .popup-green-btn {
  margin-top: 50px;
  padding: 23px 31px;
  color: #ffffff;
  background: #60b741;
  text-decoration: none;
  font-size: 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.free-trail-pop-up .popup-green-btn:hover {
  background-color: #ffb81d;
}

.is-arrow {
  display: block;
  text-decoration: underline;
  color: #05164d;
  text-align: left;
  margin: 40px 0 0;
  font-weight: 400;
  font-size: 18px;
}
.is-arrow:after {
  content: "";
  background: url(../images/home-images/arrow.svg) no-repeat center;
  width: 11px;
  display: inline-block;
  height: 11px;
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
}
.is-arrow:hover {
  text-decoration: none;
}
.is-arrow:hover:after {
  margin-left: 15px;
}

.top-section {
  padding: 0 0 80px;
  text-align: center;
}
.top-section h6 {
  color: #0400F5;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.top-section p {
  font-size: 18px;
}
.top-section.text-left {
  padding: 0;
  text-align: left;
}

.gradient-bg {
  background: linear-gradient(270deg, #0b147c 21.77%, #4b1bac 100%);
}
.gradient-bg .top-section h2 {
  color: #ffffff;
}
.gradient-bg .top-section p {
  color: #bdb7b7;
}

.btn-container {
  margin-top: 30px;
}
.btn-container .cta-button {
  display: inline-flex;
  padding: 10px 20px;
  line-height: 24px;
  cursor: pointer;
  position: relative;
  background: #DFFB0B;
  color: #0400F5;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 50px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.0509803922);
}
.btn-container .cta-button:after {
  content: "";
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-size: 100%;
  display: inline-block;
  margin-left: 10px;
}
.btn-container .cta-button:hover {
  background: #0400F5;
  color: #ffffff;
}
.btn-container .cta-button:hover:after {
  background: url(../images/home-images/white-cta.svg) no-repeat;
  background-size: 100%;
}
.btn-container .cta-button.white {
  background: #DFFB0B;
  color: #0400F5;
}
.btn-container .cta-button.white:after {
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  background-size: 100%;
}
.btn-container .cta-button.white:hover {
  background: #ffffff;
  color: #0400F5;
}
.btn-container .cta-button.white:hover:after {
  background: url(../images/home-images/bluegr-hovercta.svg) no-repeat;
  background-size: 100%;
}

.explore-btn {
  position: relative;
  color: #0400F5;
  font-weight: 500;
  text-decoration: underline;
}
.explore-btn:after {
  content: "";
  background: url(../images/explore-btn.svg) no-repeat center;
  width: 11px;
  position: absolute;
  height: 11px;
  margin-left: 8px;
  top: 6px;
  transition: all 0.3s ease-in-out;
}
.explore-btn:hover:after {
  margin-left: 15px;
}

.ppc-badge {
  margin: 20px 0 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1780px) {
  .container {
    max-width: 1520px;
  }
}
@media only screen and (max-width: 1600px) {
  .container {
    max-width: 1380px;
  }
  .padding-t-120 {
    padding-top: 100px;
  }
  .padding-b-120 {
    padding-bottom: 100px;
  }
  .margin-t-100 {
    margin-top: 80px;
  }
  .margin-t-80 {
    margin-top: 60px;
  }
  .free-trail-pop-up .popup-green-btn {
    margin-top: 40px;
    padding: 14px 20px;
  }
  .free-trail-pop-up .pop-up-box {
    padding: 10px 60px 70px;
  }
  .free-trail-pop-up .pop-close {
    margin: 20px 20px 20px auto;
  }
  .free-trail-pop-up .pop-up-inner {
    max-width: 900px;
  }
}
@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1260px;
  }
  h1 {
    font-size: 65px;
    line-height: 91px;
  }
}
@media only screen and (max-width: 1320px) {
  .container {
    max-width: 1120px;
  }
  .padding-t-100 {
    padding-top: 60px;
  }
  .padding-b-100 {
    padding-bottom: 60px;
  }
  .padding-t-120 {
    padding-top: 80px;
  }
  .padding-b-120 {
    padding-bottom: 80px;
  }
  .padding-t-70 {
    padding-top: 60px;
  }
  .padding-b-70 {
    padding-bottom: 60px;
  }
  .margin-t-80 {
    margin-top: 60px;
  }
  .top-section {
    padding: 0 0 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .row {
    margin-left: 0px;
    margin-right: 0px;
  }
  .tools-developer .flex-4 {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 45px;
    line-height: 55px;
  }
  h2 {
    font-size: 35px;
    line-height: 40px;
    margin: 0 0 15px;
  }
  br {
    display: none;
  }
  h3 {
    font-size: 22px;
  }
  .flex-2 {
    flex-basis: 100%;
  }
  .flex-2:first-child {
    padding-right: 0;
  }
  .flex-3 {
    flex-basis: 50%;
  }
  .flex-4 {
    flex-basis: 50%;
  }
  .flex-5 {
    flex-basis: 33.33%;
  }
  .padding-t-150 {
    padding-top: 60px;
  }
  .padding-b-150 {
    padding-bottom: 60px;
  }
  .margin-b-150 {
    margin-bottom: 60px;
  }
  .margin-t-100,
  .margin-t-80,
  .margin-t-70,
  .margin-t-60 {
    margin-top: 40px;
  }
  .flex-4 {
    flex-basis: 50%;
  }
  .is-arrow {
    margin: 25px 0 0;
  }
  .free-trail-pop-up .pop-up-inner {
    max-width: 700px;
  }
  .free-trail-pop-up .pop-up-box {
    padding: 0 50px 50px;
  }
  .free-trail-pop-up .green-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-family: sans-serif;
    line-height: 24px;
  }
  ::placeholder,
  input,
  textarea {
    font-family: sans-serif;
  }
  .padding-t-100 {
    padding-top: 40px;
  }
  .padding-b-100 {
    padding-bottom: 40px;
  }
  .padding-b-150 {
    padding-bottom: 60px;
  }
  .margin-b-150 {
    margin-bottom: 40px;
  }
  .padding-t-120 {
    padding-top: 50px;
  }
  .padding-b-120 {
    padding-bottom: 50px;
  }
  .padding-t-150 {
    padding-top: 60px;
  }
  .padding-t-70 {
    padding-top: 40px;
  }
  .padding-b-70 {
    padding-bottom: 60px;
  }
  h1 {
    font-size: 35px;
    line-height: 45px;
  }
  h2 {
    font-size: 30px;
    line-height: 35px;
  }
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
  p {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 15px;
  }
  ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .flex-3 {
    flex-basis: 100%;
  }
  .flex-4 {
    flex-basis: 100%;
  }
  .flex-5 {
    flex-basis: 100%;
  }
  .heading h2 br {
    display: none;
  }
  .heading h2:after {
    bottom: -15px;
  }
  .heading p {
    width: 100%;
    font-size: 16px;
    line-height: 27px;
  }
  .heading ul li {
    font-size: 16px;
    line-height: 27px;
  }
  .cmn-btn {
    font-size: 16px;
    line-height: 28px;
  }
  .white-btn {
    padding: 10px 20px;
  }
  .glider {
    overflow: hidden;
  }
  .service-breadcrumbs {
    margin-bottom: 10px;
  }
  .breadcrumbs {
    top: 0;
  }
  .free-trail-pop-up .pop-close {
    width: 14px;
    height: 14px;
    background-size: 100%;
    margin: 15px 20px 15px auto;
  }
  .free-trail-pop-up .pop-up-box {
    padding: 0 15px 30px;
  }
  .free-trail-pop-up p {
    font-size: 14px;
    line-height: 22px;
  }
  .free-trail-pop-up p:first-of-type {
    margin-top: 10px;
  }
  .free-trail-pop-up .green-btn {
    margin-top: 30px;
    padding: 12px 15px;
    font-size: 14px;
  }
  .is-arrow {
    margin: 20px 0 0;
    font-size: 16px;
  }
  .top-section {
    padding: 0 0 40px;
  }
  .top-section p {
    font-size: 16px;
  }
  .btn-container {
    margin-top: 20px;
  }
  .btn-container .cta-button {
    padding: 12px 16px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
  }
}
.popup-section {
  width: 100%;
}
.popup-section .popup-wrapper {
  z-index: 999;
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}
.popup-section .popup-wrapper .popWrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-section .popup-wrapper .popWrap .popup-content {
  width: 612px;
  background: #016be3;
  border-radius: 25px;
  padding: 36px 70px;
  text-align: center;
  position: relative;
}
.popup-section .popup-wrapper .popWrap .popup-content h2 {
  color: #fff;
  font-weight: 600;
  font-size: 32px;
  margin: 0 0 8px;
  line-height: 40px;
}
.popup-section .popup-wrapper .popWrap .popup-content h3 {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 15px;
  color: #fff;
}
.popup-section .popup-wrapper .popWrap .popup-content p {
  color: #fff;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec {
  margin: 20px 0 0;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec a {
  display: inline-block;
  border: 1px solid #fff;
  margin: 15px auto 0;
  padding: 15px 20px;
  font-weight: 500;
  color: #fff;
  border-radius: 8px;
  min-width: 376px;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec a:hover {
  background: #05164d;
  color: #fff;
  border-color: #05164d;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec a.book-btn {
  background: #fff;
  color: #05164d;
  border-color: #fff;
}
.popup-section .popup-wrapper .popWrap .popup-content .closeicon {
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 10px;
  background: none;
}
.popup-section .exit-intent-popup {
  display: none;
}
.popup-section .exit-intent-popup.visible {
  display: block;
}

@media only screen and (max-width: 991px) {
  .popup-section .popup-wrapper .popWrap .popup-content {
    width: 90%;
    border-radius: 20px;
    padding: 30px 35px;
  }
  .popup-section .popup-wrapper .popWrap .popup-content h2 {
    font-size: 27px;
    line-height: 32px;
  }
  .popup-section .popup-wrapper .popWrap .popup-content h3 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 10px;
  }
  .popup-section .popup-wrapper .popWrap .popup-content .ctasec {
    margin: 20px 0 0;
  }
  .popup-section .popup-wrapper .popWrap .popup-content .ctasec a {
    padding: 12px 20px;
    margin: 10px 0 0;
    min-width: auto;
  }
}
:root {
  --blue: #016be3;
  --yellow: #ffbc38;
  --white: #ffffff;
  --gray: #202020;
  --white: #fff;
  --black: #000;
}

.footer-section {
  background: #f1f6ff;
}

.footer {
  width: 100%;
  background: #f1f6ff;
  padding: 30px 0 40px;
}
.footer .footer-top {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-top .count-sec {
  display: flex;
  flex-basis: 70%;
  justify-content: space-between;
}
.footer .footer-top .count-sec .count-col {
  margin-right: 40px;
}
.footer .footer-top .count-sec h5 {
  color: #000000;
  font-size: 20px;
  margin: 0 0 10px;
}
.footer .footer-top .count-sec p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}
.footer .footer-top .subs-box {
  background: #0400F5;
  position: relative;
  padding: 20px 40px;
  flex-basis: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
}
.footer .footer-top .subs-box h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 15px;
}
.footer .footer-top .btn-container {
  margin: 10px 0 0;
}
.footer .footer-top .btn-container .cta-button {
  padding: 10px 16px;
  background: #ffffff;
  color: #0400F5;
}
.footer .footer-top .btn-container .cta-button:after {
  background: url(../images/home-images/bluegr-hovercta.svg) no-repeat;
  background-size: 100%;
}
.footer .footer-top .btn-container .cta-button:hover {
  background: #DFFB0B;
  color: #0400F5;
}
.footer .footer-top .btn-container .cta-button:hover:after {
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  background-size: 100%;
}
.footer .footer-top .white-btn:hover {
  background: var(--gray);
  color: var(--white);
  border-color: var(--gray);
}
.footer .footer-middle {
  padding: 40px 0 25px;
  justify-content: space-between;
}
.footer .footer-middle .flex-5 {
  flex-basis: auto;
  padding-right: 60px;
  text-align: left;
}
.footer .footer-middle .flex-5:last-child {
  padding-right: 0;
}
.footer .footer-middle h4 {
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
}
.footer .footer-middle ul li {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 26px;
}
.footer .footer-middle ul li a {
  color: rgba(0, 0, 0, 0.6);
}
.footer .footer-middle ul li a:hover {
  color: var(--black);
}
.footer .footer-bottom {
  padding: 40px 0 0;
  gap: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  justify-content: space-between;
}
.footer .footer-bottom .flex-3 {
  flex-basis: auto;
  text-align: left;
}
.footer .footer-bottom h3 {
  font-size: 15px;
  line-height: 24px;
  color: var(--black);
  font-weight: 400;
  margin: 0 0 22px;
}
.footer .footer-bottom .logo-box .dis-flex a {
  margin-right: 30px;
}
.footer .footer-bottom .social-box .dis-flex a {
  margin-right: 20px;
}
.footer .footer-bottom .social-box .dis-flex a:hover {
  opacity: 0.8;
}
.footer .footer-bottom .copyright p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.footer-copyright {
  background: #0400F5;
  color: #fff;
  padding: 10px 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
}
.footer-copyright .copyright-left p,
.footer-copyright .copyright-right p {
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
  color: #ffffff;
  margin: 0;
}
.footer-copyright .copyright-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-copyright .copyright-left ul {
  display: flex;
  align-items: center;
  margin: 0 0 0 15px;
}
.footer-copyright .copyright-left ul li {
  margin: 0 5px;
}
.footer-copyright .copyright-left ul li a {
  color: #fff;
  font-size: 13px;
}
.footer-copyright .copyright-left ul li a:hover {
  text-decoration: underline;
}
.footer-copyright .copyright-right p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-copyright .copyright-right p img {
  margin: 3px 0 0;
}

/*Media Query Start From Here*/
@media (max-width: 1440px) {
  .footer .footer-top .count-sec .count-col {
    margin-right: 25px;
  }
  .footer .footer-middle ul li {
    font-size: 15px;
  }
  .footer .footer-middle .flex-5 {
    padding-right: 20px;
  }
}
@media (max-width: 1280px) {
  .footer-copyright .copyright-left p {
    font-size: 12px;
  }
  .footer-copyright .copyright-left ul {
    margin-left: 10px;
  }
  .footer-copyright .copyright-left ul li a {
    font-size: 12px;
  }
  .footer-copyright .copyright-right p {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .footer .footer-middle ul li {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 1160px) {
  .footer .footer-top .count-sec p {
    font-size: 12px;
    line-height: 24px;
  }
  .footer .footer-top .subs-box {
    padding: 20px 15px;
    border-radius: 20px;
  }
  .footer .footer-top .subs-box::before {
    width: 60px;
    height: 52px;
  }
  .footer .footer-top .subs-box::after {
    width: 34px;
    height: 46px;
  }
  .footer .footer-middle .flex-5 {
    padding-right: 20px;
  }
  .footer .footer-bottom {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .footer .footer-top {
    flex-wrap: wrap;
  }
  .footer .footer-top .count-sec {
    flex-basis: 100%;
    justify-content: space-between;
  }
  .footer .footer-top .subs-box {
    flex-basis: 100%;
    margin: 20px 0 0;
  }
  .footer .footer-middle .flex-5 {
    flex-basis: 20%;
  }
  .footer .footer-top .count-sec .count-col {
    margin-right: 18px;
  }
  .footer .footer-bottom {
    gap: 0;
    justify-content: space-between;
  }
  .footer .footer-bottom .flex-3 {
    flex-basis: 33%;
  }
  .footer .footer-bottom .copyright p {
    font-size: 13px;
    line-height: 22px;
  }
  .footer .footer-bottom h3 {
    font-size: 14px;
    line-height: 22px;
  }
  .footer .footer-bottom .logo-box .dis-flex a {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer .footer-bottom .social-box .dis-flex a {
    margin-right: 10px;
  }
}
@media (max-width: 1024px) {
  .footer-copyright .justify-sb {
    justify-content: center;
  }
}
@media (max-width: 980px) {
  .footer-copyright {
    text-align: center;
  }
  .footer-copyright .copyright-left,
  .footer-copyright .copyright-right {
    flex-basis: 100%;
  }
  .footer-copyright .copyright-right {
    flex-basis: 100%;
    margin-top: 10px;
  }
  .footer-copyright .copyright-right p {
    justify-content: center;
  }
  .footer-copyright .copyright-right p img {
    margin: 3px 0 0;
  }
}
@media (max-width: 767px) {
  .footer .footer-top {
    flex-wrap: wrap;
  }
  .footer .footer-top .count-sec {
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer .footer-top .count-sec .count-col {
    flex-basis: 48%;
    margin-right: 0;
    text-align: center;
    padding: 0 0 20px;
  }
  .footer .footer-top .count-sec h5 {
    font-size: 18px;
    margin: 0 0 5px;
  }
  .footer .footer-top .count-sec p {
    font-size: 12px;
    line-height: 22px;
  }
  .footer .footer-top .subs-box {
    flex-basis: 100%;
    padding: 30px;
  }
  .footer .footer-middle {
    padding: 30px 0 10px;
  }
  .footer .footer-middle .flex-5 {
    flex-basis: 48%;
    padding: 0 0 20px;
  }
  .footer .footer-middle h4 {
    font-size: 17px;
  }
  .footer .footer-middle ul li {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 24px;
  }
  .footer .footer-bottom {
    padding: 30px 0 0;
    gap: 0;
  }
  .footer .footer-bottom .flex-3 {
    flex-basis: 100%;
    text-align: center;
    margin: 20px 0 0;
  }
  .footer .footer-bottom .flex-3 .dis-flex {
    flex-wrap: nowrap;
    justify-content: center;
  }
  .footer .footer-bottom .logo-box .dis-flex a {
    margin-right: 20px;
  }
  .footer .footer-bottom h3 {
    font-weight: 500;
  }
}
/*Media Query Ends Here*/
.slide-logo {
  padding: 39px 0;
  text-align: center;
}
.slide-logo .dis-flex {
  overflow: hidden;
}
.slide-logo .logo-heading {
  position: relative;
  width: 90%;
  margin: 0 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-basis: 100%;
  margin: 0 0 25px;
  justify-content: center;
}
.slide-logo .logo-heading h4 {
  color: rgba(65, 65, 65, 0.9);
  font-size: 18px;
  margin: 0 35px;
  background: #ffffff;
  position: relative;
  font-weight: 400;
}
.slide-logo .logo-heading h4 span {
  margin: 0 35px;
  background: #ffffff;
}
.slide-logo .logo-heading strong {
  color: #0400F5;
  font-weight: 500;
}
.slide-logo .logo-heading:before {
  width: 90%;
  content: "";
  height: 0.197px;
  background: rgba(5, 22, 77, 0.4);
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.slide-logo .logo-section {
  width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(5, 22, 77, 0.4);
  padding: 0 0 25px;
}
.slide-logo .logo-section .glide__slide {
  height: 90px;
}
.slide-logo .logo-section .glide__slide img {
  width: 100%;
  vertical-align: middle;
}

@media (max-width: 1042px) {
  .slide-logo .logo-section .glide__slide {
    height: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .slide-logo {
    display: none;
    padding: 30px 0;
  }
  .slide-logo .logo-heading {
    margin: 0 0 20px;
    margin: 0 0 20px;
    justify-content: center;
  }
  .slide-logo .logo-heading h4 {
    font-size: 18px;
    margin: 0 20px;
  }
  .slide-logo .logo-heading:before {
    display: none;
  }
  .slide-logo .logo-heading:after {
    display: none;
  }
  .slide-logo .logo-section {
    width: 100%;
    margin: 0 auto;
  }
  .slide-logo .logo-section .glide__slide {
    height: auto;
  }
}
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: initial;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide--rtl {
  direction: rtl;
}

.testimonial-section .testlider {
  width: 100%;
}
.testimonial-section .testlider .slide-item {
  display: flex;
}
.testimonial-section .testlider .glide__slides {
  white-space: normal !important;
}
.testimonial-section .testlider .test-row {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.testimonial-section .testlider .test-row .cust-img-box {
  flex-basis: 40%;
}
.testimonial-section .testlider .test-row .cust-img-box img {
  width: 100%;
}
.testimonial-section .testlider .test-row .client-videos {
  flex-basis: 40%;
  position: relative;
}
.testimonial-section .testlider .test-row .client-videos .client-video-box {
  position: relative;
}
.testimonial-section .testlider .test-row .client-videos iframe {
  border: 0;
  height: 328px;
  width: 536px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  display: none;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 20px;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask img {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playBtn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 9;
  height: 100%;
  cursor: pointer;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playsc {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto;
  transition: 0.4s ease-in-out;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playsc::before {
  content: "";
  position: absolute;
  top: -11px;
  left: -10px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #0400F5;
  opacity: 0.5;
  transition: 0.4s ease-in-out;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playsc .playicon {
  width: 100%;
  height: 100%;
  background: url(../images/playicon.svg) center center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1;
  transition: 0.4s ease-in-out;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playsc:hover .playicon {
  top: 10px;
  transition: 0.4s ease-in-out;
}
.testimonial-section .testlider .test-row .client-videos .frame-mask .playsc:hover:before {
  width: 85px;
  height: 85px;
  left: -13px;
  top: -5px;
  transition: 0.4s ease-in-out;
}
.testimonial-section .testlider .test-row .content-box {
  flex-basis: 54%;
  position: relative;
}
.testimonial-section .testlider .test-row .content-box p {
  margin: 0 0 20px;
  line-height: 160%;
}
.testimonial-section .testlider .test-row .content-box h5 {
  margin: 30px 0 5px;
  color: #3f3f3f;
  font-weight: 500;
  font-size: 20px;
}
.testimonial-section .testlider .test-row .content-box span {
  font-size: 16px;
  font-weight: 300;
  display: block;
  margin: 0 0 10px;
}
.testimonial-section .testlider .test-row .content-box .star-image {
  width: 96px;
  height: 17px;
  background: url(../images/star-image.png) center center no-repeat;
  background-size: 100%;
}
.testimonial-section .testlider .test-row .content-box::before {
  content: "";
  display: block;
  width: 115px;
  height: 100px;
  background: url(../images/dble-quote.png) center center no-repeat;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: -25px;
}
.testimonial-section .testlider .glide__bullets {
  display: flex;
  justify-content: center;
  margin: 50px 0 0;
  gap: 30px;
}
.testimonial-section .testlider .glide__bullet {
  position: relative;
  display: flex;
  flex-basis: 33.33%;
  padding: 20px;
  border: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(5, 22, 77, 0.04);
  background: #fcfcfc;
}
.testimonial-section .testlider .glide__bullet .btnsec {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 15px;
  position: relative;
}
.testimonial-section .testlider .glide__bullet .btnsec:after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 4px;
  display: block;
  border-radius: 20px;
  background-color: #e8e6e6;
  transition: transform 5s;
}
.testimonial-section .testlider .glide__bullet .btnsec .btnimg {
  width: 69px;
}
.testimonial-section .testlider .glide__bullet .btnsec .btnimg img {
  width: 69px;
  height: 69px;
  border-radius: 100%;
}
.testimonial-section .testlider .glide__bullet .btnsec .btncont {
  margin-left: 15px;
  text-align: left;
}
.testimonial-section .testlider .glide__bullet .btnsec .btncont p {
  font-weight: 300 !important;
  color: #666;
  margin: 0;
}
.testimonial-section .testlider .glide__bullet .btnsec .btncont h3 {
  font-weight: 500;
  font-family: "Montserrat";
}
.testimonial-section .testlider .glide__bullet:before {
  content: "";
  position: absolute;
  bottom: 21px;
  width: 90%;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 4px;
  display: block;
  border-radius: 20px;
  background: #e8e6e6;
  opacity: 0;
  transform: translateX(-100%);
  background-color: #0400F5;
  transition: transform 5s;
  z-index: 9;
}
.testimonial-section .testlider .glide__bullet--active {
  background: #ffffff;
}
.testimonial-section .testlider .glide__bullet--active:before {
  opacity: 1;
  transform: translateX(0);
}
.testimonial-section .testlider .arw {
  width: 26px;
  height: 26px;
  background-size: 100%;
  background: url(../images/left-arw.png) no-repeat;
  position: absolute;
  bottom: 60px;
  left: -55px;
  font-size: 0;
  border: 0;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.testimonial-section .testlider .arw:hover {
  opacity: 0.8;
}
.testimonial-section .testlider .test-player {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 68%;
  border-radius: 15px;
  z-index: 99;
}
.testimonial-section .right {
  left: auto !important;
  right: -55px;
  transform: rotate(180deg);
}
.testimonial-section .popup-section .popup-wrapper .popup-content {
  max-width: 800px;
  width: 100%;
  padding: 0;
}
.testimonial-section .popup-section .popup-wrapper .popup-content iframe {
  width: 100%;
  height: 480px;
}
.testimonial-section .popup-section .popup-wrapper .popup-content .closeicon {
  cursor: pointer;
  position: absolute;
  right: -7px;
  top: -10px;
  background: #fff;
  width: 30px;
  height: 29px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 1366px) {
  .testimonial-section .testlider .arw {
    left: -35px;
    background-size: 20px;
  }
  .testimonial-section .testlider .glide__bullets {
    gap: 20px;
  }
  .testimonial-section .testlider .glide__bullet {
    padding: 15px;
  }
  .testimonial-section .testlider .glide__bullet .btnsec .btnimg {
    width: 50px;
  }
  .testimonial-section .testlider .glide__bullet .btnsec .btnimg img {
    width: 50px;
    height: 50px;
  }
  .testimonial-section .testlider .glide__bullet .btnsec .btncont {
    margin-left: 12px;
  }
  .testimonial-section .testlider .glide__bullet .btnsec .btncont p {
    font-size: 14px;
  }
  .testimonial-section .testlider .glide__bullet:before {
    bottom: 16px;
  }
  .testimonial-section .right {
    right: -35px;
  }
}
@media only screen and (max-width: 1200px) {
  .testimonial-section .testlider .glide__bullets {
    margin: 30px 0 0;
    gap: 0;
  }
  .testimonial-section .testlider .glide__bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    flex-basis: auto;
    padding: 0;
    background: #e8e6e6;
    border-radius: 100%;
    cursor: pointer;
  }
  .testimonial-section .testlider .glide__bullet .btnsec {
    display: none;
  }
  .testimonial-section .testlider .glide__bullet:before {
    display: none;
  }
  .testimonial-section .testlider .glide__bullet--active {
    background: #ffb81d;
  }
  .testimonial-section .testlider .arw {
    display: none;
  }
  .testimonial-section .right {
    right: -20px;
  }
}
@media only screen and (max-width: 1024px) {
  .testimonial-section .testlider .test-player {
    height: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section .testlider .test-row .content-box:before {
    width: 95px;
    height: 100px;
    top: -28px;
    left: -15px;
  }
  .testimonial-section .popup-section .popup-wrapper .popup-content {
    max-width: 90%;
  }
  .testimonial-section .popup-section .popup-wrapper .popup-content iframe {
    width: 100%;
    height: 340px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section .testlider .test-row .cust-img-box {
    flex-basis: 100%;
  }
  .testimonial-section .testlider .test-row .client-videos {
    flex-basis: 100%;
  }
  .testimonial-section .testlider .test-row .content-box {
    flex-basis: 100%;
    margin: 20px 0 0;
    text-align: center;
  }
  .testimonial-section .testlider .test-row .content-box p {
    margin: 0 0 15px;
  }
  .testimonial-section .testlider .test-row .content-box h5 {
    margin: 20px 0 5px;
    font-size: 18px;
  }
  .testimonial-section .testlider .test-row .content-box span {
    font-size: 14px;
  }
  .testimonial-section .testlider .test-row .content-box .star-image {
    margin: 0 auto;
  }
  .testimonial-section .testlider .test-row .content-box::before {
    display: none;
  }
  .testimonial-section .testlider .test-player {
    width: 308px;
    height: 220px;
  }
}
.contact-us-section {
  position: relative;
  background: linear-gradient(270deg, #0b147c 21.77%, #4b1bac 100%);
}
.contact-us-section .contact-logo {
  display: block;
  padding: 15px 0;
}
.contact-us-section .left-box {
  flex-basis: 40%;
}
.contact-us-section .left-box p {
  margin: 30px 0 0;
  color: #ffffff;
  font-weight: 300;
  opacity: 0.7;
  font-size: 20px;
  line-height: 29px;
}
.contact-us-section .left-box p a {
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 29px;
}
.contact-us-section .left-box .row-box .col-box {
  margin: 40px 0 0;
  align-items: center;
}
.contact-us-section .left-box .row-box .col-box .icon {
  flex-basis: 8%;
}
.contact-us-section .left-box .row-box .col-box .desp {
  flex-basis: 92%;
  padding-left: 10px;
}
.contact-us-section .left-box .row-box .col-box .desp h4 {
  color: #ffffff;
  font-weight: 500;
}
.contact-us-section .left-box .row-box .col-box .desp p {
  font-size: 14px;
  margin: 5px 0 0;
  line-height: 1.2;
}
.contact-us-section .left-box .slide-logo {
  padding: 80px 0 0;
}
.contact-us-section .left-box .slide-logo .logo-section {
  width: 500px;
  padding: 0;
  border: 0;
}
.contact-us-section .left-box .slide-logo .glide__slides {
  align-items: center;
}
.contact-us-section .left-box .cu-prop-clm p {
  margin: 30px 0 0;
  color: #ffffff;
  font-weight: 300;
  font-size: 18px;
  line-height: 29px;
  opacity: 1;
}
.contact-us-section .right-box {
  flex-basis: 47%;
  position: relative;
}
.contact-us-section .right-box:before {
  content: "";
  width: 457px;
  height: 90%;
  border-radius: 0 0 25px 25px;
  background: url(../images/bg-shape.png) 0 0 no-repeat;
  position: absolute;
  top: -14px;
  left: -14px;
}
.contact-us-section .right-box .form-wrap {
  background: #ffffff;
  border-radius: 20px;
  z-index: 1;
  position: relative;
}
.contact-us-section .right-box .form-wrap .form-top {
  padding: 35px 35px 20px;
  background: rgb(248, 249, 250);
  border-radius: 20px 20px 0 0;
}
.contact-us-section .right-box .form-wrap .form-top h2 {
  font-weight: 700;
  margin: 0 0 5px;
  font-size: 32px;
  line-height: 38px;
}
.contact-us-section .right-box .form-wrap .form-top p {
  font-size: 14px;
  color: rgba(32, 32, 32, 0.9);
  line-height: 1.3;
}
.contact-us-section .right-box .form-wrap .form-top .soc-box {
  color: rgb(32, 32, 32);
  font-size: 14px;
}
.contact-us-section .right-box .form-wrap .form-top .soc-box a {
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
}
.contact-us-section .right-box .form-wrap .form-top .soc-box a:hover {
  text-decoration: underline;
  color: #000;
}
.contact-us-section .right-box .form-wrap .form-top .soc-box a:first-child {
  padding: 0;
}
.contact-us-section .right-box .form-wrap .form-top .soc-box a:first-child:before {
  display: none;
}
.contact-us-section .right-box .form-wrap .form-top .soc-box a i {
  margin-right: 10px;
}
.contact-us-section .right-box .form-wrap .form-top .soc-box a i img {
  vertical-align: middle;
}
.contact-us-section .right-box .form-wrap .form-top .soc-box a:before {
  content: "";
  width: 1px;
  height: 25px;
  position: absolute;
  left: 9px;
  top: -2px;
  background: rgba(65, 65, 65, 0.3);
}
.contact-us-section .right-box .form-wrap:before {
  content: "";
  width: 155px;
  height: 139px;
  background: url(../images/awd-image.png) 0 0 no-repeat;
  position: absolute;
  top: -25px;
  right: 30px;
}
.contact-us-section .right-box .form-bottom {
  padding: 0 35px 35px;
}
.contact-us-section .right-box .form-box {
  margin: 30px 0 0;
}
.contact-us-section .right-box .form-box .form-text-cont {
  flex-basis: 48%;
  margin-bottom: 18px;
  position: relative;
}
.contact-us-section .right-box .form-box .form-text-cont.width-full {
  flex-basis: 100%;
}
.contact-us-section .right-box .form-box .form-text-cont:last-child {
  margin-bottom: 0;
}
.contact-us-section .right-box .form-box .form-text-cont label {
  color: rgb(40, 54, 70);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 8px;
  display: block;
}
.contact-us-section .right-box .form-box .form-text-cont .input-field {
  font-size: 15px;
  padding: 0 15px;
  height: 46px;
  border-radius: 8px;
  background: rgb(248, 249, 250);
  border: 1px solid rgb(236, 238, 240);
  width: 100%;
  color: rgb(79, 90, 104);
  font-family: "Montserrat", sans-serif;
}
.contact-us-section .right-box .form-box .form-text-cont .input-field::placeholder {
  font-size: 14px;
  color: rgba(79, 90, 104, 0.7);
}
.contact-us-section .right-box .form-box .form-text-cont .input-field:focus {
  outline: #253053;
  border: 0;
  border: 1px solid #253053;
}
.contact-us-section .right-box .form-box .form-text-cont small {
  font-size: 11px;
  line-height: 12px;
  text-transform: capitalize;
  color: #95959f;
  display: none;
  float: left;
  width: 100%;
  margin-top: 5px;
}
.contact-us-section .right-box .form-box .form-text-cont.verror small {
  color: #ff1f1f;
  display: block;
}
.contact-us-section .right-box .form-box .form-text-cont.verror .input-field {
  border-color: #ff1f1f;
}
.contact-us-section .right-box .form-box .form-text-cont .comment-input {
  height: 100px;
  padding: 15px;
}
.contact-us-section .right-box .form-box .form-text-cont .comment-input:focus {
  outline: #253053;
  border: 0;
  border: 1px solid #253053;
}
.contact-us-section .right-box .form-box .form-text-cont .submit-btn {
  min-width: 210px;
  font-size: 16px;
  line-height: 22px;
  background: #016be3;
  color: #fff;
  padding: 15px 30px;
  border: 0;
  outline: 0;
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-top: 0;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border: 1px solid #016be3;
  margin-top: 10px;
}
.contact-us-section .right-box .form-box .form-text-cont .submit-btn:hover {
  background-color: #ffffff;
  color: #016be3;
}
.contact-us-section .right-box .form-box .autocomplete-items.has-item {
  display: block;
  height: 170px;
  overflow-y: auto;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 1;
  box-shadow: 0px 6px 9px rgba(1, 0, 12, 0.43);
  background: #fff;
  border-radius: 5px;
}
.contact-us-section .right-box .form-box .autocomplete-items.has-item div {
  border: 1px solid #e0e6ea;
  color: #666e86;
  border: 1px solid #e0e6ea;
  background-color: #fff;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  padding: 15px 20px;
}
.contact-us-section .right-box .form-box .autocomplete-items.has-item div.autocomplete-active, .contact-us-section .right-box .form-box .autocomplete-items.has-item div:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.contact-us-section .right-box .form-box .form-conf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.contact-us-section .right-box .form-box .form-conf span {
  display: inline-block;
  font-size: 16px;
}
.contact-us-section .right-box .form-box .form-conf span.signnda {
  padding: 0 20px;
  position: relative;
}
.contact-us-section .right-box .form-box .form-conf span.signnda:before {
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  left: 9px;
  top: 0;
  background: rgba(65, 65, 65, 0.3);
}
.contact-us-section .right-box .form-box .form-conf span i {
  margin-right: 3px;
}
.contact-us-section .right-box .form-box .form-conf span i img {
  vertical-align: middle;
  margin-top: -3px;
}

.globe-around .heading h2 {
  margin: 0 0 10px;
}
.globe-around .heading h2:after {
  display: none;
}
.globe-around .dis-flex .flex-5 {
  padding-right: 10px;
  margin-top: 20px;
  padding-left: 10px;
}
.globe-around .dis-flex .flex-5 .cont-full {
  display: block;
  border: 1px solid rgb(233, 233, 239);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.globe-around .dis-flex .flex-5 .cont-full .box {
  padding: 15px;
  position: relative;
  cursor: pointer;
}
.globe-around .dis-flex .flex-5 .cont-full .box .flag-d {
  display: flex;
  color: #414141;
}
.globe-around .dis-flex .flex-5 .cont-full .box .flag-d .img {
  width: 30px;
  text-align: center;
}
.globe-around .dis-flex .flex-5 .cont-full .box .flag-d .cont {
  width: calc(100% - 30px);
  padding-left: 10px;
}
.globe-around .dis-flex .flex-5 .cont-full .box .flag-d .cont span {
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.globe-around .dis-flex .flex-5 .cont-full .box .flag-d .cont span.num {
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0 0;
  line-height: 20px;
}
.globe-around .dis-flex .flex-5 .cont-full .box .flag-d .cont span.num:hover {
  text-decoration: underline;
}
.globe-around .dis-flex .flex-5 .cont-full .box .flag-d .cont.addrs span.num:hover {
  text-decoration: none !important;
}
.globe-around .dis-flex .flex-5 .cont-full .box:before {
  content: "";
  width: 14px;
  height: 8px;
  background: url(../images/flag-arrow.png) 0 0 no-repeat;
  position: absolute;
  top: 22px;
  right: 20px;
  transition: all 0.3s ease-in-out;
}
.globe-around .dis-flex .flex-5 .cont-full .box.aus:before {
  display: none;
}
.globe-around .dis-flex .flex-5 .cont-full .detail-full {
  border-top: 1px solid #e9e9ef;
  display: none;
  transition: all 0.3s ease-in-out;
}
.globe-around .dis-flex .flex-5 .cont-full .detail-full .box {
  cursor: default;
}
.globe-around .dis-flex .flex-5 .cont-full .detail-full .box a .flag-d {
  color: #414141;
}
.globe-around .dis-flex .flex-5 .cont-full .detail-full .box .row-div {
  margin: 15px 0 0;
}
.globe-around .dis-flex .flex-5 .cont-full .detail-full .box .num {
  margin: 0 !important;
}
.globe-around .dis-flex .flex-5 .cont-full .detail-full .box:before {
  display: none;
}
.globe-around .dis-flex .flex-5 .cont-full .detail-full .box .flag-d {
  color: rgba(65, 65, 65, 0.8);
}
.globe-around .dis-flex .flex-5 .cont-full .detail-full .box .flag-d .wtsapp {
  vertical-align: top;
  margin-top: -5px;
}
.globe-around .dis-flex .flex-5 .cont-full:hover .detail-full {
  display: block;
  transition: all 0.3s ease-in-out;
}

.globe-around .dis-flex .flex-5 .cont-full:hover .box:before {
  transform: rotate(180deg);
}

.footer {
  padding: 0;
}
.footer .footer-copyright {
  margin-top: 0;
}

@media only screen and (min-width: 1600px) {
  .award-section .award-slider {
    margin-top: 60px !important;
  }
}
@media only screen and (max-width: 1440px) {
  .contact-us-section .left-box {
    flex-basis: 40%;
  }
  .contact-us-section .left-box p {
    margin: 20px 0 0;
  }
  .contact-us-section .left-box p a {
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
  }
  .contact-us-section .left-box .row-box .col-box {
    margin: 40px 0 0;
    align-items: center;
  }
  .contact-us-section .left-box .row-box .col-box .icon {
    flex-basis: 8%;
  }
  .contact-us-section .left-box .row-box .col-box .desp {
    flex-basis: 92%;
    padding-left: 10px;
  }
  .contact-us-section .left-box .row-box .col-box .desp h4 {
    color: #ffffff;
    font-weight: 500;
  }
  .contact-us-section .left-box .row-box .col-box .desp p {
    font-size: 14px;
    margin: 5px 0 0;
    line-height: 1.2;
  }
  .contact-us-section .left-box .slide-logo {
    padding: 80px 0 0;
  }
  .contact-us-section .left-box .slide-logo .logo-section {
    width: 500px;
    padding: 0;
    border: 0;
  }
  .contact-us-section .left-box .slide-logo .glide__slides {
    align-items: center;
  }
  .contact-us-section .right-box .form-wrap .form-top {
    padding: 25px 35px 20px;
  }
  .contact-us-section .right-box .form-wrap .form-top .soc-box a:before {
    left: 8px;
  }
  .contact-us-section .right-box .form-wrap .form-top p {
    margin: 0 0 15px;
  }
  .contact-us-section .right-box .form-wrap:before {
    background-size: 100%;
    width: 110px;
    height: 120px;
  }
  .contact-us-section .right-box .form-bottom {
    padding: 0 35px 35px;
  }
  .contact-us-section .right-box .form-box {
    margin: 20px 0 0;
  }
  .contact-us-section .right-box .form-box .form-text-cont label {
    font-size: 14px;
    margin: 0 0 8px;
  }
  .contact-us-section .right-box .form-box .form-text-cont .input-field {
    font-size: 14px;
    height: 40px;
  }
  .contact-us-section .right-box .form-box .form-text-cont .comment-input {
    height: 80px;
  }
  .contact-us-section .right-box .form-box .form-conf span {
    font-size: 14px;
  }
  .contact-us-section .right-box .form-box .form-conf span.signnda {
    padding: 0 20px;
    position: relative;
  }
}
@media only screen and (max-width: 1380px) {
  .contact-us-section .left-box p {
    margin: 20px 0 0;
    font-size: 18px;
  }
  .contact-us-section .left-box p a {
    font-size: 16px;
  }
  .contact-us-section .right-box .form-wrap .form-top {
    padding: 25px 30px 20px;
  }
  .contact-us-section .right-box .form-wrap .form-top h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .contact-us-section .right-box .form-wrap .form-top .soc-box {
    font-size: 13px;
  }
  .contact-us-section .right-box .form-wrap .form-top .soc-box a {
    padding-left: 15px;
  }
  .contact-us-section .right-box .form-wrap .form-top .soc-box a:before {
    left: 7px;
  }
  .contact-us-section .right-box .form-wrap .form-top .soc-box a i {
    margin-right: 6px;
  }
  .contact-us-section .right-box .form-wrap .form-top p {
    margin: 0 0 15px;
  }
  .contact-us-section .right-box .form-wrap:before {
    width: 90px;
    height: 90px;
  }
  .contact-us-section .right-box .form-bottom {
    padding: 0 30px 30px;
  }
  .contact-us-section .right-box .form-box {
    margin: 20px 0 0;
  }
  .contact-us-section .right-box .form-box .form-text-cont label {
    font-size: 13px;
    margin: 0 0 6px;
  }
  .contact-us-section .right-box .form-box .form-text-cont .input-field {
    font-size: 14px;
    height: 40px;
  }
  .contact-us-section .right-box .form-box .form-text-cont .comment-input {
    height: 80px;
  }
  .contact-us-section .right-box .form-box .form-text-cont .submit-btn {
    padding: 12px 30px;
    min-width: 160px;
    margin: 0;
  }
  .contact-us-section .right-box .form-box .form-conf span {
    font-size: 13px;
  }
  .globe-around .dis-flex .flex-5 {
    padding-right: 5px;
    margin-top: 10px;
    padding-left: 5px;
  }
  .globe-around .dis-flex .flex-5 .cont-full .box {
    padding: 12px;
  }
  .globe-around .dis-flex .flex-5 .cont-full .box .flag-d .cont {
    padding-left: 8px;
  }
  .globe-around .dis-flex .flex-5 .cont-full .box .flag-d .cont span {
    font-size: 14px;
  }
  .globe-around .dis-flex .flex-5 .cont-full .box .flag-d .cont span.num {
    font-size: 13px;
    margin: 2px 0 0;
  }
}
@media only screen and (max-width: 1280px) {
  .contact-us-section .left-box .slide-logo .logo-section {
    width: 450px;
  }
  .contact-us-section .right-box .form-box .form-conf span {
    font-size: 12px;
  }
  .contact-us-section .right-box .form-box .form-conf span i {
    margin-right: 2px;
  }
  .contact-us-section .right-box .form-box .form-conf span i img {
    width: 12px;
    height: 12px;
  }
  .contact-us-section .right-box .form-box .form-conf span.signnda {
    padding: 0 10px;
  }
  .contact-us-section .right-box .form-box .form-conf span.signnda:before {
    height: 16px;
    left: 5px;
  }
}
@media only screen and (max-width: 1024px) {
  .globe-around .dis-flex .flex-5 {
    flex-basis: 33.33%;
  }
}
@media only screen and (max-width: 991px) {
  .contact-us-section .left-box {
    flex-basis: 100%;
  }
  .contact-us-section .left-box .row-box .col-box {
    margin: 30px 0 0;
  }
  .contact-us-section .left-box .row-box .col-box .icon {
    flex-basis: 50px;
  }
  .contact-us-section .left-box p {
    font-size: 16px;
  }
  .contact-us-section .left-box .slide-logo {
    padding: 50px 0 0;
  }
  .contact-us-section .left-box .slide-logo .logo-section {
    width: 90%;
  }
  .contact-us-section .right-box {
    flex-basis: 100%;
    margin: 50px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-us-section .left-box .row-box .col-box {
    margin: 20px 0 0;
  }
  .contact-us-section .left-box .row-box .col-box .icon {
    flex-basis: 10%;
  }
  .contact-us-section .left-box .row-box .col-box .desp {
    flex-basis: 85%;
  }
  .contact-us-section .left-box p {
    margin-top: 10px;
  }
  .contact-us-section .left-box .slide-logo {
    display: none;
  }
  .contact-us-section .left-box .cu-prop-clm p {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 26px;
  }
  .contact-us-section .right-box {
    margin: 80px 0 0;
  }
  .contact-us-section .right-box .form-wrap .form-top {
    padding: 25px 15px 20px;
  }
  .contact-us-section .right-box .form-wrap .form-top p {
    line-height: 22px;
  }
  .contact-us-section .right-box .form-wrap .form-top .soc-box a:before {
    height: 20px;
    top: 3px;
    left: 7px;
  }
  .contact-us-section .right-box .form-wrap .form-bottom {
    padding: 0 15px 20px;
  }
  .contact-us-section .right-box .form-box .form-text-cont {
    flex-basis: 100%;
    margin-bottom: 12px;
  }
  .contact-us-section .right-box .form-box .form-text-cont label {
    margin: 0 0 3px;
  }
  .contact-us-section .right-box .form-box .form-text-cont .submit-btn {
    font-family: sans-serif;
  }
  .contact-us-section .right-box .form-box .form-conf span {
    display: block;
  }
  .contact-us-section .right-box .form-box .form-conf span.signnda {
    padding: 0;
  }
  .contact-us-section .right-box .form-box .form-conf span.signnda:before {
    display: none;
  }
  .contact-us-section .right-box:before {
    width: 100%;
    height: 100%;
    border-radius: 25px;
  }
  .globe-around .dis-flex .flex-5 {
    flex-basis: 50%;
  }
  .globe-around .dis-flex .flex-5 .cont-full .box:before {
    background-size: 100%;
    width: 12px;
    top: 25px;
    right: 8px;
  }
  .globe-around .dis-flex .flex-5 .cont-full .box .flag-d .img {
    margin-top: 3px;
  }
  .globe-around .dis-flex .flex-5:last-child {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .globe-around .dis-flex .flex-5 {
    flex-basis: 100%;
  }
  .contact-us-section .right-box .form-wrap .form-top .soc-box a i img {
    margin-top: -2px;
  }
}

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