@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap");
/* 1. Animation */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/* 2. Variables */
:root {
  --body: #fff;
  --white: #ffffff;
  --pra: #61708b;
  --pra2: #565969;
  --theme: #001659;
  --theme2: #ff5e14;
  --ratting: #FFBE57;
  --hover: #fff;
  --border: #3b4a7b;
  --viewbox: #343839;
  --subtitle: #222E48;
  --placeholder: #B2B6BF;
}

/* 3. Typography */
body {
  color: var(--theme);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: scroll !important;
  background-color: var(--body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--theme);
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--title);
  font-family: "Poppins", sans-serif;
}

button {
  border: unset;
}

.icon {
  color: #ff5e14;
}
::placeholder {
  color: var(--title);
}

h1 {
  font-size: 84px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  font-size: 45px;
  line-height: 120%;
  font-weight: 700;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 29px;
  }
}

h3 {
  font-size: 27px;
  line-height: 135%;
  font-weight: 700;
}
@media (max-width: 1199px) {
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 23px;
  line-height: 130%;
  font-weight: 700;
}
@media (max-width: 500px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 19px;
  line-height: 130%;
  font-weight: 700;
}
@media (max-width: 500px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 1199px) {
  h6 {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  h6 {
    font-size: 12px;
  }
}

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

a {
  text-decoration: none;
  margin: 0;
  color: var(--title);
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
  color: var(--white);
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

::placeholder {
  color: var(--title);
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  color: var(--pra2);
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 1199px) {
  p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  p {
    font-size: 13px;
  }
}

.pl-24 {
  padding-left: 24px;
}
@media (max-width: 1399px) {
  .pl-24 {
    padding-left: 14px;
  }
}
@media (max-width: 991px) {
  .pl-24 {
    padding-left: 10px;
  }
}

.pr-24 {
  padding-right: 24px;
}
@media (max-width: 1399px) {
  .pr-24 {
    padding-right: 14px;
  }
}
@media (max-width: 991px) {
  .pr-24 {
    padding-right: 10px;
  }
}

.ml-24 {
  margin-left: 24px;
}
@media (max-width: 1399px) {
  .ml-24 {
    margin-left: 14px;
  }
}

.mr-24 {
  margin-right: 24px;
}
@media (max-width: 1399px) {
  .mr-24 {
    margin-right: 14px;
  }
}

.arrowrotate {
  transform: rotate(-32deg);
  font-size: 24px;
}

.fs-8 {
  font-size: 8px;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}
@media (max-width: 767px) {
  .fs-16 {
    font-size: 14px;
  }
}

.fs-18 {
  font-size: 18px;
}
@media (max-width: 767px) {
  .fs-18 {
    font-size: 16px;
  }
}

.fs-20 {
  font-size: 20px;
}
@media (max-width: 767px) {
  .fs-20 {
    font-size: 18px;
  }
}

.fs-xxl16 {
  font-size: 16px;
}

.fs-24 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .fs-24 {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .fs-24 {
    font-size: 18px;
  }
}

.fs-xl-16 {
  font-size: 16px;
}

.fs-26 {
  font-size: 26px;
}
@media (max-width: 767px) {
  .fs-26 {
    font-size: 22px;
  }
}

.fs-30 {
  font-size: 30px;
}
@media (max-width: 767px) {
  .fs-30 {
    font-size: 26px;
  }
}

.fs-32 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .fs-32 {
    font-size: 28px;
  }
}

.fs-38 {
  font-size: 38px;
}
@media (max-width: 991px) {
  .fs-38 {
    font-size: 28px;
  }
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.pfs-24 {
  font-size: 24px;
  line-height: 150%;
}
@media (max-width: 991px) {
  .pfs-24 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .pfs-24 {
    font-size: 18px;
  }
}

.pfs-20 {
  font-size: 20px;
  line-height: 150%;
}
@media (max-width: 991px) {
  .pfs-20 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .pfs-20 {
    font-size: 16px;
  }
}

.pfs-18 {
  font-size: 18px;
  line-height: 150%;
}
@media (max-width: 991px) {
  .pfs-18 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .pfs-18 {
    font-size: 16px;
  }
}

.pfs-16 {
  font-size: 16px;
  line-height: 150%;
}

.pfs-14 {
  font-size: 14px;
  line-height: 150%;
}

.pfs-12 {
  font-size: 12px;
  line-height: 150%;
}

.p-24 {
  padding: 24px;
}
@media (max-width: 991px) {
  .p-24 {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .p-24 {
    padding: 15px;
  }
}

.pt-200 {
  padding-top: 200px;
}
@media (max-width: 1199px) {
  .pt-200 {
    padding-top: 120px;
  }
}
@media (max-width: 991px) {
  .pt-200 {
    padding-top: 100px;
  }
}

.pt-150 {
  padding-top: 150px;
}
@media (max-width: 1199px) {
  .pt-150 {
    padding-top: 120px;
  }
}
@media (max-width: 991px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pt-140 {
  padding-top: 140px;
}
@media (max-width: 1199px) {
  .pt-140 {
    padding-top: 120px;
  }
}
@media (max-width: 991px) {
  .pt-140 {
    padding-top: 100px;
  }
}

.pt-130 {
  padding-top: 130px;
}
@media (max-width: 1199px) {
  .pt-130 {
    padding-top: 110px;
  }
}
@media (max-width: 991px) {
  .pt-130 {
    padding-top: 90px;
  }
}

.custom__150 {
  padding-top: 170px;
}
@media (max-width: 1399px) {
  .custom__150 {
    padding-top: 150px;
  }
}

.pb-200 {
  padding-bottom: 200px;
}
@media (max-width: 1199px) {
  .pb-200 {
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .pb-200 {
    padding-bottom: 100px;
  }
}

.pb-275 {
  padding-bottom: 275px;
}
@media (max-width: 1199px) {
  .pb-275 {
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .pb-275 {
    padding-bottom: 100px;
  }
}

.pb-140 {
  padding-bottom: 140px;
}
@media (max-width: 1199px) {
  .pb-140 {
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .pb-140 {
    padding-bottom: 100px;
  }
}

.pb-130 {
  padding-bottom: 130px;
}
@media (max-width: 1199px) {
  .pb-130 {
    padding-bottom: 110px;
  }
}
@media (max-width: 991px) {
  .pb-130 {
    padding-bottom: 90px;
  }
}

.pt-110 {
  padding-top: 110px;
}
@media (max-width: 1199px) {
  .pt-110 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .pt-110 {
    padding-top: 80px;
  }
}

.pb-110 {
  padding-bottom: 110px;
}
@media (max-width: 1199px) {
  .pb-110 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .pb-110 {
    padding-bottom: 80px;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .pt-100 {
    padding-top: 90px;
  }
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pt-100 {
    padding-top: 65px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 1199px) {
  .pb-100 {
    padding-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pb-100 {
    padding-bottom: 70px;
  }
}

.pt-70 {
  padding-top: 70px;
}
@media (max-width: 991px) {
  .pt-70 {
    padding-top: 50px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .pb-70 {
    padding-bottom: 50px;
  }
}

.pt-60 {
  padding-top: 60px;
}
@media (max-width: 991px) {
  .pt-60 {
    padding-top: 50px;
  }
}

.pb-60 {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .pb-60 {
    padding-bottom: 50px;
  }
}

.pt-50 {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .pt-50 {
    padding-top: 40px;
  }
}

.pb-50 {
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .pb-50 {
    padding-bottom: 40px;
  }
}

.pt-40 {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .pt-40 {
    padding-top: 30px;
  }
}

.pb-40 {
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .pb-40 {
    padding-bottom: 30px;
  }
}

.pb-30 {
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .pb-30 {
    padding-bottom: 20px;
  }
}

.pt-30 {
  padding-top: 30px;
}
@media (max-width: 991px) {
  .pt-30 {
    padding-top: 20px;
  }
}

.pb-24 {
  padding-bottom: 24px;
}
@media (max-width: 991px) {
  .pb-24 {
    padding-bottom: 15px;
  }
}

.pt-24 {
  padding-top: 24px;
}
@media (max-width: 991px) {
  .pt-24 {
    padding-top: 15px;
  }
}

.pb-20 {
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .pb-20 {
    padding-bottom: 15px;
  }
}

.pt-20 {
  padding-top: 20px;
}
@media (max-width: 991px) {
  .pt-20 {
    padding-top: 15px;
  }
}

.pb-16 {
  padding-bottom: 16px;
}
@media (max-width: 991px) {
  .pb-16 {
    padding-bottom: 10px;
  }
}

.pt-16 {
  padding-top: 16px;
}
@media (max-width: 991px) {
  .pt-16 {
    padding-top: 10px;
  }
}

.pb-15 {
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .pb-15 {
    margin-bottom: 10px;
  }
}

.pt-15 {
  padding-top: 15px;
}
@media (max-width: 991px) {
  .pt-15 {
    margin-top: 10px;
  }
}

.pb-10 {
  padding-bottom: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb5 {
  padding-bottom: 5px;
}

.pt5 {
  padding-top: 5px;
}

.p-8 {
  padding: 8px;
}

.mb-140 {
  margin-bottom: 140px;
}
@media (max-width: 1199px) {
  .mb-140 {
    margin-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .mb-140 {
    margin-bottom: 90px;
  }
}

.mt-120 {
  margin-top: 120px;
}
@media (max-width: 1199px) {
  .mt-120 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .mt-120 {
    margin-top: 80px;
  }
}

.mb-120 {
  margin-bottom: 120px;
}
@media (max-width: 1199px) {
  .mb-120 {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .mb-120 {
    margin-bottom: 80px;
  }
}

.mt-100 {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .mt-100 {
    margin-top: 90px;
  }
}
@media (max-width: 991px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  .mb-100 {
    margin-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mt-80 {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .mt-80 {
    margin-top: 60px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .mb-80 {
    margin-bottom: 60px;
  }
}

.mt-60 {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .mt-60 {
    margin-top: 50px;
  }
}

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .mb-60 {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .mb-60 {
    margin-bottom: 35px;
  }
}

.mb-50 {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .mb-50 {
    margin-bottom: 40px;
  }
}

.mt-40 {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .mt-40 {
    margin-top: 30px;
  }
}

.mb-40 {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .mb-40 {
    margin-bottom: 30px;
  }
}

.mb-30 {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .mb-30 {
    margin-bottom: 20px;
  }
}

.mt-30 {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .mt-30 {
    margin-top: 20px;
  }
}

.mb-28 {
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .mb-28 {
    margin-bottom: 18px;
  }
}

.mt-28 {
  padding-top: 28px;
}
@media (max-width: 991px) {
  .mt-28 {
    margin-top: 18px;
  }
}

.mb-24 {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .mb-24 {
    margin-bottom: 15px;
  }
}

.mt-24 {
  padding-top: 24px;
}
@media (max-width: 991px) {
  .mt-24 {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .mt-24 {
    margin-top: 10px;
  }
}

.mb-20 {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .mb-20 {
    margin-bottom: 15px;
  }
}

.mt-20 {
  padding-top: 20px;
}
@media (max-width: 991px) {
  .mt-20 {
    margin-top: 15px;
  }
}

.mb-18 {
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .mb-18 {
    margin-bottom: 16px;
  }
}

.mt-18 {
  margin-top: 18px;
}
@media (max-width: 991px) {
  .mt-18 {
    margin-top: 16px;
  }
}

.mb-15 {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .mb-15 {
    margin-bottom: 10px;
  }
}

.mt-15 {
  margin-top: 15px;
}
@media (max-width: 991px) {
  .mt-15 {
    margin-top: 10px;
  }
}

.mb-16 {
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .mb-16 {
    margin-bottom: 10px;
  }
}

.mt-16 {
  margin-top: 16px;
}
@media (max-width: 991px) {
  .mt-16 {
    margin-top: 10px;
  }
}

.mt-35 {
  margin-top: 35px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mt-8 {
  margin-top: 8px;
}

.mb5 {
  margin-bottom: 5px;
}

.mt5 {
  margin-top: 5px;
}

.bodyfont {
  font-family: "Open Sans", sans-serif;
}

.headfont {
  font-family: "Poppins", sans-serif;
}

.custom__space {
  padding-top: 112px;
}

.social {
  gap: 12px;
}
.social li a {
  width: 54px;
  height: 54px;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--pra);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social li a i {
  color: var(--pra);
  font-size: 24px;
}
@media (max-width: 1399px) {
  .social li a {
    width: 40px;
    height: 40px;
  }
  .social li a i {
    font-size: 20px;
  }
}
.social li:hover a {
  border: 1px solid var(--base);
}
.social li:hover a i {
  color: var(--base);
}

.white__color {
  background-color: var(--white);
}

.theme__bg {
  background-color: var(--theme);
}

.header__bg {
  background-color: rgba(9, 30, 93, 0.9);
}

.bg__color {
  background-color: #f2f1fc;
}

.clip__path {
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 85%, 86% 100%, 0 100%, 0% 80%, 0% 20%);
}

.section__title .sub {
  position: relative;
  color: var(--white);
  display: inline-block;
  max-width: 560px;
}
.section__title .sub span {
  color: var(--theme2);
}
@media (max-width: 500px) {
  .section__title .sub {
    font-size: 20px;
  }
}
@media (max-width: 470px) {
  .section__title .sub {
    font-size: 18px;
  }
}
.section__title .sub::before {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 180px;
  height: 1px;
  content: "";
  background: var(--theme2);
}
@media (max-width: 1199px) {
  .section__title h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .section__title h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section__title h2 {
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  .section__title h2 {
    font-size: 18px;
  }
}
@media (max-width: 470px) {
  .section__title h2 {
    font-size: 16px;
  }
}

@media (max-width: 1399px) {
  .header__text h2 {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  .header__text h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .header__text h2 {
    font-size: 22px;
  }
}
.header__text .view__btn {
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}
.header__text .view__btn i {
  font-size: 24px;
}

.transition {
  transition: all 0.4s;
}

.max__width {
  max-width: 310px;
}

.ralt {
  position: relative;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.overhid {
  overflow: hidden;
}

.twitter {
  background: var(--secoundary-color) !important;
}

.twitch {
  background: rgb(110, 60, 210) !important;
}

.youtube {
  background: rgb(172, 46, 46) !important;
}

.insta {
  background: rgb(207, 93, 93) !important;
}

.lind {
  background: rgb(78, 131, 228) !important;
}

.face {
  background: rgb(27, 114, 244) !important;
}

i {
  font-size: 18px;
}

.section__bg {
  background-color: #f2f1fc;
}

/* 4. Header */
.main__header__two {
  top: 0;
  width: 100%;
  z-index: 9999;
  position: absolute;
  left: 0;
  border-bottom: 1px solid #42507a;
}
@media (max-width: 991px) {
  .main__header__two {
    top: 0px !important;
  }
}
.main__header__two .header__top .item .top__info li {
  color: var(--white);
}
.main__header__two .header__top .item .social__icon {
  margin-right: initial;
}
.main__header__two .header__top .item .social__icon li a i {
  color: var(--white);
}
.main__header__two .header__top .item .social__icon li a i:hover {
  color: var(--theme2);
}
.main__header__two .header-wrapper {
  padding: 30px 0;
}
.main__header__two .header-wrapper .main-menu {
  gap: 0 35px;
}
.main__header__two .header-wrapper .main-menu li a {
  color: var(--white);
}
.main__header__two .header-wrapper .main-menu li .cmn--btn {
  background-color: #1cb0eb;
}
.main__header__two .header-wrapper .main-menu li .cmn--btn:hover {
  color: var(--white);
}
@media (max-width: 991px) {
  .main__header__two .header-wrapper .header-bar {
    margin-right: initial;
  }
  .main__header__two .header-wrapper .header-bar span {
    background: var(--theme2);
  }
  .main__header__two .header-wrapper .header-bar span:first-child {
    top: 0;
    background: var(--theme2);
  }
  .main__header__two .header-wrapper .header-bar span:nth-child(2) {
    top: 44%;
    background: var(--theme2);
  }
  .main__header__two .header-wrapper .header-bar span:last-child {
    bottom: 0;
    background: var(--theme2);
  }
}
.main__header__two .menu-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  background-color: rgb(9, 30, 93);
  z-index: 999;
}

.main__header {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  position: absolute;
}
@media (max-width: 991px) {
  .main__header .header__thumb {
    display: none;
  }
}
.main__header .header__thumb img {
  width: 100%;
  height: 100%;
}
.main__header .main__header__items {
  gap: 70px;
  background-color: var(--white);
  box-shadow: 0px 0px 62px 0px rgba(0, 22, 89, 0.17);
}
@media (max-width: 1199px) {
  .main__header .main__header__items {
    gap: 45px;
  }
}
@media (max-width: 991px) {
  .main__header .main__header__items {
    align-items: center;
    justify-content: space-between;
  }
}
.main__header .main__header__items .main__logo {
  width: 160px;
  background-color: var(--theme);
  padding: 25px 23px 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 80%, 87% 100%, 0 100%, 0% 80%, 0% 20%);
}
@media (min-width: 992px) {
  .main__header .main__header__items .main__logo {
    width: 260px;
    padding: 22px;
  }
}
@media (min-width: 1200px) {
  .main__header .main__header__items .main__logo {
    padding: 23px;
  }
}
.main__header .main__header__items .main__logo .shape-1 {
  position: absolute;
  bottom: -12px;
  right: -8px;
}
@media (min-width: 450px) {
  .main__header .main__header__items .main__logo .shape-1 {
    bottom: -12px;
    right: -8px;
  }
}
@media (min-width: 992px) {
  .main__header .main__header__items .main__logo .shape-1 {
    bottom: -1px;
    right: -2px;
  }
}
@media (min-width: 1200px) {
  .main__header .main__header__items .main__logo .shape-1 {
    bottom: 0px;
    right: -1px;
  }
}
.main__header .main__header__items .main__logo img {
  max-width: 100%;
  height: auto;
}

.header__top {
  width: 100%;
}
@media (max-width: 991px) {
  .header__top {
    width: initial;
  }
}
.header__top .item {
  display: flex;
  align-items: center;
  justify-content: space-between !important;
  padding: 15px 0;
  position: relative;
}
@media (max-width: 991px) {
  .header__top .item {
    display: none;
  }
}
.header__top .item::before {
  position: absolute;
  bottom: 0;
  left: -45px;
  right: 0;
  content: "";
  height: 1px;
  width: 726px;
  background-color: #ededed;
  display: none;
}
@media (min-width: 992px) {
  .header__top .item::before {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header__top .item::before {
    width: 900px;
    left: -70px;
  }
}
@media (min-width: 1400px) {
  .header__top .item::before {
    width: 1076px;
  }
}
.header__top .item::after {
  position: absolute;
  left: 200px;
  bottom: 0;
  height: 2px;
  width: 50px;
  content: "";
  background-color: var(--theme2);
}
@media (max-width: 991px) {
  .header__top .item::after {
    display: none;
  }
}
.header__top .style__items::before {
  display: none;
}
.header__top .style__items::after {
  display: none;
}
.header__top .top__info {
  gap: 45px;
}
.header__top .top__info li {
  font-size: 14px;
  font-weight: 400;
}
.header__top .top__info li i {
  color: var(--theme2);
  margin-right: 10px;
  font-size: 16px;
}
.header__top .social__icon {
  gap: 20px;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .header__top .social__icon {
    display: none;
  }
}
.header__top .social__icon li a i {
  font-size: 15px;
  color: var(--theme);
  transition: all 0.3s ease-in-out;
}
.header__top .social__icon li a i:hover {
  color: var(--theme2);
}

.header-section {
  width: 100%;
}

.menu-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.9s;
  background-color: var(--white);
  box-shadow: 0px 0px 62px 0px rgba(0, 22, 89, 0.17);
}
.menu-fixed .container {
  max-width: 100%;
  padding-left: initial;
  padding-right: initial;
}
.menu-fixed .header__thumb {
  display: none;
}
.menu-fixed .main__logo {
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 70%, 88% 100%, 0 100%, 0% 80%, 0% 20%) !important;
}
.menu-fixed .main__logo .shape-1 {
  position: absolute;
  bottom: -5px !important;
  right: -8px !important;
}
@media (min-width: 450px) {
  .menu-fixed .main__logo .shape-1 {
    bottom: -5px !important;
    right: -8px !important;
  }
}
@media (min-width: 992px) {
  .menu-fixed .main__logo .shape-1 {
    bottom: -2px !important;
    right: -4px !important;
  }
}
@media (min-width: 1200px) {
  .menu-fixed .main__logo .shape-1 {
    bottom: -3px !important;
    right: -2px !important;
  }
}
.menu-fixed .header__top .item {
  display: none;
}
.menu-fixed .main__header__items {
  align-items: center;
}
@media (max-width: 991px) {
  .menu-fixed .header-wrapper .main-menu {
    top: 55px;
  }
}
.menu-fixed .style__two {
  padding: 30px;
}

.header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  transition: all 0.9s;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .header-wrapper {
    z-index: 999999;
  }
}
.header-wrapper .main-menu {
  display: flex;
  align-items: center;
  gap: 0 24px;
}
@media (max-width: 991px) {
  .header-wrapper .main-menu {
    max-width: 100%;
  }
}
.header-wrapper .main-menu li {
  transition: all 0.6s;
  position: relative;
}
.header-wrapper .main-menu li a {
  color: var(--theme);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  text-transform: capitalize;
}
.header-wrapper .main-menu li a:hover {
  color: var(--theme2);
}
.header-wrapper .main-menu li a i {
  font-size: 16px;
}
.header-wrapper .main-menu li .sub-menu {
  padding: 5px 25px 5px 25px;
  background-color: var(--white);
  transition: all 4s;
}
@media (min-width: 992px) {
  .header-wrapper .main-menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    background: var(--white);
    box-shadow: 0px 20px 57px 0px rgba(0, 22, 89, 0.17);
    justify-content: center;
    opacity: 0;
    gap: 5px;
    transform: translateY(25px);
    visibility: hidden;
  }
}
.header-wrapper .main-menu li .sub-menu li {
  margin-right: 0;
  transition: all 0.3s !important;
  padding: 12px 0;
}
.header-wrapper .main-menu li .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #d6dae2;
}
.header-wrapper .main-menu li .sub-menu li a {
  color: #565969;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  display: block;
  transition: all 0.3s ease-in-out;
}
.header-wrapper .main-menu li .sub-menu li:hover:not(:last-child) {
  border-bottom: 1px solid var(--theme2);
}
.header-wrapper .main-menu li .sub-menu li:hover a {
  color: var(--theme2);
}
.header-wrapper .main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}
.header-wrapper .title__button .cmn--btn {
  margin-left: 50px;
  padding: 8px 20px;
  background-color: #1cb0eb;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 80%, 94% 100%, 0 100%, 0% 0%, 0% 20%);
}
.header-wrapper .menu__right__components {
  gap: 15px;
}
.header-wrapper .menu__components {
  position: relative;
}
.header-wrapper .menu__components .small-cmn--btn {
  padding: 12px 35px 12px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--theme);
  color: var(--white);
  position: relative;
  z-index: 99;
  transition: 0.3s;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 80%, 94% 100%, 0 100%, 0% 0%, 0% 20%);
}
.header-wrapper .menu__components .small-cmn--btn::before {
  background-color: var(--white);
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 2600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 20px;
  opacity: 0;
}
.header-wrapper .menu__components .small-cmn--btn:hover::before {
  left: 140%;
  transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.5;
}
@media (min-width: 992px) {
  .header-wrapper .menu__components .small-cmn--btn {
    padding: 12px 25px;
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .header-wrapper .menu__components .small-cmn--btn {
    padding: 12px 35px 12px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .header-wrapper .menu__components .small-cmn--btn {
    display: none;
  }
}
.header-wrapper .menu__components .small-cmn--btn.small-btn {
  position: absolute;
  top: 15px;
  left: -55px;
}
@media (min-width: 992px) {
  .header-wrapper .menu__components .small-cmn--btn.small-btn {
    left: -60px;
  }
}
@media (min-width: 1200px) {
  .header-wrapper .menu__components .small-cmn--btn.small-btn {
    left: -66px;
  }
}
.header-wrapper .menu__components .cmn--btn {
  padding: 30px 45px 30px 125px;
  background-color: var(--theme2);
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 87%, 100% 100%, 0% 100%, 0% 110%, 26% -3%);
}
.header-wrapper .menu__components .cmn--btn::before {
  display: none;
}
@media (min-width: 992px) {
  .header-wrapper .menu__components .cmn--btn {
    padding: 30px 16px 32px 70px;
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .header-wrapper .menu__components .cmn--btn {
    padding: 30px 25px 30px 110px;
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .header-wrapper .menu__components .cmn--btn {
    padding: 30px 45px 30px 125px;
  }
}
@media (max-width: 991px) {
  .header-wrapper .menu__components .cmn--btn {
    display: none;
  }
}
.header-wrapper .menu__components .cmn--btn i {
  margin-right: 12px;
}
@media (min-width: 992px) {
  .header-wrapper .menu__components .cmn--btn i {
    margin-right: 4px;
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .header-wrapper .menu__components .cmn--btn i {
    margin-right: 12px;
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .main-menu {
    position: fixed;
    top: 52px;
    width: 100%;
    left: 0;
    display: inline !important;
    margin-top: 20px;
    z-index: 999;
    padding: 15px 15px;
    transition: all 0.4s !important;
    transform-origin: top;
    max-height: calc(100vh - 130px);
    background: var(--white);
    overflow-y: auto;
  }
  .main-menu:not(.active) {
    position: fixed;
    left: -100%;
    top: 85px;
  }
  .main-menu li {
    width: 100%;
    border-radius: 2px;
    margin-right: 0 !important;
    padding: 10px 0;
  }
  .main-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  .main-menu li a {
    display: block;
    padding: 8px 10px 6px;
    font-size: 16px;
    color: var(--black) !important;
  }
  .main-menu li a i {
    color: var(--black) !important;
  }
  .main-menu li .sub-menu {
    display: none;
    margin: 0px 10px 20px 20px !important;
    background-color: var(--theme) !important;
    border-radius: 5px;
  }
  .main-menu li .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--white) !important;
  }
  .main-menu li .sub-menu li a {
    color: var(--black-color) !important;
  }
  .main-menu li .sub-menu li .sub-two {
    position: static !important;
    width: 100% !important;
    padding: 0 10px 20px 30px;
  }
  .main-menu li .sub-menu li .sub-two li a {
    display: block;
  }
  .main-menu .active a {
    color: var(--white);
  }
  .header-bar {
    position: relative;
    width: 31px;
    height: 20px;
  }
}
@media screen and (max-width: 991px) and (max-width: 992px) {
  .header-bar {
    margin-right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .header-bar span {
    position: absolute;
    width: 100%;
    height: 2px;
    display: inline-block;
    transition: all 0.3s;
    left: 0;
    background: var(--theme);
  }
  .header-bar span:first-child {
    top: 0;
    background: var(--theme);
  }
  .header-bar span:nth-child(2) {
    top: 44%;
    background: var(--theme);
  }
  .header-bar span:last-child {
    bottom: 0;
    background: var(--theme);
  }
  .header-bar.active span:first-child {
    transform: rotate(45deg) translate(3px, 9px);
  }
  .header-bar.active span:nth-child(2) {
    opacity: 0;
  }
  .header-bar.active span:last-child {
    transform: rotate(-45deg) translate(3px, -9px);
  }
  .header-bar:hover {
    cursor: pointer;
  }
  .header-wrapper .main-menu li .sub-menu li a {
    color: var(--white) !important;
  }
}
.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: uppercase;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--white-);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  transition: all 200ms linear;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 6 free";
  content: "\f062";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme2);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--theme2);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.8s 1s ease;
  z-index: 999999;
}

.loader {
  position: relative;
  display: block;
  z-index: 201;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  transition: all 1s 1s ease;
  border: 3px solid transparent;
  border-top-color: var(--theme2);
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  -o-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.loader:before {
  position: absolute;
  content: "";
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left-color: var(--white);
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  -o-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loader:after {
  position: absolute;
  content: "";
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-right-color: var(--theme);
  -webkit-animation: spin 2.5s linear infinite;
  -moz-animation: spin 2.5s linear infinite;
  -o-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
}

/*/ Here the Magic /*/
.loader-wrapper .loder-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--white);
  z-index: 2;
}

.loader-wrapper .loder-section.left-section {
  left: 0;
  transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
  right: 0;
  transition: 1s 1.4s ease;
}

/*/ When page loaded /*/
.loaded .loder-section.left-section {
  left: -100%;
}

.loaded .loder-section.right-section {
  right: -100%;
}

.loaded .loader-wrapper {
  visibility: hidden;
}

.loaded .loader {
  top: -100%;
  opacity: 0;
}

/* 5. Banner */
.banner__section {
  background: url(../img/banner/main-bg.png) no-repeat center center;
  background-size: cover;
}
.banner__section::before {
  position: absolute;
  left: -4px;
  bottom: -18px;
  content: "";
  height: 80px;
  width: 135px;
  background-color: var(--white);
  transform: rotate(4deg);
  display: none;
}
@media (min-width: 992px) {
  .banner__section::before {
    display: block;
    height: 65px;
  }
}
@media (min-width: 1200px) {
  .banner__section::before {
    height: 80px;
  }
}
@media (min-width: 1400px) {
  .banner__section::before {
    bottom: -8px;
    width: 163px;
  }
}
@media (min-width: 1600px) {
  .banner__section::before {
    bottom: -8px;
    width: 200px;
    height: 90px;
  }
}
.banner__section .shape__right {
  position: absolute;
  right: 0;
  bottom: 0;
}
.banner__section .shape__right img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .banner__section .shape__right {
    display: none;
  }
}
.banner__section .grad__shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.banner__section .grad__shape img {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .banner__section .grad__shape img {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .banner__section .grad__shape img {
    width: 68%;
  }
}
@media (min-width: 1400px) {
  .banner__section .grad__shape img {
    width: 82%;
  }
}
@media (min-width: 1600px) {
  .banner__section .grad__shape img {
    width: 91%;
  }
}
@media (min-width: 1800px) {
  .banner__section .grad__shape img {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .banner__section .grad__shape {
    left: 0;
  }
}
@media (max-width: 991px) {
  .banner__section .grad__shape {
    display: none;
  }
}
.banner__section .vector__shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .banner__section .vector__shape {
    display: none;
  }
}
.banner__section .banner-thum {
  padding-top: 170px;
}
.banner__section .banner-thum img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .banner__section .banner-thum {
    padding-top: 0px;
  }
  .banner__section .banner-thum img {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .banner__section .banner-thum {
    padding-top: 0px;
  }
  .banner__section .banner-thum img {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .banner__section .banner-thum {
    padding-top: 0px;
  }
  .banner__section .banner-thum img {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .banner__section .banner-thum {
    padding-top: 172px;
  }
  .banner__section .banner-thum img {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1400px) {
  .banner__section .banner-thum {
    padding-left: 100px;
  }
}
.banner__section .banner__content {
  padding-top: 50px;
  padding-bottom: 0px;
}
@media (min-width: 768px) {
  .banner__section .banner__content {
    padding-top: 100px;
    padding-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .banner__section .banner__content {
    margin-left: 50px;
  }
}
.banner__section .banner__content .box__shape {
  gap: 25px;
}
.banner__section .banner__content .box__shape img {
  max-width: 100% !important;
}
@media (max-width: 575px) {
  .banner__section .banner__content .box__shape img {
    max-width: 100% !important;
  }
}
.banner__section .banner__content .box__shape h4 {
  position: relative;
}
.banner__section .banner__content .box__shape h4::before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  border: 1px solid var(--theme2);
  content: "";
}
.banner__section .banner__content .box__shape h4 span {
  color: var(--theme2);
}
.banner__section .banner__content h1 {
  font-size: 42px;
}
@media (min-width: 576px) {
  .banner__section .banner__content h1 {
    font-size: 53px;
  }
}
@media (min-width: 768px) {
  .banner__section .banner__content h1 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .banner__section .banner__content h1 {
    font-size: 58px;
  }
}
@media (min-width: 1200px) {
  .banner__section .banner__content h1 {
    font-size: 52px;
  }
}
@media (min-width: 1400px) {
  .banner__section .banner__content h1 {
    font-size: 54px;
  }
}
.banner__section .banner__content h1 span {
  color: var(--theme2);
}

.banner__two {
  background: url(../img/banner/banner-bg.png) no-repeat center center;
  background-size: cover;
}
.banner__two::before {
  display: none;
}
.banner__two .shape__right {
  position: absolute;
  bottom: -75px;
  right: -50px;
}
.banner__two .shape__right img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1800px) {
  .banner__two .shape__right {
    right: -310px;
  }
}
@media (max-width: 1600px) {
  .banner__two .shape__right {
    bottom: -185px;
  }
}
@media (max-width: 1199px) {
  .banner__two .shape__right {
    display: none;
  }
}
.banner__two .banner__content {
  padding: 150px 0 50px 0;
}
@media (min-width: 450px) {
  .banner__two .banner__content {
    padding: 200px 0 100px 0;
  }
}
@media (min-width: 768px) {
  .banner__two .banner__content {
    padding: 250px 0;
  }
}
@media (min-width: 992px) {
  .banner__two .banner__content {
    padding: 100px 0 200px 0;
  }
}
.banner__two .banner__content .box__shape h4 {
  color: var(--white);
  margin-bottom: 15px;
}
.banner__two .banner__content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.banner__two .banner__content p {
  color: var(--white);
}
.banner__two .banner__content .cmn--btn {
  background-color: #1cb0eb;
}
.banner__two .banner__thumb-2 {
  position: relative;
  width: initial;
  height: initial;
  top: 160px;
  right: 187px;
  display: none;
}
@media (min-width: 992px) {
  .banner__two .banner__thumb-2 {
    right: 275px;
    display: block;
  }
}
@media (min-width: 1200px) {
  .banner__two .banner__thumb-2 {
    right: 275px;
  }
}
@media (min-width: 1400px) {
  .banner__two .banner__thumb-2 {
    right: 187px;
  }
}

.breadcumd__banner {
  background: url(../img/inner/bg.png) no-repeat center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .breadcumd__banner {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .breadcumd__banner {
    padding-top: 200px;
    padding-bottom: 130px;
  }
}
@media (min-width: 992px) {
  .breadcumd__banner {
    padding-top: 300px;
    padding-bottom: 145px;
  }
}
@media (min-width: 1400px) {
  .breadcumd__banner {
    padding-top: 300px;
    padding-bottom: 250px;
  }
}
.breadcumd__banner .breadcumd__wrapper {
  position: relative;
}
.breadcumd__banner .breadcumd__wrapper .breadcumd__items {
  gap: 24px;
}
.breadcumd__banner .breadcumd__wrapper .breadcumd__items ul {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.breadcumd__banner .breadcumd__wrapper .breadcumd__items ul::before {
  position: absolute;
  bottom: -15px;
  left: 0;
  content: "";
  height: 1px;
  width: 60px;
  background-color: var(--theme2);
}
.breadcumd__banner .breadcumd__wrapper .breadcumd__items ul li {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}
.breadcumd__banner .breadcumd__wrapper .breadcumd__items ul li i {
  font-size: 15px;
}
.breadcumd__banner .breadcumd__wrapper .breadcumd__items ul li a {
  color: var(--white);
}
.breadcumd__banner .breadcumd__wrapper .breadcumd__content {
  color: var(--white);
}
@media (max-width: 1399px) {
  .breadcumd__banner .breadcumd__wrapper .breadcumd__content {
    font-size: 66px;
  }
}
@media (max-width: 991px) {
  .breadcumd__banner .breadcumd__wrapper .breadcumd__content {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .breadcumd__banner .breadcumd__wrapper .breadcumd__content {
    font-size: 32px;
  }
}
.breadcumd__banner .about__shape {
  position: absolute;
  bottom: -18px;
  right: 0;
}
.breadcumd__banner .about__shape img {
  width: 100%;
  height: 100%;
}
.breadcumd__banner.single__bg {
  background: url(../img/banner/blog-single-bg.png) no-repeat center center;
  background-size: cover;
}
.breadcumd__banner.single__bg .shape-2 {
  position: absolute;
  right: -2px;
  bottom: -9px;
  width: 74px;
  height: 57px;
  background: #f2f1fc;
  transform: rotate(-2deg);
}
@media (max-width: 767px) {
  .breadcumd__banner.single__bg .shape-2 {
    display: none;
  }
}
.breadcumd__banner.single__bg .shape-3 {
  position: absolute;
  right: -2px;
  bottom: -8px;
  width: 74px;
  height: 56px;
  background: #f2f1fc;
  transform: rotate(-2deg);
}
@media (max-width: 767px) {
  .breadcumd__banner.single__bg .shape-3 {
    display: none;
  }
}
.breadcumd__banner.single__bg .grad__shape {
  position: absolute;
  bottom: -17px;
  right: 0;
}
.breadcumd__banner.about__bg {
  background: url(../img/about/about-inner-bg.png) no-repeat center center;
  background-size: cover;
}
.breadcumd__banner.about__bg .shape-2 {
  position: absolute;
  right: -2px;
  bottom: -9px;
  width: 74px;
  height: 57px;
  background: var(--white);
  transform: rotate(-2deg);
}
@media (max-width: 767px) {
  .breadcumd__banner.about__bg .shape-2 {
    display: none;
  }
}
.breadcumd__banner.about__bg .grad__shape {
  position: absolute;
  bottom: -17px;
  right: 0;
}

/* 6. About */
.about__section {
  padding: 90px 0 120px 0;
}
.about__section .left__shape {
  position: absolute;
  bottom: -225px;
  left: 10px;
}
.about__section .left__shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .about__section .left__shape {
    display: none;
  }
}
@media (min-width: 1200px) {
  .about__section {
    padding: 90px 0 120px 0;
  }
}
.about__section .box__shape {
  position: absolute;
  top: 125px;
  right: 100px;
}
@media (max-width: 1199px) {
  .about__section .box__shape {
    display: none;
  }
}
.about__section .right__vector {
  position: absolute;
  bottom: 145px;
  right: 150px;
}
@media (max-width: 767px) {
  .about__section .right__vector {
    display: none;
  }
}
.about__section .about__thumb {
  position: relative;
}
.about__section .about__thumb.about__thumb-2 {
  clip-path: polygon(100% 0, 100% 82%, 80% 100%, 0 100%, 0 0);
}
.about__section .about__thumb .vector__shape {
  position: absolute;
  bottom: -68px;
  left: 40px;
}
@media (max-width: 767px) {
  .about__section .about__thumb .vector__shape {
    display: none;
  }
}
.about__section .about__thumb img {
  width: 100%;
  height: 100%;
}
.about__section .about__thumb .counter__wrap {
  position: absolute;
  bottom: -50px;
  left: 75px;
  right: 0;
}
@media (max-width: 767px) {
  .about__section .about__thumb .counter__wrap {
    left: 30px;
  }
}
@media (min-width: 768px) {
  .about__section .about__thumb .counter__wrap {
    bottom: 0;
  }
}
.about__section .about__thumb .counter__wrap .counter__wrap__item {
  gap: 2px;
}
@media (max-width: 575px) {
  .about__section .about__thumb .counter__wrap .counter__wrap__item {
    flex-wrap: wrap;
  }
}
.about__section .about__thumb .counter__wrap .counter__wrap__item .counter__items {
  width: 105px;
  background-color: var(--theme);
  padding: 17px 27px;
  text-align: center;
}
@media (min-width: 768px) {
  .about__section .about__thumb .counter__wrap .counter__wrap__item .counter__items {
    width: 122px;
  }
}
@media (min-width: 1400px) {
  .about__section .about__thumb .counter__wrap .counter__wrap__item .counter__items {
    width: 137px;
  }
}
.about__section .about__thumb .counter__wrap .counter__wrap__item .counter__items h2 {
  font-size: 36px;
  color: var(--white);
  text-align: center;
}
@media (min-width: 768px) {
  .about__section .about__thumb .counter__wrap .counter__wrap__item .counter__items h2 {
    font-size: 48px;
  }
}
@media (min-width: 1400px) {
  .about__section .about__thumb .counter__wrap .counter__wrap__item .counter__items h2 {
    font-size: 58px;
  }
}
.about__section .about__thumb .counter__wrap .counter__wrap__item .counter__content {
  background-color: var(--theme2);
  padding: 12px;
  clip-path: polygon(0 1%, 88% 0, 100% 20%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0% 20%);
}
@media (min-width: 768px) {
  .about__section .about__thumb .counter__wrap .counter__wrap__item .counter__content {
    padding: 19px;
  }
}
@media (min-width: 1400px) {
  .about__section .about__thumb .counter__wrap .counter__wrap__item .counter__content {
    padding: 22px;
  }
}
.about__section .about__thumb .counter__wrap .counter__wrap__item .counter__content h3 {
  font-size: 22px;
  color: var(--white);
}
@media (min-width: 1400px) {
  .about__section .about__thumb .counter__wrap .counter__wrap__item .counter__content h3 {
    font-size: 24px;
  }
}
.about__section .about__content p {
  color: var(--pra);
}
@media (max-width: 991px) {
  .about__section .about__content.about__content-2 {
    margin-top: 80px;
  }
}
.about__section .about__content .title__content {
  gap: 35px;
}
@media (max-width: 767px) {
  .about__section .about__content .title__content {
    flex-wrap: wrap;
  }
}
.about__section .about__content .title__content::before {
  position: absolute;
  bottom: -24px;
  left: 0;
  border: 1px solid var(--theme2);
  content: "";
  width: 110px;
}
.about__section .about__content .list__item .list__wrap {
  gap: 20px;
}
.about__section .about__content .list__item .list__wrap:not(:last-child) {
  margin-bottom: 10px;
}
.about__section .about__content .list__item .list__wrap .img {
  background: url(../img/about/box.png) no-repeat center center;
  background-size: cover;
  width: 36px;
  height: 37px;
  text-align: center;
  line-height: 34px;
}
.about__section .about__content .about-button .cmn--btn {
  padding: 12px 48px;
}
.about__section .progress__wrap {
  margin-bottom: 32px;
}
@media (max-width: 500px) {
  .about__section .progress__wrap {
    margin-bottom: 20px;
  }
}
.about__section .progress__wrap .pro__items {
  padding: 15px 24px 15px 0;
  width: 100%;
}
.about__section .progress__wrap .pro__items .pro__head {
  margin-bottom: 20px;
}
.about__section .progress__wrap .pro__items .pro__head .title {
  font-size: 16px;
  color: var(--theme);
  font-weight: 700;
}
@media (max-width: 500px) {
  .about__section .progress__wrap .pro__items {
    width: 100%;
    padding: 11px 24px 11px 0;
  }
  .about__section .progress__wrap .pro__items .pro__head {
    margin-bottom: 12px;
  }
}
.about__section .progress__wrap .pro__items .progress {
  border-radius: 0;
  height: 18px;
}
.about__section .progress__wrap .progress-bar {
  background: var(--theme2);
  color: #fefefe;
  position: relative;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  text-align: right;
  padding-right: 10px;
}
.about__section .progress__wrap .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme2);
  height: 15px;
  width: 0;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 68%;
  }
}

.about__two {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .about__two {
    padding: 100px 0;
  }
}
@media (min-width: 1200px) {
  .about__two {
    padding: 180px 0;
  }
}
.about__two .left__shape {
  left: -65px;
  bottom: -90px;
}
.about__two .logo__box {
  position: absolute;
  top: 60px;
  right: 38px;
}
@media (max-width: 450px) {
  .about__two .logo__box {
    display: none;
  }
}
@media (min-width: 470px) {
  .about__two .logo__box {
    top: 60px;
    right: 40px;
  }
}
@media (min-width: 500px) {
  .about__two .logo__box {
    top: 73px;
    right: 50px;
  }
}
@media (min-width: 576px) {
  .about__two .logo__box {
    top: 85px;
    right: 60px;
  }
}
@media (min-width: 768px) {
  .about__two .logo__box {
    top: 140px;
    right: 107px;
  }
}
@media (min-width: 992px) {
  .about__two .logo__box {
    top: 70px;
    right: 40px;
  }
}
@media (min-width: 1200px) {
  .about__two .logo__box {
    top: 90px;
    right: 65px;
  }
}
@media (min-width: 1400px) {
  .about__two .logo__box {
    top: 115px;
    right: 85px;
  }
}
.about__two .box__shape__two {
  position: absolute;
  top: 20px;
  right: 0;
  animation-duration: 2s;
  animation: scale 2s alternate infinite;
}
@media (max-width: 450px) {
  .about__two .box__shape__two {
    display: none;
  }
}
@media (min-width: 576px) {
  .about__two .box__shape__two {
    top: 30px;
    right: 25px;
  }
}
@media (min-width: 768px) {
  .about__two .box__shape__two {
    top: 85px;
    right: 20px;
  }
}
@media (min-width: 992px) {
  .about__two .box__shape__two {
    top: 30px;
  }
}
@media (min-width: 1400px) {
  .about__two .box__shape__two {
    top: 85px;
  }
}
.about__two .about__thumb .right__vector__two {
  position: absolute;
  left: 90px;
  bottom: 0;
}
@media (min-width: 450px) {
  .about__two .about__thumb .right__vector__two {
    left: 120px;
    bottom: 10px;
  }
}
@media (min-width: 500px) {
  .about__two .about__thumb .right__vector__two {
    left: 140px;
  }
}
@media (min-width: 500px) {
  .about__two .about__thumb .right__vector__two {
    left: 150px;
    bottom: 20px;
  }
}
.about__two .profile__item {
  gap: 8px;
}
.about__two .profile__item .profile {
  gap: 17px;
}

/* 7. Service */
.service__section {
  background: url(../img/service/service-bg.jpg) no-repeat center center;
  background-size: cover;
}
.service__section .right__shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .service__section .right__shape {
    display: none;
  }
}
.service__section .bottom__shape {
  position: absolute;
  bottom: -15px;
  right: 0;
}
.service__section .bottom__shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .service__section .bottom__shape {
    display: none;
  }
}
.service__section .top__shape {
  position: absolute;
  top: -60px;
  left: 0;
  animation-duration: 2s;
  animation: scale 2s alternate infinite;
}
.service__section .vector__shape {
  position: absolute;
  bottom: 70px;
  left: 14%;
}
@media (max-width: 1800px) {
  .service__section .vector__shape {
    left: 8%;
  }
}
@media (max-width: 1600px) {
  .service__section .vector__shape {
    left: 5%;
  }
}
@media (max-width: 767px) {
  .service__section .vector__shape {
    display: none;
  }
}
.service__section .service__wrapper .owl-nav {
  position: absolute;
  top: -50%;
  right: 0;
}
.service__section .service__wrapper .owl-nav button.owl-next {
  padding: 0;
  color: var(--white);
  background: transparent;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--white);
  transition: 0.3s;
}
.service__section .service__wrapper .owl-nav button.owl-next i {
  color: var(--white);
}
.service__section .service__wrapper .owl-nav button.owl-next:hover {
  border-color: var(--theme2);
}
.service__section .service__wrapper .owl-nav button.owl-next:hover i {
  color: var(--theme2);
}
.service__section .service__wrapper .owl-nav button.owl-prev {
  padding: 0;
  color: var(--white);
  background: transparent;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--white);
  transition: 0.3s;
}
.service__section .service__wrapper .owl-nav button.owl-prev i {
  color: var(--white);
}
.service__section .service__wrapper .owl-nav button.owl-prev:hover {
  border-color: var(--theme2);
}
.service__section .service__wrapper .owl-nav button.owl-prev:hover i {
  color: var(--theme2);
}
.service__section .service__items {
  padding: 30px;
}
.service__section .service__items.drop_shadow {
  filter: drop-shadow(0px 0px 30px rgba(0, 22, 89, 0.1));
}
.service__section .service__items .service__thumb {
  position: relative;
}
.service__section .service__items .service__thumb img {
  width: 100%;
  height: 100%;
}
.service__section .service__items .service__thumb::before {
  position: absolute;
  content: "";
  inset: 0; /* same as { top: 0; right: 0; bottom: 0; left: 0; } */
  background: linear-gradient(45deg, transparent 50%, var(--theme) 100%);
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}
.service__section .service__items .service__thumb::after {
  position: absolute;
  content: "";
  inset: 0; /* same as { top: 0; right: 0; bottom: 0; left: 0; } */
  background: linear-gradient(45deg, transparent 50%, var(--theme) 100%);
  z-index: 1;
}
.service__section .service__items .service__content h5 {
  margin-bottom: 15px;
}
.service__section .service__items .service__content h5 a {
  transition: all 0.3s ease-in-out;
}
.service__section .service__items .service__content h5 a:hover {
  color: var(--theme2);
}
.service__section .service__items .service__content p {
  color: var(--pra2);
}
.service__section .service__items .arrow__shape {
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.service__section .service__items:hover .service__thumb::before {
  opacity: 1;
  background: linear-gradient(45deg, transparent 0%, var(--theme) 100%);
}
.service__section .owl-carousel .owl-nav.disabled {
  display: block !important;
}
@media (max-width: 767px) {
  .service__section .owl-carousel .owl-nav.disabled {
    display: none !important;
  }
}
.service__section .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: none;
}

.service__background {
  background: #f2f1fc;
}
.service__background .right__shape {
  top: initial;
}

@keyframes scale {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.sevice__two {
  position: relative;
}
.sevice__two .service__two__wrap {
  padding: 25px 0;
}
@media (min-width: 768px) {
  .sevice__two .service__two__wrap {
    margin-top: -200px;
    padding: 30px 30px;
    background-color: var(--white);
  }
}
@media (min-width: 992px) {
  .sevice__two .service__two__wrap {
    margin-top: -250px;
  }
}
.sevice__two .service__two__wrap .service__two__items {
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb {
  position: relative;
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb img {
  width: 100%;
  height: 100%;
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--theme)));
  background: linear-gradient(to bottom, transparent 0%, var(--theme) 100%);
  content: "";
  z-index: 1;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
  height: 100%;
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb.service-thum-3::before {
  clip-path: polygon(100% 0, 100% 82%, 80% 100%, 0 100%, 0 0);
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 75px 65px;
  z-index: 99;
}
@media (max-width: 1399px) {
  .sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content {
    padding: 45px 35px;
  }
}
@media (max-width: 450px) {
  .sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content {
    padding: 20px 20px;
  }
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__item {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 400px) {
  .sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__item {
    margin-bottom: 20px;
  }
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__item::before {
  position: absolute;
  bottom: -15px;
  left: 0;
  content: "";
  height: 1px;
  width: 73px;
  background-color: var(--white);
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__item span {
  font-size: 90px;
  color: var(--white);
  font-weight: 700;
  line-height: 90px;
}
@media (max-width: 1399px) {
  .sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__item span {
    font-size: 73px;
  }
}
@media (max-width: 1199px) {
  .sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__item span {
    font-size: 62px;
  }
}
@media (max-width: 450px) {
  .sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__item span {
    font-size: 48px;
  }
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__style {
  display: flex;
  align-items: center;
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__style .span__two {
  font-size: 50px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__style .span__two {
    margin-top: 0;
    font-size: 36px;
  }
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .count__style .margin__top {
  margin-top: 0;
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .number {
  font-size: 90px;
  color: var(--white);
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .number span {
  font-size: 50px;
  margin-left: -15px;
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content .b__color::before {
  background-color: var(--theme2);
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content h5 {
  margin-bottom: 30px;
  color: var(--white);
}
.sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content p {
  color: var(--white);
}
@media (max-width: 1199px) {
  .sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content p {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .sevice__two .service__two__wrap .service__two__items .sevice__thumb .service__content p {
    font-size: 13px;
  }
}
.sevice__two .service__two__wrap .service__two__items:hover .sevice__thumb::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--theme2)));
  background: linear-gradient(to bottom, transparent 0%, var(--theme2) 100%);
  content: "";
  z-index: 1;
}

.service__three {
  background: url(../img/service/service-3.jpg) no-repeat center center;
  background-size: cover;
}
.service__three .section__title .sub {
  font-size: 45px;
}
@media (max-width: 450px) {
  .service__three .section__title .sub {
    font-size: 36px;
  }
}
.service__three .item__shape {
  position: absolute;
  top: 0;
  left: 0;
}
.service__three .item__shape img {
  width: 100%;
  height: 100%;
}
.service__three .service__three__items {
  position: relative;
  background-color: rgba(38, 54, 109, 0.6);
  padding: 120px 65px;
  clip-path: polygon(100% 0, 100% 43%, 100% 82%, 83% 100%, 0 100%, 0% 60%, 0 0);
}
@media (max-width: 1199px) {
  .service__three .service__three__items {
    padding: 100px 35px;
  }
}
.service__three .service__three__items .service__three__content {
  position: relative;
}
.service__three .service__three__items .service__three__content::before {
  position: absolute;
  bottom: -25px;
  left: 0;
  content: "";
  height: 1px;
  width: 48px;
  background-color: var(--white);
}
.service__three .service__three__items .service__three__content .count__item {
  margin-bottom: 10px;
}
.service__three .service__three__items .service__three__content .count__item span {
  color: var(--white);
  font-size: 85px;
  font-weight: 700;
  line-height: 85px;
}
.service__three .service__three__items .service__three__content h5 {
  color: var(--white);
  line-height: 30px;
}
.service__three .color__two {
  background-color: #cd5225;
}

.service__single .service__single__item {
  background-color: var(--white);
}
.service__single .service__single__item .service__thumb img {
  width: 100%;
  height: 100%;
}
.service__single .service__single__item .service__single__content {
  padding: 60px 50px;
}
@media (max-width: 767px) {
  .service__single .service__single__item .service__single__content {
    padding: 40px 30px;
  }
}
.service__single .service__single__item .service__single__content h2 {
  position: relative;
  margin-bottom: 80px;
}
.service__single .service__single__item .service__single__content h2::before {
  position: absolute;
  bottom: -40px;
  left: 0;
  content: "";
  width: 182px;
  height: 1px;
  background-color: var(--theme2);
}
.service__single .service__single__item .service__single__content .single__item {
  margin-top: 70px;
}
.service__single .service__single__item .service__single__content .single__item h4 {
  margin-bottom: 45px;
}
.service__single .service__single__item .service__single__content .single__item img {
  width: 100%;
  height: 100%;
}

.shape {
  width: 0;
  height: 0;
  border-bottom: 27px solid var(--theme2);
  border-left: 27px solid transparent;
}

/* 8. Feature */
.feature__section .left__shape {
  position: absolute;
  bottom: -60%;
  left: -20%;
}
@media (min-width: 1400px) {
  .feature__section .left__shape {
    left: -17%;
  }
}
@media (min-width: 1600px) {
  .feature__section .left__shape {
    left: -12%;
  }
}
@media (min-width: 1800px) {
  .feature__section .left__shape {
    left: 0;
  }
}
@media (max-width: 991px) {
  .feature__section .left__shape {
    display: none;
  }
}
.feature__section .left__shape img {
  width: 100%;
  height: 100%;
}
.feature__section .feature__wrapper {
  position: relative;
}
.feature__section .feature__wrapper .vector__shape {
  position: absolute;
  bottom: 40px;
  left: -131px;
}
@media (max-width: 991px) {
  .feature__section .feature__wrapper .vector__shape {
    display: none;
  }
}
.feature__section .section__title .sub {
  color: var(--theme);
}
.feature__section .main__video .video__thumb {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 1100px;
}
@media (max-width: 1800px) {
  .feature__section .main__video .video__thumb {
    width: 800px;
  }
}
@media (max-width: 1600px) {
  .feature__section .main__video .video__thumb {
    width: 850px;
    margin-top: 150px;
  }
}
@media (max-width: 1199px) {
  .feature__section .main__video .video__thumb {
    width: 600px;
  }
}
@media (max-width: 991px) {
  .feature__section .main__video .video__thumb {
    display: none;
  }
}
.feature__section .main__video .video__thumb img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1800px) {
  .feature__section .main__video .video__thumb img {
    object-fit: contain;
  }
}
.feature__section .main__video .video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.feature__section .main__video .video__icon::before {
  top: 44px;
  left: 44px;
  content: "";
  z-index: -1;
  height: 80px;
  width: 80px;
  background: var(--theme);
  position: absolute;
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}
@media (min-width: 1600px) {
  .feature__section .main__video .video__icon::before {
    top: 55px;
    left: 55px;
    height: 95px;
    width: 95px;
  }
}
.feature__section .main__video .video__icon a {
  display: inline-block;
}
.feature__section .main__video .video__icon a span {
  height: 90px;
  width: 90px;
  background: linear-gradient(-51deg, #ff8a54, #feaf38);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  position: relative;
}
@media (min-width: 1600px) {
  .feature__section .main__video .video__icon a span {
    height: 110px;
    width: 110px;
  }
}
.feature__section .main__video .video__icon a span::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(-51deg, #feaf38, #ff8a54);
  border-radius: 100%;
  opacity: 0;
  transition: 0.3s;
}
.feature__section .main__video .video__icon a span:hover::after {
  opacity: 1;
}
.feature__section .main__video .video__icon a span i {
  color: var(--body);
  font-size: 30px;
  z-index: 999999;
}
@media (min-width: 1600px) {
  .feature__section .main__video .video__icon a span i {
    font-size: 40px;
  }
}
.feature__section .feature__box {
  gap: 25px;
}
.feature__section .feature__box .title__cont {
  position: relative;
}
.feature__section .feature__box .title__cont span {
  color: var(--theme2);
}
.feature__section .feature__box .title__cont::before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 1px;
  content: "";
  background-color: var(--theme2);
}

.feature__two .feature__items__two {
  position: relative;
}
.feature__two .feature__items__two .feature__number {
  font-size: 90px;
  color: var(--theme2);
  line-height: 0px;
  position: absolute;
  top: 0;
  left: 60px;
}
@media (max-width: 991px) {
  .feature__two .feature__items__two .feature__number {
    font-size: 72px;
  }
}
@media (max-width: 767px) {
  .feature__two .feature__items__two .feature__number {
    font-size: 62px;
  }
}
@media (max-width: 575px) {
  .feature__two .feature__items__two .feature__number {
    font-size: 52px;
  }
}
.feature__two .feature__items__two .feature__wrap {
  padding: 75px 75px;
  box-shadow: 0px 3px 29px 0px rgba(0, 22, 89, 0.14);
  position: relative;
}
@media (max-width: 1199px) {
  .feature__two .feature__items__two .feature__wrap {
    padding: 70px 40px;
  }
}
.feature__two .feature__items__two .feature__wrap .content h5 {
  margin-bottom: 20px;
}
.feature__two .feature__items__two .feature__wrap .content p {
  position: relative;
}
.feature__two .feature__items__two .feature__wrap .content p::before {
  position: absolute;
  bottom: -30px;
  content: "";
  height: 1px;
  width: 155px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme2);
}

.icon__item .icon__wrap {
  gap: 45px;
}
@media (max-width: 767px) {
  .icon__item .icon__wrap {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.icon__item .icon__wrap:not(:last-child) {
  margin-bottom: 40px;
}
.icon__item .icon__wrap .icon__wrap_item {
  height: 80px;
  width: 80px;
  filter: drop-shadow(0px 0px 10px rgba(0, 22, 89, 0.2));
  position: relative;
}
.icon__item .icon__wrap .icon__wrap_item::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: -2px;
  transform: rotate(-45deg);
  border: thin solid var(--theme2);
  width: 23px;
}
.icon__item .icon__wrap .icon__wrap_item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 1px solid var(--theme2);
  text-align: center;
  padding: 0 20px;
  position: relative;
  background: white;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 78%, 78% 100%, 0 100%, 0% 0%, 0% 20%);
}
.icon__item .icon__wrap .icon__wrap_item .icon i {
  font-size: 38px;
  color: var(--theme2);
}
.icon__item .icon__wrap .content h5 {
  margin-bottom: 20px;
}

/* 9. Gallery */
.gallery__section {
  background: url(../img/gallery/gallery-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.gallery__section .left__shape {
  position: absolute;
  bottom: 65px;
  right: 0;
  height: 100%;
}
@media (max-width: 1199px) {
  .gallery__section .left__shape {
    display: none;
  }
}
@media (max-width: 1440px) {
  .gallery__section .left__shape {
    bottom: -23px;
    height: inherit;
    width: 140px;
    overflow: hidden;
  }
}
.gallery__section .vector__shape {
  position: absolute;
  bottom: -10px;
  left: 12%;
}
.gallery__section .gallery__wrapper {
  background: url(../img/gallery/gallery-bg.png) no-repeat center center;
  background-size: cover;
  position: relative;
}
.gallery__section .gallery__wrapper .section__title {
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .gallery__section .gallery__wrapper .section__title {
    flex-wrap: wrap;
    gap: 60px;
  }
}
.gallery__section .gallery__wrapper .section__title .title__button .cmn--btn {
  background-color: #455788;
}
.gallery__section .gallery__wrapper .gallery__thumb img {
  width: 100%;
  height: 100%;
}
.gallery__section .gallery__wrapper .gallery__thumb .gallery__effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 94, 20, 0.6);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.gallery__section .gallery__wrapper .gallery__thumb .gallery__effect .icon {
  width: 150px;
  text-align: center;
  margin: 49% auto;
  transform: translateY(-50%);
  transition: 0.3s;
}
.gallery__section .gallery__wrapper .gallery__thumb .gallery__effect .icon img {
  width: 100%;
  height: 100%;
}
.gallery__section .gallery__wrapper .gallery__thumb:hover .gallery__effect {
  opacity: 1;
}
.gallery__section .gallery__wrapper .gallery__thumb:hover .gallery__effect .icon {
  width: 90px;
}
.gallery__section .gallery__items {
  background-color: var(--white);
  padding: 30px 30px;
  box-shadow: 0px 3px 51px 0px rgba(0, 22, 89, 0.11);
  position: relative;
  bottom: -30px;
}
.gallery__section .gallery-pagination {
  display: flex;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .gallery__section .gallery-pagination {
    display: none;
  }
}
.gallery__section .gallery-pagination .swiper-pagination-bullet {
  width: 33.33%;
  height: 24px;
  border-radius: 0;
  transition: 0.6s;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.gallery__section .gallery-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme2);
}
.gallery__section .gallery__pagination__wrapper {
  position: absolute;
  z-index: 2;
  top: 47.2%;
  left: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .gallery__section .gallery__pagination__wrapper {
    top: 51.3%;
  }
}
@media (min-width: 1200px) {
  .gallery__section .gallery__pagination__wrapper {
    top: 51%;
  }
}
@media (min-width: 1400px) {
  .gallery__section .gallery__pagination__wrapper {
    top: 47.3%;
  }
}

/* 10. Testimonial */
.testimonial__section {
  background: url(../img/testimonial/testi-bg-2.png) no-repeat center center;
  background-size: cover;
}
.testimonial__section .right__shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 1600px) {
  .testimonial__section .right__shape {
    right: 0;
  }
}
@media (min-width: 1800px) {
  .testimonial__section .right__shape {
    right: 100px;
  }
}
.testimonial__section .right__shape img {
  width: 95%;
  height: 100%;
  float: right;
}
@media (max-width: 1440px) {
  .testimonial__section .right__shape img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .testimonial__section .right__shape {
    display: none;
  }
}
.testimonial__section .section__title .sub {
  color: var(--theme);
}
.testimonial__section .section__title .sub::before {
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonial__section .testi__wrapper .testi-single {
  filter: drop-shadow(6px 6px 7px rgba(0, 22, 89, 0.1));
  padding-bottom: 20px;
}
.testimonial__section .testi__wrapper .testi-single .testi__items {
  clip-path: polygon(100% 0, 100% 80%, 82% 100%, 0 100%, 0 0);
  padding-top: 20px;
}
.testimonial__section .testi__wrapper .testi-single .testi__items .testi__inner {
  background-color: var(--white);
  position: relative;
  padding: 30px;
}
@media (min-width: 450px) {
  .testimonial__section .testi__wrapper .testi-single .testi__items .testi__inner {
    padding: 60px;
  }
}
@media (min-width: 768px) {
  .testimonial__section .testi__wrapper .testi-single .testi__items .testi__inner {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .testimonial__section .testi__wrapper .testi-single .testi__items .testi__inner {
    padding: 60px;
  }
}
.testimonial__section .testi__wrapper .testi-single .testi__items .testi__inner p {
  font-size: 19px;
}
.testimonial__section .testi__wrapper .testi-single .testi__items::before {
  position: absolute;
  top: 0;
  left: 25px;
  width: 88%;
  height: 100%;
  content: "";
  background-color: #f6f8f9;
}
.testimonial__section .testi__wrapper .testi-single .testi__items .testi__icon i {
  font-size: 40px;
  color: var(--theme2);
}
.testimonial__section .testi__wrapper .testi-single .testi__items .testi__wrap {
  gap: 18px;
}
.testimonial__section .testi__wrapper .testi-single .testi__items .testi__wrap .testi__thumb {
  border-left: 5px solid var(--theme2);
}
.testimonial__section .testi__wrapper .testi-single .testi__items .testi__wrap .testi__content {
  position: relative;
  margin-top: 20px;
}
.testimonial__section .testi__wrapper .testi-single .testi__items .testi__wrap .testi__content::before {
  position: absolute;
  top: -10px;
  left: 0;
  content: "";
  width: 45px;
  height: 1px;
  background-color: #d9dce4;
}
.testimonial__section .testi__wrapper .testi-single .testi__items .testi__wrap .testi__content p {
  font-size: 15px;
  line-height: 16px;
  color: var(--pra2);
}
@media (max-width: 575px) {
  .testimonial__section .testi__wrapper .testi-single .testi__items .testi__wrap .testi__content p {
    font-size: 12px;
  }
}
@media (max-width: 1399px) {
  .testimonial__section .testi__wrapper .owl-dots {
    display: none;
  }
}

.testi__style__two {
  background: url(../img/testimonial/bg.jpg) no-repeat center center;
  background-size: cover;
}
.testi__style__two::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(9, 7, 58);
  opacity: 0.859;
}
.testi__style__two .right__shape {
  position: absolute;
  right: -88px;
  top: -250px;
}
.testi__style__two .section__title {
  position: relative;
}
.testi__style__two .section__title .sub {
  color: var(--white);
}
.testi__style__two .section__title .sub::before {
  left: initial;
  transform: initial;
  width: 110px;
}
.testi__style__two .testi__item .testi__content h5 {
  color: var(--white);
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 40px;
}
.testi__style__two .testi__item .testi__content h5 span {
  color: var(--theme2);
}
@media (max-width: 1199px) {
  .testi__style__two .testi__item .testi__content h5 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .testi__style__two .testi__item .testi__content h5 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .testi__style__two .testi__item .testi__content h5 {
    font-size: 14px;
  }
}
.testi__style__two .testi__item .testi__content ul li {
  color: #ffbf00;
}
.testi__style__two .testi__thumb img {
  width: 100%;
  height: 100%;
}
.testi__style__two .testi__dot__wrp .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  transition: 0.6s;
  border: 1px solid var(--white);
  background-color: transparent;
  opacity: 1;
}
.testi__style__two .testi__dot__wrp .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme2);
  border: 1px solid var(--theme2);
  transition: 0.6s;
}

/* 11. Client */
.client__section {
  background: url(../img/client/client.jpg) no-repeat center center;
  background-size: cover;
}
.client__section .grad__shape__three {
  position: absolute;
  right: 0;
  bottom: -15px;
}
.client__section .grad__shape__three img {
  width: 100%;
  height: 100%;
}
.client__section .client__wrapper .client__thumb {
  width: 88px;
  text-align: center;
  margin: 0 auto;
}
.client__section .client__wrapper .client__thumb img {
  width: 100%;
  height: 100%;
  filter: invert(100%) sepia(13%) saturate(7440%) hue-rotate(215deg) brightness(113%) contrast(115%);
}
@media (max-width: 1199px) {
  .client__section .client__wrapper .owl-dots {
    display: none;
  }
}

/* 12. Project */
.project__section {
  background: url(../img/project/bg.png) no-repeat center center;
  background-size: cover;
  background-position: center bottom;
}
.project__section .right__shape {
  position: absolute;
  top: 0;
  right: 0px;
  bottom: -100px;
  z-index: 1;
}
.project__section .right__shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .project__section .right__shape {
    display: none;
  }
}
.project__section .project__wrapper {
  background: #fff;
  padding: 10px;
  padding-bottom: 1px;
}
.project__section .project__wrapper .owl-nav button {
  background: #252837;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}
.project__section .project__wrapper .owl-nav button i {
  color: var(--white);
}
@media (min-width: 1400px) {
  .project__section .project__wrapper .owl-nav button {
    left: -55px;
  }
}
@media (min-width: 1600px) {
  .project__section .project__wrapper .owl-nav button {
    left: -70px;
  }
}
.project__section .project__wrapper .owl-nav button.owl-next {
  right: -30px;
  left: auto;
}
@media (min-width: 1400px) {
  .project__section .project__wrapper .owl-nav button.owl-next {
    right: -55px;
  }
}
@media (min-width: 1600px) {
  .project__section .project__wrapper .owl-nav button.owl-next {
    right: -70px;
  }
}
.project__section .project__items .project__thumb {
  position: relative;
}
.project__section .project__items .project__thumb img {
  width: 100%;
  height: 100%;
}
.project__section .project__items .project__thumb::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--theme)));
  background: linear-gradient(to bottom, transparent 0%, var(--theme) 100%);
  content: "";
  z-index: 1;
  transition: all 0.4s ease-in-out !important;
  height: 365px;
}
.project__section .project__items .project__thumb .content {
  position: absolute;
  bottom: 35px;
  left: 30px;
  color: var(--white);
  z-index: 99;
}
.project__section .project__items:hover .project__thumb::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--theme2)));
  background: linear-gradient(to bottom, transparent 0%, var(--theme2) 100%);
  content: "";
  z-index: 1;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
  height: 365px;
}
.project__section .owl-carousel .owl-nav.disabled {
  display: block !important;
}
@media (max-width: 991px) {
  .project__section .owl-carousel .owl-nav.disabled {
    display: none !important;
  }
}
.project__section .owl-theme .owl-dots .owl-dot {
  zoom: 1;
  display: none;
}

/* 13. Connect */
.connect__section .laft__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1200px) {
  .connect__section .section__title .section__wrap {
    flex-wrap: wrap;
  }
}
.connect__section .section__title .section__wrap .sub {
  color: var(--theme);
  position: relative;
}
@media (max-width: 1399px) {
  .connect__section .section__title .section__wrap .sub::after {
    display: none;
  }
}
@media (max-width: 1200px) {
  .connect__section .section__title .section__wrap .sub {
    margin-bottom: 50px;
  }
}
.connect__section .section__title .section__wrap .sub::before {
  bottom: -27px;
}
.connect__section .section__title .section__wrap .sub::after {
  position: absolute;
  top: 20px;
  right: -20px;
  height: 73px;
  width: 1px;
  content: "";
  background-color: #d9dce4;
}
.connect__section .section__title .section__wrap .cont {
  max-width: 600px;
}
.connect__section .section__title h6 {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.connect__section .section__title h6 span {
  color: #1cb0eb;
  font-size: 33px;
}
.connect__section .map__thumb {
  z-index: 99;
}
.connect__section .map__thumb img {
  width: 100%;
  height: 100%;
}
.connect__section .faq-left-wrapper .accordion-item {
  border: none;
  border-radius: 5px;
  overflow: hidden;
  padding: 2px 2px;
}
.connect__section .faq-left-wrapper .accordion-item:not(:last-child) {
  margin-bottom: 15px;
}
.connect__section .faq-left-wrapper .accordion-item .accordion-button {
  color: var(--theme);
  font-size: 19px;
  font-weight: 600;
  gap: 30px;
  border-bottom: 1px solid #d9dce4;
}
@media (max-width: 767px) {
  .connect__section .faq-left-wrapper .accordion-item .accordion-button {
    font-size: 16px;
    gap: 10px;
  }
}
.connect__section .faq-left-wrapper .accordion-body {
  padding: 15px 20px 20px;
}
.connect__section .faq-left-wrapper .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
}
.connect__section .faq-left-wrapper .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url(../img/pricing/down.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
.connect__section .faq-left-wrapper .accordion-button:focus {
  z-index: 3;
  border-color: #d9dce4;
  outline: 0;
  box-shadow: none !important;
}

/* 14. Team */
.team__section {
  position: relative;
}
.team__section .left__shape {
  position: absolute;
  top: -8px;
  left: 0;
  z-index: -9;
}
.team__section .left__shape img {
  width: 100%;
  height: 100%;
}
.team__section .g-5, .team__section .gx-5 {
  --bs-gutter-x: 3rem;
}
@media (max-width: 575px) {
  .team__section .g-5, .team__section .gx-5 {
    --bs-gutter-x: 0;
  }
}
.team__section .vector__shape {
  position: absolute;
  top: 30%;
  left: -55px;
}
@media (min-width: 1400px) {
  .team__section .vector__shape {
    left: -3%;
  }
}
@media (min-width: 1600px) {
  .team__section .vector__shape {
    left: 0;
  }
}
@media (min-width: 1800px) {
  .team__section .vector__shape {
    top: 32%;
    left: 8%;
  }
}
.team__section .section__title .sub {
  color: var(--theme);
}
.team__section .team__items .team__thumb {
  position: relative;
}
.team__section .team__items .team__thumb img {
  width: 100%;
  height: 100%;
}
.team__section .team__items .team__thumb .team__content {
  position: absolute;
  bottom: -33px;
  left: 45px;
  right: 0;
  overflow: hidden;
  z-index: 99;
  filter: drop-shadow(6px 6px 7px rgba(0, 22, 89, 0.1));
}
.team__section .team__items .team__thumb .team__content .team-name {
  background-color: var(--white);
  padding: 35px;
  clip-path: polygon(0 0, 100% 1%, 100% 75%, 91% 100%, 0 100%, 0% 50%);
}
.team__section .team__items .team__thumb .team__content p {
  color: var(--pra2);
}
@media (max-width: 991px) {
  .team__section .team__items .team__thumb .team__content {
    clip-path: initial;
  }
}
.team__section .team__items .team__thumb .team__social {
  text-align: center;
  transition: all 0.3s ease 0s;
  position: absolute;
  bottom: 18%;
  left: 45px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: var(--theme2);
  z-index: 999;
}
@media (min-width: 450px) {
  .team__section .team__items .team__thumb .team__social {
    bottom: 14%;
  }
}
@media (min-width: 576px) {
  .team__section .team__items .team__thumb .team__social {
    bottom: 15%;
  }
}
@media (min-width: 768px) {
  .team__section .team__items .team__thumb .team__social {
    bottom: 24%;
  }
}
@media (min-width: 992px) {
  .team__section .team__items .team__thumb .team__social {
    bottom: 25%;
  }
}
@media (min-width: 1200px) {
  .team__section .team__items .team__thumb .team__social {
    bottom: 21%;
  }
}
@media (min-width: 1400px) {
  .team__section .team__items .team__thumb .team__social {
    bottom: 18%;
  }
}
.team__section .team__items .team__thumb .team__social .share__alt i {
  color: var(--white);
  font-size: 16px;
}
.team__section .team__items .team__thumb .team__social li {
  display: list-item;
  margin: 0;
  cursor: pointer;
}
.team__section .team__items .team__thumb .team__social li a {
  color: var(--white);
  display: inline-block;
  text-align: center;
  font-size: 16px;
  position: relative;
  z-index: 999;
  width: 45px;
  height: 45px;
  line-height: 45px;
  transition: all 0.3s ease-in-out;
}
.team__section .team__items .team__thumb .team__social li a:hover {
  background-color: var(--theme2);
}
.team__section .team__items .team__thumb .team__social li a i {
  font-size: 16px;
}
.team__section .team__items .team__thumb .team__social ul {
  opacity: 0;
  position: absolute;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  left: 45px;
  bottom: 0;
  background-color: var(--theme);
  z-index: 999;
  display: flex;
  align-items: center;
}
.team__section .team__items .team__thumb:hover .team__social ul {
  opacity: 1;
  margin-top: 0;
}

/* 15. Blog */
.blog__section {
  background-color: #f2f1fc;
}
.blog__section .grad__shape {
  position: absolute;
  bottom: -15px;
  right: 0;
}
.blog__section .grad__shape img {
  width: 100%;
  height: 100%;
}
.blog__section .left__shape {
  position: absolute;
  top: -49%;
  left: -20%;
}
@media (max-width: 991px) {
  .blog__section .left__shape {
    display: none;
  }
}
@media (min-width: 1200px) {
  .blog__section .left__shape {
    top: -44%;
    left: -17%;
  }
}
@media (min-width: 1400px) {
  .blog__section .left__shape {
    top: -42%;
    left: -14%;
  }
}
@media (min-width: 1600px) {
  .blog__section .left__shape {
    left: -7%;
  }
}
@media (min-width: 1800px) {
  .blog__section .left__shape {
    left: 0;
    top: -45%;
  }
}
.blog__section .left__shape img {
  width: 100%;
  height: 100%;
}
.blog__section .left__shape_3 {
  position: absolute;
  top: -58%;
  left: -20%;
}
@media (max-width: 991px) {
  .blog__section .left__shape_3 {
    display: none;
  }
}
@media (min-width: 1200px) {
  .blog__section .left__shape_3 {
    top: -53%;
    left: -17%;
  }
}
@media (min-width: 1400px) {
  .blog__section .left__shape_3 {
    top: -51%;
    left: -14%;
  }
}
@media (min-width: 1600px) {
  .blog__section .left__shape_3 {
    left: -7%;
  }
}
@media (min-width: 1800px) {
  .blog__section .left__shape_3 {
    left: 0;
    top: -54%;
  }
}
.blog__section .left__shape_3 img {
  width: 100%;
  height: 100%;
}
.blog__section .right__shape {
  position: absolute;
  bottom: 153px;
  right: 80px;
}
@media (max-width: 1600px) {
  .blog__section .right__shape {
    bottom: 60px;
    right: 3px;
  }
}
@media (max-width: 1199px) {
  .blog__section .right__shape {
    display: none;
  }
}
.blog__section .left__shape__two {
  position: absolute;
  left: 10%;
  top: 25%;
}
.blog__section .bottom__shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
.blog__section .bottom__shape img {
  width: 100%;
  height: 100%;
}
.blog__section .section__title .sub {
  color: var(--theme);
}
.blog__section .blog__items {
  z-index: 99;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 79%, 79% 100%, 0 100%, 0% 80%, 0% 20%);
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .blog__section .blog__items {
    clip-path: initial;
  }
}
.blog__section .blog__items .blog__thumb img {
  width: 100%;
  height: 100%;
}
.blog__section .blog__items .blog__content {
  padding: 40px 50px;
  background-color: var(--white);
  margin: -150px auto 0;
  z-index: 1;
  position: relative;
  width: calc(100% - 100px);
  filter: drop-shadow(0px 0px 20px rgba(0, 22, 89, 0.1));
}
@media (max-width: 767px) {
  .blog__section .blog__items .blog__content {
    margin: 0 auto;
    width: initial;
    padding: 40px 40px;
  }
}
.blog__section .blog__items .blog__content .date {
  position: absolute;
  top: -83px;
  left: 50px;
  filter: drop-shadow(0px 0px 20px rgba(255, 94, 20, 0.5));
}
@media (max-width: 575px) {
  .blog__section .blog__items .blog__content .date {
    top: -70px;
  }
}
.blog__section .blog__items .blog__content .date .box {
  width: 100px;
  height: 100px;
  background-color: var(--theme2);
  text-align: center;
  padding: 10px 0;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 75%, 75% 100%, 0 100%, 0% 80%, 0% 20%);
}
@media (max-width: 575px) {
  .blog__section .blog__items .blog__content .date .box {
    width: 85px;
    height: 85px;
  }
}
.blog__section .blog__items .blog__content .date .box h2 {
  color: var(--white);
}
.blog__section .blog__items .blog__content .date .box p {
  color: var(--white);
  font-weight: 400;
  line-height: 0;
  margin-top: 5px;
}
.blog__section .blog__items .blog__content::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
  height: 135px;
  background-color: var(--theme2);
}
.blog__section .blog__items .blog__content h3 {
  margin-bottom: 20px;
}
.blog__section .blog__items .blog__content h3 a {
  transition: all 0.3s ease-in-out;
}
.blog__section .blog__items .blog__content h3 a:hover {
  color: var(--theme2);
}
.blog__section .blog__items .blog__content .cmn__btn2 {
  position: relative;
}
.blog__section .blog__items .blog__content .cmn__btn2::before {
  position: absolute;
  top: -13px;
  left: 0;
  content: "";
  width: 45px;
  height: 1px;
  background-color: var(--theme2);
}
.blog__section .blog__items .blog__content .cmn__btn2 a {
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.blog__section .blog__items .blog__content .cmn__btn2 a:hover {
  color: var(--theme2);
}

.blog__two .left__shape {
  top: -17%;
  left: -14%;
}
@media (min-width: 1200px) {
  .blog__two .left__shape {
    top: -16%;
    left: -12%;
  }
}
@media (min-width: 1600px) {
  .blog__two .left__shape {
    left: -6%;
  }
}
@media (min-width: 1800px) {
  .blog__two .left__shape {
    left: 0;
  }
}
.blog__two .left__shape_2 {
  position: absolute;
  top: -22%;
  left: -15%;
}
@media (min-width: 1200px) {
  .blog__two .left__shape_2 {
    top: -20%;
    left: -13%;
  }
}
@media (min-width: 1400px) {
  .blog__two .left__shape_2 {
    top: -19%;
    left: -12%;
  }
}
@media (min-width: 1600px) {
  .blog__two .left__shape_2 {
    left: -6%;
  }
}
@media (min-width: 1800px) {
  .blog__two .left__shape_2 {
    top: -20%;
    left: 0;
  }
}
.blog__two .left__shape_3 {
  position: absolute;
  top: -20%;
  left: -14%;
}
@media (min-width: 1200px) {
  .blog__two .left__shape_3 {
    top: -19%;
    left: -12%;
  }
}
@media (min-width: 1400px) {
  .blog__two .left__shape_3 {
    top: -18%;
  }
}
@media (min-width: 1600px) {
  .blog__two .left__shape_3 {
    left: -6%;
  }
}
@media (min-width: 1800px) {
  .blog__two .left__shape_3 {
    top: -18%;
    left: 0;
  }
}

.default__pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.default__pagination li {
  width: 35px;
  height: 35px;
  border: 2px solid #a9afcb;
  line-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  cursor: pointer;
  font-weight: 500;
  position: relative;
}
.default__pagination li::before {
  content: "";
  position: absolute;
  bottom: -9px;
  right: -8px;
  margin-left: 0px;
  border-width: 6px;
  border-style: solid;
  border-color: #f2f1fc transparent transparent transparent;
  transform: rotate(-43deg);
}
.default__pagination li::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: -2px;
  transform: rotate(-46deg);
  border: 1px solid #a9afcb;
  width: 9px;
  transition: all 0.4s;
}
.default__pagination li a {
  transition: all 0.4s;
  color: var(--theme);
  display: inline-block;
}
.default__pagination li:hover {
  background-color: var(--theme2);
  border-color: transparent;
}
.default__pagination li:hover a {
  color: var(--white);
}
.default__pagination li:hover::after {
  border-color: transparent;
}

.blog__single .blog__thumb img {
  width: 100%;
  height: 100%;
}
.blog__single .blog__single__content {
  background-color: var(--white);
  padding: 30px 50px;
}
.blog__single .blog__single__content .title__cont {
  gap: 20px;
  border-bottom: 1px solid #d9dce4;
  padding: 0 0 23px;
}
.blog__single .blog__single__content .title__cont h6 {
  font-family: "Open Sans", sans-serif;
}
.blog__single .blog__single__content .title__cont span {
  color: #565969;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
.blog__single .blog__single__content .title__cont span i {
  color: var(--theme2);
  margin-right: 10px;
  font-size: 16px;
}
.blog__single .blog__single__content .cont__item {
  padding: 30px 0;
  gap: 30px;
}
@media (max-width: 991px) {
  .blog__single .blog__single__content .cont__item {
    flex-wrap: wrap;
  }
}
.blog__single .blog__single__content .cont__item .titles {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--theme2);
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 86%, 90% 100%, 0 99%, 0% 80%, 0% 20%);
  padding: 0 20px 0;
}
.blog__single .blog__single__content .cont__item .titles h2 {
  font-size: 58px;
  color: var(--white);
}
.blog__single .blog__single__content .pra__text {
  border-bottom: 1px solid #d9dce4;
}
.blog__single .blog__single__content .tag {
  gap: 10px;
  border-top: 1px;
}
.blog__single .blog__single__content .tag h6 {
  font-size: 14px;
  font-weight: 600;
}
.blog__single .blog__single__content .tag a {
  border: 2px solid #d9dce4;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--theme);
  font-family: "Poppins", sans-serif;
  display: inline-block;
  position: relative;
}
.blog__single .blog__single__content .tag a::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -3px;
  margin-left: 0px;
  border-width: 14px;
  border-style: solid;
  border-color: white transparent transparent transparent;
  transform: rotate(-271deg);
}
.blog__single .blog__single__content .tag a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: -3px;
  transform: rotate(-46deg);
  border: 1px solid #d9dce4;
  width: 12px;
}
.blog__single .blog__profile {
  padding: 30px 25px;
  gap: 30px;
  border-bottom: 2px solid var(--theme2);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 95% 100%, 0 100%, 0% 60%, 0 21%);
}
@media (max-width: 575px) {
  .blog__single .blog__profile {
    flex-wrap: wrap;
  }
}
.blog__single .blog__profile .profile__content p {
  font-size: 15px;
}
.blog__single .comments__wrap .comments__items {
  gap: 40px;
  border-bottom: 1px solid #d9dce4;
  padding: 45px 0;
}
@media (max-width: 575px) {
  .blog__single .comments__wrap .comments__items {
    flex-wrap: wrap;
  }
}
.blog__single .comments__wrap .comments__items .reply {
  position: absolute;
  right: 0;
  top: 186px;
  font-size: 13px;
  font-weight: 500;
  color: var(--theme);
}
@media (min-width: 576px) {
  .blog__single .comments__wrap .comments__items .reply {
    top: 50px;
  }
}
.blog__single .comments__wrap .comments__items .reply i {
  font-size: 13px;
  color: var(--theme2);
  margin-right: 4px;
}
.blog__single .comments__wrap .comments__items .comments__content p {
  font-size: 15px;
}
@media (max-width: 767px) {
  .blog__single .comments__wrap .comments__items .comments__content p br {
    display: none;
  }
}
@media (min-width: 992px) {
  .blog__single .comments__wrap .comments__items .comments__content p br {
    display: none;
  }
}
@media (min-width: 1200px) {
  .blog__single .comments__wrap .comments__items .comments__content p br {
    display: block;
  }
}
.blog__single .comments__wrap .comments__items .comments__content .head__wrap {
  margin-bottom: 15px;
}
.blog__single .comments__wrap .comments__items .comments__content .head__wrap h5 {
  font-size: 20px;
}
.blog__single .comments__wrap .comments__items .comments__content .head__wrap h5 span {
  font-size: 13px;
  margin-left: 14px;
  color: var(--theme2);
  text-transform: capitalize;
}
.blog__single .comt__title {
  position: relative;
  margin-bottom: 110px;
}
.blog__single .comt__title::before {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 182px;
  height: 1px;
  content: "";
  background-color: var(--theme2);
}
.blog__single .contact__right .form__clt_2 input {
  width: 100%;
  outline: none;
  border: none;
  padding: 20px 0;
  background: transparent;
  color: var(--pra2);
  border-bottom: 1px solid #d9dce4;
  font-size: 16px;
}
@media (max-width: 1199px) {
  .blog__single .contact__right .form__clt_2 input {
    font-size: 14px;
  }
}
.blog__single .contact__right .form__clt_2 input:focus {
  border-color: var(--theme2);
}
.blog__single .contact__right .form__clt__big_2 textarea {
  padding: 20px 0 70px;
  width: 100%;
  outline: none;
  border: none;
  color: var(--pra2);
  border-bottom: 1px solid #d9dce4;
  background-color: transparent;
}
@media (max-width: 1199px) {
  .blog__single .contact__right .form__clt__big_2 textarea {
    font-size: 14px;
  }
}
.blog__single .contact__right .form__clt__big_2 textarea:focus {
  border-color: var(--theme2);
}

.sidebar__right .sidebar__items {
  padding: 40px 40px;
  filter: drop-shadow(0px 0px 40px rgba(0, 22, 89, 0.1));
}
.sidebar__right .sidebar__items .shape {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.sidebar__right .sidebar__items .widget__tittle {
  position: relative;
  margin-bottom: 40px;
}
.sidebar__right .sidebar__items .widget__tittle::before {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 48px;
  height: 1px;
  content: "";
  background-color: var(--theme2);
}
.sidebar__right .sidebar__items .sidebar__widget .recent__wrap {
  gap: 25px;
}
.sidebar__right .sidebar__items .sidebar__widget .recent__wrap:last-child {
  margin-bottom: 12px;
}
.sidebar__right .sidebar__items .sidebar__widget .recent__wrap .recent__content h6 {
  line-height: 160%;
}
.sidebar__right .sidebar__items .sidebar__widget .recent__wrap .recent__content h6 a {
  transition: all 0.3s ease-in-out;
}
.sidebar__right .sidebar__items .sidebar__widget .recent__wrap .recent__content h6 a:hover {
  color: var(--theme2);
}
.sidebar__right .sidebar__items .sidebar__widget .category__list li {
  padding: 18px 0;
}
.sidebar__right .sidebar__items .sidebar__widget .category__list li:not(:last-child) {
  border-bottom: 1px solid #edeff2;
}
.sidebar__right .sidebar__items .sidebar__widget .category__list li a {
  transition: all 0.3s ease-in-out;
  color: var(--theme);
  font-size: 15px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.sidebar__right .sidebar__items .sidebar__widget .category__list li a i {
  color: var(--theme2);
  margin-right: 4px;
  font-size: 14px;
}
.sidebar__right .sidebar__items .sidebar__widget .category__list li a:hover {
  color: var(--theme2);
}
.sidebar__right .sidebar__items .sidebar__widget .tag__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.sidebar__right .sidebar__items .sidebar__widget .tag__list li {
  margin: 0 8px 8px 0;
}
.sidebar__right .sidebar__items .sidebar__widget .tag__list li a {
  font-size: 14px;
  display: inline-block;
  padding: 5px 18px;
  color: var(--theme);
  border: 1px solid #edeff2;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}
.sidebar__right .sidebar__items .sidebar__widget .tag__list li a:hover {
  background-color: var(--theme2);
  color: var(--white);
}
.sidebar__right .sidebar__items .sidebar__widget .side__icon {
  gap: 10px;
  border-bottom: 1px solid #edeff2;
  padding: 0 0 20px;
}
.sidebar__right .sidebar__items .sidebar__widget .side__icon .content {
  font-size: 13px;
}
.sidebar__right .sidebar__items .sidebar__widget .side__icon .content a {
  color: var(--theme);
  transition: all 0.3s ease-in-out;
}
.sidebar__right .sidebar__items .sidebar__widget .side__icon .content a:hover {
  color: var(--theme2);
}

.breadcumd__banner .shadow-png {
  position: absolute;
  top: -85%;
  right: -11%;
}
@media (min-width: 1200px) {
  .breadcumd__banner .shadow-png {
    top: -76%;
    right: -5%;
  }
}
@media (min-width: 1400px) {
  .breadcumd__banner .shadow-png {
    top: -67%;
    right: 0;
  }
}
@media (max-width: 991px) {
  .breadcumd__banner .shadow-png {
    display: none;
  }
}
.breadcumd__banner.shadow .shadow-png {
  position: absolute;
  top: -58%;
  right: -10%;
}
@media (min-width: 1200px) {
  .breadcumd__banner.shadow .shadow-png {
    top: -54%;
    right: -5%;
  }
}
@media (min-width: 1400px) {
  .breadcumd__banner.shadow .shadow-png {
    top: -45%;
    right: 0;
  }
}
@media (max-width: 991px) {
  .breadcumd__banner.shadow .shadow-png {
    display: none;
  }
}

.contact__section {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .contact__section {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .contact__section {
    padding-top: 110px;
    padding-bottom: 120px;
  }
}
.contact__section .left__shape {
  position: absolute;
  top: -54%;
  left: -20%;
}
.contact__section .left__shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .contact__section .left__shape {
    display: none;
  }
}
@media (min-width: 1200px) {
  .contact__section .left__shape {
    top: -57%;
    left: -16%;
  }
}
@media (min-width: 1400px) {
  .contact__section .left__shape {
    left: -14%;
  }
}
@media (min-width: 1600px) {
  .contact__section .left__shape {
    top: -60%;
    left: -7%;
  }
}
@media (min-width: 1800px) {
  .contact__section .left__shape {
    left: 0;
  }
}
.contact__section .sidebar__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 576px) {
  .contact__section .sidebar__left {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .contact__section .sidebar__left {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .contact__section .sidebar__left {
    gap: 50px;
  }
}
.contact__section .sidebar__left .sidebar__items {
  padding: 40px;
  filter: drop-shadow(0px 0px 40px rgba(0, 22, 89, 0.1));
}
.contact__section .sidebar__left .sidebar__items .shape {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.contact__section .sidebar__left .sidebar__items .sidebar__widget h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: var(--theme);
  position: relative;
}
.contact__section .sidebar__left .sidebar__items .sidebar__widget h5::before {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 1px;
  content: "";
  background-color: var(--theme2);
}
.contact__section .sidebar__left .sidebar__items .sidebar__widget p a {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  color: var(--pra2);
  font-family: "Open Sans", sans-serif;
}
.contact__section .contact__right {
  z-index: 1;
  position: relative;
}
.contact__section .contact__right h2 {
  font-weight: 800;
  position: relative;
}
.contact__section .contact__right h2::before {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 180px;
  height: 1px;
  content: "";
  background-color: var(--theme2);
}
.contact__section .contact__right .form__clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 20px 0;
  background: transparent;
  color: var(--pra2);
  border-bottom: 1px solid #d9dce4;
  font-size: 13px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.contact__section .contact__right .form__clt input:focus {
  border-color: var(--theme2);
}
.contact__section .contact__right .form__clt__big textarea {
  height: 100px;
  width: 100%;
  outline: none;
  border: none;
  color: var(--pra2);
  border-bottom: 1px solid #d9dce4;
  background-color: transparent;
  font-size: 13px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.contact__section .contact__right .form__clt__big textarea:focus {
  border-color: var(--theme2);
}

.map-section .grad__shape {
  position: absolute;
  right: 0;
  bottom: -9px;
  z-index: 9999;
}
@media (min-width: 1200px) {
  .map-section .grad__shape {
    bottom: -12px;
  }
}
@media (min-width: 1600px) {
  .map-section .grad__shape {
    bottom: -14px;
  }
}
@media (min-width: 1800px) {
  .map-section .grad__shape {
    bottom: -15px;
  }
}
.map-section .grad__shape img {
  width: 100%;
  height: 100%;
}
.map-section #map {
  height: 600px;
  width: 100%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
@media (max-width: 991px) {
  .map-section #map {
    height: 400px;
  }
}

/* 17. Footer */
.footer__section .footer__top .footer__widget .widget__head {
  position: relative;
}
.footer__section .footer__top .footer__widget .widget__head h5 {
  text-transform: capitalize;
  color: var(--white);
}
.footer__section .footer__top .footer__widget .widget__head::before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 0;
  border-bottom: 1px solid var(--theme2);
  width: 80px;
}
.footer__section .footer__top .footer__widget p {
  color: var(--white);
}
.footer__section .footer__top .footer__widget .social__icon {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__section .footer__top .footer__widget .social__icon li {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
}
.footer__section .footer__top .footer__widget .social__icon li::before {
  content: "";
  position: absolute;
  bottom: -9px;
  right: -8px;
  margin-left: 0px;
  border-width: 6px;
  border-style: solid;
  border-color: var(--theme) transparent transparent transparent;
  transform: rotate(-43deg);
}
.footer__section .footer__top .footer__widget .social__icon li::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: -2px;
  transform: rotate(-46deg);
  border: 1px solid var(--border);
  width: 9px;
  transition: all 0.4s;
}
.footer__section .footer__top .footer__widget .social__icon li a {
  display: inline-block;
}
.footer__section .footer__top .footer__widget .social__icon li a i {
  color: var(--white);
  font-size: 15px;
}
.footer__section .footer__top .footer__widget .social__icon li:hover {
  background-color: var(--theme2);
  border-color: transparent;
}
.footer__section .footer__top .footer__widget .social__icon li:hover::after {
  border-color: transparent;
}
.footer__section .footer__top .footer__widget .link__list li {
  transition: all 0.3s ease-in-out;
}
.footer__section .footer__top .footer__widget .link__list li a {
  color: #f2f1fc;
  transition: all 0.3s ease-in-out;
  line-height: 31px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.footer__section .footer__top .footer__widget .link__list li:hover {
  margin-left: 5px;
}
.footer__section .footer__top .footer__widget .link__list li:hover a {
  color: var(--theme2);
}
.footer__section .footer__top .footer__widget .form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #4d5c8b;
  width: 100%;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.footer__section .footer__top .footer__widget .form input::placeholder {
  color: var(--white);
}
.footer__section .footer__top .footer__widget .form .button .cmn--btn {
  background-color: var(--theme2);
  padding: 12px 30px;
}
.footer__section .footer__top .footer__widget .form .button.f-button .cmn--btn {
  background-color: #1cb0eb;
}
.footer__section .footer__bottom {
  border-top: 1px solid var(--border);
}
.footer__section .footer__bottom p {
  color: var(--white);
}

/*--Button--*/
.cmn--btn {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
  background: var(--theme);
  display: inline-block;
  position: relative;
  font-weight: 600;
  z-index: 1;
  transition: all 0.6s ease-in-out 0s;
  overflow: hidden;
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 20%, 100% 80%, 94% 100%, 0 100%, 0% 80%, 0% 20%);
}
.cmn--btn:hover {
  color: var(--white);
  background: var(--theme2);
}
.cmn--btn::before {
  background-color: var(--white);
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 2600ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 20px;
  opacity: 0;
}
.cmn--btn:hover::before {
  left: 140%;
  transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.5;
}
@media (max-width: 575px) {
  .cmn--btn {
    font-size: 13px;
    padding: 10px 20px 10px;
  }
  .cmn--btn i {
    font-size: 13px;
  }
}

/*--Button Area End--*//*# sourceMappingURL=main.css.map */