/*==========================================================================
Google Fonts
==========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");
/*==========================================================================
Common CSS
==========================================================================*/

body {
  font-family: var(--body-font);
  color: var(--body-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

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

a {
  outline: none;
  color: inherit;
  text-decoration: none;
}

a,
button,
i {
  text-decoration: none;
  color: inherit;
}

a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
}

.section-padding {
  padding: 120px 0px;
}

@media (max-width: 575px) {
  .section-padding {
    padding: 85px 0px;
  }
}
.display-none {
  display: none;
}

.display-block {
  display: block;
}

.filter img {
  filter: grayscale(100%);
}

.img__full {
  width: 100%;
}

/*==========================================================================
Form CSS
==========================================================================*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid var(--border-color-2);
  border-color: transparent;
  border-radius: 6px;
  background: var(--primary-color-1);
  color: var(--white);
  padding: 17px 40px;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: transparent;
}

button:active,
button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: transparent;
}


input:focus, select:focus, textarea:focus {
  outline: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

select {
  border: 1px solid var(--border-color-2);
}

textarea {
  width: 100%;
  height: 150px;
  padding-top: 15px;
}

button,
button:hover,
button:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

/*==========================================================================
Hedging CSS
==========================================================================*/

p {
  font-size: 16px;
  line-height: 30px;
  padding: 0;
  margin: 0;
}

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

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

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

@media (max-width: 1399px) {
  h2 {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 420px) {
  h2 {
    font-size: 31px;
    line-height: 41px;
  }
  h3 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 359px) {
  h2 {
    font-size: 27px;
    line-height: 37px;
  }
  h3 {
    font-size: 24px;
    line-height: 34px;
  }
  h4 {
    font-size: 21px;
    line-height: 31px;
  }
  h5 {
    font-size: 20px;
    line-height: 30px;
  }
  h6 {
    font-size: 18px;
    line-height: 28px;
  }
}
/*==========================================================================
Conbix Button And Title Styles CSS
==========================================================================*/
.subtitle-one {
  position: relative;
  text-transform: uppercase;
  font-family: var(--heading-font);
  color: var(--primary-color-1);
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
}
.subtitle-one:before{
  position: absolute;
  content: "";
  top: 12px;
  left: -40px;
  width: 32px;
  height: 2px;
  background: var(--primary-color-1);
}

.subtitle-dsgn:before{
  position: absolute;
  content: "";
  bottom: 8px;
  left: -26px;
  width: 23px;
  height: 2px;
  background: var(--primary-color-1);
}

.subtitle-one:after{
  position: absolute;
  content: "";
  bottom: 8px;
  right: -25px;
  width: 23px;
  height: 2px;
  background: var(--primary-color-1);
}


.subtitle-dsgn:after{
  position: absolute;
  content: "";
  bottom: 12px;
  right: -39px;
  width: 32px;
  height: 2px;
  background: var(--primary-color-1);
}


.btn-five, .btn-one, .btn-eight{

  background: var(--primary-color-1);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 26px;
  padding:14px 24px 14px 27px;
  text-align: center;
  font-weight: 600;
  font-family: var(--heading-font);
  z-index: 3;
  position: relative;
  transition: 0.4s;
  letter-spacing: 0.5px;
  overflow: hidden;
  border-radius: 6px;
}


.btn-five::before,
.btn-one::before,
.btn-eight::before{
  content: "";
  position: absolute;
  height: 400px;
  width: 440px;
  top: 50%;
  left: 50%;
  background: var(--btn-heading-color);
  border-radius: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: all 0.5s ease-out 0s;
  z-index: -1;
}

.btn-five:hover,
.btn-one:hover,
.btn-eight:hover{
  color: var(--white);
}


.btn-five:hover::before,
.btn-one:hover::before,
.btn-eight:hover::before{
  transform: translateY(-50%) translateX(-50%) scale(1);
}


.btn-five:focus,
.btn-one:focus,
.btn-eight:focus{
  color: var(--white);
}

.btn-one i{
  position: relative;
  top: 0px;
  margin-left: 15px;
  font-size: 13px;
}

.btn-five {
  background: var(--primary-color-1);
  color: var(--white);
  border-radius: 30px;
}
.btn-five::before {
  background: var(--white);
}
.btn-five:hover {
  color: var(--btn-heading-color);
}
/*.btn-five:focus {
  color: var(--btn-heading-color);
}*/
.btn-one {
  background: transparent;
  border: 1px solid var(--primary-color-2);
  color: var(--primary-color-2);
  border-radius: 30px;
}
.btn-one:hover {
  border: 1px solid var(--primary-color-2);
}
.btn-one::before {
  background: var(--primary-color-2);
}
.btn-one:focus {
  color: var(--primary-color-2);
}

.btn-eight {
  background: var(--white);
  color: var(--dark-one);
  border: 1px solid var(--white);
  padding: 16px 22px 16px 12px;
  border-radius: 30px;
}
.btn-eight:hover {
  border-color: var(--btn-heading-color);
}
.btn-eight::before {
  background: var(--primary-color-1);
}
.btn-eight:focus {
  color: var(--primary-color-3);
}


  

.simple-btn-1,
.simple-btn-2,
.simple-btn-3 {
  color: var(--primary-color-1);
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  font-weight:600;
  font-family: var(--heading-font);
  transition: 0.4s;
  text-transform: uppercase;
}
.simple-btn-1 i,
.simple-btn-2 i,
.simple-btn-3 i {
  position: relative;
  top: 0;
  margin-left: 15px;
  font-size: 13px;
}
.simple-btn-1:hover,
.simple-btn-2:hover,
.simple-btn-3:hover {
  color: var(--btn-heading-color);
}
.simple-btn-1:focus,
.simple-btn-2:focus,
.simple-btn-3:focus {
  color: var(--btn-heading-color);
}

.simple-btn-2 {
  color: var(--text-heading-color);
}
.simple-btn-2:hover {
  color: var(--primary-color-1);
}
.simple-btn-3 {
  color: var(--white);
}
.simple-btn-3:hover {
  color: var(--primary-color-1);
}

/*==========================================================================
Conbix Text Style CSS
==========================================================================*/
.text-one {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: var(--text-heading-color);
}
.text-two {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--text-heading-color);
}
.text-three {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--text-heading-color);
}
.text-four {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--text-heading-color);
}
.text-five {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--text-heading-color);
}
.text-six {
  font-size: 17px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--text-heading-color);
}
.text-seven {
  font-size: 15px;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--text-heading-color);
}
.text-eight {
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--text-heading-color);
}
.text-nine {
  font-size: 12px;
  line-height: 22px;
  text-transform: capitalize;
  color: var(--text-heading-color);
}

@keyframes rotate {
  100% {
    transform: rotate(90deg);
  }
}
/*==========================================================================
Scroll Top CSS
==========================================================================*/
.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--color-8);
  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 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  color: var(--primary-color-1);
  left: 0;
  top: 0;
  font-size: 20px;
  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(--primary-color-1);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.scroll-two::after {
  color: var(--primary-color-1);
}
.scroll-two svg.scroll-circle path {
  stroke: var(--primary-color-1);
}


/*==========================================================================
Preloader CSS
==========================================================================*/
.theme-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 9999999999;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
}

.spinner-bounce {
  will-change: transform;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: var(--primary-color-1);
  display: inline-block;
  animation: bounces 1s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}
.spinner-bounce.one {
  margin-right: 15px;
}
.spinner-bounce.two {
  margin-right: 15px;
  animation-delay: 0.4s;
}
.spinner-bounce.three {
  animation-delay: 0.8s;
}

@keyframes bounces {
  0% {
    transform: scale(1);
    background: var(--primary-color-1);
  }
  50% {
    background: var(--primary-color-2);
  }
  100% {
    transform: scale(0.2);
    background: var(--primary-color-3);
  }
}
/*==========================================================================
Animation CSS
==========================================================================*/
.video {
  position: relative;
  text-align: center;
  display: inline-block;
  z-index: 4;
}
.video a {
  position: relative;
  color: var(--primary-color-2);
  font-size: 20px;
  z-index: 1;
  background: var(--white);
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 50%;
  display: block;
}

.video-pulse::after, .video-pulse::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-white);
  opacity: 0.3;
  left: 0;
  top: 0;
  border-radius: 50%;
  animation-duration: 2.5s;
  animation-timing-function: linear;
  animation-name: video-animation;
  animation-iteration-count: infinite;
}

.video-pulse::before {
  animation-delay: 1s;
}

@keyframes video-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
.content__roll {
  animation: roll 10s infinite linear;
}

@keyframes roll {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}
.roll {
  animation: rotation 2s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.left-right-animate {
  animation-name: left-right;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes left-right {
  0% {
    transform: translateX(20px);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(20px);
  }
}
.left-right-animate2 {
  animation-name: left-right2;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes left-right2 {
  0% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(110px);
  }
  100% {
    transform: translateX(10px);
  }
}
.icon-animation {
  animation: icon-animation 1.5s ease-in-out infinite;
}

@keyframes icon-animation {
  from {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes animation {
  100% {
    left: 125%;
  }
}
@keyframes rotateY {
  100% {
    transform: rotateY(360deg);
  }
}
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next::after {
  display: none;
}

/*==========================================================================
Conbix Color CSS
==========================================================================*/
:root {
  --body-font: "Rubik", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --primary-color-1:#d81434;
  --primary-color-2:#251479;
  --primary-color-3:#c7c091;
  --white:#fff;
  --black: #131313;
  --txt-color:#545562;

  --body-color: #343434;
  --dark-one: #1C1E22;
  --dark-two: #222429;
  --color-1: #1D2122;
  --color-2: #676767;
  --color-3: #999999;
  --color-4: #CCCCCC;
  --color-5: #F1F8FB;
  --color-6: #F4F4F4;
  --color-7: #FEDBD6;
  --color-8: #E8E8E8;
  --color-9: #F2F6F9;
  --color-10: #ECECEC;
  --color-11: #2B2B2B;
  --color-12: #FEE3BF;
  --color-13: #CFCFCF;
  --color-14: #FDC67E;
  --color-15: #ACBDF8;
  --color-16: #E1E1E1;
  --color-17: #feedea;
  --color-18: #151718;
  --color-19: #3B3838;
  --color-20: #808287;
  --color-21: rgba(34, 36, 41, 0.5);
  --border-color-1: #E7E7E7;
  --border-color-2: #E9E9E8;
  --border-color-3: rgba(19, 19, 19, 0.1);
  --border-color-4: rgba(19, 19, 19, 0.06);
  --box-shadow-1: 0px 25px 70px rgba(0, 0, 0, 0.08);
  --box-shadow-2: 0px 10px 70px rgba(0, 0, 0, 0.1);
}



/*==========================================================================
Space And Container CSS
==========================================================================*/
.custom__container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 12px;
}

.auto__container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 12px;
}

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

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

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

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

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

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

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

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

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

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

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

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

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

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

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

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

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

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

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

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

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

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

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

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

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

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

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

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

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

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

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

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

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

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

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

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

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

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

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

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

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

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

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

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

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

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

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

.pl-35 {
  padding-left: 35px;
}

.pr-35 {
  padding-right: 35px;
}

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

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

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

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

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

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

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

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

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

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

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

.pl-45 {
  padding-left: 45px;
}

.pr-45 {
  padding-right: 45px;
}

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

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

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

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

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

.pl-50 {
  padding-left: 50px;
}

.pr-50 {
  padding-right: 50px;
}

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

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

.ml-55 {
  margin-left: 55px;
}

.mr-55 {
  margin-right: 55px;
}

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

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

.pl-55 {
  padding-left: 55px;
}

.pr-55 {
  padding-right: 55px;
}

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

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

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

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

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

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

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

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

.ml-65 {
  margin-left: 65px;
}

.mr-65 {
  margin-right: 65px;
}

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

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

.pl-65 {
  padding-left: 65px;
}

.pr-65 {
  padding-right: 65px;
}

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

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

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

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

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

.pl-70 {
  padding-left: 70px;
}

.pr-70 {
  padding-right: 70px;
}

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

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

.ml-75 {
  margin-left: 75px;
}

.mr-75 {
  margin-right: 75px;
}

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

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

.pl-75 {
  padding-left: 75px;
}

.pr-75 {
  padding-right: 75px;
}

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

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

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

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

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

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

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

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

.ml-85 {
  margin-left: 85px;
}

.mr-85 {
  margin-right: 85px;
}

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

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

.pl-85 {
  padding-left: 85px;
}

.pr-85 {
  padding-right: 85px;
}

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

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

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

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

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

.pl-90 {
  padding-left: 90px;
}

.pr-90 {
  padding-right: 90px;
}

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

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

.ml-95 {
  margin-left: 95px;
}

.mr-95 {
  margin-right: 95px;
}

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

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

.pl-95 {
  padding-left: 95px;
}

.pr-95 {
  padding-right: 95px;
}

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

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

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

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

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

.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

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

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

.ml-105 {
  margin-left: 105px;
}

.mr-105 {
  margin-right: 105px;
}

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

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

.pl-105 {
  padding-left: 105px;
}

.pr-105 {
  padding-right: 105px;
}

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

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

.ml-110 {
  margin-left: 110px;
}

.mr-110 {
  margin-right: 110px;
}

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

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

.pl-110 {
  padding-left: 110px;
}

.pr-110 {
  padding-right: 110px;
}

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

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

.ml-115 {
  margin-left: 115px;
}

.mr-115 {
  margin-right: 115px;
}

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

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

.pl-115 {
  padding-left: 115px;
}

.pr-115 {
  padding-right: 115px;
}

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

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

.ml-120 {
  margin-left: 120px;
}

.mr-120 {
  margin-right: 120px;
}

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

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

.pl-120 {
  padding-left: 120px;
}

.pr-120 {
  padding-right: 120px;
}

.display-n {
  display: none !important;
}

@media (max-width: 1199px) {
  .xl-pb-0 {
    padding-bottom: 0px;
  }
  .xl-pl-0 {
    padding-left: 0px;
  }
  .xl-pr-0 {
    padding-right: 0px;
  }
  .xl-mb-0 {
    margin-bottom: 0px;
  }
  .xl-ml-0 {
    margin-left: 0px;
  }
  .xl-mr-0 {
    margin-right: 0px;
  }
  .xl-pb-5 {
    padding-bottom: 5px;
  }
  .xl-pl-5 {
    padding-left: 5px;
  }
  .xl-pr-5 {
    padding-right: 5px;
  }
  .xl-mb-5 {
    margin-bottom: 5px;
  }
  .xl-ml-5 {
    margin-left: 5px;
  }
  .xl-mr-5 {
    margin-right: 5px;
  }
  .xl-pb-10 {
    padding-bottom: 10px;
  }
  .xl-pl-10 {
    padding-left: 10px;
  }
  .xl-pr-10 {
    padding-right: 10px;
  }
  .xl-mb-10 {
    margin-bottom: 10px;
  }
  .xl-ml-10 {
    margin-left: 10px;
  }
  .xl-mr-10 {
    margin-right: 10px;
  }
  .xl-pb-15 {
    padding-bottom: 15px;
  }
  .xl-pl-15 {
    padding-left: 15px;
  }
  .xl-pr-15 {
    padding-right: 15px;
  }
  .xl-mb-15 {
    margin-bottom: 15px;
  }
  .xl-ml-15 {
    margin-left: 15px;
  }
  .xl-mr-15 {
    margin-right: 15px;
  }
  .xl-pb-20 {
    padding-bottom: 20px;
  }
  .xl-pl-20 {
    padding-left: 20px;
  }
  .xl-pr-20 {
    padding-right: 20px;
  }
  .xl-mb-20 {
    margin-bottom: 20px;
  }
  .xl-ml-20 {
    margin-left: 20px;
  }
  .xl-mr-20 {
    margin-right: 20px;
  }
  .xl-pb-25 {
    padding-bottom: 25px;
  }
  .xl-pl-25 {
    padding-left: 25px;
  }
  .xl-pr-25 {
    padding-right: 25px;
  }
  .xl-mb-25 {
    margin-bottom: 25px;
  }
  .xl-ml-25 {
    margin-left: 25px;
  }
  .xl-mr-25 {
    margin-right: 25px;
  }
  .xl-pb-30 {
    padding-bottom: 30px;
  }
  .xl-pl-30 {
    padding-left: 30px;
  }
  .xl-pr-30 {
    padding-right: 30px;
  }
  .xl-mb-30 {
    margin-bottom: 30px;
  }
  .xl-ml-30 {
    margin-left: 30px;
  }
  .xl-mr-30 {
    margin-right: 30px;
  }
  .xl-pb-35 {
    padding-bottom: 35px;
  }
  .xl-pl-35 {
    padding-left: 35px;
  }
  .xl-pr-35 {
    padding-right: 35px;
  }
  .xl-mb-35 {
    margin-bottom: 35px;
  }
  .xl-ml-35 {
    margin-left: 35px;
  }
  .xl-mr-35 {
    margin-right: 35px;
  }
  .xl-pb-40 {
    padding-bottom: 40px;
  }
  .xl-pl-40 {
    padding-left: 40px;
  }
  .xl-pr-40 {
    padding-right: 40px;
  }
  .xl-mb-40 {
    margin-bottom: 40px;
  }
  .xl-ml-40 {
    margin-left: 40px;
  }
  .xl-mr-40 {
    margin-right: 40px;
  }
  .xl-pb-45 {
    padding-bottom: 45px;
  }
  .xl-pl-45 {
    padding-left: 45px;
  }
  .xl-pr-45 {
    padding-right: 45px;
  }
  .xl-mb-45 {
    margin-bottom: 45px;
  }
  .xl-ml-45 {
    margin-left: 45px;
  }
  .xl-mr-45 {
    margin-right: 45px;
  }
  .xl-pb-50 {
    padding-bottom: 50px;
  }
  .xl-pl-50 {
    padding-left: 50px;
  }
  .xl-pr-50 {
    padding-right: 50px;
  }
  .xl-mb-50 {
    margin-bottom: 50px;
  }
  .xl-ml-50 {
    margin-left: 50px;
  }
  .xl-mr-50 {
    margin-right: 50px;
  }
  .xl-pb-55 {
    padding-bottom: 55px;
  }
  .xl-pl-55 {
    padding-left: 55px;
  }
  .xl-pr-55 {
    padding-right: 55px;
  }
  .xl-mb-55 {
    margin-bottom: 55px;
  }
  .xl-ml-55 {
    margin-left: 55px;
  }
  .xl-mr-55 {
    margin-right: 55px;
  }
  .xl-pb-60 {
    padding-bottom: 60px;
  }
  .xl-pl-60 {
    padding-left: 60px;
  }
  .xl-pr-60 {
    padding-right: 60px;
  }
  .xl-mb-60 {
    margin-bottom: 60px;
  }
  .xl-ml-60 {
    margin-left: 60px;
  }
  .xl-mr-60 {
    margin-right: 60px;
  }
  .xl-pb-65 {
    padding-bottom: 65px;
  }
  .xl-pl-65 {
    padding-left: 65px;
  }
  .xl-pr-65 {
    padding-right: 65px;
  }
  .xl-mb-65 {
    margin-bottom: 65px;
  }
  .xl-ml-65 {
    margin-left: 65px;
  }
  .xl-mr-65 {
    margin-right: 65px;
  }
  .xl-pb-70 {
    padding-bottom: 70px;
  }
  .xl-pl-70 {
    padding-left: 70px;
  }
  .xl-pr-70 {
    padding-right: 70px;
  }
  .xl-mb-70 {
    margin-bottom: 70px;
  }
  .xl-ml-70 {
    margin-left: 70px;
  }
  .xl-mr-70 {
    margin-right: 70px;
  }
  .xl-pb-75 {
    padding-bottom: 75px;
  }
  .xl-pl-75 {
    padding-left: 75px;
  }
  .xl-pr-75 {
    padding-right: 75px;
  }
  .xl-mb-75 {
    margin-bottom: 75px;
  }
  .xl-ml-75 {
    margin-left: 75px;
  }
  .xl-mr-75 {
    margin-right: 75px;
  }
  .xl-pb-80 {
    padding-bottom: 80px;
  }
  .xl-pl-80 {
    padding-left: 80px;
  }
  .xl-pr-80 {
    padding-right: 80px;
  }
  .xl-mb-80 {
    margin-bottom: 80px;
  }
  .xl-ml-80 {
    margin-left: 80px;
  }
  .xl-mr-80 {
    margin-right: 80px;
  }
  .xl-pb-85 {
    padding-bottom: 85px;
  }
  .xl-pl-85 {
    padding-left: 85px;
  }
  .xl-pr-85 {
    padding-right: 85px;
  }
  .xl-mb-85 {
    margin-bottom: 85px;
  }
  .xl-ml-85 {
    margin-left: 85px;
  }
  .xl-mr-85 {
    margin-right: 85px;
  }
  .xl-pb-90 {
    padding-bottom: 90px;
  }
  .xl-pl-90 {
    padding-left: 90px;
  }
  .xl-pr-90 {
    padding-right: 90px;
  }
  .xl-mb-90 {
    margin-bottom: 90px;
  }
  .xl-ml-90 {
    margin-left: 90px;
  }
  .xl-mr-90 {
    margin-right: 90px;
  }
  .xl-pb-95 {
    padding-bottom: 95px;
  }
  .xl-pl-95 {
    padding-left: 95px;
  }
  .xl-pr-95 {
    padding-right: 95px;
  }
  .xl-mb-95 {
    margin-bottom: 95px;
  }
  .xl-ml-95 {
    margin-left: 95px;
  }
  .xl-mr-95 {
    margin-right: 95px;
  }
  .xl-t-left {
    text-align: left;
  }
  .xl-t-center {
    text-align: center;
  }
  .xl-t-right {
    text-align: right;
  }
  .xl-display-n {
    display: none !important;
  }
  .xl-display-b {
    display: block !important;
  }
}
@media (max-width: 991px) {
  .lg-mb-0 {
    margin-bottom: 0px;
  }
  .lg-mt-0 {
    margin-top: 0px;
  }
  .lg-ml-0 {
    margin-left: 0px;
  }
  .lg-pt-0 {
    padding-top: 0px;
  }
  .lg-pb-0 {
    padding-bottom: 0px;
  }
  .lg-pl-0 {
    padding-left: 0px;
  }
  .lg-pr-0 {
    padding-right: 0px;
  }
  .lg-mb-5 {
    margin-bottom: 5px;
  }
  .lg-mt-5 {
    margin-top: 5px;
  }
  .lg-ml-5 {
    margin-left: 5px;
  }
  .lg-pt-5 {
    padding-top: 5px;
  }
  .lg-pb-5 {
    padding-bottom: 5px;
  }
  .lg-pl-5 {
    padding-left: 5px;
  }
  .lg-pr-5 {
    padding-right: 5px;
  }
  .lg-mb-10 {
    margin-bottom: 10px;
  }
  .lg-mt-10 {
    margin-top: 10px;
  }
  .lg-ml-10 {
    margin-left: 10px;
  }
  .lg-pt-10 {
    padding-top: 10px;
  }
  .lg-pb-10 {
    padding-bottom: 10px;
  }
  .lg-pl-10 {
    padding-left: 10px;
  }
  .lg-pr-10 {
    padding-right: 10px;
  }
  .lg-mb-15 {
    margin-bottom: 15px;
  }
  .lg-mt-15 {
    margin-top: 15px;
  }
  .lg-ml-15 {
    margin-left: 15px;
  }
  .lg-pt-15 {
    padding-top: 15px;
  }
  .lg-pb-15 {
    padding-bottom: 15px;
  }
  .lg-pl-15 {
    padding-left: 15px;
  }
  .lg-pr-15 {
    padding-right: 15px;
  }
  .lg-mb-20 {
    margin-bottom: 20px;
  }
  .lg-mt-20 {
    margin-top: 20px;
  }
  .lg-ml-20 {
    margin-left: 20px;
  }
  .lg-pt-20 {
    padding-top: 20px;
  }
  .lg-pb-20 {
    padding-bottom: 20px;
  }
  .lg-pl-20 {
    padding-left: 20px;
  }
  .lg-pr-20 {
    padding-right: 20px;
  }
  .lg-mb-25 {
    margin-bottom: 25px;
  }
  .lg-mt-25 {
    margin-top: 25px;
  }
  .lg-ml-25 {
    margin-left: 25px;
  }
  .lg-pt-25 {
    padding-top: 25px;
  }
  .lg-pb-25 {
    padding-bottom: 25px;
  }
  .lg-pl-25 {
    padding-left: 25px;
  }
  .lg-pr-25 {
    padding-right: 25px;
  }
  .lg-mb-30 {
    margin-bottom: 30px;
  }
  .lg-mt-30 {
    margin-top: 30px;
  }
  .lg-ml-30 {
    margin-left: 30px;
  }
  .lg-pt-30 {
    padding-top: 30px;
  }
  .lg-pb-30 {
    padding-bottom: 30px;
  }
  .lg-pl-30 {
    padding-left: 30px;
  }
  .lg-pr-30 {
    padding-right: 30px;
  }
  .lg-mb-35 {
    margin-bottom: 35px;
  }
  .lg-mt-35 {
    margin-top: 35px;
  }
  .lg-ml-35 {
    margin-left: 35px;
  }
  .lg-pt-35 {
    padding-top: 35px;
  }
  .lg-pb-35 {
    padding-bottom: 35px;
  }
  .lg-pl-35 {
    padding-left: 35px;
  }
  .lg-pr-35 {
    padding-right: 35px;
  }
  .lg-mb-40 {
    margin-bottom: 40px;
  }
  .lg-mt-40 {
    margin-top: 40px;
  }
  .lg-ml-40 {
    margin-left: 40px;
  }
  .lg-pt-40 {
    padding-top: 40px;
  }
  .lg-pb-40 {
    padding-bottom: 40px;
  }
  .lg-pl-40 {
    padding-left: 40px;
  }
  .lg-pr-40 {
    padding-right: 40px;
  }
  .lg-mb-45 {
    margin-bottom: 45px;
  }
  .lg-mt-45 {
    margin-top: 45px;
  }
  .lg-ml-45 {
    margin-left: 45px;
  }
  .lg-pt-45 {
    padding-top: 45px;
  }
  .lg-pb-45 {
    padding-bottom: 45px;
  }
  .lg-pl-45 {
    padding-left: 45px;
  }
  .lg-pr-45 {
    padding-right: 45px;
  }
  .lg-mb-50 {
    margin-bottom: 50px;
  }
  .lg-mt-50 {
    margin-top: 50px;
  }
  .lg-ml-50 {
    margin-left: 50px;
  }
  .lg-pt-50 {
    padding-top: 50px;
  }
  .lg-pb-50 {
    padding-bottom: 50px;
  }
  .lg-pl-50 {
    padding-left: 50px;
  }
  .lg-pr-50 {
    padding-right: 50px;
  }
  .lg-mb-55 {
    margin-bottom: 55px;
  }
  .lg-mt-55 {
    margin-top: 55px;
  }
  .lg-ml-55 {
    margin-left: 55px;
  }
  .lg-pt-55 {
    padding-top: 55px;
  }
  .lg-pb-55 {
    padding-bottom: 55px;
  }
  .lg-pl-55 {
    padding-left: 55px;
  }
  .lg-pr-55 {
    padding-right: 55px;
  }
  .lg-mb-60 {
    margin-bottom: 60px;
  }
  .lg-mt-60 {
    margin-top: 60px;
  }
  .lg-ml-60 {
    margin-left: 60px;
  }
  .lg-pt-60 {
    padding-top: 60px;
  }
  .lg-pb-60 {
    padding-bottom: 60px;
  }
  .lg-pl-60 {
    padding-left: 60px;
  }
  .lg-pr-60 {
    padding-right: 60px;
  }
  .lg-mb-65 {
    margin-bottom: 65px;
  }
  .lg-mt-65 {
    margin-top: 65px;
  }
  .lg-ml-65 {
    margin-left: 65px;
  }
  .lg-pt-65 {
    padding-top: 65px;
  }
  .lg-pb-65 {
    padding-bottom: 65px;
  }
  .lg-pl-65 {
    padding-left: 65px;
  }
  .lg-pr-65 {
    padding-right: 65px;
  }
  .lg-mb-70 {
    margin-bottom: 70px;
  }
  .lg-mt-70 {
    margin-top: 70px;
  }
  .lg-ml-70 {
    margin-left: 70px;
  }
  .lg-pt-70 {
    padding-top: 70px;
  }
  .lg-pb-70 {
    padding-bottom: 70px;
  }
  .lg-pl-70 {
    padding-left: 70px;
  }
  .lg-pr-70 {
    padding-right: 70px;
  }
  .lg-t-left {
    text-align: left;
  }
  .lg-t-center {
    text-align: center;
  }
  .lg-t-right {
    text-align: right;
  }
  .lg-display-n {
    display: none !important;
  }
  .lg-display-b {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .md-mb-0 {
    margin-bottom: 0px;
  }
  .md-mt-0 {
    margin-top: 0px;
  }
  .md-pt-0 {
    padding-top: 0px;
  }
  .md-pb-0 {
    padding-bottom: 0px;
  }
  .md-pl-0 {
    padding-left: 0px;
  }
  .md-pr-0 {
    padding-right: 0px;
  }
  .md-mb-5 {
    margin-bottom: 5px;
  }
  .md-mt-5 {
    margin-top: 5px;
  }
  .md-pt-5 {
    padding-top: 5px;
  }
  .md-pb-5 {
    padding-bottom: 5px;
  }
  .md-pl-5 {
    padding-left: 5px;
  }
  .md-pr-5 {
    padding-right: 5px;
  }
  .md-mb-10 {
    margin-bottom: 10px;
  }
  .md-mt-10 {
    margin-top: 10px;
  }
  .md-pt-10 {
    padding-top: 10px;
  }
  .md-pb-10 {
    padding-bottom: 10px;
  }
  .md-pl-10 {
    padding-left: 10px;
  }
  .md-pr-10 {
    padding-right: 10px;
  }
  .md-mb-15 {
    margin-bottom: 15px;
  }
  .md-mt-15 {
    margin-top: 15px;
  }
  .md-pt-15 {
    padding-top: 15px;
  }
  .md-pb-15 {
    padding-bottom: 15px;
  }
  .md-pl-15 {
    padding-left: 15px;
  }
  .md-pr-15 {
    padding-right: 15px;
  }
  .md-mb-20 {
    margin-bottom: 20px;
  }
  .md-mt-20 {
    margin-top: 20px;
  }
  .md-pt-20 {
    padding-top: 20px;
  }
  .md-pb-20 {
    padding-bottom: 20px;
  }
  .md-pl-20 {
    padding-left: 20px;
  }
  .md-pr-20 {
    padding-right: 20px;
  }
  .md-mb-25 {
    margin-bottom: 25px;
  }
  .md-mt-25 {
    margin-top: 25px;
  }
  .md-pt-25 {
    padding-top: 25px;
  }
  .md-pb-25 {
    padding-bottom: 25px;
  }
  .md-pl-25 {
    padding-left: 25px;
  }
  .md-pr-25 {
    padding-right: 25px;
  }
  .md-mb-30 {
    margin-bottom: 30px;
  }
  .md-mt-30 {
    margin-top: 30px;
  }
  .md-pt-30 {
    padding-top: 30px;
  }
  .md-pb-30 {
    padding-bottom: 30px;
  }
  .md-pl-30 {
    padding-left: 30px;
  }
  .md-pr-30 {
    padding-right: 30px;
  }
  .md-mb-35 {
    margin-bottom: 35px;
  }
  .md-mt-35 {
    margin-top: 35px;
  }
  .md-pt-35 {
    padding-top: 35px;
  }
  .md-pb-35 {
    padding-bottom: 35px;
  }
  .md-pl-35 {
    padding-left: 35px;
  }
  .md-pr-35 {
    padding-right: 35px;
  }
  .md-mb-40 {
    margin-bottom: 40px;
  }
  .md-mt-40 {
    margin-top: 40px;
  }
  .md-pt-40 {
    padding-top: 40px;
  }
  .md-pb-40 {
    padding-bottom: 40px;
  }
  .md-pl-40 {
    padding-left: 40px;
  }
  .md-pr-40 {
    padding-right: 40px;
  }
  .md-mb-45 {
    margin-bottom: 45px;
  }
  .md-mt-45 {
    margin-top: 45px;
  }
  .md-pt-45 {
    padding-top: 45px;
  }
  .md-pb-45 {
    padding-bottom: 45px;
  }
  .md-pl-45 {
    padding-left: 45px;
  }
  .md-pr-45 {
    padding-right: 45px;
  }
  .md-t-left {
    text-align: left;
  }
  .md-t-center {
    text-align: center;
  }
  .md-t-right {
    text-align: right;
  }
  .md-display-n {
    display: none !important;
  }
  .md-display-b {
    display: block !important;
  }
}
@media (max-width: 575px) {
  .sm-mb-0 {
    margin-bottom: 0px;
  }
  .sm-mt-0 {
    margin-top: 0px;
  }
  .sm-ml-0 {
    margin-left: 0px;
  }
  .sm-pt-0 {
    padding-top: 0px;
  }
  .sm-pb-0 {
    padding-bottom: 0px;
  }
  .sm-pl-0 {
    padding-left: 0px;
  }
  .sm-pr-0 {
    padding-right: 0px;
  }
  .sm-mb-5 {
    margin-bottom: 5px;
  }
  .sm-mt-5 {
    margin-top: 5px;
  }
  .sm-ml-5 {
    margin-left: 5px;
  }
  .sm-pt-5 {
    padding-top: 5px;
  }
  .sm-pb-5 {
    padding-bottom: 5px;
  }
  .sm-pl-5 {
    padding-left: 5px;
  }
  .sm-pr-5 {
    padding-right: 5px;
  }
  .sm-mb-10 {
    margin-bottom: 10px;
  }
  .sm-mt-10 {
    margin-top: 10px;
  }
  .sm-ml-10 {
    margin-left: 10px;
  }
  .sm-pt-10 {
    padding-top: 10px;
  }
  .sm-pb-10 {
    padding-bottom: 10px;
  }
  .sm-pl-10 {
    padding-left: 10px;
  }
  .sm-pr-10 {
    padding-right: 10px;
  }
  .sm-mb-15 {
    margin-bottom: 15px;
  }
  .sm-mt-15 {
    margin-top: 15px;
  }
  .sm-ml-15 {
    margin-left: 15px;
  }
  .sm-pt-15 {
    padding-top: 15px;
  }
  .sm-pb-15 {
    padding-bottom: 15px;
  }
  .sm-pl-15 {
    padding-left: 15px;
  }
  .sm-pr-15 {
    padding-right: 15px;
  }
  .sm-mb-20 {
    margin-bottom: 20px;
  }
  .sm-mt-20 {
    margin-top: 20px;
  }
  .sm-ml-20 {
    margin-left: 20px;
  }
  .sm-pt-20 {
    padding-top: 20px;
  }
  .sm-pb-20 {
    padding-bottom: 20px;
  }
  .sm-pl-20 {
    padding-left: 20px;
  }
  .sm-pr-20 {
    padding-right: 20px;
  }
  .sm-mb-25 {
    margin-bottom: 25px;
  }
  .sm-mt-25 {
    margin-top: 25px;
  }
  .sm-ml-25 {
    margin-left: 25px;
  }
  .sm-pt-25 {
    padding-top: 25px;
  }
  .sm-pb-25 {
    padding-bottom: 25px;
  }
  .sm-pl-25 {
    padding-left: 25px;
  }
  .sm-pr-25 {
    padding-right: 25px;
  }
  .sm-mb-30 {
    margin-bottom: 30px;
  }
  .sm-mt-30 {
    margin-top: 30px;
  }
  .sm-ml-30 {
    margin-left: 30px;
  }
  .sm-pt-30 {
    padding-top: 30px;
  }
  .sm-pb-30 {
    padding-bottom: 30px;
  }
  .sm-pl-30 {
    padding-left: 30px;
  }
  .sm-pr-30 {
    padding-right: 30px;
  }
  .sm-mb-35 {
    margin-bottom: 35px;
  }
  .sm-mt-35 {
    margin-top: 35px;
  }
  .sm-ml-35 {
    margin-left: 35px;
  }
  .sm-pt-35 {
    padding-top: 35px;
  }
  .sm-pb-35 {
    padding-bottom: 35px;
  }
  .sm-pl-35 {
    padding-left: 35px;
  }
  .sm-pr-35 {
    padding-right: 35px;
  }
  .sm-mb-40 {
    margin-bottom: 40px;
  }
  .sm-mt-40 {
    margin-top: 40px;
  }
  .sm-ml-40 {
    margin-left: 40px;
  }
  .sm-pt-40 {
    padding-top: 40px;
  }
  .sm-pb-40 {
    padding-bottom: 40px;
  }
  .sm-pl-40 {
    padding-left: 40px;
  }
  .sm-pr-40 {
    padding-right: 40px;
  }
  .sm-mb-45 {
    margin-bottom: 45px;
  }
  .sm-mt-45 {
    margin-top: 45px;
  }
  .sm-ml-45 {
    margin-left: 45px;
  }
  .sm-pt-45 {
    padding-top: 45px;
  }
  .sm-pb-45 {
    padding-bottom: 45px;
  }
  .sm-pl-45 {
    padding-left: 45px;
  }
  .sm-pr-45 {
    padding-right: 45px;
  }
  .sm-mb-50 {
    margin-bottom: 50px;
  }
  .sm-mt-50 {
    margin-top: 50px;
  }
  .sm-ml-50 {
    margin-left: 50px;
  }
  .sm-pt-50 {
    padding-top: 50px;
  }
  .sm-pb-50 {
    padding-bottom: 50px;
  }
  .sm-pl-50 {
    padding-left: 50px;
  }
  .sm-pr-50 {
    padding-right: 50px;
  }
  .sm-mb-55 {
    margin-bottom: 55px;
  }
  .sm-mt-55 {
    margin-top: 55px;
  }
  .sm-ml-55 {
    margin-left: 55px;
  }
  .sm-pt-55 {
    padding-top: 55px;
  }
  .sm-pb-55 {
    padding-bottom: 55px;
  }
  .sm-pl-55 {
    padding-left: 55px;
  }
  .sm-pr-55 {
    padding-right: 55px;
  }
  .sm-t-left {
    text-align: left;
  }
  .sm-t-center {
    text-align: center;
  }
  .sm-t-right {
    text-align: right;
  }
  .sm-display-n {
    display: none !important;
  }
  .sm-display-b {
    display: block !important;
  }
}
/*==========================================================================
Top Bar CSS
==========================================================================*/
.top__bar {
  background: var(--black);
  padding: 7px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top__bar::before {
  content: "";
  position: absolute;
  background: var(--primary-color-1);
  top: 0;
  left: 0;
  bottom: 0;
  width: 30%;
  -webkit-clip-path: polygon(0 0, 100% 0%, 97% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0%, 97% 100%, 0 100%);
  z-index: -1;
}
.top__bar::after {
  content: "";
  position: absolute;
  background: var(--white);
  top: -5px;
  left: 30%;
  bottom: -4px;
  width: 3px;
  z-index: -1;
  transform: rotate(23deg);
}
.top__bar-left a {
  color: var(--white);
  font-weight: 600;
}
.top__bar-left a i {
  margin-right: 10px;
}
.top__bar-right {
  display: flex;
  align-items: center;
  justify-content: end;
}
.top__bar-right > a {
  color: var(--white);
  font-weight: 600;
  transition: 0.4s;
  text-transform: lowercase;
}
.top__bar-right > a:hover {
  color: var(--primary-color-1);
}
.top__bar-right > a i {
  color: var(--primary-color-1);
  margin-right: 10px;
}
.top__bar-right-social {
  border-left: 1px solid var(--color-2);
  padding-left: 30px;
  margin-left: 30px;
}
.top__bar-right-social ul {
  padding: 0;
  margin: 0;
}
.top__bar-right-social ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}
.top__bar-right-social ul li:last-child {
  margin: 0;
}
.top__bar-right-social ul li a i {
  color: var(--white);
  transition: 0.4s;
}
.top__bar-right-social ul li a i:hover {
  color: var(--primary-color-1);
}

/*==========================================================================
Top Bar Three CSS
==========================================================================*/
.topbar__three {
  padding: 12px 0;
}
.topbar__three-left a {
  font-weight: 600;
  font-size: 14px;
  transition: 0.4s;
  line-height: 24px;
}
.topbar__three-left a:hover {
  color: var(--primary-color-3);
}
.topbar__three-left a i {
  margin-right: 10px;
  color: var(--primary-color-3);
  font-size: 16px;
  line-height: 26px;
}
.topbar__three-right ul {
  padding: 0;
  margin: 0;
}
.topbar__three-right ul li {
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  padding-right: 25px;
  border-right: 1px solid var(--color-13);
}
.topbar__three-right ul li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}
.topbar__three-right ul li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  transition: 0.4s;
  text-transform: lowercase;
}
.topbar__three-right ul li a:hover {
  color: var(--primary-color-3);
}
.topbar__three-right ul li a i {
  color: var(--primary-color-3);
  margin-right: 10px;
}

@media (max-width: 1600px) {
  .top__bar::after {
    transform: rotate(20deg);
  }
}
@media (max-width: 1480px) {
  .top__bar::before {
    width: 33%;
  }
  .top__bar::after {
    transform: rotate(20deg);
    left: 33%;
  }
}
@media (max-width: 1320px) {
  .top__bar::before {
    width: 36%;
  }
  .top__bar::after {
    left: 36%;
  }
}
@media (max-width: 1190px) {
  .top__bar::before {
    width: 40%;
  }
  .top__bar::after {
    left: 40%;
    transform: rotate(18deg);
  }
}
@media (max-width: 991px) {
  .top__bar {
    padding: 7px 13px;
  }
  .top__bar::before {
    display: none;
  }
  .top__bar::after {
    display: none;
  }
  .top__bar-left a {
    transition: 0.4s;
  }
  .top__bar-left a i {
    color: var(--primary-color-1);
  }
  .top__bar-left a:hover {
    color: var(--primary-color-1);
  }
}
@media (max-width: 767px) {
  .top__bar-left {
    text-align: center;
    margin-bottom: 5px;
  }
  .top__bar-right {
    justify-content: center;
  }
  .top__bar-right-social {
    padding-left: 11px;
    margin-left: 12px;
  }
}
@media (max-width: 575px) {
  .top__bar {
    padding: 5px 0;
  }
  .topbar__three-right ul li {
    margin-right: 0;
    padding-right: 5px;
    border: 0;
  }
}
@media (max-width: 359px) {
  .top__bar-left {
    text-align: center;
    margin-bottom: 5px;
  }
  .top__bar-right {
    justify-content: center;
  }
  .top__bar-right-social {
    border: 0;
    padding-left: 5px;
    margin-left: 5px;
  }
}
/*==========================================================================
Menu Bar Sticky CSS
==========================================================================*/
.header__sticky-sticky-menu {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  box-shadow: var(--box-shadow-1);
  animation: header_sticky 1.1s;
  background: var(--white);
  display: block;
}
@keyframes header_sticky {
  0% {
    top: -250px;
  }
  100% {
    top: 0;
  }
}

.header__sticky.header__sticky-sticky-menu .header__area {
  background: var(--black);
}

/*==========================================================================
Menu Bar CSS
==========================================================================*/
.header__area {
  padding: 0 30px;
}
.header__area-menubar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__area-menubar-left-logo a {
  display: inline-block;
}
.header__area-menubar-left-logo a img {
  max-width: 165px;
  position: relative;
  z-index: 9999;
}
.header__area-menubar-center.two {
  margin-left: 40px;
}
.header__area-menubar-center-menu ul {
  padding: 0;
  margin: 0;
}
.header__area-menubar-center-menu ul li {
  display: inline-block;
  position: relative;
  list-style: none;
}
.header__area-menubar-center-menu ul li:hover > a {
  color: var(--primary-color-1);
}
.header__area-menubar-center-menu ul li:hover > .sub-menu {
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}
.header__area-menubar-center-menu ul li .sub-menu {
  position: absolute;
  background: var(--white);
  min-width: 370px;
  transition: all 0.3s ease-out 0s;
  top: 100%;
  opacity: 0;
  box-shadow: var(--box-shadow-1);
  visibility: hidden;
  z-index: 99;
  text-align: left;
  transform: scale(1, 0);
  transform-origin: 0 0;
  height: 245px;
  overflow-y: scroll;
  scrollbar-width: thin;
}
.header__area-menubar-center-menu ul li .sub-menu li {
  display: block;
  margin: 0;
  border-bottom: 1px solid var(--border-color-2);
  position: relative;
}
.header__area-menubar-center-menu ul li .sub-menu li::after {
  position: absolute;
  content: "";
  background: var(--primary-color-1);
  width: 2px;
  transition: all 0.5s ease-out 0s;
  height: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header__area-menubar-center-menu ul li .sub-menu li a {
  color: var(--text-heading-color);
  padding: 12px 15px;
  transition: all 0.4s ease-out 0s;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
}
.header__area-menubar-center-menu ul li .sub-menu li .sub-menu {
  left: 100%;
  top: -2px;
}
.header__area-menubar-center-menu ul li .sub-menu li:hover > a {
  color: var(--primary-color-1);
  padding-left: 19px;
}
.header__area-menubar-center-menu ul li .sub-menu li:hover::after {
  height: 100%;
}
.header__area-menubar-center-menu ul li .sub-menu li:last-child {
  border: none;
}
.header__area-menubar-center-menu ul li .sub-menu .menu-item-has-children a::before {
  right: 28px;
  background: var(--text-heading-color);
}
.header__area-menubar-center-menu ul li .sub-menu .menu-item-has-children a::after {
  right: 25px;
  background: var(--text-heading-color);
}
.header__area-menubar-center-menu ul li ul .sub-menu li .sub-menu {
  color: var(--text-heading-color);
  cursor: pointer;
}
.header__area-menubar-center-menu ul li a {
  color: #30343C;
  display: block;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  transition: all 0.4s ease-out 0s;
  padding: 25px 21px;
  font-family: var(--heading-font);
  letter-spacing: 0.7px;
}
.header__area-menubar-center-menu ul li.menu-item-has-children > a {
  position: relative;
}
.header__area-menubar-center-menu ul li.menu-item-has-children > a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 2px;
  height: 8px;
  background: var(--black);
  transition: all 0.3s ease;
}
.header__area-menubar-center-menu ul li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right:7px;
  width: 8px;
  height: 2px;
  background: var(--black);
}
.header__area-menubar-center-menu ul li.menu-item-has-children:hover > a::before {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
.header__area-menubar-center-menu ul li.menu-item-has-children:hover > a::after {
  background: var(--primary-color-1);
}
.header__area-menubar-center-menu.two ul li .sub-menu li::after {
  background: var(--primary-color-1);
}
.header__area-menubar-center-menu.two ul li .sub-menu li:hover > a {
  color: var(--primary-color-1);
}
.header__area-menubar-center-menu.two ul li:hover > a {
  color: var(--primary-color-1);
}

.header__area-menubar-center-menu.two ul li.menu-item-has-children:hover > a::after {
  background: var(--primary-color-1);
}
.header__area-menubar-center-menu.three ul li .sub-menu li::after {
  background: var(--primary-color-3);
}
.header__area-menubar-center-menu.three ul li .sub-menu li:hover > a {
  color: var(--primary-color-3);
}
.header__area-menubar-center-menu.three ul li:hover > a {
  color: var(--primary-color-3);
}
.header__area-menubar-center-menu.three ul li a {
  padding: 38px 32px;
}
.header__area-menubar-center-menu.three ul li.menu-item-has-children:hover > a::after {
  background: var(--primary-color-3);
}
.header__area-menubar-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__area-menubar-right-box {
  display: flex;
  align-items: center;
}
.header__area-menubar-right-box-search-icon i {
  cursor: pointer;
  position: relative;
  z-index: 9;
  display: block;
  color: var(--text-heading-color);
  font-size: 20px;
  font-weight: 400;
}
.header__area-menubar-right-box-search-icon.two i {
  color: var(--white);
}
.header__area-menubar-right-box-search-box {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  height: 0;
  background: var(--black);
  z-index: 9999;
  transition: all 0.5s ease-out;
  overflow: hidden;
}
.header__area-menubar-right-box-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 55%;
  transition: all 0.5s ease-out;
}
.header__area-menubar-right-box-search-box input {
  background: var(--white);
  color: var(--text-heading-color);
  border: 0;
}
.header__area-menubar-right-box-search-box button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  font-size: 22px;
  color: var(--primary-color-1);
  padding: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.header__area-menubar-right-box-search-box.active {
  height: 100%;
  top: 0;
}
.header__area-menubar-right-box-search-box.active.header__area-menubar-right-box-search-box form {
  transform: translate(-50%, -50%) scale(1);
}
.header__area-menubar-right-box-search-box-icon {
  position: absolute;
  right: 50px;
  top: 50px;
  font-size: 22px;
  color: var(--white);
  cursor: pointer;
  transform: rotate(0deg);
}
.header__area-menubar-right-box-search-box-icon:hover {
  animation: rotate 0.4s ease 0s;
}
.header__area-menubar-right-box-search-box-icon i {
  cursor: pointer;
  position: relative;
  z-index: 9;
}
.header__area-menubar-right-box-search-box-icon i::before {
  display: block;
}
.header__area-menubar-right-box-sidebar-popup-contact {
  margin: 40px 0;
  padding: 40px 0;
  border-top: 1px solid var(--color-19);
  border-bottom: 1px solid var(--color-19);
}
.header__area-menubar-right-box-sidebar-popup-contact-item {
  display: flex;
  margin-bottom: 25px;
  gap: 25px;
}
.header__area-menubar-right-box-sidebar-popup-contact-item-icon {
  margin-top: 8px;
  width: 30px;
}
.header__area-menubar-right-box-sidebar-popup-contact-item-icon i {
  color: var(--primary-color-1);
  font-size: 30px;
}
.header__area-menubar-right-box-sidebar-popup-contact-item-content span {
  color: var(--color-4);
  display: inline-block;
  margin-bottom: 5px;
}
.header__area-menubar-right-box-sidebar-popup-contact-item-content h6 {
  max-width: 240px;
  font-size: 18px;
  line-height: 28px;
}
.header__area-menubar-right-box-sidebar-popup-contact-item-content h6 a {
  transition: all 0.4s ease-out;
  color: var(--white);
}
.header__area-menubar-right-box-sidebar-popup-contact-item-content h6 a:hover {
  color: var(--primary-color-1);
}
.header__area-menubar-right-box-sidebar-popup-contact-item:last-child {
  margin: 0;
}
.header__area-menubar-right-box-sidebar-popup-contact h4 {
  color: var(--white);
}
.header__area-menubar-right-box-sidebar-popup-social ul {
  padding: 0;
  margin: 0;
}
.header__area-menubar-right-box-sidebar-popup-social ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}
.header__area-menubar-right-box-sidebar-popup-social ul li:last-child {
  margin: 0;
}
.header__area-menubar-right-box-sidebar-popup-social ul li a i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
  color: var(--primary-color-1);
  transition: all 0.4s ease-out;
  background: var(--color-1);
}
.header__area-menubar-right-box-sidebar-popup-social ul li a i:hover {
  color: var(--white);
  background: var(--primary-color-1);
}
.header__area-menubar-right-box-btn {
  margin-left: 70px;
}
.header__area-menubar-right-box-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid var(--border-color-1);
  padding-left: 50px;
  margin-left: 70px;
}
.header__area-menubar-right-box-contact-icon i {
  color: var(--primary-color-1);
  border: 1px solid var(--color-12);
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
}
.header__area-menubar-right-box-contact-info span {
  color: var(--color-2);
}
.header__area-menubar-right-box-contact-info h6 {
  transition: 0.4s;
  font-weight: 600;
  text-transform: lowercase;
  font-size: 19px;
  color: var(--black);
}
.header__area-menubar-right-box-contact-info h6:hover {
  color: var(--primary-color-2);
}
.header__area-menubar-right-sidebar-popup {
  position: fixed;
  width: 460px;
  height: 100%;
  right: 0;
  overflow: auto;
  transform: translateX(100%);
  top: 0;
  background: var(--color-18);
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: transform 0.5s ease 0.4s;
  padding: 100px 40px;
  scrollbar-width: none;
}
.header__area-menubar-right-sidebar-popup::-webkit-scrollbar {
  display: none;
}
.header__area-menubar-right-sidebar-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  right: 0;
}
.header__area-menubar-right-sidebar-popup-icon {
  margin-left: 70px;
  padding-left: 70px;
  position: relative;
}
.header__area-menubar-right-sidebar-popup-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--text-heading-color);
  opacity: 0.1;
}
.header__area-menubar-right-sidebar-popup-icon img {
  cursor: pointer;
}
.header__area-menubar-right-sidebar-popup-icon.two {
  border-left: 1px solid var(--color-8);
}
.header__area-menubar-right-sidebar-popup-icon.two span {
  border-color: var(--white);
}
.header__area-menubar-right-sidebar-popup .sidebar-close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  transform: rotate(0);
}
.header__area-menubar-right-sidebar-popup .sidebar-close-btn i::before {
  background: var(--primary-color-1);
  width: 40px;
  color: var(--white);
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  display: block;
}
.header__area-menubar-right-sidebar-popup .sidebar-close-btn:hover {
  animation: rotate 0.4s ease 0s;
}
.header__area-menubar-right-sidebar-popup-logo {
  margin-bottom: 30px;
}
.header__area-menubar-right-sidebar-popup-logo a {
  display: inline-block;
}
.header__area-menubar-right-sidebar-popup-logo a img {
  max-width: 150px;
  position: relative;
  z-index: 999;
}
.header__area-menubar-right-sidebar-popup p {
  color: var(--color-4);
}
.header__area-menubar-right-btn .btn-one {
  color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  font-size: 14px;
  padding: 8px 15px !important;
}
.header__area-menubar-right-btn .btn-one:hover {
  color: var(--white);
  border-color: var(--primary-color-2);
}

/*.header__area-menubar.two .header__area-menubar-left-logo {
  padding-top: 18px;
}*/
.header__area-menubar.two .header__area-menubar-left-logo .two {
  display: none;
}
/*.header__area-menubar.two .header__area-menubar-right-btn {
  margin-top: -10px;
}*/
.header__area-menubar.two .header__area-menubar-right-box-search-box button {
  color: var(--primary-color-2);
}
.header__area-menubar.three {
  background: var(--white);
  padding: 0 40px;
}
.header__area-menubar.three .header__area-menubar-right-box-search-box button {
  color: var(--primary-color-3);
}

/*==========================================================================
Menu Sidebar CSS
==========================================================================*/
.sidebar-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  transition: all 0.8s ease-out;
  visibility: hidden;
  z-index: 99999;
  background: rgba(24, 24, 24, 0.6);
}
.sidebar-overlay.show {
  visibility: visible;
  width: 100%;
}

/*==========================================================================
Header Two CSS
==========================================================================*/
.header__two {
  /*background: #ECEDF4;*/
  position: relative;
  z-index: 99;
  padding: 0 0px;
}

/*-------header-----design----white---start-----*/

/*.header__two::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: url("../img/shape/before.png");
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.header__two::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: url("../img/shape/after.png");
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}*/

/*-------header-----design----white---end-----*/


.header__two-topbar {
  padding: 0px 35px;
  background-color: var(--primary-color-2);
}

.header__sticky{
  padding: 0px 35px;
}

.header__two-topbar .borders {
  padding: 0 130px;
}
.header__two-topbar-left a {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--white);
  letter-spacing: 0.5px;
}
.header__two-topbar-left a i {
  color: var(--primary-color-2);
  margin-right: 6px;
}
.header__two-topbar-social ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: end;
}

.header__two-topbar-social ul li {
  list-style: none;
  position: relative;
  padding: 7px 9px;
}

.header__two-topbar-social ul li:after{
  content: '';
  width: 1px;
  height: 20px;
  background-color: #c4c5e67a;
  position: absolute;
  right: 0px;
  top: 11px;
}

.header__two-topbar-social ul li:last-child:after{
  display: none;
}


.header__two-topbar-social ul li:last-child {
  margin: 0;
  padding-right: 0px;
}
.header__two-topbar-social ul li a i {
  color: var(--white);
  transition: 0.4s;
  text-align: center;
  font-size: 14px;
  /*background-color: rgb(162, 153, 100);
  width: 30px;
  height: 29px;
  line-height: 27px;
  border-radius: 5px;
  box-shadow: inset 17px -12px 12px 0px rgb(183, 176, 123);*/
}
.header__two-topbar-social ul li a i:hover {
  color: var(--primary-color-1);
}

.login-scl-icn-wrp{
  display: flex;
  justify-content: end;
  column-gap: 10px;
}

.login-btn{
  padding-right: 25px;
}

.login-btn a{
  font-size: 15px;
  color: var(--white);
  background-color: var(--primary-color-1);
  padding: 6px 19px;
  height: 40px;
  display: block;
  transition: 0.2s ease;
}


.login-btn a:hover{
  background-color: #c60f2d;
}

/*==========================================================================
Header Three CSS
==========================================================================*/
.header__three {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

/*==========================================================================
Responsive Menu Css
==========================================================================*/
/*.responsive-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}*/

.mean-container a.meanmenu-reveal {
  color: var(--primary-color-2);
  width: 25px;
  height: 31px;
  top: 108px;
  padding: 0;
  margin-right: 42px;
  transition: all 0s ease-out 0s;
}
.mean-container a.meanmenu-reveal span {
  background: var(--primary-color-2);
  margin-top: 7px;
  height: 2px;
}
.mean-container .mean-bar {
  background: transparent;
  padding: 0;
  z-index: 99;
}
.mean-container .mean-bar a i {
  font-size: 27px;
  display: block;
  color: var(--primary-color-1);
}
.mean-container .mean-nav {
  background: var(--white);
  margin-top: 100px;
  box-shadow: var(--box-shadow-1);
}
.mean-container .mean-nav ul li a {
  transition: 0.4s;
}
.mean-container .mean-nav ul li a.mean-expand {
  background: var(--primary-color-1);
  height: 34px;
  margin: 0;
  border: 0;
  color: var(--white);
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--primary-color-1);
  color: var(--white);
}
.mean-container .mean-nav ul li a:hover {
  color: var(--primary-color-1);
  background: none;
}
.mean-container .mean-nav .sub-menu li a.mean-expand {
  background: var(--primary-color-1);
  height: 34px;
  color: var(--white);
}
.mean-container .mean-nav .sub-menu li a.mean-expand:hover {
  background: var(--primary-color-1);
}
.mean-container .mean-nav ul li a i {
  display: none;
}

.mean-container .mean-nav ul li a,
.mean-container .mean-nav ul li li a,
.mean-container .mean-nav li li:first-child > a {
  color: var(--white);
  font-size: 15px;
  line-height: 26px;
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: capitalize;
  border-top: 1px solid var(--border-color-2);
  opacity: 1;
  letter-spacing: 0.7px;
}

.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li li a:hover,
.mean-container .mean-nav li li:first-child > a:hover {
  color: var(--primary-color-1);
}

.header__area-menubar.two .menu-item-has-children ul li a:hover,
.header__area-menubar.two .menu-item-has-children > a:hover,
.header__area-menubar.two .menu-item-has-children ul li li a:hover {
  color: var(--primary-color-1);
}

.header__area-menubar.three .menu-item-has-children ul li a:hover,
.header__area-menubar.three .menu-item-has-children > a:hover,
.header__area-menubar.three .menu-item-has-children ul li li a:hover {
  color: var(--primary-color-3);
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  color: var(--white);
}

@media (max-width: 1720px) {
  .header__area-menubar-right-box-contact {
    padding-left: 30px;
    margin-left: 40px;
  }
  .header__area-menubar-center.two {
    margin-left: 0;
  }
  .header__two::after {
    width: 86%;
  }
  .header__two::before {
    width: 82%;
  }
  .header__two-topbar .borders {
    padding: 0 185px;
    padding-right: 210px;
  }
}
@media (max-width: 1600px) {
 /* .header__area-menubar.two .header__area-menubar-right-btn {
    margin-top: 14px;
  }*/
  .header__area-menubar.two .header__area-menubar-right-box-search {
    display: none;
  }
  .header__area-menubar-right-box-contact {
    padding-left: 0;
    margin-left: 0;
    border: 0;
  }
  .header__area-menubar-right-box-btn {
    margin-left: 45px;
  }
  .header__area-menubar-right-sidebar-popup-icon {
    margin-left: 45px;
    padding-left: 45px;
  }
  .header__area-menubar-right-btn .btn-one {
    padding: 11px 19px;
  }
  .header__two{
    padding: 0px 0px;
  }
  .header__two::after {
    width: 88%;
  }
  .header__two::before {
    width: 88%;
  }
}
@media (max-width: 1599px) {
  .header__two::after {
    width: 88%;
  }
  .header__two::before {
    width: 85%;
  }

}
@media (max-width: 1399px) {
  .header__area-menubar-right-btn .btn-one {
    padding: 14px 30px;
  }
  .header__area-menubar-right-sidebar-popup {
    padding: 70px 40px;
  }
  .header__two {
    padding: 0 10px;
  }
  .header__two::after {
    width: 94%;
  }
  .header__two::before {
    width: 91%;
  }
  .header__two-topbar .borders {
    padding: 0 180px;
    padding-right: 200px;
  }
  .header__area-menubar.three {
    padding: 0 20px;
    position: relative;
  }
}
@media (max-width: 1350px) {
  .header__two {
    background: var(--white);
    padding: 0;
  }
  .header__two::before {
    display: none;
  }
  .header__two::after {
    display: none;
  }
  .header__two-topbar {
    background: var(--primary-color-2);
  }
  .header__two-topbar-left a {
    color: var(--white);
  }
  .header__two-topbar-left a i {
    color: var(--white);
  }
  .header__two-topbar-social ul li a i {
    color: var(--white);
  }
  .header__two-topbar-social ul li a i:hover {
    color: var(--white);
  }
  .header__two .borders {
    padding: 0;
  }

 
  .header__area-menubar.two .header__area-menubar-left-logo {
    padding-top: 0;
  }
  .header__area-menubar.two .header__area-menubar-left-logo .one {
    display: none;
  }
  .header__area-menubar.two .header__area-menubar-left-logo .two {
    display: block;
  }
  .header__area-menubar.two .header__area-menubar-right {
    display: none;
  }
  .header__area-menubar.two .header__area-menubar-right-box-contact {
    display: none;
  }
 
  body.dark-mode .light {
    display: block;
  }
}
@media (max-width: 1299px) {
  .header__area-menubar-right-box-btn {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header__area-menubar-center-menu ul li a {
    padding: 42px 26px;
  }
  .header__area-menubar-center-menu ul li.menu-item-has-children > a::before {
    right: 16px;
  }
  .header__area-menubar-center-menu ul li.menu-item-has-children > a::after {
    right: 13px;
  }
  .header__area-menubar-center-menu.two ul li a {
    padding: 38px 24px;
  }
  .header__area-menubar-right-box-search {
    margin-left: 30px;
  }
  .header__area-menubar-right-sidebar-popup-icon {
    padding: 38px 0 38px 40px;
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .header__area {
    position: sticky;
    z-index: 9;
  }
  .header__area-menubar-left-logo a img {
    max-width: 150px;
  }
  .header__area-menubar-center {
    display: none;
  }
  .header__area-menubar-right {
    display: block;
  }
  .header__area-menubar-right-box-search {
    position: relative;
    z-index: 9999;
    padding: 39px 35px 39px 0;
    margin: 0 55px 0 0;
    border-right: 1px solid var(--border-color-2);
  }
  .header__area-menubar-right-box-search-icon i {
    font-size: 22px;
  }
  .header__area-menubar-right-box-search-box form {
    width: 90%;
  }
  .header__area-menubar-right-box-search.two {
    border-color: var(--color-8);
  }
  .header__area-menubar-right-sidebar {
    display: none;
  }
  .header__area-menubar .two .header__area-menubar-right {
    display: block;
  }
  .header__area-menubar .two .header__area-menubar-right-box-search {
    display: block;
  }
  .header__area-menubar.two .header__area-menubar-right {
    display: block;
  }
  .header__area-menubar.two .header__area-menubar-right-box-search {
    display: block;
  }
  .header__area-menubar.two .header__area-menubar-right .mean-container .mean-nav ul li a.mean-expand {
    background: var(--dark-two);
  }
 
  .header__area-menubar.two .header__area-menubar-right-btn {
    display: none;
  }
  .auto__container.pl-35.pr-35 {
    position: relative;
  }
  .header__area-menubar.three .mean-container a.meanmenu-reveal {
    margin-right: 20px;
  }
  .header__area-menubar.three .mean-container .mean-nav ul li a.mean-expand {
    background: var(--primary-color-3);
  }
}
@media (max-width: 575px) {
  .header__area {
    padding: 0;
  }
  .header__area-menubar {
    padding: 0;
  }
  .header__area-menubar-right-box-search {
    padding: 40px 25px 40px 0;
    margin: 0 50px 0 0;
  }
  .header__area-menubar-right .mean-container a.meanmenu-reveal {
    margin-right: 13px;
  }
  .header__area .mean-nav {
    margin-top: 102px;
  }
  .header__area-menubar.two .header__area-menubar-right .mean-container a.meanmenu-reveal {
    margin-right: 13px;
  }
  .auto__container.pl-35.pr-35 {
    padding: 0 12px;
  }
}
@media (max-width: 359px) {
  .header__area-menubar.three {
    padding: 0 10px;
  }
  .header__area-menubar.three .mean-container a.meanmenu-reveal {
    margin-right: 10px;
  }
}
/*==========================================================================
Banner One CSS
==========================================================================*/
.banner__one {
  position: relative;
  z-index: 1;
}
.banner__one-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.banner__one-image::after {
  content: "";
  position: absolute;
  background-image: url("../img/shape/banner-bg.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.banner__one-content {
  position: relative;
  z-index: 9;
  text-align: left;
  padding-bottom: 185px;
  padding-top: 180px;
  max-width: 740px;
}
.banner__one-content span {
  font-family: var(--heading-font);
  display: block;
  color: var(--primary-color-1);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
}
.banner__one-content h1 {
  color: var(--white);
  font-size: 100px;
  line-height: 110px;
  margin-bottom: 40px;
  max-width: 650px;
}
.banner__one-content-video-icon i {
  background: var(--white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: var(--primary-color-1);
}
.banner__one-content-button {
  display: flex;
}
.banner__one-content-button-item {
  margin-right: 30px;
}
.banner__one-content-button-item .btn-one::before {
  background: var(--white);
}
.banner__one-content-button-item .btn-one:hover {
  color: var(--primary-color-1);
}
.banner__one-content-button-item:last-child {
  margin: 0;
}
.banner__one-content-icon {
  position: absolute;
  bottom: 160px;
  right: 140px;
  z-index: -1;
}
.banner__one-content-icon img {
  max-width: 260px;
}
.banner__one-content .banner-four-pagination {
  position: absolute;
  left: -90px;
  top: 63%;
  transform: translateY(-50%);
  z-index: -1;
}
.banner__one-content .banner-four-pagination .swiper-pagination-bullet {
  border-radius: 50%;
  background: var(--primary-color-1);
  width: 8px;
  height: 8px;
  transition: all 0.4s ease-out 0s;
  opacity: 1;
  margin: 0;
  margin-top: 20px;
  position: relative;
}
.banner__one-content .banner-four-pagination .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid var(--primary-color-1);
  top: 50%;
  border-radius: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.banner__one-content .banner-four-pagination .swiper-pagination-bullet-active::after {
  opacity: 1;
}

/*==========================================================================
Banner Two CSS
==========================================================================*/
.banner__two {
  position: relative;
}
.banner__two-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 11;
  height: 670px;
}
.banner__two-image::before {
  content: "";
  position: absolute;
  background: linear-gradient(50deg,rgba(43, 52, 98, 0.91) 30%, rgba(253, 187, 45, 0) 80%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.banner__two-image-shape-one {
  position: absolute;
  left: -60px;
  bottom: 53px;
}
.banner__two-image-shape-two {
  position: absolute;
  right: 0;
  bottom: 0;
}
.banner__two-content {
  position: relative;
  padding: 80px 0px 60px 100px;
  width: 70%;
}
.banner__two-content .subtitle {
  position: absolute;
  left: 27%;
  top:14%;
  /*top: 5%;*/
  /*transform: translateX(-50%);*/
  text-transform: uppercase;
  font-weight: 700;
  font-size: 160px;
  line-height: 200px;
  font-family: var(--heading-font);
  font-style: normal;
  opacity: 0.07;
  color: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;

}
.banner__two-content span {
  color: var(--primary-color-3);
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--heading-font);
  margin-bottom: 10px;
  display: inline-block;
}
.banner__two-content h1 {
  color: var(--white);
  font-size: 49px;
  line-height: 67px;
  margin: 0px 0px 10px;
  width: 90%;
}

.banner__two-content p{
  color: var(--white);
  font-size: 16px;
  line-height: 30px;
  margin: 0 0px 30px;
  letter-spacing: 0.5px;
  width: 76%;
}

.banner__two-arrow-prev {
  display: inline-block;
  left: 135px;
}
.banner__two-arrow-prev i {
  width: 53px;
  height: 53px;
  line-height: 53px;
  display: inline-block;
  text-align: center;
  background: var(--primary-color-2);
  font-size: 20px;
  color: var(--white);
  border-radius: 50%;
  transition: 0.4s;
}
.banner__two-arrow-prev i:hover {
  background: var(--white);
  color: var(--text-heading-color);
}
.banner__two-arrow-next {
  display: inline-block;
  right: 165px;
}
.banner__two-arrow-next i {
  width: 53px;
  height: 53px;
  line-height: 53px;
  display: inline-block;
  text-align: center;
  background: var(--primary-color-2);
  font-size: 20px;
  color: var(--white);
  border-radius: 50%;
  transition: 0.4s;
}
.banner__two-arrow-next i:hover {
  background: var(--white);
  color: var(--text-heading-color);
}

.banner__two-content-button .btn-five, .banner__two-content-button .btn-eight{
  padding:14px 20px 14px 20px;
}

.banner__two-content-button{
  display: flex;
  column-gap: 18px;
  flex-wrap: wrap;
}


 .banner__two-content-button a i{
  margin-right: 7px;
 }



@media (max-width: 1599px) {
  .banner__two-arrow-prev {
    left: 35px;
  }
  .banner__two-arrow-next {
    right: 65px;
  }
  .banner__three .swiper-pagination {
    left: -50px;
  }
}


@media (max-width: 767px) {
  .banner__two-content h1 {
    font-size: 47px;
    line-height: 57px;
    margin-bottom: 30px;
  }
  .banner__two-content .subtitle {
    font-size: 140px;
  }
 
}
@media (max-width: 535px) {
  .banner__two-arrow-prev {
    left: 12px;
  }
  .banner__two-arrow-prev i {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .banner__two-arrow-next {
    right: 36px;
  }
  .banner__two-arrow-next i {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .banner__two .subtitle {
    top: 13%;
    font-size: 90px;
  }
}
@media (max-width: 480px) {
  .banner__two-content h1 {
    font-size: 38px;
    line-height: 48px;
  }
 
 
}
@media (max-width: 380px) {
  .banner__three {
    padding-top: 300px;
  }
}
@media (max-width: 359px) {
  .banner__two-content h1 {
    font-size: 32px;
    line-height: 42px;
  }
  
}
/*==========================================================================
Banner Four CSS
==========================================================================*/
@media (max-width: 1599px) {
  .banner__one-image::after {
    left: -160px;
  }
  .banner__two-arrow-prev {
    left: 35px;
  }
  .banner__two-arrow-next {
    right: 65px;
  }
  .banner__three .swiper-pagination {
    left: -50px;
  }
}
@media (max-width: 1399px) {
  .banner__one-image::after {
    left: -200px;
  }
  .banner__one-content {
    padding-bottom: 145px;
    padding-top: 140px;
  }
  .banner__one-content h1 {
    font-size: 80px;
    line-height: 90px;
    max-width: 580px;
    margin-bottom: 25px;
  }
  .banner__one-content p {
    margin-bottom: 40px;
  }
}
@media (max-width: 1099px) {
  .banner__one-image::after {
    left: -320px;
    width: 110%;
  }
  .banner__one .banner-four-pagination {
    display: none;
  }
}
@media (max-width: 991px) {
  .banner__one-image::after {
    left: 0;
    width: 100%;
    background: var(--black);
  }
}
@media (max-width: 767px) {
  .banner__one-content {
    text-align: center;
  }
  .banner__one-content h1 {
    font-size: 72px;
    line-height: 82px;
  }
  .banner__one-content-button {
    justify-content: center;
  }
}
@media (max-width: 535px) {
  .banner__one-content h1 {
    font-size: 65px;
    line-height: 75px;
  }
}
@media (max-width: 480px) {
  .banner__one-content h1 {
    font-size: 47px;
    line-height: 57px;
  }
  .banner__one-content-button {
    display: initial;
  }
  .banner__one-content-button-item {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 359px) {
  .banner__one-content h1 {
    font-size: 41px;
    line-height: 51px;
  }
}
/*==========================================================================
About Two CSS
==========================================================================*/
.about__two {
  position: relative;
  z-index: 1;
  padding: 70px 40px 155px;
  background-image: url(../img/about-bg.jpg);
}
.about__two-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.about__two-right-title {
  margin-bottom: 15px;
}
.about__two-right-title h2 {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 51px;
  width: 86%;
}
.about__two-right-title p {
  max-width: 100%;
  font-size: 15px;
  line-height: 31px;
  text-align: justify;
}
.about__two-right-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
.about__two-right-btn-author {
  display: flex;
  align-items: center;
  gap: 30px;
}
.about__two-right-btn-author-avatar img {
  border-radius: 50%;
  max-width: 60px;
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__two-right-btn-author-name h6 {
  color: var(--color-2);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.about__two-right-btn .btn-one::before {
  background: var(--primary-color-2);
}
.about__two-right-btn .btn-one:hover {
  color: var(--white);
  border-color: var(--primary-color-2);
}
.about__two-right-experience {
  display: flex;
  align-items: center;
  width: 100%;
}
.about__two-right-experience-counter {
  padding-right: 25px;
  margin-right: 30px;
  border-right: 1px solid var(--border-color-2);
}


.about__two-right-experience-counter h1{
  font-size: 6rem;
  font-weight:800;
  -webkit-background-clip: text;
  background-clip: text;         
  color: transparent;            
  background-image: url("../img/about/about-img-1.png");
  background-size: cover;
  background-position: center;
  background-color: #222;
}


.about__two-right-experience-counter h1{
  -webkit-text-fill-color: transparent;
}

.about__two-right-experience h6 {
  width: 85%;
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
}


.abt-img{
  margin-right: 25px;
}


.abt-img img{
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.about__two-right{
  margin-left: 25px;
}

/*---------------------------*/

.main-abt-img {
  position: relative;
}
.abt-combine-img {
  display: flex;
  column-gap: 10px;
  position: relative;
}
.abt-img1 {
  /*overflow: hidden;*/
  position: relative;
  border-radius: 50px 0px 30px 0px;
  width: 72%;
}

.abt-img1:before{
  content: '';
  width: 66%;
  height: 96%;
  position: absolute;
  bottom: -35px;
  left: -3px;
  background-color: var(--primary-color-1);
  z-index: -1;
  border-radius: 0px 0px 35px;
}

.abt-img1:after{
  content: '';
  background: radial-gradient(circle,rgba(63, 94, 251, 0) 0%, rgba(20, 22, 57, 0.96) 100%);
  width: 100%;
  height: 100%;
  opacity: 1;
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 50px 0px 30px 0px;
}


.abt-img1 img {
  border-radius: 50px 0px 30px 0px;
  height: 520px;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.abt-img2 {
  overflow: hidden;
  position: absolute;
  border-radius: 20px;
  padding: 4px;
  right: -6px;
  top: 50%;
  animation: jumpAni 13s linear infinite;
  width: 40%;
}
.abt-img2 img {
  height: 310px;
  object-fit: cover;
  object-position: 85%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: hidden;
}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px)
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

.abt-bttm-shape {
  position: absolute;
  right: 80px;
  z-index: -1;
  animation: movingX 8s linear infinite;
  top: 6%;
}
@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  50% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px)
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

.main-abt-img .abt-img2:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.overlay-anim::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}
.overlay-anim:hover::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

/*---------------------------*/





@media (max-width: 390px) {
  .about__three-right-content {
    bottom: 0;
  }
}
@media (max-width: 359px) {
  .about__three-right-image-two {
    margin: 0;
  }
}
/*==========================================================================
About Company CSS
==========================================================================*/
.about__company {
  position: relative;
}
.about__company-shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.about__company-shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.about__company-left {
  position: relative;
}
.about__company-left-image {
  display: flex;
  align-items: start;
  gap: 25px;
}
.about__company-left-image img {
  overflow: hidden;
}
.about__company-left-experience {
  text-align: center;
  position: absolute;
  left: 35%;
  bottom: 20px;
  background: var(--primary-color-1);
  width: 190px;
  height: 200px;
  padding: 40px 35px;
}
.about__company-left-experience h2 {
  color: var(--white);
}
.about__company-left-experience h6 {
  color: var(--white);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.about__company-right-title h2 {
  margin-bottom: 30px;
}
.about__company-right-title p {
  margin-bottom: 45px;
}

/*==========================================================================
Company Two CSS
==========================================================================*/
.company__two-left-title h2 {
  max-width: 460px;
  margin-bottom: 20px;
}
.company__two-left-title p {
  max-width: 510px;
}
.company__two-left-skill {
  margin-top: 35px;
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  gap: 35px;
}

.company__two-left-skill-item h6 {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  max-width: 145px;
}

/*==========================================================================
About Solution CSS
==========================================================================*/
.about__solution {
  position: relative;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.about__solution::after {
  content: "";
  position: absolute;
  background: var(--black);
  width: 100%;
  height: 100%;
  opacity: 0.8;
  left: 0;
  top: 0;
  z-index: -1;
}
.about__solution-left h2 {
  color: var(--white);
}
.about__solution-right {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
.about__solution-right-shape {
  position: absolute;
  top: 0;
  right: 150px;
}
.about__solution-right .btn-one::before {
  background: var(--white);
}
.about__solution-right .btn-one:hover {
  color: var(--text-heading-color);
}

/*==========================================================================
Company History CSS
==========================================================================*/
.company__history-area {
  max-width: 960px;
  margin: 0 auto;
}
.company__history-area-items {
  display: flex;
}
.company__history-area-items-left {
  padding-right: 70px;
  margin-right: 70px;
  border-right: 1px dashed var(--primary-color-1);
}
.company__history-area-items-left-content {
  padding: 39px;
  padding-bottom: 37px;
  border: 1px solid var(--border-color-1);
  margin-top: 30px;
  position: relative;
}
.company__history-area-items-left-content::before {
  content: "";
  position: absolute;
  right: -76px;
  top: 70px;
  width: 10px;
  height: 10px;
  background: var(--primary-color-1);
  box-shadow: 0px 5px 20px rgba(249, 76, 48, 0.5);
  border-radius: 50%;
}
.company__history-area-items-left-content::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 65px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-bottom: var(--border-color-1) solid 1px;
  border-right: var(--border-color-1) solid 1px;
  transform: rotate(-45deg);
}
.company__history-area-items-left-content-date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.company__history-area-items-left-content-date span {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
  background: var(--primary-color-1);
  padding: 7px 22px;
  padding-left: 20px;
  padding-right: 25px;
  -webkit-clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
          clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
}
.company__history-area-items-right img {
  max-width: 410px;
}
.company__history-area-item {
  display: flex;
}
.company__history-area-item-left {
  padding-right: 69px;
  margin-right: 70px;
  border-right: 1px dashed var(--primary-color-1);
}
.company__history-area-item-left img {
  max-width: 410px;
}
.company__history-area-item-right-content {
  padding: 39px;
  padding-bottom: 37px;
  border: 1px solid var(--border-color-1);
  margin-top: 30px;
  position: relative;
}
.company__history-area-item-right-content::before {
  content: "";
  position: absolute;
  left: -76px;
  top: 70px;
  width: 10px;
  height: 10px;
  background: var(--primary-color-1);
  box-shadow: 0px 5px 20px rgba(249, 76, 48, 0.5);
  border-radius: 50%;
}
.company__history-area-item-right-content::after {
  content: "";
  position: absolute;
  left: -11px;
  top: 65px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-top: var(--border-color-1) solid 1px;
  border-left: var(--border-color-1) solid 1px;
  transform: rotate(-45deg);
}
.company__history-area-item-right-content-date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.company__history-area-item-right-content-date span {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
  background: var(--primary-color-1);
  padding: 7px 22px;
  padding-left: 20px;
  padding-right: 25px;
  -webkit-clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
          clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
}

@media (max-width: 1199px) {
  .company__history-area-items-left-content {
    padding: 39px 30px;
    padding-bottom: 37px;
  }
  .company__history-area-items-right img {
    max-width: 398px;
  }
  .company__history-area-item-left {
    padding-right: 70px;
  }
  .company__history-area-item-left img {
    max-width: 397px;
  }
  .company__history-area-item-right-content {
    padding: 39px 30px;
    padding-bottom: 37px;
  }
}
@media (max-width: 991px) {
  .company__history-area-items {
    display: grid;
  }
  .company__history-area-items-left {
    padding: 0;
    margin: 0;
    border: 0;
  }
  .company__history-area-items-left-content {
    margin-top: 40px;
  }
  .company__history-area-items-left-content::before {
    display: none;
  }
  .company__history-area-items-left-content::after {
    left: 35px;
    top: -10px;
    transform: rotate(-135deg);
  }
  .company__history-area-items-right img {
    max-width: 100%;
    width: 100%;
  }
  .company__history-area-item {
    display: block;
  }
  .company__history-area-item-left {
    padding: 0;
    margin: 0;
    border: 0;
  }
  .company__history-area-item-left img {
    max-width: 100%;
    width: 100%;
  }
  .company__history-area-item-right-content {
    margin-top: 40px;
  }
  .company__history-area-item-right-content::before {
    display: none;
  }
  .company__history-area-item-right-content::after {
    left: 35px;
    top: -10px;
    transform: rotate(45deg);
  }
}
@media (max-width: 510px) {
  .about__company-left-image {
    gap: 15px;
  }
  .about__company-left-experience {
    left: 17%;
    bottom: 10px;
    width: 160px;
    height: 150px;
    padding: 27px 25px;
  }
  .company__two-left-skill {
    margin-top: 30px;
    margin-bottom: 35px;
    display: block;
  }
  .company__two-left-skill-item {
    margin-bottom: 15px;
  }
  .company__two-left-skill-item:last-child {
    margin: 0;
  }
}
@media (max-width: 420px) {
  .company__history-area-item-right-content,
  .company__history-area-items-left-content {
    padding: 35px 25px;
  }
  .company__history-area-item-right-content-date h5,
  .company__history-area-items-left-content-date h5 {
    font-size: 19px;
    line-height: 29px;
  }
  .company__history-area-item-right-content-date span,
  .company__history-area-items-left-content-date span {
    font-size: 16px;
    line-height: 16px;
    padding-left: 15px;
    padding-right: 20px;
    -webkit-clip-path: polygon(0 0, 100% 0, 82% 50%, 100% 99%, 0 100%, 0% 50%);
            clip-path: polygon(0 0, 100% 0, 82% 50%, 100% 99%, 0 100%, 0% 50%);
  }
}
@media (max-width: 359px) {
  .company__history-area-item-right-content,
  .company__history-area-items-left-content {
    padding: 30px 20px;
  }
  .company__history-area-item-right-content-date h5,
  .company__history-area-items-left-content-date h5 {
    font-size: 17px;
    line-height: 27px;
  }
  .company__history-area-item-right-content-date span,
  .company__history-area-items-left-content-date span {
    font-size: 14px;
    line-height: 14px;
  }
}
/*==========================================================================
Features CSS
==========================================================================*/
.features {
  margin-top: -80px;
  position: relative;
  z-index: 1;
}
.features-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: var(--box-shadow-1);
}
.features-area-item {
  position: relative;
  overflow: hidden;
  padding: 40px;
  transition: 0.4s;
  background: var(--white);
}
.features-area-item span {
  position: absolute;
  right: -50px;
  top: -50px;
}
.features-area-item span i {
  font-size: 25px;
  color: var(--primary-color-3);
  position: relative;
  width: 137px;
  height: 137px;
  line-height: 137px;
  text-align: center;
  transition: 0.4s;
}
.features-area-item span i::before {
  position: relative;
  top: 24px;
  right: 20px;
}
.features-area-item span i::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 137px;
  height: 137px;
  opacity: 0.1;
  background: var(--primary-color-3);
  border-radius: 50%;
  transition: 0.4s;
}
.features-area-item h4 {
  margin-bottom: 10px;
  transition: 0.4s;
}
.features-area-item p {
  max-width: 270px;
  transition: 0.4s;
}
.features-area-item-hover {
  background: var(--primary-color-3);
}
.features-area-item-hover h4 {
  color: var(--white);
}
.features-area-item-hover p {
  color: var(--white);
}
.features-area-item-hover.features-area-item span i {
  color: var(--white);
}
.features-area-item-hover.features-area-item span i::after {
  background: var(--white);
}
.features .ltb-radius {
  border-radius: 6px 0 0 6px;
}
.features .rtb-radius {
  border-radius: 0 6px 6px 0;
}

@media (max-width: 1299px) {
  .features-area-item {
    padding: 40px 30px;
  }
}
@media (max-width: 991px) {
  .features-area {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 766px) {
  .features-area {
    grid-template-columns: repeat(1, 1fr);
  }
  .features-area-item {
    border-radius: 4px;
  }
  .features .ltb-radius {
    border-radius: 4px;
  }
  .features .rtb-radius {
    border-radius: 4px;
  }
}
/*==========================================================================
Consulting CSS
==========================================================================*/
.consulting__area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.consulting__area-shape {
  position: absolute;
  bottom: -80px;
  right: 0;
  z-index: -1;
}
.consulting__area-right-title {
  margin-bottom: 30px;
}
.consulting__area-right-title h2 {
  margin-bottom: 30px;
}
.consulting__area-right-title p {
  max-width: 493px;
}
.consulting__area-right-list span {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--heading-font);
  margin-bottom: 20px;
}
.consulting__area-right-list span i {
  color: var(--primary-color-2);
  border: 1px solid var(--primary-color-2);
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  margin-right: 15px;
  text-align: center;
  border-radius: 50%;
}
.consulting__area-right .btn-one {
  margin-top: 30px;
}
.consulting__area-right .btn-one::before {
  background: var(--primary-color-2);
}
.consulting__area-right .btn-one:hover {
  color: var(--white);
  border-color: var(--primary-color-2);
}

/*==========================================================================
Work CSS
==========================================================================*/
.work__area-item {
  text-align: center;
  position: relative;
}
.work__area-item span {
  border: 1px solid var(--border-color-1);
  color: var(--color-13);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 0.8px;
  font-weight: 700;
  font-size: 48px;
  font-family: var(--heading-font);
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  transition: 0.4s;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.work__area-item span::before {
  content: "";
  position: absolute;
  background: var(--primary-color-2);
  width: 0;
  height: 0;
  border-radius: 50%;
  margin: 0 auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
  z-index: -1;
}
.work__area-item h6 {
  margin-bottom: 10px;
}
.work__area-item p {
  max-width: 280px;
  margin: 0 auto;
}
.work__area-item-arrow {
  position: absolute;
  top: 35px;
  right: -58px;
}
.work__area-item:hover span {
  color: var(--white);
  border-color: var(--primary-color-2);
}
.work__area-item:hover.work__area-item span::before {
  width: 100%;
  height: 100%;
}


/*==========================================================================
Services Two CSS
==========================================================================*/
.services__two {
  position: relative;
  z-index: 2;
  padding: 50px 35px 60px;
}
.services__two-item {
  position: relative;
  z-index: 1;
  background-position:center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 330px;
}
.services__two-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #282d44c7;
  /*opacity: 0;*/
  transition: 0.4s;
}
.services__two-item-content {
  background: var(--white);
  padding: 30px;
  margin: 20px;
  transition: 0.4s;
  transform: scale(0.97);
  /*opacity: 0;*/
  height: 290px;
  border-radius: 20px;
}
.services__two-item-content-icon {
  margin-bottom: 22px;
}
.services__two-item-content h4 {
  margin-bottom: 12px;
  line-height: 28px;
  font-size: 19px;
}
.services__two-item-content h4 a {
  transition: 0.4s;
}
.services__two-item-content h4 a:hover {
  color: var(--primary-color-1);
}
.services__two-item-content .simple-btn-2 {
  color: var(--primary-color-1);
  margin-top: 18px;
  position: absolute;
  bottom: 25px;
}
.services__two-item-content .simple-btn-2:hover {
  color: var(--text-heading-color);
}
.services__two-item:hover::before {
  opacity: 0.7;
}
.services__two-item:hover .services__two-item-content {
  opacity: 1;
  transform: scale(1);
}

.services__two-arrow-next {
  display: inline-block;
  margin: 0;
  right: 4%;
  position: absolute;
  top: 55%;
}


.services__two-arrow-prev {
  display: inline-block;
  margin: 0;
  left: 3%;
  position: absolute;
  top: 55%;
}
.services__two-arrow-prev i,
.services__two-arrow-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  border: 2px solid #A9A8C4;
  font-size: 18px;
  color: #4c4b6f;
  border-radius: 50%;
  transition: 0.4s;
  background-color: #fffffff0;
  opacity: 0.5;
}
.services__two-arrow-prev i:hover,
.services__two-arrow-next i:hover {
  background: var(--primary-color-1);
  color: var(--white);
  border-color: var(--primary-color-1);
  opacity: 1;
}


.services__two-item-content p{
  font-size: 14px;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}


/*==========================================================================
Services Page CSS
==========================================================================*/
.services__page .slider {
  position: relative;
  z-index: 1;
}

/*==========================================================================
Services Details CSS
==========================================================================*/
.services__details-left-content h2 {
  font-size: 27px;
  color: var(--dark-two);
  margin-bottom: 13px;
}

.services__details-left-content-list {
  padding-bottom: 35px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color-1);
}
.services__details-left-content-list span {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  max-width: 586px;
}
.services__details-left-content-list span:last-child {
  margin: 0;
}
.services__details-left-content-list span i {
  color: var(--primary-color-1);
  margin-right: 10px;
}
.services__details-left-content-list.bold span {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1599px) {
  .services__three-arrow-next {
    right: -48px;
  }
  .services__three-arrow-prev {
    left: -70px;
  }
}
@media (max-width: 1399px) {
  .services__one-item {
    padding: 40px 30px;
    padding-bottom: 34px;
  }
}
@media (max-width: 1299px) {
  .services__three-arrow {
    text-align: center;
    margin-bottom: 65px;
    margin-top: -30px;
  }
  .services__three-arrow-next {
    position: initial;
    margin-left: 10px;
  }
  .services__three-arrow-prev {
    position: initial;
  }
}
@media (max-width: 1199px) {
  .services__two-item-content {
    padding: 30px 25px;
  }
  .services__three-item-content {
    padding: 40px 25px;
    padding-top: 60px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .services__two-item-content {
    padding: 30px 12px;
  }
}
@media (max-width: 575px) {
  .services__two-item-content {
    padding: 30px;
  }
}
/*==========================================================================
Cta CSS
==========================================================================*/
.cta__area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta__area::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--color-6);
  z-index: -1;
}
.cta__area-bg {
  padding: 60px 70px;
  padding-right: 0;
  background: var(--primary-color-1);
  position: relative;
  z-index: 1;
}
.cta__area-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: -3000px;
  width: 3000px;
  height: 100%;
  background: var(--primary-color-1);
  z-index: -1;
}
.cta__area-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/shape/cta.png");
  background-repeat: no-repeat;
  width: 122%;
  height: 100%;
  background-size: cover;
  z-index: -1;
}
.cta__area-title h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.cta__area-title .text-two {
  color: var(--white);
}
.cta__area-form form {
  display: flex;
  gap: 30px;
  justify-content: end;
}
.cta__area-form form input {
  border-radius: 6px;
  padding-right: 0;
}

/*==========================================================================
Cta Two CSS
==========================================================================*/
.cta__two {
  position: relative;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.cta__two::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.85;
  z-index: -2;
}
.cta__two-shape {
  position: absolute;
  right: 200px;
  top: 0;
  z-index: -1;
  mix-blend-mode: soft-light;
  height: 100%;
}
.cta__two-title h2 {
  color: var(--white);
}
.cta__two-info {
  display: flex;
  gap: 20px;
  justify-content: end;
}
.cta__two-info-item {
  display: inline-block;
  background: var(--white);
  padding: 30px 45px;
  border-radius: 6px;
}
.cta__two-info-item-icon {
  margin-bottom: 15px;
}
.cta__two-info-item-icon i {
  color: var(--primary-color-1);
  font-size: 20px;
  background: var(--color-6);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  transition: 0.4s;
}
.cta__two-info-item h6 {
  text-transform: lowercase;
}
.cta__two-info-item h6 a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  transition: all 400ms ease;
}
.cta__two-info-item h6 a:hover {
  background-size: 100% 2px;
  color: var(--primary-color-1);
}
.cta__two-info-item span {
  font-size: 14px;
  font-weight: 600;
}
.cta__two-info-item:hover .cta__two-info-item-icon i {
  background: var(--primary-color-1);
  color: var(--white);
}

/*==========================================================================
Get In Touch CSS
==========================================================================*/
.getIn__touch {
  position: relative;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 0;
}
.getIn__touch-shape {
  position: absolute;
  right: 150px;
  top: 0;
  z-index: -1;
  mix-blend-mode: soft-light;
}
.getIn__touch::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.85;
  z-index: -2;
}
.getIn__touch-left {
  box-shadow: var(--box-shadow-2);
  background: var(--white);
  padding: 71px 68px;
  margin-right: 125px;
  margin-bottom: -120px;
}
.getIn__touch-left-form input {
  border-radius: 6px;
}
.getIn__touch-left-form .btn-one {
  width: 100%;
  justify-content: center;
}
.getIn__touch-right-title h2 {
  margin-bottom: 30px;
  color: var(--white);
  max-width: 495px;
}
.getIn__touch-right-title p {
  color: var(--white);
  max-width: 475px;
}
.getIn__touch-right-bottom {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.getIn__touch-right-bottom-text h4 {
  color: var(--white);
  max-width: 200px;
}
.getIn__touch-right-bottom-image {
  margin-left: 40px;
}
.getIn__touch-right-bottom-image ul {
  padding: 0;
  margin: 0;
}
.getIn__touch-right-bottom-image ul li {
  padding: 0;
  display: inline-block;
  list-style: none;
  margin-left: -23px;
}
.getIn__touch-right-bottom-image ul li:first-child {
  margin: 0;
}
.getIn__touch-right-bottom-image ul li img {
  max-width: 50px;
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid var(--border-white);
  border-radius: 50%;
  transition: 0.4s;
}
.getIn__touch-right-bottom-image ul li img:hover {
  border-color: var(--primary-color-1);
}

/*==========================================================================
Get In Touch Three CSS
==========================================================================*/
.getIn__touch-three {
  position: relative;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.getIn__touch-three-shape {
  position: absolute;
  right: 36%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  mix-blend-mode: color-dodge;
}
.getIn__touch-three::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.85;
  z-index: -2;
}
.getIn__touch-three-left-title h2 {
  margin-bottom: 30px;
  color: var(--white);
  max-width: 545px;
}
.getIn__touch-three-left-title p {
  color: var(--color-4);
  max-width: 530px;
}
.getIn__touch-three-left-video {
  margin-top: 55px;
  display: flex;
  align-items: center;
  gap: 45px;
}
.getIn__touch-three-left-video-icon.video a {
  color: var(--primary-color-3);
}
.getIn__touch-three-left-video-text h4 {
  color: var(--white);
  max-width: 200px;
}
.getIn__touch-three-left-video-shape {
  margin-left: 90px;
}
.getIn__touch-three-right {
  box-shadow: var(--box-shadow-2);
  background: var(--white);
  padding: 50px;
  border-radius: 6px;
  margin-left: 75px;
  margin-bottom: -50px;
}
.getIn__touch-three-right h3 {
  margin-bottom: 40px;
}
.getIn__touch-three-right-form input,
.getIn__touch-three-right-form textarea {
  background: var(--color-6);
  border-color: var(--color-6);
  color: var(--color-2);
}
.getIn__touch-three-right-form input:focus,
.getIn__touch-three-right-form textarea:focus {
  border-color: var(--primary-color-3);
}

/*==========================================================================
Help CSS
==========================================================================*/
.help__area {
  padding-top: 49px;
  padding-left: 50px;
  display: flex;
  align-items: center;
  gap: 90px;
}
.help__area-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
.help__area-item-icon i {
  color: var(--primary-color-1);
  border: 1px solid var(--color-7);
  font-size: 30px;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s;
}
.help__area-item-info span {
  color: var(--color-2);
}
.help__area-item-info h5 {
  transition: 0.4s;
  text-transform: lowercase;
}
.help__area-item-info h5:hover {
  color: var(--primary-color-1);
}
.help__area-item:hover .help__area-item-icon i {
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
  color: var(--white);
}

@media (max-width: 1399px) {
  .cta__area-bg {
    padding: 60px 40px;
  }
  .cta__area-form form {
    gap: 25px;
  }
  .getIn__touch-shape {
    height: 100%;
  }
  .getIn__touch-left {
    padding: 60px 50px;
    margin-right: 80px;
    margin-bottom: -115px;
  }
  .getIn__touch-right-title h2 {
    margin-bottom: 23px;
  }
  .help__area {
    padding-top: 45px;
    padding-left: 45px;
    gap: 30px;
    justify-content: end;
  }
  .getIn__touch-three-right {
    padding: 45px 40px;
    margin-left: 60px;
  }
}
@media (max-width: 1199px) {
  .cta__area-form {
    margin-top: 30px;
  }
  .cta__area-form form {
    justify-content: start;
  }
  .cta__area-form-item {
    width: 100%;
  }
  .getIn__touch-left {
    padding: 40px 30px;
    margin-right: 0;
  }
  .getIn__touch-right-bottom {
    gap: 30px;
  }
  .help__area {
    gap: 20px;
  }
  .help__area-item {
    gap: 20px;
  }
  .help__area-item-icon i {
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .getIn__touch-three-right {
    padding: 40px 30px;
    margin-left: 10px;
  }
  .getIn__touch-three-left-video-shape {
    margin-left: 20px;
  }
  .cta__two-info-item {
    padding: 30px 40px;
  }
}
@media (max-width: 991px) {
  .cta__area-bg {
    padding: 50px 30px;
    padding-right: 0;
  }
  .cta__area-form form {
    gap: 20px;
  }
  .cta__area-form form input {
    padding-right: 10px;
  }
  .getIn__touch {
    padding-bottom: 120px;
  }
  .getIn__touch-left {
    margin: 0;
  }
  .getIn__touch-right-bottom {
    gap: 30px;
  }
  .help__area {
    justify-content: start;
    padding-left: 0;
  }
  .getIn__touch-three-right {
    margin-left: 0;
  }
  .cta__two-title {
    text-align: center;
  }
  .cta__two-info {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cta__area-form form {
    display: initial;
  }
  .getIn__touch-right-bottom {
    gap: 20px;
  }
  .getIn__touch-right-bottom-image {
    margin: 0;
  }
  .help__area-item {
    gap: 16px;
  }
  .cta__two-info-item {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cta__area-bg {
    padding: 50px 0;
  }
  .cta__area-bg .pr-0 {
    padding-right: 12px;
  }
  .getIn__touch {
    padding-bottom: 85px;
  }
  .getIn__touch-three-left-video-shape {
    display: none;
  }
}
@media (max-width: 540px) {
  .help__area {
    display: block;
    padding-top: 15px;
  }
  .help__area-item {
    margin-top: 30px;
  }
  .cta__two-info {
    display: block;
  }
  .cta__two-info-item {
    display: block;
    margin-bottom: 30px;
  }
  .cta__two-info-item:last-child {
    margin: 0;
  }
}
@media (max-width: 490px) {
  .getIn__touch-right-bottom-shape {
    display: none;
  }
}
@media (max-width: 390px) {
  .getIn__touch-right-bottom {
    display: block;
  }
  .getIn__touch-right-bottom-image {
    margin-top: 30px;
  }
}
/*==========================================================================
Pricing CSS
==========================================================================*/
.pricing__area-item {
  padding: 0 70px 50px 50px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 60px var(--color-10);
  border-radius: 6px;
  margin-top: 75px;
}
.pricing__area-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/shape/price.png");
  background-size: cover;
  z-index: -1;
}
.pricing__area-item-price {
  display: inline-block;
  width: 150px;
  height: 175px;
  padding: 49px 0;
  text-align: center;
  background: var(--primary-color-3);
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  border: 0;
  margin-bottom: 20px;
  margin-top: -75px;
  position: relative;
  z-index: 1;
}
.pricing__area-item-price h4 {
  color: var(--white);
}
.pricing__area-item-price h4 span {
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
}
.pricing__area-item-price .text-two {
  color: var(--white);
}
.pricing__area-item-title .text-two {
  font-weight: 500;
  color: var(--body-color);
}
.pricing__area-item-list {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color-1);
}
.pricing__area-item-list ul {
  padding: 0;
  margin: 0;
}
.pricing__area-item-list ul li {
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 18px;
}
.pricing__area-item-list ul li i {
  width: 20px;
  height: 20px;
  line-height: 17px;
  text-align: center;
  border: 1px solid var(--primary-color-3);
  border-radius: 50%;
  color: var(--primary-color-3);
  font-size: 12px;
  font-weight: 400;
  margin-right: 10px;
}
.pricing__area-item-list ul li:last-child {
  margin: 0;
}
.pricing__area-item .btn-eight {
  width: 100%;
  border-color: var(--border-color-1);
  justify-content: center;
  color: var(--text-heading-color);
  margin-top: 30px;
}
.pricing__area-item .btn-eight::before {
  background: var(--primary-color-3);
}
.pricing__area-item .btn-eight:hover {
  color: var(--white);
  border-color: var(--primary-color-3);
}
.pricing__area-item.page .pricing__area-item-price {
  background: var(--primary-color-1);
}
.pricing__area-item.page .pricing__area-item-list ul li i {
  color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}
.pricing__area-item.page.pricing__area-item .btn-eight::before {
  background: var(--primary-color-1);
}
.pricing__area-item.page.pricing__area-item .btn-eight:hover {
  border-color: var(--primary-color-1);
}

/*==========================================================================
Pricing Two CSS
==========================================================================*/
.pricing__two {
  background: var(--color-6);
}
.pricing__two-title h2 {
  margin-bottom: 30px;
}
.pricing__two-title p {
  margin-bottom: 40px;
}
.pricing__two-item {
  background: var(--white);
  padding: 40px;
}
.pricing__two-item-price {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color-1);
}
.pricing__two-item-price > span {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--heading-font);
  margin-bottom: 5px;
  display: inline-block;
}
.pricing__two-item-price h2 span {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  margin-left: 10px;
  display: inline-block;
}
.pricing__two-item-list ul {
  padding: 0;
  margin: 0;
}
.pricing__two-item-list ul li {
  list-style: none;
  color: var(--text-heading-color);
  margin-bottom: 20px;
}
.pricing__two-item-list ul li i {
  color: var(--primary-color-1);
  font-size: 20px;
  margin-right: 10px;
}
.pricing__two-item-list ul li:last-child {
  margin: 0;
}
.pricing__two-item-btn {
  margin-top: 30px;
}
.pricing__two-item-btn .btn-three {
  border-color: var(--border-color-1);
  color: var(--text-heading-color);
}
.pricing__two-item-btn .btn-three:hover {
  color: var(--white);
  border-color: var(--primary-color-1);
}
.pricing__two-button {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}
.pricing__two-button .nav-item button {
  background: transparent;
  border: 1px solid var(--border-color-1);
  font-weight: 600;
  font-size: 14px;
  line-height: 50px;
  text-transform: capitalize;
  font-family: var(--heading-font);
  padding: 0 30px;
  margin: 0 10px;
  color: var(--text-heading-color);
}
.pricing__two-button .nav-item .active {
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
  color: var(--white);
}

@media (max-width: 1399px) {
  .pricing__two-item {
    padding: 30px 25px;
  }
  .pricing__two-item.center .pricing__two-item-btn .theme-btn {
    padding: 12px 34px;
  }
  .pricing__two-item-btn .btn-three {
    padding: 11px 34px;
  }
}
@media (max-width: 1199px) {
  .pricing__two-title {
    text-align: center;
  }
  .pricing__two-button {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .pricing__area-item {
    padding: 0 50px 50px 40px;
  }
}
@media (max-width: 359px) {
  .pricing__area-item {
    padding: 0 30px 50px 30px;
  }
}
/*==========================================================================
Team CSS
==========================================================================*/
.team__area-item-image {
  position: relative;
  z-index: 1;
}
.team__area-item-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 20%;
  top: 0;
  left: 0;
  background: var(--black);
  opacity: 0;
  transition: 0.4s;
}
.team__area-item-image-icon {
  position: absolute;
  bottom: 70px;
  right: 30px;
  z-index: 1;
}
.team__area-item-image-icon span {
  color: var(--white);
  height: 40px;
  width: 40px;
  background: var(--primary-color-2);
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  display: inline-block;
  transition: 0.4s;
  cursor: pointer;
}
.team__area-item-image-icon.page span {
  background: var(--primary-color-1);
}
.team__area-item-image-icon.page .team__area-item-image-social ul li a i:hover {
  background: var(--primary-color-1);
}
.team__area-item-image-icon .team__area-item-image-social {
  position: absolute;
  bottom: 50px;
}
.team__area-item-image-icon:hover .team__area-item-image-social {
  opacity: 1;
  visibility: visible;
}
.team__area-item-image-social {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.team__area-item-image-social ul {
  padding: 0;
  margin: 0;
}
.team__area-item-image-social ul li {
  list-style: none;
  margin-bottom: 8px;
}
.team__area-item-image-social ul li:last-child {
  margin: 0;
}
.team__area-item-image-social ul li a i {
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-heading-color);
  transition: 0.4s;
}
.team__area-item-image-social ul li a i:hover {
  background: var(--primary-color-2);
  color: var(--white);
}
.team__area-item-image img {
  width: 100%;
}
.team__area-item-content {
  padding: 22px;
  margin: 0 30px;
  margin-top: -60px;
  background: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  box-shadow: var(--box-shadow-1);
}
.team__area-item-content .text-eight {
  font-weight: 600;
}
.team__area-item-content h5 a {
  transition: 0.4s;
}
.team__area-item-content h5 a:hover {
  color: var(--primary-color-2);
}
.team__area-item-content.page h5 a:hover {
  color: var(--primary-color-1);
}
.team__area-item:hover .team__area-item-image::before {
  height: 100%;
  opacity: 0.7;
  z-index: 1;
}
.team__area h6 {
  color: var(--color-2);
  font-size: 18px;
  line-height: 30px;
}
.team__area h6 a {
  color: var(--primary-color-1);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 600ms ease;
}
.team__area h6 a:hover {
  background-size: 100% 1px;
}

/*==========================================================================
Team Two CSS
==========================================================================*/
.team__two-item {
  text-align: center;
}
.team__two-item-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.team__two-item-image::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 0;
  display: block;
  content: "";
  width: 30%;
  height: 100%;
  transform: skewX(-25deg);
  background: var(--white);
  opacity: 0.4;
  z-index: 1;
}
.team__two-item-image img {
  width: 100%;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.team__two-item-content {
  margin: 0 20px;
  padding: 30px 25px;
  transition: 0.4s;
  position: relative;
  z-index: 2;
}
.team__two-item-content h4 {
  transition: 0.4s;
}
.team__two-item-content .text-eight {
  color: var(--primary-color-1);
  transition: 0.4s;
  font-weight: 600;
}
.team__two-item-content-social {
  margin-top: 10px;
  transition: 0.4s;
  opacity: 0;
}
.team__two-item-content-social ul {
  padding: 0;
  margin: 0;
}
.team__two-item-content-social ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}
.team__two-item-content-social ul li:last-child {
  margin: 0;
}
.team__two-item-content-social ul li a {
  display: inline-block;
  color: var(--white);
}
.team__two-item:hover .team__two-item-image::before {
  animation: animation 0.95s;
}
.team__two-item:hover .team__two-item-image img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.team__two-item:hover .team__two-item-content {
  background: var(--primary-color-1);
  transform: translateY(-50%);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}
.team__two-item:hover .team__two-item-content h4 {
  color: var(--white);
}
.team__two-item:hover .team__two-item-content .text-eight {
  color: var(--white);
}
.team__two-item:hover .team__two-item-content-social {
  opacity: 1;
}

/*==========================================================================
Team Three CSS
==========================================================================*/
.team__three-item-image {
  position: relative;
  z-index: 1;
  border-radius: 6px;
}
.team__three-item-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0) 0%, var(--heading-color) 100%);
  transition: 0.5s;
  border-radius: 6px;
}
.team__three-item-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(249, 77, 29, 0) 0%, var(--primary-color-1) 100%);
  transition: 0.5s;
  opacity: 0;
  border-radius: 6px;
}
.team__three-item-image img {
  width: 100%;
  border-radius: 6px;
}
.team__three-item-image-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 40px;
  z-index: 1;
}
.team__three-item-image-info-name .text-eight {
  color: var(--white);
  font-weight: 500;
}
.team__three-item-image-info-name h4 a {
  color: var(--white);
}
.team__three-item-image-info-icon {
  position: relative;
  z-index: 1;
}
.team__three-item-image-info-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 17px;
  height: 15px;
  background-image: url("../img/icon/union.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: 0.6s;
}
.team__three-item-image-info-icon span {
  color: var(--primary-color-1);
  height: 45px;
  width: 45px;
  line-height: 45px;
  background: var(--white);
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  display: inline-block;
  transition: 0.4s;
  cursor: pointer;
}
.team__three-item-image-info-icon .team__three-item-image-info-social {
  position: absolute;
  bottom: 60px;
}
.team__three-item-image-info-icon:hover::after {
  top: -9px;
  opacity: 1;
}
.team__three-item-image-info-icon:hover .team__three-item-image-info-social::before {
  height: 100%;
}
.team__three-item-image-info-icon:hover .team__three-item-image-info-social ul {
  opacity: 1;
  transition: transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
  transform: translateY(0);
  visibility: visible;
}
.team__three-item-image-info-social {
  position: absolute;
  left: 0;
  padding: 15px 0;
}
.team__three-item-image-info-social::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 6px;
  background: var(--primary-color-1);
  z-index: -1;
  transition: 0.5s;
}
.team__three-item-image-info-social ul {
  visibility: hidden;
  opacity: 0;
  transition: transform 0.5s ease 0s, opacity 0.5s ease 0s;
  transform: translateY(-30px);
  padding: 0;
  margin: 0;
}
.team__three-item-image-info-social ul li {
  list-style: none;
}
.team__three-item-image-info-social ul li:last-child {
  margin: 0;
}
.team__three-item-image-info-social ul li a {
  overflow: hidden;
}
.team__three-item-image-info-social ul li a i {
  width: 45px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  color: var(--white);
}
.team__three-item:hover .team__three-item-image::before {
  opacity: 0;
}
.team__three-item:hover .team__three-item-image::after {
  opacity: 1;
}

/*==========================================================================
Team Details CSS
==========================================================================*/
.team__details-content > span {
  font-weight: 600;
  color: var(--color-2);
  margin-top: -7px;
  display: block;
}
.team__details-content h2 {
  margin-bottom: 20px;
}
.team__details-content p {
  margin-bottom: 25px;
}
.team__details-content-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.team__details-content-contact-item i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 15px;
  border: 1px solid var(--border-color-1);
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
  font-weight: 400;
  font-size: 20px;
  color: var(--primary-color-1);
  text-align: center;
}
.team__details-content-contact-item-info span {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-2);
}
.team__details-content-contact-item-info h5 {
  text-transform: lowercase;
}
.team__details-content-contact-item-info h5 a {
  transition: 0.4s;
}
.team__details-content-contact-item-info h5 a:hover {
  color: var(--primary-color-1);
}
.team__details-experience h3 {
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color-1);
}
.team__details-experience > p {
  margin-bottom: 40px;
}
.team__details-experience-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.team__details-experience-area-item {
  padding: 35px 30px;
  border: 1px solid var(--border-color-1);
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 1;
}
.team__details-experience-area-item h6 {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--primary-color-1);
  color: var(--white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  font-weight: 600;
  padding: 6px 0 0 12px;
}
.team__details-experience-area-item h6 span {
  font-size: 16px;
  text-transform: lowercase;
  margin-left: 3px;
  font-weight: 500;
}
.team__details-experience-area-item p {
  font-size: 16px;
  font-family: var(--heading-font);
  font-weight: 600;
}
.team__details-experience-area-item p span {
  color: var(--primary-color-1);
}
.team__details-skills h3 {
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color-1);
}
.team__details-skills > p {
  margin-bottom: 40px;
}
.team__details-skills-item-content {
  position: relative;
}
.team__details-skills-item-content h6 {
  font-size: 18px;
  line-height: 28px;
}
.team__details-skills-item-count {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 500;
}
.team__details-skills-item-bar {
  height: 10px;
  position: absolute;
  width: 0;
  top: 0;
  left: 0;
  background: var(--primary-color-1);
  transition: all 3.5s ease-out 0s;
  -webkit-clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
}
.team__details-skills-item-inner {
  width: 100%;
  height: 10px;
  position: relative;
  background: var(--border-color-2);
  -webkit-clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
  margin-top: 11px;
}
.team__details .b-l {
  border-left: none;
}
.team__details .b-t {
  border-top: none;
}

@media (max-width: 1399px) {
  .team__area-item-image-icon {
    bottom: 55px;
  }
  .team__area-item-content {
    margin-top: -45px;
  }
}
@media (max-width: 1199px) {
  .team__details-content > span {
    margin-top: 0;
  }
  .team__details-experience-area-item {
    padding: 35px 18px;
  }
  .team__details-experience-area-item h6 {
    top: -18px;
    left: -18px;
    padding: 7px 0 0 13px;
  }
}
@media (max-width: 490px) {
  .team__details-experience-area {
    grid-template-columns: repeat(1, 1fr);
  }
  .team__details-experience-area-item h6 {
    top: -15px;
    left: -15px;
    padding: 6px 0 0 12px;
  }
  .team__details .b-l {
    border-left: 1px solid var(--border-color-1);
  }
  .team__details .b-b {
    border-bottom: none;
  }
}
/*==========================================================================
Testimonial CSS
==========================================================================*/
.testimonial__area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.testimonial__area-shape {
  position: absolute;
  top: -210px;
  right: 20px;
  z-index: -1;
}
.testimonial__area-item {
  border: 1px solid var(--color-10);
  padding: 50px;
  padding-bottom: 45px;
  transition: 0.4s;
  position: relative;
}
.testimonial__area-item-icon {
  position: absolute;
  right: 50px;
  bottom: 45px;
  color: var(--text-heading-color);
  opacity: 0.05;
  font-size: 50px;
}
.testimonial__area-item-client {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.testimonial__area-item-client-image img {
  width: 80px;
  height: 80px;
  max-width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonial__area-item-client-title h5 {
  transition: 0.4s;
}
.testimonial__area-item-client-title span {
  color: var(--color-2);
  transition: 0.4s;
}
.testimonial__area-item p {
  font-size: 19px;
  line-height: 34px;
  transition: 0.4s;
}
.testimonial__area-item-reviews {
  margin-top: 30px;
}
.testimonial__area-item-reviews i {
  color: var(--primary-color-1);
  transition: 0.4s;
}
.testimonial__area-item:hover {
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
}
.testimonial__area-item:hover p {
  color: var(--white);
}
.testimonial__area-item:hover .testimonial__area-item-icon {
  color: var(--white);
  opacity: 0.09;
}
.testimonial__area-item:hover .testimonial__area-item-client-title h5 {
  color: var(--white);
}
.testimonial__area-item:hover .testimonial__area-item-client-title span {
  color: var(--color-9);
}
.testimonial__area-item:hover .testimonial__area-item-reviews i {
  color: var(--white);
}
.testimonial__area-button {
  padding-right: 23px;
}
.testimonial__area-button-next {
  display: inline-block;
  position: static;
  margin: 0;
  margin-left: 40px;
}
.testimonial__area-button-next i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--color-10);
  font-size: 22px;
  color: var(--text-heading-color);
  border-radius: 50%;
  transition: 0.4s;
}
.testimonial__area-button-next i:hover {
  background: var(--primary-color-1);
  color: var(--white);
  border-color: var(--primary-color-1);
}
.testimonial__area-button-prev {
  display: inline-block;
  position: static;
  margin: 0;
}
.testimonial__area-button-prev i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--color-10);
  font-size: 22px;
  color: var(--text-heading-color);
  border-radius: 50%;
  transition: 0.4s;
}
.testimonial__area-button-prev i:hover {
  background: var(--primary-color-1);
  color: var(--white);
  border-color: var(--primary-color-1);
}

/*==========================================================================
Testimonial Two CSS
==========================================================================*/
.testimonial__two-item {
  padding: 40px;
  box-shadow: var(--box-shadow-2);
}
.testimonial__two-item-top {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.testimonial__two-item-top-reviews h6 {
  font-size: 17px;
  line-height: 27px;
}
.testimonial__two-item-top-reviews ul {
  padding: 0;
  margin: 0;
}
.testimonial__two-item-top-reviews ul li {
  display: inline-block;
}
.testimonial__two-item-top-reviews ul li i {
  color: var(--primary-color-1);
}
.testimonial__two-item-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border-color-1);
  padding: 20px;
  margin-top: 40px;
  border-radius: 6px;
  position: relative;
}
.testimonial__two-item-bottom::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -10px;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  background: var(--white);
  border-top: var(--border-color-1) solid 1px;
  border-left: var(--border-color-1) solid 1px;
}
.testimonial__two-item-bottom img {
  max-width: 60px;
  border-radius: 50%;
}

@media (max-width: 1399px) {
  .testimonial__area-item {
    padding: 40px 30px;
    padding-bottom: 35px;
  }
  .testimonial__area-item-icon {
    right: 30px;
    bottom: 40px;
  }
  .testimonial__area-item-client {
    margin-bottom: 25px;
  }
  .testimonial__area-item-reviews {
    margin-top: 25px;
  }
  .testimonial__two-item {
    padding: 40px 30px;
  }
}
@media (max-width: 991px) {
  .testimonial__two-item {
    padding: 35px 25px;
  }
}
@media (max-width: 359px) {
  .testimonial__area-item {
    padding: 35px 30px;
    padding-bottom: 30px;
  }
  .testimonial__area-item-icon {
    right: 30px;
    bottom: 35px;
  }
  .testimonial__area-item-client {
    gap: 20px;
  }
  .testimonial__area-item-client-image img {
    width: 65px;
    height: 65px;
    max-width: 65px;
  }
  .testimonial__area-item p {
    font-size: 15px;
    line-height: 28px;
  }
}
/*==========================================================================
Choose Us CSS
==========================================================================*/
.chooseUs__area-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.chooseUs__area-right-counter h6 {
  font-weight: 600;
  max-width: 240px;
  margin-top: 18px;
}
.chooseUs__area-item {
  border: 1px solid var(--border-color-3);
  border-radius: 6px;
  padding: 41px 40px;
}
.chooseUs__area-item-icon {
  margin-bottom: 27px;
}
.chooseUs__area-item h4 {
  margin-bottom: 11px;
}
.chooseUs__area-item:hover .chooseUs__area-item-icon img {
  animation: rotateY 0.6s;
}

@media (max-width: 1399px) {
  .chooseUs__area-item {
    padding: 34px 30px;
  }
}
@media (max-width: 1199px) {
  .chooseUs__area .img-full {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .chooseUs__area-right {
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .chooseUs__area-right {
    gap: 0;
  }
  .chooseUs__area-right-shape {
    max-width: 90px;
    padding-right: 15px;
  }
}
/*==========================================================================
FAQ CSS
==========================================================================*/
.faq-accordion-item,
.faq__collapse-item,
.faq-collapse-item {
  border: 1px solid var(--border-color-1);
  margin-bottom: 10px;
  border-radius: 6px;
}
.faq-accordion-item:last-child,
.faq__collapse-item:last-child,
.faq-collapse-item:last-child {
  margin: 0;
}
.faq-accordion-item-card-header,
.faq__collapse-item-card-header,
.faq-collapse-item-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
  padding: 16px 30px;
}
.faq-accordion-item-card-header h6,
.faq__collapse-item-card-header h6,
.faq-collapse-item-card-header h6 {
  font-size: 18px;
  line-height: 28px;
}
.faq-accordion-item-card-header i,
.faq__collapse-item-card-header i,
.faq-collapse-item-card-header i {
  color: var(--primary-color);
}
.faq-accordion-item-card-header span,
.faq__collapse-item-card-header span,
.faq-collapse-item-card-header span {
  color: var(--primary-color-1);
  margin-right: 15px;
}
.faq-accordion-item-card-header-content,
.faq__collapse-item-card-header-content,
.faq-collapse-item-card-header-content {
  padding: 0 30px 25px 64px;
}
.faq-accordion-item-card-header-content p,
.faq__collapse-item-card-header-content p,
.faq-collapse-item-card-header-content p {
  margin-top: -4px;
}

/*==========================================================================
FAQ Two CSS
==========================================================================*/
.faq__two-left {
  margin-right: 70px;
}
.faq__two-left-image {
  position: relative;
  padding-bottom: 90px;
}
.faq__two-left-image-one {
  position: absolute;
  right: 0;
  bottom: 0;
}
.faq__two-left-image-question {
  position: absolute;
  top: 35px;
  right: 70px;
  background: var(--black);
  padding: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq__two-left-image-question h6 {
  color: var(--white);
  max-width: 150px;
  text-transform: none;
}

@media (max-width: 1399px) {
  .faq__two-left {
    margin-right: 0;
  }
}
@media (max-width: 520px) {
  .faq-accordion-item-card-header,
  .faq__collapse-item-card-header,
  .faq-collapse-item-card-header {
    padding: 15px;
  }
  .faq-accordion-item-card-header h6,
  .faq__collapse-item-card-header h6,
  .faq-collapse-item-card-header h6 {
    font-size: 16px;
    line-height: 26px;
  }
  .faq-accordion-item-card-header span,
  .faq__collapse-item-card-header span,
  .faq-collapse-item-card-header span {
    margin-right: 8px;
  }
  .faq-accordion-item-card-header-content,
  .faq__collapse-item-card-header-content,
  .faq-collapse-item-card-header-content {
    padding: 0 15px 20px 15px;
  }
  .faq__two-left-image img {
    max-width: 280px;
  }
  .faq__two-left-image-question {
    right: 20px;
  }
}
/*==========================================================================
Project CSS
==========================================================================*/
.project__area-item {
  position: relative;
  z-index: 1;
}
.project__area-item img {
  width: 100%;
}
.project__area-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 1;
  transition: 0.4s;
  opacity: 0;
}
.project__area-item::after {
  position: absolute;
  content: "";
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background: var(--primary-color-1);
  z-index: 1;
  transition: 0.4s;
  opacity: 0;
}
.project__area-item-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  padding: 40px;
  padding-right: 75px;
  display: inline-block;
  transition: 0.5s;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
}
.project__area-item-content h4 {
  color: var(--white);
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border-white);
}
.project__area-item-content span {
  color: var(--color-9);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.project__area-item-icon {
  position: absolute;
  right: 70px;
  top: 70px;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: 0.5s;
}
.project__area-item-icon a {
  background: var(--white);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 6px;
  color: var(--text-heading-color);
  display: inline-block;
}
.project__area-item:hover::before {
  opacity: 0.7;
}
.project__area-item:hover::after {
  opacity: 0.7;
}
.project__area-item:hover .project__area-item-content {
  visibility: visible;
  opacity: 1;
}
.project__area-item:hover .project__area-item-icon {
  visibility: visible;
  opacity: 1;
}

/*==========================================================================
Portfolio One CSS
==========================================================================*/
.portfolio__area {
  overflow: hidden;
}
.portfolio__area-item {
  position: relative;
  z-index: 1;
  transition: 0.4s;
  margin-top: 10px;
}
.portfolio__area-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
  width: 100%;
  background: var(--black);
  transition: 0.4s;
  opacity: 0;
}
.portfolio__area-item-content {
  position: absolute;
  left: 50px;
  bottom: 40px;
  right: 50px;
  background: var(--primary-color-1);
  padding: 30px 40px;
  padding-right: 30px;
  z-index: 1;
  opacity: 0;
  transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio__area-item-content-title h4 {
  color: var(--white);
}
.portfolio__area-item-content-title .text-eight {
  color: var(--white);
}
.portfolio__area-item:hover {
  transform: translateY(-10px);
}
.portfolio__area-item:hover::after {
  height: 100%;
  opacity: 0.8;
}
.portfolio__area-item:hover .portfolio__area-item-content {
  opacity: 1;
  transition: transform 0.4s ease 0.4s, opacity 0.4s ease 0.4s;
}

/*==========================================================================
Portfolio Two CSS
==========================================================================*/
.portfolio {
  display: flex;
  overflow: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
}
.portfolio-item {
  height: 570px;
  flex: 2.1;
  transition: 0.5s;
  will-change: transform;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.portfolio-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0;
  transition: 0.4s;
}
.portfolio-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
  position: relative;
  z-index: -1;
}
.portfolio-item-inner {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  background: var(--white);
  padding-left: 40px;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}
.portfolio-item-inner-title span {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-3);
}
.portfolio-item-inner-icon {
  width: 125px;
  height: 125px;
  line-height: 125px;
  text-align: center;
  background: var(--primary-color-2);
  margin-left: 80px;
}
.portfolio-item-inner-icon i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  color: var(--white);
  border: 1px solid var(--color-14);
  border-radius: 50%;
  font-size: 25px;
  transform: rotate(45deg);
}
.portfolio-item:hover {
  flex: 1.5;
}
.portfolio-item.active {
  flex: 6;
  scroll-snap-align: start;
}
.portfolio-item.active.portfolio-item::before {
  opacity: 0.7;
}
.portfolio-item.active .portfolio-item-inner {
  opacity: 1;
}
.portfolio-item.active.portfolio-item img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.portfolio-item.active::after {
  content: "";
  position: absolute;
  background-image: url("../img/shape/Image.png");
  height: 100%;
  width: 20%;
  top: 0;
  right: 0;
  z-index: 0;
  background-repeat: no-repeat;
  transition: 0.3s;
}

/*==========================================================================
Portfolio Three CSS
==========================================================================*/
.portfolio__three {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.portfolio__three-item {
  position: relative;
  z-index: 1;
  padding: 40px;
}
.portfolio__three-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color-3);
  opacity: 0;
  transition: 0.4s;
  border-radius: 6px;
  z-index: -1;
}
.portfolio__three-item-icon {
  margin-bottom: 350px;
  text-align: right;
  opacity: 0;
  transition: 0.4s;
}
.portfolio__three-item-icon i {
  color: var(--text-heading-color);
  background: var(--white);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 6px;
}
.portfolio__three-item h4 {
  color: var(--white);
  opacity: 0;
  transition: 0.4s;
}
.portfolio__three-item span {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--heading-font);
  color: var(--white);
  transition: 0.4s;
  opacity: 0;
}
.portfolio__three-item:hover::before {
  opacity: 0.7;
}
.portfolio__three-item:hover h4 {
  opacity: 1;
}
.portfolio__three-item:hover span {
  opacity: 1;
}
.portfolio__three-item:hover .portfolio__three-item-icon {
  opacity: 1;
}
.portfolio__three .portfolio-border {
  position: relative;
  z-index: 1;
  padding: 30px;
  border-right: 4px solid var(--border-white);
}
.portfolio__three .portfolio-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  transition: 0.4s;
  opacity: 0;
  border-radius: 6px;
  z-index: -2;
}
.portfolio__three .portfolio-border:hover::after {
  opacity: 0.8;
}
.portfolio__three .portfolio-border:last-child {
  border: 0;
}

/*==========================================================================
Conbix Filter CSS
==========================================================================*/
.conbix__filter-button {
  text-align: center;
  margin-top: -5px;
}
.conbix__filter-button button {
  font-weight: 600;
  padding: 0 25px;
  line-height: 48px;
  color: var(--text-heading-color);
  border: 1px solid var(--border-color-4);
  box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
  background: none;
  margin: 5px;
  transition: 0.4s;
}
.conbix__filter-button button:hover {
  background: var(--primary-color-1);
  color: var(--white);
  border-color: var(--primary-color-1);
}
.conbix__filter-button .active {
  background: var(--primary-color-1);
  color: var(--white);
  border-color: var(--primary-color-1);
}

/*==========================================================================
Project Filter CSS
==========================================================================*/
.project__one-item {
  position: relative;
  z-index: 1;
}
.project__one-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 0;
  transition: 0.4s;
  opacity: 0;
}
.project__one-item-content {
  position: absolute;
  bottom: 20px;
  left: 40px;
  right: 40px;
  padding: 40px 30px;
  z-index: 1;
  transition: 0.4s;
  background: var(--white);
  opacity: 0;
  overflow: hidden;
}
.project__one-item-content::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: var(--primary-color-1);
}
.project__one-item-content::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: var(--primary-color-1);
  opacity: 0.2;
}
.project__one-item-content span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--primary-color-1);
  display: block;
  margin-bottom: 5px;
}
.project__one-item-content h4 a {
  transition: 0.4s;
}
.project__one-item-content h4 a:hover {
  color: var(--primary-color-1);
}
.project__one-item-icon {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: 0.4s;
  opacity: 0;
}
.project__one-item-icon a {
  background: var(--primary-color-1);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  display: inline-block;
  transform: rotate(45deg);
  font-size: 25px;
}
.project__one-item:hover::before {
  opacity: 0.7;
}
.project__one-item:hover .project__one-item-content {
  opacity: 1;
  bottom: 40px;
}
.project__one-item:hover .project__one-item-icon {
  top: 22%;
  opacity: 1;
}

/*==========================================================================
Project Details CSS
==========================================================================*/
.project__details-area-meta {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color-1);
  margin-bottom: 28px;
  padding-top: 28px;
  padding-bottom: 32px;
}
.project__details-area-meta-item {
  padding: 2px;
}
.project__details-area-meta-item h6 {
  font-size: 18px;
  line-height: 28px;
}
.project__details-area-meta-item h6 span {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  margin-left: 10px;
}
.project__details-area-list {
  padding-bottom: 55px;
}
.project__details-area-list span {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  max-width: 586px;
}
.project__details-area-list span:last-child {
  margin: 0;
}
.project__details-area-list span i {
  color: var(--primary-color-1);
  margin-right: 10px;
}
.project__details-pagination {
  padding: 40px 0;
  border-top: 1px solid var(--border-color-1);
  border-bottom: 1px solid var(--border-color-1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.project__details-pagination-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project__details-pagination-item a h6 {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  transition: all 600ms ease;
}
.project__details-pagination-item a:hover h6 {
  background-size: 100% 2px;
  color: var(--primary-color-1);
}
.project__details-pagination-item a:hover i {
  color: var(--primary-color-1);
}
.project__details-pagination-item-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.project__details-pagination-item-left span {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-2);
}
.project__details-pagination-item-icon {
  text-align: center;
  padding: 20px 40px;
  max-width: 110px;
  margin: 0 auto;
  border-left: 1px solid var(--border-color-1);
  border-right: 1px solid var(--border-color-1);
}

@media (max-width: 1890px) {
  .portfolio__area-item img {
    width: 100%;
  }
  .portfolio__area-item-content {
    left: 30px;
    bottom: 30px;
    right: 30px;
    padding: 30px 25px;
  }
  .portfolio__area-item-content-icon img {
    max-width: 40px;
  }
}
@media (max-width: 1399px) {
  .portfolio__three-item {
    padding: 30px;
  }
  .portfolio__three-item-icon {
    margin-bottom: 190px;
  }
  .project__area-item-content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    padding: 30px;
  }
  .project__area-item-icon {
    right: 60px;
    top: 60px;
  }
  .project__area-item.page::after {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .project__area-item.page .project__area-item-content {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 30px 25px;
  }
  .project__area-item.page .project__area-item-content-icon {
    right: 50px;
    top: 50px;
  }
  .project__one-item-content {
    left: 30px;
    right: 30px;
  }
  .project__one-item-icon {
    top: 16%;
  }
  .project__one-item:hover .project__one-item-content {
    bottom: 30px;
  }
  .project__one-item:hover .project__one-item-icon {
    top: 19%;
  }
}
@media (max-width: 1199px) {
  .portfolio-item {
    height: 500px;
    flex: 1.5;
  }
  .portfolio-item-inner {
    left: 30px;
    bottom: 30px;
  }
  .portfolio__three {
    border-left: 2px solid var(--border-white);
    border-right: 2px solid var(--border-white);
  }
  .portfolio__three .portfolio-border {
    border-right: 0;
    border: 2px solid var(--border-white);
  }
  .portfolio__three .portfolio-border:last-child {
    border: 2px solid var(--border-white);
  }
  .project__details-area-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .portfolio {
    gap: 20px;
  }
  .portfolio-item {
    height: 420px;
    flex: 1.1;
  }
  .portfolio-item-inner {
    padding-left: 30px;
  }
  .portfolio-item-inner-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin-left: 40px;
    padding: 4px 0;
  }
  .portfolio-item-inner-icon i {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .project__details-area-meta {
    grid-template-columns: repeat(2, 1fr);
  }
  .project__one-item-content {
    left: 20px;
    right: 20px;
    bottom: 10px;
  }
  .project__one-item-icon {
    top: 16%;
  }
  .project__one-item:hover .project__one-item-content {
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .project__details-area-meta {
    grid-template-columns: repeat(1, 1fr);
  }
  .project__details-pagination {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .project__details-pagination-item.center {
    display: none;
  }
}
@media (max-width: 720px) {
  .portfolio {
    display: initial;
  }
  .portfolio-item {
    height: 120px;
    margin-bottom: 25px;
  }
  .portfolio-item:last-child {
    margin: 0;
  }
  .portfolio-item img {
    width: 100%;
  }
  .portfolio-item.active.portfolio-item {
    height: 400px;
  }
}
@media (max-width: 420px) {
  .portfolio-item-inner {
    left: 20px;
    bottom: 20px;
    padding-left: 20px;
  }
  .portfolio-item-inner-icon {
    width: 85px;
    height: 95px;
    line-height: 95px;
    margin-left: 20px;
    padding: 3px 0;
  }
  .portfolio-item-inner-icon i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
  .portfolio-item.active.portfolio-item {
    height: 340px;
  }
}
@media (max-width: 359px) {
  .portfolio-item-inner-icon {
    margin-left: 10px;
    padding: 3px 0;
  }
  .project__area-item-content {
    padding: 40px 25px;
  }
  .project__area-item-icon {
    right: 55px;
    top: 55px;
  }
}
/*==========================================================================
Solution CSS
==========================================================================*/
.solution__area {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.solution__area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: -1;
  opacity: 0.6;
}
.solution__area-title h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 44px;
}
.solution__area-right {
  position: relative;
}
.solution__area-right::before {
  content: "";
  position: absolute;
  width: 463px;
  height: 463px;
  border-radius: 50%;
  top: 30px;
  right: -155px;
  background: var(--primary-color-2);
  mix-blend-mode: overlay;
}
.solution__area-right h6 {
  color: var(--white);
  margin-top: 30px;
}
.solution__area-right-video {
  max-width: 155px;
  text-align: center;
  margin: 0 0 0 auto;
}

/*==========================================================================
Solution Two CSS
==========================================================================*/
.solutions__two {
  background: var(--color-6);
}
.solutions__two-title h2 {
  margin-bottom: 30px;
}
.solutions__two-item {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border-color-1);
  transition: 0.6s;
}
.solutions__two-item-icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background: var(--color-17);
  border-radius: 50%;
  margin-bottom: 20px;
}
.solutions__two-item-icon img {
  transform: rotateY(0);
}
.solutions__two-item h4 {
  margin-bottom: 5px;
}
.solutions__two-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-2);
}
.solutions__two-item:hover .solutions__two-item-icon img {
  animation: rotateY 0.7s;
}

@media (max-width: 1399px) {
  .solutions__two-item {
    padding: 40px 30px;
  }
}
@media (max-width: 1199px) {
  .solution__area-title {
    text-align: center;
    margin-bottom: 50px;
  }
  .solution__area-title h1 {
    margin: 0 auto;
    margin-bottom: 44px;
  }
  .solution__area-right {
    position: relative;
  }
  .solution__area-right::before {
    top: 20px;
    right: 50%;
    transform: translateX(50%);
  }
  .solution__area-right h6 {
    margin-top: 30px;
  }
  .solution__area-right-video {
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .solution__area-title h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  .solution__area-title h1 {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .solution__area-title h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
@media (max-width: 470px) {
  .solution__area-title h1 {
    font-size: 31px;
    line-height: 41px;
    margin-bottom: 30px;
  }
}
/*==========================================================================
Experience CSS
==========================================================================*/
.experience__area {
  position: relative;
  z-index: 1;
  background: var(--color-6);
  overflow: hidden;
}
.experience__area-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.experience__area-image {
  position: relative;
  display: flex;
  gap: 30px;
}
.experience__area-image-shape {
  position: absolute;
  left: 0;
  bottom: 0%;
}
.experience__area-right {
  margin-left: 95px;
}
.experience__area-right-title h2 {
  margin-bottom: 30px;
}
.experience__area-right-skill {
  margin-top: 30px;
}
.experience__area-right-skill-item-content {
  position: relative;
}
.experience__area-right-skill-item-content .text-two {
  font-weight: 700;
}
.experience__area-right-skill-item-count {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 500;
}
.experience__area-right-skill-item-bar {
  height: 10px;
  position: absolute;
  width: 0;
  top: 0;
  left: 0;
  background: var(--primary-color-1);
  transition: all 3.5s ease-out 0s;
  -webkit-clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
}
.experience__area-right-skill-item-inner {
  width: 100%;
  height: 10px;
  position: relative;
  background: var(--border-color-2);
  -webkit-clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
  margin-top: 8px;
}
.experience__area-right .btn-two {
  background: var(--color-6);
  margin-top: 50px;
  color: var(--text-heading-color);
}
.experience__area-right .btn-two:hover {
  color: var(--white);
}

@media (max-width: 1399px) {
  .experience__area-right {
    margin-left: 30px;
  }
  .experience__area-right-title {
    margin-bottom: 35px;
  }
  .experience__area-right-title h2 {
    margin-bottom: 23px;
  }
  .experience__area-right .btn-two {
    margin-top: 45px;
  }
}
@media (max-width: 1199px) {
  .experience__area-right {
    margin-left: 0;
  }
}


/*==========================================================================
Subscribe Two CSS
==========================================================================*/


.subscribe-form form {
  position: relative;
  display: flex;
}
.subscribe-form form input {
  height: 58px;
  color: var(--color-3);
  width: 100%;
  position: relative;
  padding-left: 10px;
  border-radius: 6px;
  border: 1px solid var(--border-color-2);
}

.subscribe-form form input:focus {
  border-color: var(--primary-color-3);
}
.subscribe-form form .btn-five {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--primary-color-2);
  font-weight: 500;
  font-size: 16px;
  font-family: var(--heading-font);
  padding: 14px 15px;
  border-radius: 4px;
}

.subscribe-form form .btn-five:before {
  background: var(--primary-color-1);
}

.subscribe-form form .btn-five:hover,
.subscribe-form form .btn-five:focus{
  color: var(--white);
}





@media (max-width: 1199px) {
  .subscribe__area-form {
    margin-left: 20px;
  }
  .subscribe__area-bg {
    padding: 65px 20px;
  }
}
@media (max-width: 991px) {
  .subscribe__area-form {
    margin-left: 0;
  }
  .subscribe__area-bg::after {
    left: 20%;
  }
  .subscribe__area-left h2 {
    text-align: center;
  }
  .subscribe__area-left-notification {
    justify-content: center;
  }
  .subscribe {
    padding-bottom: 50px;
  }
  .subscribe-title {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .subscribe-form {
    margin-left: 0;
  }
}
@media (max-width: 550px) {
  .subscribe__area-bg {
    padding: 50px 5px;
  }
  .subscribe__area-form form input {
    height: 60px;
    padding-left: 10px;
    padding-right: 128px;
    border-radius: 30px;
  }
  .subscribe__area-form form button {
    border-radius: 30px;
    height: 60px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 500;
  }
}


/*==========================================================================
Blog Two CSS
==========================================================================*/

.blog__two{
  padding: 50px 35px;
}

.blog__two .btn-one::before {
  background: var(--primary-color-2);
}
.blog__two .btn-one:hover {
  color: var(--white);
  border-color: var(--primary-color-2);
}
.blog__two-item {
  position: relative;
  z-index: 2;
  margin-bottom: 35px;
}

.blog__two-item-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog__two-item-image::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 0;
  display: block;
  content: "";
  width: 30%;
  height: 100%;
  transform: skewX(-25deg);
  background: var(--white);
  opacity: 0.4;
  z-index: 1;
}
.blog__two-item-image img {
  width: 100%;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
  transform: scale(1.02);
  height: 280px;
  object-fit: cover;
}
.blog__two-item-image img:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
.blog__two-item-image-date {
  position: absolute;
  left: 40px;
  bottom: 30px;
  background: var(--primary-color-1);
  display: inline-block;
  border-radius: 6px;
  padding: 13px 20px 10px 20px;
  text-align: center;
}
.blog__two-item-image-date span {
  color: var(--white);
}
.blog__two-item-image-date .text-three {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  position: relative;
  margin-right: 10px;
  padding-right: 15px;
}
.blog__two-item-image-date .text-three::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: var(--white);
  opacity: 0.4;
  width: 1px;
  height: 20px;
}
.blog__two-item-image-date .text-five {
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  bottom: 3px;
}
.blog__two-item-content {
  padding: 19px 25px 28px 25px;
  background: var(--white);
  box-shadow: var(--box-shadow-1);
}
.blog__two-item-content-meta {
  border-bottom: 1px solid var(--color-10);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.blog__two-item-content-meta ul {
  padding: 0;
  margin: 0;
}
.blog__two-item-content-meta ul li {
  padding: 0;
  display: inline-block;
  list-style: none;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid var(--color-10);
  color: var(--color-2);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--heading-font);
  transition: 0.4s;
}

.blog__two-item-content-meta ul li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.blog__two-item-content-meta ul li i {
  color: var(--primary-color-1);
  margin-right: 10px;
  font-size: 18px;
}


.blog__two-item-content-meta ul li:hover {
  color: var(--primary-color-1);
}

.blog__two-item-content h4 {
  margin-bottom: 2px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 27px;
  transition: 0.4s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}


.blog__two-item-content h4:hover {
  color: var(--primary-color-1);
}

.blog__two-item-content .btn-one {
  margin-top: 15px;
  border-color: var(--color-4);
  color: var(--text-heading-color);
  font-size: 14px;
  line-height: 24px;
  border-radius: 22px;
  padding: 9px 24px 8px 24px;
}
.blog__two-item-content .btn-one::before {
  background: var(--primary-color-2);
}
.blog__two-item-content .btn-one:hover {
  color: var(--white);
  border-color: var(--primary-color-2);
}
.blog__two-item:hover .blog__two-item-image::before {
  animation: animation 0.95s;
}
.blog__two-item.page .blog__two-item-image-date {
  background: var(--primary-color-1);
}
.blog__two-item.page .blog__two-item-content-meta ul li a i {
  color: var(--primary-color-1);
}
.blog__two-item.page .blog__two-item-content-meta ul li a:hover {
  color: var(--primary-color-1);
}
.blog__two-item.page .blog__two-item-content h4 a:hover {
  color: var(--primary-color-1);
}
.blog__two-item.page .blog__two-item-content .btn-one::before {
  background: var(--primary-color-1);
}
.blog__two-item.page .blog__two-item-content .btn-one:hover {
  border-color: var(--primary-color-1);
}


/*==========================================================================
News Details CSS
==========================================================================*/
.news__details-left {
  padding: 40px;
  border: 1px solid var(--border-color-1);
  margin-bottom: 25px;
}
.news__details-left-meta {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color-1);
}
.news__details-left-meta ul {
  padding: 0;
  margin: 0;
}
.news__details-left-meta ul li {
  padding: 0;
  display: inline-block;
  list-style: none;
  margin-right: 30px;
  color: var(--color-2);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  font-family: var(--heading-font);
}
.news__details-left-meta ul li:last-child {
  margin: 0;
}
.news__details-left-meta ul li a {
  transition: 0.4s;
}
.news__details-left-meta ul li a i {
  color: var(--primary-color-1);
  margin-right: 10px;
  font-size: 18px;
}
.news__details-left-meta ul li a:hover {
  color: var(--primary-color-1);
}
.news__details-left-meta-date {
  background: var(--primary-color-1);
  display: inline-block;
  border-radius: 6px;
  padding: 13px 20px 10px 20px;
  text-align: center;
}
.news__details-left-meta-date span {
  color: var(--white);
}
.news__details-left-meta-date .text-three {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  position: relative;
  margin-right: 10px;
  padding-right: 15px;
}
.news__details-left-meta-date .text-three::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: var(--white);
  opacity: 0.4;
  width: 1px;
  height: 20px;
}
.news__details-left-meta-date .text-five {
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  bottom: 3px;
}
.news__details-left-box {
  text-align: center;
  margin: 30px 0;
  background: var(--color-6);
  padding: 40px;
  position: relative;
  z-index: 1;
}
.news__details-left-box-shape {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  max-width: 110px;
  z-index: -1;
  opacity: 0.1;
}
.news__details-left-box p {
  color: var(--text-heading-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  max-width: 670px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.news__details-left-box span {
  color: var(--primary-color-1);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--heading-font);
}
.news__details-left-tag h6 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}
.news__details-left-tag ul {
  padding: 0;
  margin: 0;
  margin-left: -3px;
  margin-top: -1px;
}
.news__details-left-tag ul li {
  display: inline-block;
  list-style: none;
}
.news__details-left-tag ul li a {
  transition: 0.4s;
  border: 1px solid var(--border-color-3);
  margin: 1px 3px;
  overflow: hidden;
  padding: 4px 20px 5px 20px;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  border-radius: 4px;
}
.news__details-left-tag ul li a:hover {
  color: var(--white);
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
}
.news__details-left-share h6 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}
.news__details-left-share ul {
  padding: 0;
  margin: 0;
}
.news__details-left-share ul li {
  list-style: none;
  display: inline-block;
  margin-right: 8px;
}
.news__details-left-share ul li:last-child {
  margin: 0;
}
.news__details-left-share ul li a i {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--color-6);
  font-size: 12px;
  border-radius: 50%;
  color: var(--text-heading-color);
  transition: 0.4s;
}
.news__details-left-share ul li a i:hover {
  background: var(--primary-color-1);
  color: var(--white);
}
.news__details-left-comment-item {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color-2);
}
.news__details-left-comment-item-comment-image {
  float: left;
}
.news__details-left-comment-item-comment-image img {
  max-width: 80px;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.news__details-left-comment-item-comment-content {
  padding-left: 30px;
  overflow: hidden;
}
.news__details-left-comment-item-comment-content span {
  font-size: 14px;
  margin-bottom: 15px;
  display: inline-block;
}
.news__details-left-comment-item-comment-content h6 {
  font-size: 18px;
  line-height: 28px;
}
.news__details-left-comment-item-comment-content h6 a {
  float: right;
  transition: 0.4s;
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-heading-color);
  border: 1px solid var(--border-color-1);
  padding: 7px 18px;
  border-radius: 4px;
}
.news__details-left-comment-item-comment-content h6 a i {
  margin-right: 10px;
}
.news__details-left-comment-item-comment-content h6 a:hover {
  color: var(--white);
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
}
.news__details-left-comment-item-comment-content p {
  max-width: 580px;
}
.news__details-left-contact-form-item input {
  background: transparent;
}
.news__details-left-contact-form-item textarea {
  height: 220px;
  background: transparent;
}
.news__details-pagination {
  padding: 40px 0;
  border-top: 1px solid var(--border-color-1);
  border-bottom: 1px solid var(--border-color-1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.news__details-pagination-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news__details-pagination-item a h6 {
  transition: 0.4s;
}
.news__details-pagination-item a:hover h6 {
  color: var(--primary-color-1);
}
.news__details-pagination-item a:hover i {
  color: var(--primary-color-1);
}
.news__details-pagination-item-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news__details-pagination-item-icon {
  text-align: center;
  padding: 20px 40px;
  max-width: 110px;
  margin: 0 auto;
  border-left: 1px solid var(--border-color-1);
  border-right: 1px solid var(--border-color-1);
}

/*==========================================================================
News Standard CSS
========================================================================== */
.news__standard-left-item-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.news__standard-left-item-image::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 0;
  display: block;
  content: "";
  width: 30%;
  height: 100%;
  transform: skewX(-25deg);
  background: var(--white);
  opacity: 0.4;
  z-index: 1;
}
.news__standard-left-item-image img {
  width: 100%;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.news__standard-left-item-image img:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
.news__standard-left-item-image:hover::before {
  animation: animation 0.95s;
}
.news__standard-left-item-content {
  padding: 40px;
  box-shadow: var(--box-shadow-1);
}
.news__standard-left-item-content-meta {
  margin-bottom: 15px;
}
.news__standard-left-item-content-meta ul {
  padding: 0;
  margin: 0;
}
.news__standard-left-item-content-meta ul li {
  display: inline-block;
  margin-right: 30px;
  list-style: none;
}
.news__standard-left-item-content-meta ul li:last-child {
  margin: 0;
}
.news__standard-left-item-content-meta ul li a {
  transition: 0.4s;
}
.news__standard-left-item-content-meta ul li a i {
  color: var(--primary-color-1);
  margin-right: 10px;
}
.news__standard-left-item-content-meta ul li a:hover {
  color: var(--primary-color-1);
}
.news__standard-left-item-content h3 a {
  transition: 0.4s;
}
.news__standard-left-item-content h3 a:hover {
  color: var(--primary-color-1);
}
.news__standard-left-item-content p {
  margin-bottom: 35px;
}


.news__details{
  padding: 70px 0px;
}

@media (max-width: 1399px) {
  .blog__one-item-content {
    padding: 17px 30px 30px 30px;
  }
  .blog__one-item-content-meta ul li {
    padding-right: 20px;
    margin-right: 20px;
  }
  .blog__three-item-content {
    margin: 0 20px;
    margin-top: -80px;
    margin-bottom: 49px;
  }
  .blog__three-item-content-meta ul li {
    margin-right: 20px;
  }
  .blog__two-item-content {
    padding: 17px 30px 30px 30px;
  }
  .blog__two-item-content-meta ul li {
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .news__standard-left-item-content {
    padding: 40px 30px;
  }
  .news__standard-left-item-content h3 {
    font-size: 28px;
    line-height: 38px;
  }
  .news__details-left {
    padding: 40px 25px;
  }
  .news__details-pagination-item a h6 {
    font-size: 16px;
    line-height: 26px;
  }
  .news__details-pagination-item-left {
    gap: 15px;
  }
  .news__details-pagination-item-left img {
    width: 70px;
    height: 70px;
    max-width: 70px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .news__details-pagination {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .news__details-pagination-item.center {
    display: none;
  }
}
@media (max-width: 575px) {
  .blog__three-item-content {
    margin: 0 10px;
    margin-top: -80px;
    margin-bottom: 49px;
  }
  .news__standard-left-item-content {
    padding: 30px 25px;
  }
  .news__standard-left-item-content h3 {
    font-size: 22px;
    line-height: 32px;
  }
  .news__standard-left-item-content-meta ul li {
    margin-right: 15px;
  }
 
  .news__details-left-comment-item {
    margin-left: 0;
  }
  .news__details-left-comment-item-comment-image {
    float: initial;
    margin-bottom: 20px;
  }
  .news__details-left-comment-item-comment-content {
    padding-left: 0;
  }
}
@media (max-width: 440px) {
  .news__details-left-box {
    padding: 40px 30px;
  }
  .news__details-left-box p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .news__details-pagination {
    display: block;
  }
  .news__details-pagination-item {
    margin-bottom: 20px;
  }
  .news__details-pagination-item:last-child {
    margin: 0;
  }
}
@media (max-width: 359px) {
  .blog__one-item-content {
    padding: 17px 25px 25px 25px;
  }
  .blog__one-item-content-meta ul li {
    padding-right: 12px;
    margin-right: 0;
    border: 0;
  }
  .blog__three-item-content {
    padding: 20px 22px 30px 22px;
  }
  .blog__three-item-content-meta ul li {
    margin-right: 5px;
  }
  .blog__three-item-content-meta ul li a i {
    margin-right: 8px;
  }
  
}
/*==========================================================================
Conbix Contact CSS
==========================================================================*/
.conbix-contact-item {
  position: relative;
  margin-bottom: 28px;
}
.cntct_frm_icn{
  position: absolute;
  left: 11px;
  top: 11px;
  color: var(--primary-color-1);
  font-weight: 400;
  z-index: 1;
  font-size: 15px;
}
.conbix-contact-item input,
.conbix-contact-item select,
.conbix-contact-item textarea,
.conbix-contact-item .select2-container--default .select2-selection--single {
 font-size: 15px;
  color: var(--body-color);
  border-radius: 6px !important;
  width: 100%;
  height: 47px !important;
  border: 1px solid #D0CDDF !important;
  padding: 0px 15px 0px 38px;
  background: var(--white);
  transition: 0.2s ease;
}


.conbix-contact-item input:hover,
.conbix-contact-item input:focus,
.conbix-contact-item select:hover,
.conbix-contact-item select:focus,
.conbix-contact-item textarea:hover,
.conbix-contact-item textarea:focus,
.conbix-contact-item .select2-container--default .select2-selection--single:hover,
.conbix-contact-item .select2-container--default .select2-selection--single:focus {
  border-color: var(--primary-color-1) !important;
}


.conbix-contact-item .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 49px !important;
}

.conbix-contact-item .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 46px !important;
  padding: 0px 5px 0px 0px !important;
}

.conbix-contact-item textarea {
  height: 100px !important;
  padding: 6px 12px;
  resize: none;
}

/*==========================================================================
Contact Page CSS
==========================================================================*/
.contact__page {
  position: relative;
  z-index: 2;
}
.contact__page-form {
  background: var(--color-6);
  padding: 70px;
}
.contact__page-form-item textarea {
  height: 180px;
}
.contact__page-info {
  margin-left: 100px;
}
.contact__page-info-item {
  display: flex;
  margin-bottom: 40px;
}
.contact__page-info-item:last-child {
  margin: 0;
}
.contact__page-info-item h6 span {
  margin-left: 25px;
}
.contact__page-info-item > span {
  max-width: 290px;
  margin-left: 45px;
  margin-top: 1px;
}
.contact__page-info-item > span a {
  text-transform: lowercase;
9165  display: block;
  transition: 0.4s;
}
.contact__page-info-item > span a:hover {
  color: var(--primary-color-1);
}
.contact__page-map {
  margin-top: -180px;
  margin-bottom: -130px;
  z-index: 1;
  position: relative;
}
.contact__page-map iframe {
  width: 100%;
  height: 600px;
  display: block;
  filter: grayscale(1);
}

/*==========================================================================
Contact Two CSS
==========================================================================*/
.contact__two-content {
  max-width: 600px;
  margin: 0 auto;
}
.contact__two-box {
  box-shadow: var(--box-shadow-1);
  padding: 60px 45px;
  margin: 0;
  background: var(--white);
  position: relative;
  z-index: 2;
}
.contact__two-left {
  margin-right: 50px;
}
.contact__two-left-item {
  border-bottom: 1px solid var(--border-color-1);
  margin-bottom: 28px;
  padding-bottom: 25px;
  display: flex;
  gap: 20px;
}
.contact__two-left-item-icon img {
  max-width: 45px;
}
.contact__two-left-item-info span {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}
.contact__two-left-item-info p {
  line-height: 27px;
  color: var(--text-heading-color);
  font-weight: 600;
  max-width: 240px;
}
.contact__two-left-item-info p a {
  transition: 0.4s;
}
.contact__two-left-item-info p a:hover {
  color: var(--primary-color-1);
}
.contact__two-left-item-socialIcon ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.contact__two-left-item-socialIcon ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}
.contact__two-left-item-socialIcon ul li:last-child {
  margin: 0;
}
.contact__two-left-item-socialIcon ul li a i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #E2E1F2;
  font-size: 15px;
  border-radius: 50%;
  transition: 0.4s;
}
.contact__two-left-item-socialIcon ul li a i:hover {
  background: var(--primary-color-1);
  color: var(--white);
}
.contact__two-right p {
  max-width: 100%;
  margin-bottom: 30px;
}

.contact__two-map {
 
  z-index: 1;
  position: relative;
}
.contact__two-map iframe {
  width: 100%;
  height: 600px;
  display: block;
  filter: grayscale(1);
}

/*==========================================================================
Contact Three CSS
==========================================================================*/
.contact__three-info {
  display: flex;
  align-items: center;
  background: var(--color-6);
  padding: 45px 30px;
  gap: 30px;
  transition: 0.4s;
}
.contact__three-info-icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  display: inline-block;
  background: var(--white);
  text-align: center;
  border-radius: 50%;
  transition: 0.4s;
}
.contact__three-info-icon img {
  max-width: 35px;
  transform: rotateY(0);
}
.contact__three-info-content h4 {
  transition: 0.4s;
}
.contact__three-info-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: lowercase;
  transition: 0.4s;
}
.contact__three-info:hover {
  background: var(--primary-color-1);
  transform: translateY(-5px);
}
.contact__three-info:hover .contact__three-info-icon img {
  animation: rotateY 0.6s;
}
.contact__three-info:hover .contact__three-info-content h4 {
  color: var(--white);
}
.contact__three-info:hover .contact__three-info-content p {
  color: var(--white);
}
.contact__three-left-map iframe {
  width: 100%;
  height: 640px;
  display: block;
  filter: grayscale(1);
}

/*==========================================================================
Contact Four CSS
==========================================================================*/
.contact__four-info {
  padding: 40px 30px;
  padding-top: 75px;
  transition: 0.4s;
  box-shadow: var(--box-shadow-1);
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.contact__four-info::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/shape/footer.png");
  background-size: cover;
  background-position: right;
  z-index: -1;
  opacity: 0.6;
  transition: 0.4s;
}
.contact__four-info-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  border-radius: 50%;
  background: var(--primary-color-1);
  text-align: center;
  transition: 0.4s;
  position: absolute;
  top: -30px;
  left: 40px;
}
.contact__four-info-icon::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px dashed var(--primary-color-1);
  border-radius: 50%;
  display: block;
  top: -10px;
  left: -10px;
  animation: rotation 10s infinite linear;
}
.contact__four-info-icon img {
  max-width: 25px;
  transform: rotateY(0);
}
.contact__four-info p {
  text-transform: lowercase;
  font-weight: 500;
  transition: 0.4s;
  color: var(--color-2);
}
.contact__four-info p a {
  transition: 0.4s;
}
.contact__four-info p a:hover {
  color: var(--primary-color-1);
}
.contact__four-info h4 {
  transition: 0.4s;
}
.contact__four-info span {
  transition: 0.4s;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  color: var(--color-2);
  margin-bottom: 15px;
  display: block;
}
.contact__four-info:hover {
  background: var(--black);
}
.contact__four-info:hover h4 {
  color: var(--white);
}
.contact__four-info:hover p,
.contact__four-info:hover span {
  color: #b0b0bd;
}
.contact__four-info:hover .contact__four-info-icon img {
  animation: rotateY 0.6s;
}
.contact__four-info:hover .contact__four-info-icon::after {
  animation: initial;
}
.contact__four-form {
  padding: 70px 50px;
  box-shadow: var(--box-shadow-2);
  background: var(--white);
  position: relative;
  z-index: 2;
}
.contact__four-form-title {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 60px;
}

/*==========================================================================
Request Quote CSS
==========================================================================*/
.request__quote span {
  color: var(--primary-color-1);
}
.request__quote p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}
.request__quote-item label {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16px;
}
.request__quote-services label {
  font-size: 14px;
  display: block;
  font-weight: 500;
  color: var(--text-heading-color);
}
.request__quote .description {
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .contact__page-form {
    padding: 60px 50px;
  }
  .contact__page-info {
    margin-left: 80px;
  }
  .contact-box {
    padding: 60px 40px;
  }
  .contact__three-info {
    gap: 25px;
  }
  .contact__three-info-icon {
    width: 75px;
    height: 75px;
    line-height: 75px;
  }
  .contact__three-info-content p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 1199px) {
  .contact__page-form {
    padding: 60px 40px;
  }
  .contact__page-info {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .contact__page-form {
    padding: 60px 40px;
  }
  .contact__page-info {
    margin-left: 0;
  }
  .contact__page-map {
    margin-top: -160px;
    margin-bottom: -170px;
  }
 
  .contact__two-left {
    margin-right: 0;
  }
  
}
@media (max-width: 530px) {
  .contact__page-info-item h6 span {
    margin-left: 15px;
  }
  .contact__page-info-item > span {
    margin-left: 15px;
  }
  .contact__four-form {
    padding: 50px 30px;
  }
}
@media (max-width: 485px) {
  .contact__page-form {
    padding: 50px 30px;
  }
  .contact__page-info-item {
    display: block;
  }
  .contact__page-info-item h6 span {
    margin-left: 15px;
  }
  .contact__page-info-item > span {
    display: block;
    margin-left: 0;
    margin-top: 3px;
  }
  .contact__page-map {
    margin-top: -140px;
  }
  .contact__two-box {
    padding: 40px 16px;
  }
  .contact-box {
    padding: 40px 16px;
  }
}
@media (max-width: 359px) {
  .contact__three-info {
    display: block;
  }
  .contact__three-info-icon {
    margin-bottom: 20px;
  }
}
/*==========================================================================
Footer Top CSS
==========================================================================*/
.footer__top {
  background: var(--primary-color-1);
  position: relative;
  z-index: 1;
  padding: 45px 25px;
  overflow: hidden;
  width: 88%;
  margin: auto auto -74px;
  border-radius: 5px 5px 28px 5px;
}
.footer__top-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: -1;
}
.footer__top-title h2 {
  color: var(--white);
  margin-bottom: 0rem;
  font-size: 29px;
}
.footer__top .btn-two {
  color: var(--white);
  background: transparent;
}
.footer__top .btn-two:hover {
  color: var(--primary-color-1);
  border-color: var(--white);
}
.footer__top .btn-two::before {
  background: var(--white);
}

/*==========================================================================
Footer Two CSS
==========================================================================*/
.footer__two {
  background: #2f2c3c;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 125px 35px 0px;
}

.footer__two-widget h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.footer__two-widget.footer-border {
  position: relative;
  padding-left: 20px;
}
.footer__two-widget.footer-border::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 250px;
  background:  #525155;
  left: -10px;
  top: 0;
}
.footer__two-widget-about a img {
  max-width: 165px;
}
.footer__two-widget-about p {
  color: var(--color-4);
  max-width: 355px;
  margin-top: 25px;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.footer__two-widget-about-social {
  margin-top: 19px;
}
.footer__two-widget-about-social ul {
  padding: 0;
  margin: 0;
}
.footer__two-widget-about-social ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}
.footer__two-widget-about-social ul li:last-child {
  margin: 0;
}
.footer__two-widget-about-social ul li a i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--white);
  font-size: 15px;
  border-radius: 50%;
  color: var(--primary-color-1);
  transition: 0.4s;
}
.footer__two-widget-about-social ul li a i:hover {
  background: var(--primary-color-1);
  color: var(--white);
}
.footer__two-widget-location h6 {
  color: var(--white);
  margin: 18px 0;
}
.footer__two-widget-location-item {
  display: flex;
  align-items: center;
 column-gap: 15px;
 margin-bottom: 15px;
}
.footer__two-widget-location-item-icon i {
  display: inline-block;
  width: 37px;
  height: 37px;
  line-height: 34px;
  text-align: center;
  font-size: 14px;
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--primary-color-1);
}
.footer__two-widget-location-item-info a {
  color: var(--color-4);
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  max-width: 220px;
  display: inline-block;
  transition: 0.4s;
}
.footer__two-widget-location-item-info a:hover {
  color: var(--primary-color-1);
}

.footer__two-widget-solution ul {
  padding: 0;
  margin: 0;
}


.footer__two-widget-solution ul li {
  padding: 0;
  list-style: none;
  margin-bottom: 6px;
  position: relative;
}

.footer__two-widget-solution ul li:before{
  content: '\f105';
  font-size: 14px;
  font-family: fontawesome;
  color: var(--primary-color-1);
}


.footer__two-widget-solution ul li a {
  color: var(--color-4);
  transition: 0.4s;
  padding-left: 6px;
  letter-spacing: 0.8px;
  font-size: 14px;
}

.footer__two-widget-solution ul li a:hover{
  padding-left: 8px;
}


/*==========================================================================
All Footer CSS
==========================================================================*/
.all-footer .footer__two-widget-location-item-icon i {
  color: var(--primary-color-1);
}
.all-footer .footer__two-widget-location-item-info a:hover {
  color: var(--primary-color-1);
}
.all-footer .footer__two-widget-about-social ul li a i:hover {
  background: var(--primary-color-1);
}
.all-footer .post__item-title h6 a:hover {
  color: var(--primary-color-1);
}
.all-footer .post__item-title span i {
  color: var(--primary-color-1);
}
.all-footer .copyright__two p a {
  color: var(--primary-color-1);
}

@media (max-width: 1399px) {
  .footer__one .border-one {
    padding-left: 0;
    margin-left: 0;
  }
  .footer__one .border-one::before {
    display: none;
  }
  .footer__one .border-one.tow {
    margin-left: 0;
  }
  
}
@media (max-width: 1199px) {
  .footer__two-widget.footer-border {
    padding-left: 0;
  }
  .footer__two-widget.footer-border::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .footer__one {
    padding-top: 85px;
  }
}


/*=====================Copyright Two CSS Start===============*/
.copyright__two {
  margin-top: 35px;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #67656F;
}

.copyright__two p {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.7px;
}

.copyright__two p a{
  color: var(--white);
  margin: 0 2px;
}

.copyright__two p a:hover{
  color: var(--primary-color-3);
}

/*=====================Copyright Two CSS End===============*/


/*==========================================================================
All Side Bar CSS
==========================================================================*/
.all__sidebar {
  position: sticky;
  top: 80px;
}
.all__sidebar-item {
  padding: 25px 19px !important;
  background: var(--color-6);
  border: 1px solid var(--border-color-4);
  margin-bottom: 30px;
}
.all__sidebar-item:last-child {
  margin: 0;
}
.all__sidebar-item h4 {
  margin-bottom: 21px;
  border-bottom: 4px double #ecb4b4;
  text-align: left;
  padding-bottom: 12px;
}

.all__sidebar-item h4 img{
  width: 38px;
  opacity: 0.8;
  border-right: 1px solid #d5bcbc;
  margin-right: 6px;
  padding-right: 9px;
}


.all__sidebar-item-search form {
  display: flex;
  position: relative;
}
.all__sidebar-item-search form input {
  color: var(--body-color);
  border-radius: 6px;
  width: 100%;
  height: 60px;
  border: 1px solid var(--border-color-2);
  padding: 0 15px;
  background: var(--white);
}
.all__sidebar-item-search form button {
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 0 6px 6px 0;
}
.all__sidebar-item-post .post__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color-3);
}
.all__sidebar-item-post .post__item:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}
.all__sidebar-item-post .post__item-image img {
  width: 90px;
  height: 90px;
  max-width: 90px;
  border-radius: 0;
}
.all__sidebar-item-post .post__item-title h6 a {
  color: var(--text-heading-color);
}
.all__sidebar-item-post .post__item-title h6 a:hover {
  color: var(--primary-color-1);
}
.all__sidebar-item-post .post__item-title span {
  color: var(--color-2);
}
.all__sidebar-item-post .post__item-title span i {
  color: var(--primary-color-1);
}
.all__sidebar-item-tag ul {
  padding: 0;
  margin: 0;
  margin-left: -3px;
  margin-top: -1px;
}
.all__sidebar-item-tag ul li {
  display: inline-block;
  list-style: none;
}
.all__sidebar-item-tag ul li a {
  transition: 0.4s;
  border: 1px solid var(--border-color-3);
  margin: 1px 3px;
  overflow: hidden;
  padding: 4px 20px 5px 20px;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  border-radius: 4px;
}
.all__sidebar-item-tag ul li a:hover {
  color: var(--white);
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
}
.all__sidebar-item-solution ul {
  padding: 0;
  margin: 0;
}
.all__sidebar-item-solution ul li {
  list-style: none;
  border-radius: 6px;
  overflow: hidden;
  margin: 4px auto;
}

.all__sidebar-item-solution ul li:last-child{
  margin-bottom: 0px;
}

.all__sidebar-item-solution ul li .active {
  color: var(--white);
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding-left: 20px;
}
.all__sidebar-item-solution ul li .active i {
  opacity: 1;
  margin-left: 0;
}
.all__sidebar-item-solution ul li a {
  display: block;
  transition: all 0.4s ease-out 0s;
  font-weight:500;
  font-size: 16px;
  line-height: 26px;
  padding: 15px 4px;
  padding-left: 0;
  border-bottom: 1px solid rgba(19, 19, 19, 0.15);
  overflow: hidden;
  letter-spacing: 0.5px;
  
}
.all__sidebar-item-solution ul li a i {
  font-size: 14px;
  margin-right: 6px;
  /*opacity: 0;
  margin-left: -20px;*/
  transition: all 0.4s ease-out 0s;
}
.all__sidebar-item-solution ul li a span {
  float: right;
  position: relative;
  top: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
}

.all__sidebar-item-solution ul li.active,
.all__sidebar-item-solution ul li a:hover {
  color: var(--white);
  background: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding-left: 10px;
}
.all__sidebar-item-solution ul li a:hover i {
  opacity: 1;
  margin-left: 0;
}
.all__sidebar-item-solution ul li:last-child a {
  margin-bottom: 0;
  border-bottom: none;
}


.all__sidebar-item-download ul {
  padding: 0;
  margin: 0;
}
.all__sidebar-item-download ul li {
  list-style: none;
}
.all__sidebar-item-download ul li a {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  background: var(--white);
  padding: 15px 20px;
  overflow: hidden;
  border-radius: 6px;
}
.all__sidebar-item-download ul li a i {
  float: right;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: var(--primary-color-1);
  text-align: center;
  border-radius: 4px;
  color: var(--white);
}
.all__sidebar-item-download ul li a img {
  margin-right: 18px;
  padding-right: 10px;
  border-right: 1px solid var(--border-color-1);
}
.all__sidebar-item-download ul li:last-child a {
  margin: 0;
}
.all__sidebar-help-image-content {
  box-shadow: var(--box-shadow-1);
  padding: 30px;
  margin: 0 40px;
  margin-top: -190px;
  background: var(--white);
  position: relative;
  text-align: center;
}
.all__sidebar-help-image-content h4 {
  margin-top: 6px;
  margin-bottom: 26px;
  line-height: 33px;
}
.all__sidebar-contact {
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}
.all__sidebar-contact-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 6px 40px 30px;
  width: 100%;
  z-index: 1;
}
.all__sidebar-contact-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color-1);
  -webkit-clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  height: 100%;
  z-index: -1;
}
.all__sidebar-contact-content::after {
  content: "";
  position: absolute;
  height: 170px;
  width: 170px;
  right: -80px;
  bottom: -80px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}
.all__sidebar-contact-content-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: var(--white);
  margin: 0px auto 23px;
}
.all__sidebar-contact-content h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 22px;
}
.all__sidebar-contact-content .simple-btn-2 {
  color: var(--white);
}

.all__sidebar-contact-image{
  height: 500px;
}

/*==========================================================================
Post CSS
==========================================================================*/
.post__item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.post__item:last-child {
  margin: 0;
}
.post__item-image img {
  width: 80px;
  height: 80px;
  max-width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.post__item-title span {
  color: var(--color-9);
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
}
.post__item-title span i {
  color: var(--primary-color-2);
  margin-right: 10px;
  font-size: 16px;
}
.post__item-title h6 {
  font-size: 18px;
  line-height: 24px;
   display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.post__item-title h6 a {
  color: var(--white);
  transition: 0.4s;
}
.post__item-title h6 a:hover {
  color: var(--primary-color-2);
}

/*==========================================================================
Theme Pagination CSS
==========================================================================*/
.theme__pagination ul {
  margin: 0;
  padding: 0;
  margin-left: -5px;
}
.theme__pagination ul li {
  list-style: none;
  display: inline-block;
  margin: 5px;
}
.theme__pagination ul li .active {
  background: var(--primary-color-1);
  color: var(--white);
  border-color: var(--primary-color-1);
}
.theme__pagination ul li a {
  font-family: var(--heading-font);
  border: 1px solid var(--border-color-1);
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  transition: 0.4s;
}
.theme__pagination ul li a:hover {
  background: var(--primary-color-1);
  color: var(--white);
  border-color: var(--primary-color-1);
}
.theme__pagination ul li a i {
  font-size: 14px;
}

@media (max-width: 1399px) {
  
  .all__sidebar-item-post .post__item {
    gap: 20px;
  }
  .all__sidebar-item-post .post__item-image img {
    width: 85px;
    height: 85px;
    max-width: 85px;
  }
  .all__sidebar-item-post .post__item .post__item-title h6 {
    font-size: 17px;
  }
  .all__sidebar-item-tag ul li a {
    padding: 4px 15px 5px 15px;
  }
  .all__sidebar-contact-content {
    padding: 40px 30px;
    padding-bottom: 50px;
  }
  .all__sidebar-help-image-content {
    margin: 0 25px;
    margin-top: -170px;
  }
}
@media (max-width: 1199px) {
  .all__sidebar-item {
    padding: 35px 25px;
  }
  .all__sidebar-item-solution ul li {
    list-style: none;
  }
  .all__sidebar-item-solution ul li .active {
    padding-left: 15px;
  }
  .all__sidebar-item-solution ul li a {
    padding: 16px 15px;
  }
  .all__sidebar-item-solution ul li a i {
    margin-right: 8px;
    margin-left: -15px;
  }
  .all__sidebar-item-solution ul li a:hover {
    padding-left: 15px;
  }
  .all__sidebar-item-post .post__item {
    gap: 15px;
  }
  .all__sidebar-item-post .post__item-image img {
    width: 70px;
    height: 70px;
    max-width: 70px;
  }
  .all__sidebar-item-post .post__item .post__item-title h6 {
    font-size: 16px;
  }
  .all__sidebar-item-tag ul li a {
    padding: 4px 10px 5px 10px;
  }
  .all__sidebar-item-download ul li a {
    padding: 15px;
  }
  .all__sidebar-item-download ul li a i {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
  }
  .all__sidebar-item-download ul li a img {
    margin-right: 10px;
  }
  .all__sidebar-contact-content {
    padding: 40px 25px;
    padding-bottom: 50px;
  }
  .all__sidebar-contact-content-icon {
    margin-bottom: 35px;
  }
  .all__sidebar-contact-content h3 {
    font-size: 27px;
    line-height: 37px;
  }
  .all__sidebar-help-image-content {
    padding: 30px 20px;
  }
  .post__item {
    gap: 20px;
  }
  .post__item-title h6 {
    font-size: 17px;
    line-height: 27px;
  }
}
/*==========================================================================
Page Banner CSS
==========================================================================*/
.page__banner {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 85px;
  overflow: hidden;
}
.page__banner::after {
  content: "";
  position: absolute;
  background-image: url("../img/breadcrumb-shape.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -2;
  background-position: left bottom;
}
.page__banner-content ul {
  padding: 0;
  margin: 0;
}
.page__banner-content ul li {
  display: inline-block;
  list-style: none;
  color: var(--primary-color-1);
  font-weight: 700;
}
.page__banner-content ul li a {
  color: var(--white);
  margin-right: 15px;
  transition: 0.4s;
}
.page__banner-content ul li a:hover {
  color: var(--primary-color-1);
}
.page__banner-content ul li span {
  margin-right: 15px;
  color: var(--white);
}
.page__banner-content h1 {
  color: var(--white);
  font-size: 48px;
  line-height: 80px;
  margin-top: 10px;
}
.page__banner-content > span {
  color: var(--white);
  display: block;
  font-weight: 700;
  font-size: 64px;
  line-height: 94px;
  opacity: 0.08;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  margin: 0px 0px -165px 0px;
  position: relative;
  z-index: -1;
  text-transform: uppercase;
  font-family: var(--heading-font);
}



@media (max-width: 1599px) {
  .page__banner::after {
    left: -96px;
  }
}

@media (max-width: 767px) {
  .page__banner::after {
    background-image: none;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
  }
  .page__banner-content h1 {
    font-size: 60px;
    line-height: 70px;
  }
  .page__banner-content > span {
    font-size: 90px;
    line-height: 102px;
    margin: 0 0 -60px 0;
  }
}
@media (max-width: 480px) {
  
  .page__banner-content h1 {
    font-size: 45px;
    line-height: 55px;
  }
  .page__banner-content > span {
    font-size: 68px;
    line-height: 80px;
  }
}
@media (max-width: 359px) {
  
  .page__banner-content > span {
    font-size: 58px;
    line-height: 60px;
  }
}/*# sourceMappingURL=style.css.map */


/*---------------------------------------------------------------------------------*/

.header__two-topbar-left ul{
  display: flex;
  margin-bottom: 0rem;
  align-items: center;
  padding-left: 0rem;
}

.header__two-topbar-left ul li{
  list-style: none;
  position: relative;
  padding: 7px 9px;
}

.header__two-topbar-left ul li:first-child{
  padding-left: 0px;
}

.header__two-topbar-left ul li:after{
  content: '';
  width: 1px;
  height: 20px;
  background-color: #c4c5e67a;
  position: absolute;
  right: 0px;
  top: 11px;
}

.header__two-topbar-left ul li:last-child:after{
  display: none;
}

.header__two-topbar-left ul li i{
  color: var(--primary-color-1);
  padding-right: 4px;
}




  /*--------study----destination---wrap------start-------*/

  .Study_dstntn_sctn{
    background-color: #2f2c3c;
    position: relative;
    width: 100%;
    padding: 50px 35px 60px;
  }


  .study_desti-item{
    height: 390px;
    width: 100%;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 45px;
  }

  

  .study_desti-item:hover img{
    transform: scale(1.1);
  }

  .study_desti-item-content {
    background: linear-gradient(3deg,rgba(34, 40, 70, 0.94) 35%, rgba(253, 187, 45, 0) 90%);
    padding: 30px 30px 0px;
    transition: 0.4s;
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
    right: 0px;
    text-align: center;
    
  }

  .stdy-cntnt-lift{
    transform: translateY(20px);
    transition: all 600ms ease;
  }

  .study_desti-item:hover .study_desti-item-content .stdy-cntnt-lift{
    transform: translateY(-7px);
}

  .study_desti-flag {
    margin-bottom: 6px;
  }
  .study_desti-flag img{
    width: 80px;
  }


  .study_desti-item-content h4{
    color: var(--white);
    font-size: 22px;
    position: relative;
    margin-bottom: 3px;
    padding-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  
  .study_desti-item-content .simple-btn-2 {
    color: var(--white);
  }

 /*--------study----destination---wrap------end-------*/

 .accrdation-bx img{
  width: 95px !important;
 }

 .iasbadge-bx{
  position: absolute;
  z-index: 11;
  left: 8%;
  top: 7%;
  width: 95px;
 }

.main_title h2{
  font-size: 36px;
  font-weight: 500;
  color: var(--dark-two);
}

/*-------counter-------wrap----------start----------*/

.count-bx{
  background-color: #f0f2f4;
  width: 72%;
  text-align: center;
  margin: -60px auto 35px;
  position: relative;
  z-index: 9;
  padding: 53px 10px 15px;
  box-shadow: inset 2px 4px 25px 2px #ddd;
  border-radius: 5px 25px 5px 25px;
}

.count-bx:before{
  content: '';
  border: 2px solid #d8143438;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -18px;
  bottom: -15px;
  border-radius: 0px 0px 0px 15px;
  border-top: none;
  border-right: none;
}


.count-icon{
  line-height: 65px;
  width: 82px;
  height: 65px;
  background-color: #fdfdfd;
  position: absolute;
  top: -16px;
  font-size: 40px;
  color: var(--primary-color-1);
}

.count-bx h2{
  font-size: 41px;
  color: var(--dark-two);
}

.count-bx h6{
  font-size: 19px;
  color: var(--primary-color-2);
}

/*------banner-----video-----wrap------start----------------*/

.bnnr_video{
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
}

.bnnr_video::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(50deg,rgba(43, 52, 98, 0.81) 30%, rgba(253, 187, 45, 0) 55%);
    z-index: -1;
    top: 0;
    left: 0;
}

.viedo_bx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.viedo_bx .background-video {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    object-fit: cover;
    object-position: right;
}

/*.shapLft{
    position: absolute;
    height: calc(100% + 0px);
    width: 55%;
    background: linear-gradient(100deg, rgb(14 11 36 / 85%) 46%, rgb(23 20 44 / 0%) 82%);
    opacity: 2.25;
    top: 0px;
    left: 0;
}*/

/*------banner-----video-----wrap------end---------------*/


/*------our----mission-----wrap----start--------*/

.mission-sctn{
  width: 100%;
  position: relative;
  padding: 60px 0px 25px;
}

.mission-img{
  position: relative;
}

.mission-img img{
  width: 100%;
  height: 408px;
  object-fit: cover;
  object-position: 100% 22%;
}


.mission-content{
  padding: 0px 40px 0px 20px;
}

.mission-content h3{
  font-size: 38px;
  margin-bottom: 18px;
}

.mission-content h6{
 font-size: 21px;
  font-weight: 600;
  color: var(--primary-color-2);
  line-height: 29px;
  margin-bottom: 16px;
}

.mission-content p{
  font-size: 15px;
  text-align: justify;
  line-height: 31px;
}

/*------our----mission-----wrap---end--------*/



/*-------------blog---------detail-----wrap-----start-----------*/


.blog-detl-wrp2{
  margin-top: 15px;
}

.blg-smll-title h5{
  font-size: 20px;
  padding-bottom: 5px;
  position: relative;
  color: var(--primary-color-2);
  margin-bottom: 13px;
} 

.blg-smll-title h5:after,
.blg-smll-title h5:before{
  content: '';
  position: absolute;
  width: 54%;
  height: 2px;
  background-color: var(--primary-color-1);
  bottom: 0px;
  left: 0px;
}

.blg-dtl-list{
  padding-top: 18px;
  padding-left: 0px;
}

.blg-dtl-list li{
  list-style: none;
  font-size: 15px;
  padding: 0px 0px 12px 20px;
  position: relative;

}

.blg-dtl-list li:before{
  content: '\f061';
  position: absolute;
  left: 0px;
  top: 0px;
  font-family: fontawesome;
  color: var(--primary-color-1);
}

.all__sidebar-item-post{
  height: 480px;
  overflow-y: scroll;
  scrollbar-width: thin;
}


/*-----------------------------------------------------*/

.study-dstntn-sctn{
  padding: 60px 0px;
}

.stdy-dstntn-img{
  margin-bottom: 15px;
}

.stdy-dstntn-img img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 100% 66%;
}

/*-------youtube---video----wrap----start--------*/

.yt_video-container{
  margin: 20px auto;
}

.yt_video-container iframe{
  width: 100%;
  height: 400px;
  border-radius: 20px;
  border: 5px solid var(--primary-color-3);
}

/*-------youtube---video----wrap----end-------*/


.stdy-dstntn-title h2 {
  font-size: 26px;
  color: var(--dark-two);
  margin-bottom: 11px;
}


.stdy-dstntn-smll-title h5{
  font-size: 19px;
  color: var(--primary-color-1);
  font-style: italic;
  text-decoration: underline;
}

.stdy-dstntn-para{
  font-size: 15px;
  line-height: 27px;
  padding-bottom: 15px;
  color: var(--txt-color);
  text-align: justify;
}

.typs-list h6{
  font-size: 18px;
}

.typs-list ul{
  padding-top: 9px;
}

.typs-list ul li{
  font-size: 15px;
   color: var(--txt-color);
  line-height: 22px;
  padding-bottom: 18px;
  text-align: justify;
}

.stdy-dstntn-para2 p{
  font-size: 15px;
  line-height: 27px;
  padding-bottom: 12px;
  color: var(--txt-color);
  text-align: justify;
}

.stdy-dstntn-para2 p strong{
  color: var(--primary-color-2);
}



.smll-img-stdy-dstntn img{
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 40px 0px 0px 40px;
  box-shadow: 1px -1px 8px 5px #d9daea;
}




/*------------------------------------------------------*/

.who-we-serve-sctn{
  padding: 30px 50px 30px;
}


.we_serve_crd{
  background-color: var(--white);
  box-shadow: rgba(100, 100, 111, 0.18) 0px 5px 17px 2px;
  padding: 10px 12px 15px 20px;
  height: 130px;
  margin-bottom: 40px;
  border-radius: 15px;
  position: relative;
  border: 1px solid #cd13312e;
  overflow: hidden;
}

.we_serve_crd:after{
  content: '';
  border-top: 98px solid var(--primary-color-1);
  border-right: 57px solid transparent;
  position: absolute;
  top: 0px;
  left: 0px;

}

.we_serve_crd h5{
  font-size: 16px;
  line-height: 19px;
  color: #322f3e;
  letter-spacing: 0.3px;
  display: flex;
  padding-top: 5px;
  padding-left: 7px;
  margin-bottom: 3px;
}


.we_serve_crd h5 i{
  color: #eecfd4;
  font-size: 25px;
  position: relative;
  z-index: 1;
  top: -1px;
  left: -17px;
}

.we_serve_crd p{
  font-size: 15px;
  line-height: 23px;
  color: var(--txt-color);
  padding-left: 30px;
}

/*-------------------------------------------------*/


.wy-choose-sctn{
  padding: 20px 0px 60px;
  position: relative;
}

.wy-choose-img{
  position: relative;
}

.wy-choose-img img{
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: bottom;
}


.wy-choose-wrp{
  width: 54%;
  position: absolute;
  background: radial-gradient(circle,rgb(242, 234, 183) 0%, rgb(221, 212, 157) 100%);
  right: 3%;
  top: 10%;
  padding: 50px 35px;
  border-radius: 50px;
  box-shadow: rgb(225, 218, 162) 0px -23px 25px 0px inset, rgb(199, 193, 146) 0px -26px 10px 0px inset, 
  rgb(201, 193, 147) 0px -39px 50px 0px inset, rgb(200, 193, 147) 0px 2px 1px, rgb(200, 192, 146) 0px 4px 2px, 
  rgb(200, 193, 147) 0px 8px 4px, rgb(199, 192, 147) 0px 3px 3px, rgba(199, 192, 146, 0.29) 0px 2px 6px;
}

.wy-choose-wrp h4{
  font-size: 28px;
  color: var(--primary-color-1);
  padding-bottom: 15px;
}

.wy-choose-wrp ul{
  padding-left: 0px;
  margin-bottom: 0px;
}

.wy-choose-wrp ul li{
  font-size: 18px;
  list-style: none;
  position: relative;
  padding-left: 47px;
  padding-bottom: 25px;
  line-height: 30px;
}

.wy-choose-wrp ul li:before{
  content: '\f00c';
  font-family: fontawesome;
  font-size: 13px;
  color: var(--primary-color-1);
  position: absolute;
  left: 0px;
  top: 4px;
  width: 27px;
  height: 26px;
  background-color: var(--white);
  text-align: center;
  border-radius: 50%;
  line-height: 27px;
  box-shadow: 1px 1px 2px 1px #b7af78;

}


.wy-choose-wrp ul li:last-child{
  padding-bottom: 0px;
}





/*-------------------login-----wrap------start-----------------------*/

.login-wrp {
  background: var(--white);
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
  margin: 40px auto;
  width: 65%;
  border: 1px solid #e5e6f2;
  position: relative;
  overflow: hidden;
}


.login-wrp:before{
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 48%;
  height: 100%;
  border-radius: 0px 52% 20% 0px;
  background: linear-gradient(60deg,rgb(220, 215, 244) 0%, rgb(247, 238, 238) 100%);
}


.login-wrp:after{
  content: '';
  width: 40%;
  height: 100%;
  position: absolute;
  right: 0px;
  transform: rotate(24deg);
  clip-path: polygon(79% 0%, 100% 10%, 28% 100%, 15% 69%);
  background-color: var(--primary-color-1);
  top: 45%;
}

.login-tabs-bx{
  background-color: #e6e9f0;
  position: relative;
  border-radius: 15px 15px 0px 0px;
  width: 47.2%;
  margin: 0px 0px 0px auto;
  right: 0px;
  top: 38px;

}



.login-tabs-bx .nav{
  position: relative;
  z-index: 9;
  justify-content: center;

}



.login-tabs-bx .nav .nav-item .nav-link {
  color: #3f4753;
  font-size: 0.90rem;
  margin: auto;

}


.login-tabs-bx .nav .nav-item{
  border-right: 1px solid #cacbd1;
  width:33%;
  position: relative;
}


.tab-icon{
  position: absolute;
  left: 0px;
  right: 0px;
  top: -41px;
  width: 50px;
  height: 50px;
  background-color: #f0f1f4;
  border-radius: 50%;
  text-align: center;
  margin: auto;
  border: 1px solid #efd3d3;
  border-bottom: none;
  line-height: 44px;

}



.tab-icon img{
  width: 33px;
}



.login-tabs-bx .nav .nav-item:last-child{
  border-right: none;
}



.login-tabs-bx .nav-pills .nav-link.active, .login-tabs-bx .nav-pills .show > .nav-link,
.login-tabs-bx .nav-pills .nav-link:hover {
  color: var(--primary-color-1) !important;
  background-color: transparent;

}


.merge-lft-rgt-bx{
  display: flex;
  justify-content: space-between;

}


.left-form-cotent{
  width:43%;
  position: relative;
  overflow:hidden;
}


.left-form-cotent img{
  width: 100%;
}


.right-form{
  width: 53%;
  position: relative;
  z-index: 1;
}


.login-tabs-bx{
  background-color: #eceff4;
  position: relative;
  border-radius: 15px 15px 0px 0px;
  width: 47.2%;
  margin: 0px 0px 0px auto;
  height: 80px;
}


.main-lft-rgt-bx{
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.tab-form-bx{
  width: 89%;
  margin: auto 0px auto auto;
  border: 1px solid #e4e6e7;
  padding: 1.7rem 1.6rem 1.7rem;
  border-radius: 2rem;
  background-color: var(--white);
}


.toggle-password {
  position: absolute;
  right: 19px;
  top: 16px;
  font-size: 0.65rem;
  color: #656d80;
  cursor: pointer;
  z-index: 9;
}



.right-form .form-title h4 {
  font-size: 1.3rem;
  text-align: center;
  padding-bottom: 0.2rem;
  font-weight: 500;

}



.right-form .form-title h4 .uniqe-font {
  font-size: 1.10rem;
}



.right-form .form-title h4::before {
  width: 2rem;
  height: .2rem;
  bottom: -.04rem;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
}



.right-form .form-title h4::after {
  content: '';
  width: 6rem;
  height: .1rem;
  background-color: var(--primary-color-2);
  position: absolute;
  bottom: 0rem;
  left: 0px;
  border-radius: 70%;
  right: 0px;
  margin: auto;
}



/*--------------remember--------me----------wrap------start-------------*/

.remember-chkbx {
  display: flex;
  align-items: center;
  font-size: 0.90rem;
  color: #3d3c45;
  cursor: pointer;
}


.remember-chkbx input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}


.checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  border: 1px solid #BBC5CD;
  border-radius: 4px;
  transition: all 0.3s;
}


.remember-chkbx input[type="checkbox"]:checked ~ .checkmark {
  background-color: var(--primary-color-1);
  border-color: #E56F6F;
}

.remember-chkbx input[type="checkbox"]:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


.remember-chkbx input[type="checkbox"]:focus ~ .checkmark {
  box-shadow: 0 0 0 2px #dfec5065;
}


.remember-chkbx:hover input[type="checkbox"] ~ .checkmark {
  border-color: #EC2323B8;
}


.remember-chkbx input[type="checkbox"]:disabled ~ .checkmark {
  opacity: 0.5;
  cursor: not-allowed;
}


.remember-chkbx input[type="checkbox"]:disabled ~ .checkmark:hover {
  border-color: #4d4d4d;
}

/*--------------remember--------me----------wrap-----end------------*/

.forgot-pass-txt a{
  font-size: 0.90rem;
  color: #3d3c45;
  text-align: end;
  transition: 0.3s ease;
}


.forgot-pass-txt a:hover{
  color: var(--primary-color);
}


/*---------------already----account---text---start----------*/


.already-account-txt{
  text-align: center;
  margin: 0.60rem auto 0px;
}


.already-account-txt a {
  position: relative;
  font-weight: 600;
  font-size: 0.85rem;
  color: #32333a;
  transition: 0.3s ease-out;
}


.already-account-txt a:hover{
  color: var(--primary-color);
}


.already-account-txt a::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--primary-color);
  height: 2px;
  transition: 0.3s ease-out;
}


.already-account-txt a:hover::after {
  width: 100%;
}


.already-account-txt a:hover::before {
  width: 100%;
}

/*---------------already----account---text---end----------*/


/*-------------------login-----wrap------end----------------------*/



/*---------register--------wrap-----------start-----------------*/

.reg-wrap{
  width: 90%;
}


.reg-wrap .left-form-cotent {
  width: 31%;
}


.reg-wrap:before {
  width: 36%;
}


.reg-wrap .right-form {
  width: 69%;
}


.reg-wrap:after {
  clip-path: polygon(85% 0%, 100% 10%, 45% 100%, 32% 73%);
}


.reg-wrap .frm-field-bx .input-group > .form-control, .reg-wrap .frm-field-bx .input-group > .form-select {
  padding: 0.4rem;
}


.stdnt_qr-code img{
  width: 23%;
  border: 3px solid #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 4px 1px #26306454;
  margin-top: 23%;
  position: absolute;
  margin-left: 16.2%;
}


.partner_qr-code img{
  width: 29%;
  border: 3px solid #fff;
  box-shadow: 0px 4px 4px 2px #a5a5ce;
  border-radius: 5px;
  margin-top: 10%;
  position: absolute;
  margin-left: 32.3%;
}



/*---------register--------wrap-----------end----------------*/



/*-------------forgot--------wrap-------start----------------*/

.forgot-wrp{
  width: 50%;
  margin: 70px auto;
}


.forgot-wrp:after {
  clip-path: polygon(81% 0%, 100% 10%, 31% 100%, 21% 69%);
}



.forgot-wrp:before {
  width: 39%;
}


.forgot-wrp .merge-lft-rgt-bx {
  align-items: center;
}



.forgot-wrp .left-form-cotent {
  width: 44%;
}



.forgot-wrp .left-form-cotent img {
  width: 89%;
}


.forgot-wrp .right-form {
  width: 77%;
}


.forgot-wrp .tab-form-bx {
  width: 89%;
  border-radius: 2rem;
  margin: 0px 0px auto auto;

}


/*-------------forgot--------wrap-------end-------------*/



.form-logo{

  text-align: center;

  margin-bottom: 2rem;

}



.form-logo img{

  width: 45%;

}



.form-title h4{

  font-size: 1.7rem;

  font-weight: 700;

  color: var(--secondry-color);

  margin-bottom: 1rem;

  text-transform: capitalize;

  letter-spacing: .04rem;

  position: relative;

}


.form-title h4:before{
  content: '';
  width: 5rem;
  height: .1rem;
  background-color: var(--primary-color-1);
  position: absolute;
  bottom: 0rem;
  left: 0;

}



.form-title h4:after{
  content: '';
  width: 15rem;
  height: .1rem;
  background-color: var(--primary-color-2);
  position: absolute;
  bottom: 0rem;
  left: 2.88rem;
  border-radius: 70%;

}


.stdnt-lft-img-title, .form-title h5 {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color-2);
  font-family: var(--heading-font);
}


.form-title h4 .uniqe-font{
  font-family: "Playwrite GB S", cursive;
  font-style: italic;
  font-size: 1.50rem;
  color: var(--primary-color);
}


.frm-field-bx{
  position: relative;
  margin-bottom: 0.70rem;
}



.frm-field-bx .form-label,
.frm-textarea-bx .form-label{
  font-size: 0.8rem;
  margin-bottom: 0rem;
  color: var(--dark-one);
  letter-spacing: 0.02rem;
  font-family: var(--heading-font);
}



.frm-icn i{
  position: absolute;
  left: 0px;
  top: 1px;
  width: 2.5rem;
  height: 39.5px;
  background-color: #e1e2ea;
  z-index: 9;
  border-radius: 5px 0px 0px 5px;
  line-height: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--txt-color);

}


.contct-frm-title{
  position: absolute; 
  left: 16px;
  top: -13px;
  background: #FAFAFA;
}


.frm-field-bx .input-group > .form-control, 
.frm-field-bx .input-group > .form-select,
.frm-field-bx .mobile,
.frm-field-bx .p_mobile{
    border-radius: 5px !important;
    height: 2.6rem;
    padding-left: 0.8rem;
    font-size: 0.80rem;
    border:.08rem solid #c4c2d7;

}


.frm-field-bx .input-group > .form-control:hover, 
.frm-field-bx .input-group > .form-select:hover,
.frm-field-bx .input-group > .form-control:focus, 
.frm-field-bx .input-group > .form-select:focus,
.frm-textarea-bx .input-group > .form-control:focus,
.frm-textarea-bx .input-group > .form-control:hover,
.frm-field-bx .mobile:hover,
.frm-field-bx .mobile:focus,
.frm-field-bx .p_mobile:hover,
.frm-field-bx .p_mobile:focus,
.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--single:focus{
  border-color: var(--primary-color-1);
  outline: none;
  box-shadow: none;
}



.frm-textarea-bx{
  position: relative;
  margin-bottom: 0.70rem;

}



.frm-textarea-bx .input-group > .form-control{
  font-size: 0.90rem;
  padding: 0.2rem 0.4rem;
  resize: none;
}


.form-sbmt-btn{
  margin-top: 1rem;
}


.form-sbmt-btn button{
  padding: 0.60rem 1.20rem;
  border-radius: 2rem;
  justify-content: center;
}

.form-sbmt-btn .btn-five:before {
  background: var(--primary-color-2);
}

.form-sbmt-btn .btn-five:hover{
  color: var(--white);
}

.frm-field-bx b {
  color: #dd3838;
}

.iti__flag {
  width: 17px !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 4px !important;
  font-size: 11px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #35343a !important;
  line-height: 2.50rem !important;
  font-size: 0.83rem;
  padding: 0rem 0.5rem;
  letter-spacing: 0.05rem;
}

.select2-container--default .select2-selection--single {
  background-color: #fff !important;
  border: 1px solid #c4c2d7 !important;
  border-radius: 4px !important;
  height: 42px !important;
} 

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px !important;
  top: 0px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary-color-1) !important;
}

.select2-results__option {
  font-size: 13px !important;
}



/*---------mobile-----flag------country---code--start--------*/

.iti--container {
  width: 100% !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 4px !important;
  font-size: 11px;
}


.iti__selected-flag {
    padding: 0 3px 0 6px !important;
}


.iti__flag.iti__in {
    width: 19px;
}


.iti__selected-flag {
    width:67px;
}


.iti__arrow {
  margin-left: 3px !important;
}

.mobile, .alternate_no{
  padding-left: 100px !important;
  width: 100% !important;
}

.select2-container--default .select2-results > .select2-results__options {
  scrollbar-width: thin;
}

.header__area-menubar-right .login-btn {
  display: none;
}

.iti__country-list{
    scrollbar-width: thin;
    z-index: 99;
    max-height: 220px !important;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.iti__country {
  padding: 5px 10px;
  font-size: 12px;
  color: var(--txt-color);
  letter-spacing: 0.5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  white-space: nowrap;
}


  .iti__country-list {
    bottom: unset !important;
    width: 215px !important;

  }



  .iti__country.iti__highlight {
    background-color: var(--primary-color-1) !important;
    color: var(--white);
  }


  .iti__country.iti__highlight .iti__dial-code {
      color: var(--white) !important;
  }



.iti__dial-code {
  color: var(--txt-color) !important;
}


  .iti__flag.iti__al {
    height: 13px !important;
    background-position: -133px -1px !important;
  }



.iti__flag {
  width: 17px !important;
}

.iti__divider {
  display: none;
}


/*---------mobile-----flag------country---code-----end--------*/

/*---------date-------picker----start--------*/

.datepicker table tr td.new, .datepicker table tr td.old {
  color: var(--txt-drk) !important;
}


.datepicker .day, .datepicker .dow {
  padding: 0px 5px !important;
}

.datepicker td, .datepicker th {
  border-radius: 3px;
  font-size: 12px !important;
}

.datepicker th {
  font-weight: 600;
}

.datepicker .datepicker-switch {
  background-color: #eee7e7 !important;
  color: var(--primary-color-1);
}

.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
  background: var(--primary-color-1) !important;
  color: var(--white);
  padding-top: 0px;
}


.datepicker table tr td.today, .datepicker table tr td.today.disabled, 
.datepicker table tr td.today.disabled:hover, 
.datepicker table tr td.today:hover,
.datepicker table tr td.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover{
  background-image: linear-gradient(to bottom,#d91737,#b32c2c);
  color: var(--white);
}

.datepicker table tr td span.focused, .datepicker table tr td span:hover {
  background: var(--primary-color-1) !important;
  color: var(--white) !important;
}

/*---------date-------picker----end--------*/

/*------thankyou-----wrap--------start-------*/


.bdy-pttrn{
  width: 100%;
  height: 100%;
}

.top-pttrn{
  width: 59%;
  position: absolute;
  top: 18%;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0.2;
}

.thnku-wrp{
  text-align: center;
  padding-top: 70px;
}

.chck-img img{
 width: 8%;
  position: relative;
}

.thnku-wrp h4{
  font-size: 65px;
  font-weight: 800;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
  text-shadow: 2px 1px 3px #20427470;
  position: relative;
}

.thnku-wrp p{
  font-size: 22px;
  font-weight: 400;
  color: #3a3939;
  padding-top: 30px;
}

.foot-pttrn{
  background-image: url(../img/footer-pttrn.png);
  width: 100%;
  height: 180px;
  background-size: 60%;
  background-position: bottom center;
  background-repeat: repeat-x;
  opacity: 0.1;
  margin-bottom: -86px;
}

.bck-btn{
  margin-top: 35px;
}

.bck-btn .btn-five{
  padding: 10px 25px;
}

.bck-btn .btn-five::before {
  background: var(--primary-color-2);
}

.bck-btn .btn-five:hover{
  color: var(--white);
}

.bck-btn .btn-five i{
  font-size: 13px;
  margin-right: 6px;
}

/*--------thankyou------wrap------end---------*/

/*------popup-----form-----wrap-----start-------*/


.my-frm-mdl-dlg {
  max-width: 70%;
  margin: 5px auto;
  overflow: hidden;
}

.bttn-close {
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: var(--primary-color-2);
  z-index: 9;
  border: none;
  border-radius: 0px 3px 0px 0px;
  color: var(--white);
  padding: 5px 13px;
}


.my-frm-mdl-dlg .contact__two-left-item {
  margin-bottom: 22px;
  padding-bottom: 20px;
}


.my-frm-mdl-dlg .contact__two-left-item-socialIcon ul {
  margin-top: 13px;
}

.my-frm-mdl-dlg .contact__two-left-item-socialIcon ul li {
  margin-right: 6px;
}

.my-frm-mdl-dlg .contact__two-left-item-socialIcon ul li a i {
  width: 45px;
  height: 45px;
  line-height: 45px;
}

.my-frm-mdl-dlg .select2{
  width: 100% !important;
}

.my-frm-mdl-dlg .contact__two-box {
  padding: 20px 21px;
}


/*------popup-----form-----wrap-----end-------*/

/*----------navbar-------wrap---------start--------*/

.responsive-menu {
  position: absolute;
  top: 40%;
  right: 0;
  width: 100%;
}


a.meanmenu-reveal {
    display: none;
}
/*.mean-container .mean-bar {
    float: left;
    width: 100%;
    position: relative;
    background: #0c1923;
    padding: 4px 0;
    min-height: 42px;
    z-index: 999999;
}*/
.mean-container a.meanmenu-reveal {
    width: 22px;
    height: 22px;
    padding: 13px 13px 11px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    z-index: 9;
}

.mean-container a.meanmenu-reveal span {
    display: block;
  background: var(--primary-color-1);
  height: 2px;
  margin-top: 5px;
}
.mean-container .mean-nav {
    float: left;
  width: 100%;
  background: var(--dark-one);
  margin-top: 64px;
}
.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
}
.mean-container .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%;
}
.mean-container .mean-nav ul li a {
    display: block;
    float: left;
    width: 90%;
    padding: 1em 5%;
    margin: 0;
    text-align: left;
    color: #fff;
    border-top: 1px solid #383838;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.mean-container .mean-nav ul li li a {
    width: 100%;
    padding: 1em 5% 1em 5%;
    border-top: 1px solid #f1f1f1;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0.75;
    filter: alpha(opacity=75);
    text-shadow: none !important;
    visibility: visible;
}
.mean-container .mean-nav ul li.mean-last a {
    border-bottom: 0;
    margin-bottom: 0;
}
.mean-container .mean-nav ul li li li a {
    width: 70%;
    padding: 1em 15%;
}
.mean-container .mean-nav ul li li li li a {
    width: 60%;
    padding: 1em 20%;
}
.mean-container .mean-nav ul li li li li li a {
    width: 50%;
    padding: 1em 25%;
}
.mean-container .mean-nav ul li a:hover {
    background: #252525;
    background: rgba(255, 255, 255, 0.1);
}
.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 1px;
    width: 26px;
    height: 32px;
    padding: 12px !important;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    border: 0 !important;
    border-left: 0px solid rgba(255, 255, 255, 0.4) !important;
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;*/
}
.mean-container .mean-nav ul li a.mean-expand:hover {
    background: rgba(0, 0, 0, 0.9);
}
.mean-container .mean-push {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both;
}
.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
}
.mean-container .mean-bar,
.mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.mean-remove {
    display: none !important;
}

/*-------navbar-----wrap-----------end------------*/


.stdy-dstn-main-title h1{
  font-size: 31px;
  font-weight: 500;
  border-bottom: 1px solid var(--primary-color-1);
  color: var(--primary-color-1);
  margin-bottom: 25px;
}


.stdy-dstntn-para ul{
  padding: 13px 0px 0px 10px;
}

.stdy-dstntn-para ul li strong{
  font-weight: 500;
  font-style: italic;
}

.stdy-dstntn-para ul li{
  list-style: none;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.stdy-dstntn-para ul li:before{
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--primary-color-1);
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
}


.tution_fee_tbl table{
  width: 80%;
  margin: 25px 0px 23px;
}

.tution_fee_tbl table thead tr th{
  padding: 7px 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color-2);
}

.tution_fee_tbl table thead tr th,
.tution_fee_tbl table tbody tr td{
  border: 1px solid #ddd;
}

.tution_fee_tbl table tbody tr td{
  padding: 5px 6px;
}


.expnse-wrp{
  margin-bottom: 15px;
}

.expnse-wrp h4{
  font-size: 20px;
  color: var(--primary-color-2);
  font-style: italic;
}

.expnse-wrp p{
  font-size: 15px;
}


.stdy-dstn-para p{
  font-size: 15px;
  line-height: 25px;
  padding-bottom: 12px;
  color: var(--txt-color);

}

.cont_prof_assist_wrp{
  border-radius: 15px;
  border: 1px solid #ddd;
  padding: 25px 20px;
}

.cont_prof_assist_wrp h3{
  font-size: 21px;
  padding-bottom: 10px;
}

.cont_prof_assist_wrp h3 i{
  color: var(--primary-color-1);
  font-size: 17px;
}

.cont_prof_assist_wrp p{
  font-size: 15px;
  padding-bottom: 12px;
}

.cont_prof_assist_wrp ul li{
  font-size: 15px;
  padding-bottom: 7px;
}


/*-------------------------------------------*/


.service_num_list p{
  color: var(--txt-color);
}

.service_num_list ol li{
  margin-bottom: 15px;
}

.service_num_list ul li{
  margin-bottom: 0px;
}

.future_strt_list{
  padding-left: 0px;
}

.future_strt_list li{
  list-style: none;
  padding-bottom: 12px;
}

.future_strt_list li i{
  color: var(--primary-color-1);
}

.select2-dropdown {
  z-index:9999 !important;
}

.iti {
width: 100% !important;
}