:root {
  --primary: #8ba1ffd9;
  --secondary: #ffa4c0f0;
  --white: #fff;
  --black-1: #262525;
  --black-2: #000000;
  --black-3: #0F172A;
  --black-4:#0F172A;
  --navy-1: #F1FAFF;
  --gray-1: #CACDD3;
  --gray-2:#888888;
  --gray-3:#354357;
}

/*

==================================
    1. common
==================================

*/
body {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  color: var(--black-1);
  overflow-x: hidden;
}
header p {
  margin-bottom: 0;
  font-size: 14px;
}

:root {
  --animate-delay: 0.5s;
}

.my-element {
  --animate-duration: 0.5s;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--white);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary);
  height: 100px;
}

.img,
img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
.button {
  transition: 0.3s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a,
button {
  color: inherit;
  outline: medium none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: var(--black-2);
  font-weight: normal;
  margin-top: 0px;
  font-style: normal;
  font-weight: 400;
  text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 40px;
  font-weight: 500;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.75rem;
  color: var(--black-1);
  margin-bottom: 15px;
}

hr {
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  text-shadow: none;
}

::-moz-selection {
  text-shadow: none;
}

::selection {
  text-shadow: none;
  color: white;
  background: var(--black-2);
}

.transparent-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
}

a:hover {
  color: inherit;
}

/*
	2. header
*/
.header__inner-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 999;
}
.header__menu-1 {
  margin: 0;
  padding: 0;
}
.header__menu-1 li {
  display: inline-block;
  margin-right: 50px;
}
.header__menu-1 li:last-child {
  margin-right: 0;
}
.header__menu-1 li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: var(--black-1);
  transition: 0.3s ease;
}
.header__menu-1 li a:hover {
  color: var(--primary);
}

/*
    mobile menu css
*/
.responsive_mobile_menu {
  background-color: var(--primary);
}

.mobile_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.mobile_info_open {
  max-width: 300px;
  background: var(--white);
  padding: 23px;
  position: fixed;
  top: 0;
  height: 100%;
  width: 300px;
  left: -300px;
  z-index: 9;
  transition: 0.3s ease;
}

.mobile_info_open.show {
  left: 0;
}

.mobile_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-logo img {
  width: 100px;
}

.mobile-menu li {
  display: block;
  margin-bottom: 15px;
  border-bottom: 1px solid #ededed;
  padding-bottom: 10px;
}

.mobile-menu li a {
  color: var(--black-2);
}

.header-sticky.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 99;
  padding: 15px 0;
}

.offcanvas-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay.overlay-open {
  opacity: 1;
  visibility: visible;
}

.mobile-logo img {
  width: 70px;
}

/*
	3. hero
*/
.hero__area-1 {
  background-color: var(--navy-1);
  display: flex;
  align-items: center;
}

.hero1 {
  position: relative;
}
.hero1__subtitle {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 0.5;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  color: var(--black-3);
  margin-bottom: 10px;
}
.heroright1__thumb img {
  display: block;
  max-width: 90%;
  margin: 0 auto;
}
.hero1__title {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--black-3);
  margin-bottom: 30px;
}
.hero1__dis1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1px;
  font-family: "Open Sans", sans-serif;
  color: var(--black-4);
  margin-bottom: 30px;
}
.hero1__dis2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  margin-bottom: 30px;
  color: var(--gray-3);
}

.heroright1 {
  position: relative;
}

.box1 {
  display: inline-block;
  width: 58px;
  height: 58px;
  background: var(--primary);
  border-radius: 6px;
  transform: rotate(-45deg);
  position: absolute;
  bottom: 250px;
  left: 162px;
}

.box2 {
  display: inline-block;
  width: 58px;
  height: 58px;
  background: var(--secondary);
  border-radius: 6px;
  transform: rotate(-45deg);
  position: absolute;
  top: 263px;
  right: 217px;
}

.box3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background-color: var(--white);
  width: 211px;
  padding: 20px 30px;
  top: 200px;
  position: absolute;
  left: 0px;
  animation: float-bob-y 5s infinite;
}
.box3__count {
  font-weight: 700;
  font-size: 32px;
  color: var(--primary);
  display: inline-block;
  margin-right: 10px;
}
.box3__years {
  font-weight: 600;
  font-size: 20px;
}

.box3.box4 {
  top: auto;
  bottom: 170px;
  right: 85px;
  width: 237px;
  left: auto;
}
.box3.box4 .box3__count {
  color: var(--secondary);
}

.box5 {
  display: inline-block;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background-color: var(--white);
  padding: 30px;
  position: absolute;
  right: 0;
  top: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float-bob-y 2s infinite;
}

/*
	4. category
*/
.category__area-1 {
  padding: 100px 0;
}

.category {
  transition: 0.3s linear;
  max-width: 352px;
}
.category:hover {
  transform: translateY(-15px);
}
.category__wrapper-1 {
  display: flex;
  justify-content: space-between;
}
.category__item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-1);
}
.category__dis {
  font-weight: 600;
  font-size: 18px;
  color: var(--gray-2);
  padding-top: 30px;
}
.category__count {
  font-weight: 700;
  font-size: 22px;
  font-family: "Open Sans", sans-serif;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 10px;
}
.category__title {
  font-weight: 600;
  font-size: 32px;
  color: var(--black-2);
}

/*
	5. about
*/
.about__area-1 {
  position: relative;
  padding-bottom: 100px;
}
.about__thumb {
  position: relative;
}
.about__main {
  padding-left: 100px;
}
.about__right {
  padding-left: 20px;
}
.about__subtitle {
  font-weight: 500;
  font-size: 18px;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 10px;
}
.about__title {
  font-weight: 500;
  font-size: 48px;
  color: var(--black-2);
}
.about__dis {
  font-weight: 400;
  font-size: 18px;
  color: var(--gray-2);
  padding-top: 10px;
}
.about__wrapperinfo {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  max-width: 470px;
}
.about__info li {
  margin-bottom: 15px;
}
.about__info li span {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: var(--black-1);
  display: block;
}
.about__info li .name {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  padding-top: 5px;
  display: inline-block;
}

.about__img2 {
  position: absolute;
  bottom: -179px;
  left: 0;
  border-radius: 20px;
}

.about__img3 {
  position: absolute;
  top: -26px;
  right: -31px;
}

.about__img4 {
  position: absolute;
  bottom: -21px;
  right: 25%;
}

.about__img5 {
  position: absolute;
  left: 58px;
  top: 140px;
}

/*
	6. service
*/
.service__area-1 {
  padding-bottom: 100px;
}
.service__area-2 {
  padding-bottom: 100px;
}

.section__wrapper {
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}
.section__wrapper .subtitle {
  font-weight: 500;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 5px;
}
.section__wrapper .section-title {
  font-weight: 500;
  font-size: 48px;
  color: var(--black-2);
  margin-bottom: 15px;
}
.section__wrapper .section-dis {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: var(--gray-2);
  margin-bottom: 15px;
}
.services-box {
  row-gap: 20px;
}
.serviceitem {
  border: 3px solid transparent;
  box-shadow: 0px 0px 20px rgba(139, 161, 255, 0.2);
  border-radius: 10px;
  padding: 70px 87px;
  text-align: center;
  margin-bottom: 30px;
  transition: 0.3s linear;
  height: 100%;
}
.serviceitem:hover {
  border: 3px solid var(--primary);
}
.serviceitem__thumb {
  margin-bottom: 20px;
}
.serviceitem__thumb img {
  display: inline-block;
  background-color: var(--primary);
  padding: 15px;
  border-radius: 50px;
}
.serviceitem__content__title {
  font-weight: 600;
  font-size: 32px;
  color: var(--black-2);
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  margin-bottom: 10px;
}
.serviceitem__content__price {
  font-weight: 500;
  font-size: 18px;
  color: var(--black-2);
}
.serviceitem__content__price span {
  color: var(--primary);
}
.serviceitem__content__dis {
  color: var(--gray-2);
  font-weight: 400;
  font-size: 18px;
}

/*
    SERVICE TWO
*/
.serviceitem2 {
  text-align: center;
}
.serviceitem2:hover .serviceitem2__thumb img {
  transform: scale(0.7);
}
.serviceitem2:hover .serviceitem2__content__title {
  color: var(--primary);
}
.serviceitem2__thumb {
  margin-bottom: 20px;
  background-image: url("../img/service/s-bg.png");
  height: 127px;
  max-width: 135px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.serviceitem2__thumb img {
  display: inline-block;
  padding-right: 30px;
  padding-top: 10px;
  transform: scale(1);
  transition: 0.3s;
}
.serviceitem2__content__title {
  font-weight: 600;
  font-size: 24px;
  color: var(--black-2);
  font-family: "Roboto", sans-serif;
  margin-bottom: 10px;
  display: inline-block;
  transition: 0.3s;
}
.serviceitem2__content__dis {
  color: var(--gray-2);
  font-weight: 400;
  font-size: 18px;
}

/*
	7. counter
*/
.counter__area-1 {
  background: linear-gradient(94.16deg, var(--primary) -32.52%, var(--secondary) 134.52%);
  padding: 110px 0;
  margin-bottom: 100px;
}
.counter__area-1 .row {
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 16px;
}
.counter__area-1 h3 {
    font-weight: 500;
      font-size: 48px;
      color: var(--black-2);
}
.counter__area-1 a {
  width: auto;
}
.btn-2 span {
  text-decoration: line-through;
}

.counter {
  text-align: center;
  position: relative;
}
.counter__volume {
  font-weight: 700;
  font-size: 72px;
  color: var(--white);
  font-family: "Open Sans", sans-serif;
}
.counter__title {
  font-weight: 600;
  font-size: 32px;
  color: var(--white);
  font-family: "Open Sans", sans-serif;
}

.img-5 {
  bottom: 0;
  left: 0;
}

.img-2 {
  right: 0;
}

/*
	14. footer
*/
.contact_two {
  padding: 15px 0;
}

.categories h4 {
  color: var(--black-2);
  font-weight: 600;
}

.categories_list li {
  margin-bottom: 7px;
}
.categories_list li a {
}

.copyright_text {
  background: linear-gradient(94.16deg, #FF451B -32.52%, #FFB324 134.52%);
  padding: 70px 0;
}
.copyright_text p {
  margin-bottom: 0;
  color: var(--white);
}

.google-map {
  margin-bottom: -6px;
}

.social__menu li {
  display: inline-block;
  margin-right: 20px;
}
.social__menu li:last-child {
  margin-right: 0;
}
.social__menu li a {
  color: var(--white);
  display: inline-block;
}
.social__menu li a:hover {
  color: var(--primary);
}

.copyright__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
	13. map
*/
.contact__area-1 {
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(94.16deg, var(--primary) -32.52%, var(--secondary) 134.52%);
}
.contact__wrapper {
  max-width: 715px;
  margin: 0 auto;
}

.social {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.social:hover .social__icon {
  background-color: var(--secondary);
  color: var(--white);
}
.social__icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  background-color: var(--white);
  border-radius: 50px;
  font-size: 30px;
  margin-right: 20px;
  transition: 0.3s;
  flex-shrink: 0;
}
.social__phone * h4 {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
}

.field-wrapper {
  margin-bottom: 15px;
}
.field-wrapper input, .field-wrapper textarea {
  height: 50px;
  padding: 15px;
  width: 100%;
  border-radius: 6px;
  border: 0;
}
.field-wrapper input:focus, .field-wrapper textarea:focus {
  outline: 1px solid var(--secondary);
}
.field-wrapper textarea {
  height: 170px;
}
.field-wrapper input[type=submit] {
  background-color: var(--primary);
  color: var(--white);
  transition: 0.3s;
}
.field-wrapper input[type=submit]:hover {
  background-color: var(--secondary);
  border: 0;
  outline: 0;
}

.swiper.testimonial-active.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  max-width: 470px;
  overflow: hidden;
}

.btn-1, .common-btn, .btn-2 {
  display: inline-block;
  padding: 10px 30px 10px 30px;
  color: var(--white);
  background-color: var(--secondary);
  font-family: "Roboto", sans-serif;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
}
.btn-1:hover, .common-btn:hover, .btn-2:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-2 {
  padding: 10px 35px;
  background-color: var(--primary);
  box-shadow: 0px 0px 10px rgba(38, 37, 37, 0.25);
  border-radius: 6px;
  margin-right: 25px;
  display: inline-block;
}
.btn-2:hover {
  background-color: var(--secondary);
  color: var(--white);
}
.btn-2:last-child {
  margin-right: 0;
}

.common-btn {
  font-weight: 700;
  font-size: 18px;
  background-color: transparent;
  transition: 0.3s ease;
  color: var(--black-2);
}
.common-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-3 {
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 6px;
  margin-top: 25px;
  display: inline-block;
}
.btn-3:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-4 {
  transition: 0.3s linear;
}
.btn-4 i {
  display: inline-block;
  padding-left: 10px;
}

.btn-2.btn-c {
  background-color: transparent;
  color: var(--black-2);
  box-shadow: none;
}
.btn-2:hover:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.close_info {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  background: var(--primary);
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1 ;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}