/*
Template Name: Line - Creative Agency Html Template
*/
/*================================================
1. Default CSS
2. Menu CSS
3. Cta CSS
4. Hero CSS
5. About CSS
6. Service CSS
7. Blog CSS
8. Brand CSS
9. Counter CSS
10. Team CSS
11. Testimonial CSS
12. Cta CSS
13. Footer CSS
14. Details Page CSS
15. Error CSS
16. FAQ CSS
17. Contact CSS
18. Project CSS




=================================================*/
/*================================================
1. Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Font Variable */
/* Color Variable */
a {
  color: unset;
  text-decoration: none;
}

a:focus {
  outline: 0 solid;
}

a:hover {
  text-decoration: none;
  color: unset;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  font-weight: 600;
  font-family: "Kanit", sans-serif;
  color: #fff;
}

h2 {
  font-size: 30px;
  line-height: 1.26;
}

html, body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.62;
  font-family: "Kanit", sans-serif;
  color: #F0F2F6;
  background-color: #101114;
}

p {
  margin-bottom: 0;
}

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

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

i.bx {
  vertical-align: middle;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.minus-margin {
  margin: -1px 0;
}

.inner-section-gap {
  padding-top: 204px;
}

.background-dark {
  background-color: #101114;
}

.background-white {
  background-color: #fff !important;
}

.background-of-white {
  background-color: #F0F2F6 !important;
}

.background-dark-medium {
  background: -webkit-gradient(linear, left top, left bottom, from(#17181C), color-stop(95.28%, rgba(19, 20, 23, 0)));
  background: linear-gradient(180deg, #17181C 0%, rgba(19, 20, 23, 0) 95.28%);
}

.z-index-one {
  z-index: 1 !important;
}

.z-index-minus-one {
  z-index: -1 !important;
}

/*
============================================
============= Custom Scroll Bar CSS ================
*/
body::-webkit-scrollbar {
  width: .3em;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
  border-radius: 10px;
}

/*
============================================
============= Custom Scroll Bar CSS End ================
*/
/*
============================================
============= Preloader CSS ================
*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#preloader::before, #preloader::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#preloader::after {
  left: auto;
  right: 0;
}

#preloader .loader_line {
  margin: auto;
  width: 1px;
  height: 250px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

#preloader .loader_line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
          animation: lineheight 1000ms ease-in-out 0s forwards;
}

#preloader .loader_line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #999999;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: lineround 1200ms linear 0s infinite;
          animation: lineround 1200ms linear 0s infinite;
  -webkit-animation-delay: 2000ms;
          animation-delay: 2000ms;
}

@-webkit-keyframes lineheight {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes lineheight {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@-webkit-keyframes lineround {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
}

@keyframes lineround {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
}

/*hiding all*/
.preloaded .loader_line:after {
  opacity: 0;
}

.preloaded .loader_line {
  opacity: 0;
  height: 100% !important;
}

.preloaded:before,
.preloaded:after {
  -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
          animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@-webkit-keyframes preloadedzero {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}

@keyframes preloadedzero {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}

/*
============= Preloader CSS END ================
================================================
*/
/* Custom Cursor */
.cursor {
  pointer-events: none;
  position: fixed;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  mix-blend-mode: difference;
  -webkit-transition: opacity 0.4s ease, -webkit-transform .3s ease;
  transition: opacity 0.4s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity 0.4s ease;
  transition: transform .3s ease, opacity 0.4s ease, -webkit-transform .3s ease;
  z-index: 99999;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.cursor-active {
  -webkit-transform: translate(-50%, -50%) scale(3);
          transform: translate(-50%, -50%) scale(3);
  background-color: #01F6FC;
  opacity: .1;
}

/* Custom Cursor End */
/*Back to Top btn*/
.back-to-top-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background: #fff;
  mix-blend-mode: exclusion;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  display: none;
  z-index: 9999;
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}

.back-to-top-btn i {
  color: #000;
  font-size: 18px;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-text-stroke: 1px;
}

.back-to-top-btn i::before {
  vertical-align: middle;
}

/*Back to Top btn End*/
.btn_wrapper {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}

.btn_wrapper .btn-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 170px;
  height: 170px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-transform: capitalize;
  border: 1px dashed #9CA5BF;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}

.btn_wrapper .btn-item i {
  margin-left: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.btn_wrapper .btn-item span {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn_wrapper:hover .btn-item {
  color: #101114;
}

.btn_wrapper:hover .btn-item span {
  width: 350px;
  height: 350px;
}

.btn_wrapper.btn_wrapper-two .btn-item {
  border: 1px solid #149FD5;
  color: #149FD5;
}

.btn_wrapper.btn_wrapper-two .btn-item span {
  background-color: #1B1F2B;
}

.btn_wrapper.btn_wrapper-two:hover .btn-item {
  border: 1px solid #1B1F2B;
  color: #fff;
}

.btn-two {
  color: #9CA5BF;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-two i {
  margin-left: 10px;
  font-size: 15px;
  line-height: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.common-btn {
  color: #1B1F2B;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  padding: 15px 19px;
  background-color: #01F6FC;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.common-btn::before {
  position: absolute;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
          transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  content: "";
}

.common-btn span {
  position: relative;
  z-index: 10;
  display: block;
}

.common-btn:hover {
  color: #1B1F2B;
}

.common-btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.common-btn:hover span {
  -webkit-animation: UpInitial 0.3s , UpEnd 0.3s  0.3s;
          animation: UpInitial 0.3s , UpEnd 0.3s  0.3s;
}

.common-btn svg, .common-btn i {
  margin-left: 8px;
}

.common-btn.btn-design-two {
  background-color: #149FD5;
  color: #fff;
}

.common-btn.btn-design-two::before {
  background: #1B1F2B;
}

@-webkit-keyframes UpInitial {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(1, 2, 1);
            transform: translate3d(0, -100%, 0) scale3d(1, 2, 1);
  }
}

@keyframes UpInitial {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(1, 2, 1);
            transform: translate3d(0, -100%, 0) scale3d(1, 2, 1);
  }
}

@-webkit-keyframes UpEnd {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
            transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes UpEnd {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
            transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.section-title span {
  font-size: 18px;
  line-height: 28px;
  color: #01F6FC;
  border-bottom: 1px solid #485272;
  display: block;
  padding-bottom: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 48px;
  line-height: 1.12;
}

.section-title p {
  margin-top: 10px;
}

.section-title.section-title-two span {
  color: #149FD5;
  border-bottom: 1px solid #9ca5bf5c;
}

.section-title.section-title-two h2 {
  color: #1B1F2B;
}

.section-title.section-title-two p {
  color: #485272;
}

.slider-control .prev, .slider-control .next {
  -webkit-transition: all .4s;
  transition: all .4s;
}

.slider-control .prev:hover, .slider-control .next:hover {
  color: #01F6FC;
}

.slider-control .prev {
  margin-right: 30px;
}

.slider-control.slider-control-two .prev, .slider-control.slider-control-two .next {
  color: #1B1F2B;
}

.slider-control.slider-control-two .prev:hover, .slider-control.slider-control-two .next:hover {
  color: #149FD5;
}

/*================================================
2. Menu CSS
=================================================*/
.menu-area {
  width: 100%;
  z-index: 999;
  padding: 18px 0px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #101114;
}

.menu-area.menu-area-three {
  background-color: #12171D;
}

.menu-area.sticky {
  background-color: #101114;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: fixed;
  -webkit-animation: slide_down_site 0.35s ease-out;
          animation: slide_down_site 0.35s ease-out;
}

@-webkit-keyframes slide_down_site {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slide_down_site {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

.mainmenu ul ul li ul {
  left: 201px;
  top: 64px;
}

.mainmenu ul ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0px;
}

.mainmenu li {
  display: inline-block;
  position: relative;
  padding: 0 50px 0 0;
}

.mainmenu li a {
  color: #FFFFFF;
  padding: 9px 0;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 18px;
  display: inline-block;
}

.mainmenu li ul {
  position: absolute;
  background: #f3f3f3;
  width: 200px;
  left: 0px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 9;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

.mainmenu li ul li {
  text-align: left;
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 3px;
}

.mainmenu li ul li > a {
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 17px;
}

.mainmenu li ul li > a:hover {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

.mainmenu li ul a {
  color: #fff;
  width: 85%;
  text-align: left;
  margin-left: 0px;
  padding: 7px 10px;
}

.mainmenu li:hover ul {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.mainmenu li:hover ul ul {
  visibility: hidden;
  opacity: 0;
}

.mainmenu li > a {
  -webkit-transition: .3s;
  transition: .3s;
}

.mainmenu li.has-child-menu > a {
  position: relative;
}

.mainmenu li.has-child-menu > a::before {
  position: absolute;
  left: 106%;
  top: 56%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 13px;
  font-family: bootstrap-icons !important;
  content: "\f282";
  -webkit-transition: all .5s;
  transition: all .5s;
}

.mainmenu li.has-child-menu:hover a::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.mainmenu li.has-child-menu ul li.has-child-menu > a::before {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 10px;
  font-family: bootstrap-icons !important;
  -webkit-text-stroke: 1px;
  content: "\f285";
  -webkit-transition: all .5s;
  transition: all .5s;
  color: #000;
}

.menu-area-two {
  border-bottom: 1px solid rgba(156, 165, 191, 0.4);
}

.menu-area-two .mainmenu li a {
  color: #1B1F2B;
}

/*================================================
3. Cta CSS
=================================================*/
.cta-slider-wrap {
  padding: 35px 60px;
  background-color: #01F6FC;
  text-align: center;
  margin: -1px;
}

.cta-slider-wrap h2 {
  white-space: nowrap;
  color: #1B1F2B;
}

.cta-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}

.cta-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  margin: -1px;
}

.cta-slider-area-home-two .cta-slider-wrap {
  background-color: #149FD5;
}

.cta-slider-area-home-two .cta-slider-wrap h2 {
  color: #fff;
}

/*================================================
4. Hero CSS
=================================================*/
.hero-area {
  padding: 204px 0 120px;
}

.hero-area.hero-area-two {
  background-image: url(../images/hero/hero-two-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 290px 0 200px;
}

.hero-info span {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.hero-info h1 {
  font-size: 70px;
  line-height: 1.14;
  margin: 10px 0 30px;
}

.hero-info h1 strong {
  color: #01F6FC;
  font-weight: 600;
}

.hero-info p {
  font-size: 19px;
}

.hero-info.hero-info-two span {
  color: #485272;
}

.hero-info.hero-info-two h1 {
  color: #1B1F2B;
}

.hero-info.hero-info-two h1 strong {
  color: #149FD5;
}

.hero-info.hero-info-two p {
  color: #485272;
}

.hero-btn-wrap {
  margin-top: -50px;
  margin-left: -40px;
}

.hero-arrow {
  right: 80px;
  bottom: 100px;
  -webkit-animation: 2s arrow_up_top infinite alternate linear;
          animation: 2s arrow_up_top infinite alternate linear;
  z-index: 0;
}

.hero-star-1 {
  left: 30px;
  top: 120px;
  -webkit-animation: 3.5s anim_opacity_scale infinite alternate linear;
          animation: 3.5s anim_opacity_scale infinite alternate linear;
}

.hero-star-2 {
  left: 114px;
  top: 185px;
  -webkit-animation: 2.5s anim_opacity_scale infinite alternate linear;
          animation: 2.5s anim_opacity_scale infinite alternate linear;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.hero-star-3 {
  right: 50px;
  top: 25%;
  -webkit-animation: 2.5s anim_opacity_scale infinite alternate linear;
          animation: 2.5s anim_opacity_scale infinite alternate linear;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.hero-star-4 {
  right: 110px;
  top: 35%;
  -webkit-animation: 2.5s anim_opacity_scale infinite alternate linear;
          animation: 2.5s anim_opacity_scale infinite alternate linear;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes arrow_up_top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

@keyframes arrow_up_top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

@-webkit-keyframes anim_opacity_scale {
  0% {
    opacity: .1;
    -webkit-transform: scale(0.5) rotate(160deg);
            transform: scale(0.5) rotate(160deg);
  }
  50% {
    opacity: .5;
    -webkit-transform: scale(0.8) rotate(170deg);
            transform: scale(0.8) rotate(170deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(180deg);
            transform: scale(1) rotate(180deg);
  }
}

@keyframes anim_opacity_scale {
  0% {
    opacity: .1;
    -webkit-transform: scale(0.5) rotate(160deg);
            transform: scale(0.5) rotate(160deg);
  }
  50% {
    opacity: .5;
    -webkit-transform: scale(0.8) rotate(170deg);
            transform: scale(0.8) rotate(170deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(180deg);
            transform: scale(1) rotate(180deg);
  }
}

@-webkit-keyframes anim_opacity {
  0% {
    opacity: .1;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes anim_opacity {
  0% {
    opacity: .1;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

/*================================================
5. About CSS
=================================================*/
.about-info-list {
  margin-top: 30px;
  margin-left: 35px;
  padding-left: 35px;
  position: relative;
}

.about-info-list::before {
  position: absolute;
  left: 0;
  height: 100%;
  width: 1px;
  background-color: #3A3D47;
  content: "";
  top: 0;
}

.about-info-list::after {
  position: absolute;
  left: 0;
  height: 100%;
  width: 1px;
  background-color: #3A3D47;
  content: "";
  top: 100%;
}

.about-info-list li {
  font-size: 18px;
  line-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-info-list li i {
  margin-right: 8px;
}

.about-info-list li:not(:last-child) {
  margin-bottom: 13px;
}

.about-info-list.about-info-list-two::before, .about-info-list.about-info-list-two::after {
  background-color: #3a3d4740;
}

.about-info-list.about-info-list-two li {
  color: #1B1F2B;
}

.about-btn-wrap {
  margin-top: 40px;
}

.about-wrap .about-img-wrap {
  background: #2D3344;
  padding: 10px;
  margin-bottom: 30px;
}

.about-wrap.about-wrap-two {
  margin-top: -190px;
  margin-right: -10px;
}

.about-wrap.about-wrap-two .about-img-wrap {
  background: #fff;
}

.image-scale-anim {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.star-1 {
  left: 170px;
  top: 134px;
  opacity: 0;
}

.star-2 {
  left: 50%;
  bottom: 104px;
  opacity: 0;
}

.star-3 {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 204px;
  opacity: 0;
}

.star-4 {
  left: 57%;
  bottom: 254px;
  opacity: 0;
}

.about-page-srta, .anim-opacity {
  -webkit-animation: 2.5s anim_opacity infinite alternate linear;
          animation: 2.5s anim_opacity infinite alternate linear;
}

/*================================================
6. Service CSS
=================================================*/
.service-box {
  padding: 50px 30px;
  background: #17191E;
  border: 1.5px solid transparent;
  margin-bottom: 24px;
}

.service-box h2 {
  margin: 25px 0 15px;
}

.service-box p {
  margin-bottom: 30px;
}

.service-box:hover {
  border-image-source: linear-gradient(117.77deg, #01F6FC 0%, rgba(251, 174, 61, 0) 36.23%, rgba(251, 174, 61, 0) 65.79%, #01F6FC 100%);
  border-image-slice: 1;
}

.service-box:hover .btn-two {
  color: #01F6FC;
}

.service-box:hover .btn-two i {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

.service-box.service-box-home-white {
  background: #fff;
  border: 1.5px solid #dddddd94;
}

.service-box.service-box-home-white h2 {
  color: #1B1F2B;
}

.service-box.service-box-home-white p {
  color: #485272;
}

.service-box.service-box-home-white .btn-two {
  color: #485272;
}

.service-box.service-box-home-white:hover {
  border-image-source: linear-gradient(117.77deg, #149FD5 0%, rgba(251, 174, 61, 0) 36.23%, rgba(251, 174, 61, 0) 65.79%, #149FD5 100%);
  border-image-slice: 1;
}

.service-box.service-box-home-white:hover .btn-two {
  color: #149FD5;
}

.service-cta-wrap {
  background-color: #17191E;
  padding: 38px 50px;
}

.service-cta-wrap h2 {
  line-height: 1.26;
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  max-width: 820px;
}

.service-cta-wrap h2 a {
  color: #01F6FC;
}

.service-video-box {
  background-color: #1B1F2A;
  padding: 15px;
  margin-top: -200px;
  z-index: 2;
}

/*================================================
7. Blog CSS
=================================================*/
.blog-box {
  margin-bottom: 24px;
}

.blog-box .blog-img-wrap img {
  -webkit-transform: scale(1.1) translateX(0);
          transform: scale(1.1) translateX(0);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.blog-box .blog-img-wrap .blog-hover-info {
  top: 30px;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.blog-box .blog-img-wrap .blog-hover-info p {
  color: #1B1F2B;
  padding: 10px 15px;
  background-color: #01F6FC;
}

.blog-box .blog-img-wrap .blog-hover-info p i {
  margin-right: 10px;
}

.blog-box .blog-info h2 {
  font-size: 24px;
  line-height: 28px;
  margin-top: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 500;
}

.blog-box .blog-info p {
  margin: 10px 0 15px;
  font-weight: 300;
  padding-bottom: 15px;
  border-bottom: 1px solid #363D52;
}

.blog-box .blog-info .btn-two {
  color: #F0F2F6;
}

.blog-box:hover .blog-img-wrap img {
  -webkit-transform: scale(1.1) translateX(-2%);
          transform: scale(1.1) translateX(-2%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.blog-box:hover .blog-img-wrap .blog-hover-info {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.blog-box:hover .btn-two {
  color: #01F6FC;
}

.blog-box:hover .btn-two i {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

.blog-box.blog-box-standard {
  margin-bottom: 70px;
}

.blog-box.blog-box-standard .blog-img-wrap img {
  -webkit-transform: unset;
          transform: unset;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.blog-box.blog-box-standard .blog-img-wrap .img-blog-btn-wrap {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
}

.blog-box.blog-box-standard .blog-img-wrap .img-blog-btn-wrap .img-blog-btn {
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-text-stroke: 1px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1B1F2B;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.blog-box.blog-box-standard .blog-img-wrap .img-blog-btn-wrap .img-blog-btn:hover {
  background-color: #01F6FC;
}

.blog-box.blog-box-standard .blog-img-wrap .img-blog-btn-wrap .img-blog-btn.blog-grid-button-prev {
  margin-top: 10px;
}

.blog-box.blog-box-standard .blog-info p {
  border-bottom: unset;
  padding-bottom: 0;
}

.blog-box.blog-box-home-white .blog-img-wrap .blog-hover-info p {
  color: #fff;
  background-color: #149FD5;
}

.blog-box.blog-box-home-white .blog-info h2 {
  color: #1B1F2B;
}

.blog-box.blog-box-home-white .blog-info p {
  color: #485272;
  font-weight: 400;
  border-bottom: 1px solid #3a3d4740;
}

.blog-box.blog-box-home-white .blog-info .btn-two {
  color: #1B1F2B;
}

.blog-box.blog-box-home-white:hover .btn-two {
  color: #149FD5;
}

.blog-meta {
  margin: 20px 0 10px;
}

.blog-meta li {
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  position: relative;
}

.blog-meta li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
}

.blog-meta li:not(:last-child)::before {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5px;
  height: 16px;
  content: "";
  background-color: #363D52;
}

.blog-meta li svg, .blog-meta li i {
  margin-right: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.blog-meta li:hover svg, .blog-meta li:hover i {
  color: #01F6FC;
}

.blog-masonry {
  height: 100%;
  background-size: cover;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
}

.blog-masonry::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 165px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 31, 43, 0)), color-stop(75.5%, #1B1F2B));
  background: linear-gradient(180deg, rgba(27, 31, 43, 0) 0%, #1B1F2B 75.5%);
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}

.blog-masonry .blog-masonry-info {
  position: absolute;
  left: 30px;
  bottom: 30px;
}

.blog-masonry .blog-masonry-info p {
  position: relative;
  padding-left: 42px;
}

.blog-masonry .blog-masonry-info p::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 2px;
  background-color: #fff;
  content: "";
}

.blog-masonry .blog-masonry-info p span {
  color: #01F6FC;
}

.blog-masonry .blog-masonry-info h2 {
  font-size: 24px;
  margin-top: 12px;
}

.blog-masonry.blog-masonry-two {
  background-size: unset;
  background-position: unset;
  -o-object-fit: unset;
     object-fit: unset;
  background-repeat: unset;
}

.blog-masonry.blog-masonry-two::before {
  display: none;
}

.blog-masonry.blog-masonry-two .blog-masonry-info {
  position: relative;
  left: unset;
  bottom: unset;
  margin-top: 20px;
}

.blog-masonry.blog-masonry-two .blog-masonry-info p {
  position: relative;
  padding-left: 42px;
}

.blog-masonry.blog-masonry-two .blog-masonry-info p::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 2px;
  background-color: #fff;
  content: "";
}

.blog-masonry.blog-masonry-two .blog-masonry-info p span {
  color: #01F6FC;
}

.blog-masonry.blog-masonry-two .blog-masonry-info h2 {
  font-size: 24px;
  margin-top: 12px;
}

.blog-masonry.blog-masonry-video .cta-video {
  height: 442px;
}

.blog-masonry.blog-masonry-video .video-button {
  top: 50px;
  right: 50px;
}

.blog-masonry.blog-masonry-video .video-icon-wrap .video-icon-bg {
  height: 134px;
  width: 134px;
}

.blog-masonry.blog-masonry-video .blog-masonry-info h2 {
  max-width: 834px;
}

.blog-two-wrap .blog-two-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-two-wrap .blog-two-box:not(:last-child) {
  margin-bottom: 24px;
}

.blog-two-wrap .blog-two-box .blog-two-img {
  max-width: 170px;
  width: 100%;
  overflow: hidden;
}

.blog-two-wrap .blog-two-box .blog-two-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateX(0) scale(1.05);
          transform: translateX(0) scale(1.05);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.blog-two-wrap .blog-two-box .blog-two-info {
  margin-left: 20px;
}

.blog-two-wrap .blog-two-box .blog-two-info h2 {
  font-size: 24px;
}

.blog-two-wrap .blog-two-box .blog-two-info p {
  margin: 10px 0 15px;
}

.blog-two-wrap .blog-two-box:hover .blog-two-img img {
  -webkit-transform: translateX(2%) scale(1.05);
          transform: translateX(2%) scale(1.05);
}

/*================================================
8. Brand CSS
=================================================*/
.brand-carrousel .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  position: relative;
}

.brand-carrousel .swiper-wrapper:hover {
  -webkit-transition-timing-function: unset;
          transition-timing-function: unset;
}

.brand-box {
  height: 153px;
  border: 1px solid #2D3344;
  border-left: unset;
  cursor: auto;
}

.brand-box svg {
  color: #9CA5BF;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.brand-box:hover svg {
  color: #01F6FC;
}

.brand-box.brand-box-two {
  height: 60px;
  border: unset;
}

.brand-box.brand-box-home-white {
  border: 1px solid #3a3d4740;
  border-left: unset;
}

.brand-box.brand-box-home-white svg {
  color: #485272;
}

.brand-box.brand-box-home-white:hover svg {
  color: #149FD5;
}

/*================================================
9. Counter CSS
=================================================*/
.counter-item-wrap {
  margin-bottom: 24px;
}

.counter-item-wrap .counter-item h2, .counter-item-wrap .counter-item span {
  -webkit-text-stroke: 1.5px #F0F2F6;
  color: transparent;
  font-size: 80px;
  line-height: 1;
}

.counter-item-wrap .counter-text {
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
}

.counter-item-wrap.counter-item-wrap-white-home .counter-item h2, .counter-item-wrap.counter-item-wrap-white-home .counter-item span {
  -webkit-text-stroke: 1.5px #1B1F2B;
  color: transparent;
}

.counter-item-wrap.counter-item-wrap-white-home .counter-text {
  color: #1B1F2B;
}

.counter-area-home-white {
  padding: 60px 0 36px;
}

/*================================================
10. Team CSS
=================================================*/
.team-box {
  margin-bottom: 24px;
}

.team-box .team-img img {
  -webkit-transform: translateX(0) scale(1.05);
          transform: translateX(0) scale(1.05);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.team-box .team-img .team-hover {
  top: 15px;
  right: 15px;
  text-align: center;
  -webkit-transform: translateX(35px);
          transform: translateX(35px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.team-box .team-img .team-hover li {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  margin: 6px 0 6px 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.team-box .team-img .team-hover li:hover {
  color: #01F6FC;
}

.team-box .team-info h2 {
  font-size: 24px;
  line-height: 28px;
  margin: 25px 0 5px;
  -webkit-transition: .4s;
  transition: .4s;
}

.team-box:hover .team-img img {
  -webkit-transform: translateX(2%) scale(1.05);
          transform: translateX(2%) scale(1.05);
}

.team-box:hover .team-img .team-hover {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.team-box:hover .team-info h2 {
  color: #01F6FC;
}

.team-box.team-box-home-white .team-info h2 {
  color: #1B1F2B;
}

.team-box.team-box-home-white .team-info p {
  color: #485272;
}

.team-box.team-box-home-white:hover .team-info h2 {
  color: #149FD5;
}

/*================================================
11. Testimonial CSS
=================================================*/
.testimonial-info svg {
  color: #01F6FC;
}

.testimonial-info .testimonial-quote {
  font-style: italic;
  margin: 15px 0 30px;
  max-width: 600px;
}

.testimonial-info .testimonial-author-box img {
  max-width: 62px;
  width: 100%;
  border-radius: 50%;
}

.testimonial-info .testimonial-author-box .testimonial-author-info {
  margin-left: 18px;
}

.testimonial-info .testimonial-author-box .testimonial-author-info h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
}

.testimonial-info.testimonial-info-home-white svg {
  color: #149FD5;
}

.testimonial-info.testimonial-info-home-white .testimonial-quote {
  color: #2d3344;
}

.testimonial-info.testimonial-info-home-white .testimonial-author-box .testimonial-author-info h3 {
  color: #1B1F2B;
}

.testimonial-info.testimonial-info-home-white .testimonial-author-box .testimonial-author-info p {
  color: #485272;
}

.testimonial-info.testimonial-info-two svg {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
  opacity: 0;
}

.testimonial-info.testimonial-info-two .testimonial-quote {
  font-size: 25px;
  line-height: 1.6;
  margin: 15px auto 35px;
  max-width: unset;
}

.testimonial-slider-two .swiper-slide-active .testimonial-info.testimonial-info-two svg {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 1;
}

.testimonial-slider {
  border-left: 1px solid #363D52;
  padding-left: 35px;
}

.testimonial-slider.testimonial-slider-home-white {
  border-left: 1px solid #3a3d4740;
}

.slider-pagination .swiper-pagination-bullet {
  background: #fff;
  width: 10px;
  height: 10px;
  position: relative;
  opacity: 1;
  margin: 0px 20px 0 0px !important;
}

.slider-pagination .swiper-pagination-bullet::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 1px solid transparent;
  content: "";
  border-radius: 50%;
}

.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #01F6FC;
}

.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 1px solid #01F6FC;
}

.slider-pagination.slider-pagination-home-white .swiper-pagination-bullet {
  background: #1B1F2B;
}

.slider-pagination.slider-pagination-home-white .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #149FD5;
}

.slider-pagination.slider-pagination-home-white .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 1px solid #149FD5;
}

.test-star-1 {
  top: 40px;
  left: 139px;
}

.test-star-2 {
  top: 128px;
  left: 101px;
  opacity: 1;
}

.test-star-3 {
  bottom: 70px;
  right: 70px;
}

.testimonial-slider-two-next, .testimonial-slider-two-prev {
  position: absolute;
  left: 5%;
}

.testimonial-slider-two-prev {
  left: auto;
  right: 5%;
}

/*================================================
12. Cta CSS
=================================================*/
.cta-video {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-icon-wrap .video-icon-bg {
  display: inline-block;
  width: 170px;
  height: 170px;
  background: rgba(1, 246, 252, 0.1);
  border: 2px dashed #01F6FC;
  border-radius: 50%;
  -webkit-animation: spin 20s  linear infinite;
          animation: spin 20s  linear infinite;
}

.video-icon-wrap i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  -webkit-transition: all .5s;
  transition: all .5s;
  color: #01F6FC;
  cursor: pointer;
  opacity: 0;
}

.video-icon-wrap i.active {
  opacity: 1;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*================================================
13. Footer CSS
=================================================*/
.footer-widgets {
  margin-bottom: 50px;
}

.footer-area {
  padding: 100px 0 0;
}

.footer-logo-wrap p {
  margin: 20px 0 30px;
}

.footer-title h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.16;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  display: inline-block;
}

.footer-title h2::before {
  position: absolute;
  width: 80px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#01F6FC), to(rgba(0, 249, 255, 0)));
  background: linear-gradient(90deg, #01F6FC 0%, rgba(0, 249, 255, 0) 100%);
  content: "";
  left: 0;
  bottom: 0;
}

.footer-links li {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer-links li:not(:last-child) {
  margin-bottom: 14px;
}

.footer-links li:hover {
  color: #01F6FC;
}

.social-links li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.social-links li:not(:last-child) {
  margin-right: 18px;
}

.social-links li i {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  border: 1px solid #363d52;
  height: 30px;
  width: 30px;
  font-size: 14px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.social-links li i:hover {
  color: #01F6FC;
}

.footer-subscribe input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #2D3344;
  background: transparent;
  color: #fff;
  padding-bottom: 13px;
  margin-bottom: 18px;
}

.footer-subscribe button {
  background: transparent;
  color: #fff;
  position: relative;
  padding-left: 48px;
  line-height: 1;
}

.footer-subscribe button::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 38px;
  height: 2px;
  background: #01F6FC;
  border-radius: 30px;
  content: "";
}

.footer-address {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.footer-address li {
  background: #17191E;
  padding: 20px;
  max-width: 290px;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .4s;
  transition: all .4s;
  border: 1.5px solid #17191E;
  margin-bottom: 50px;
  margin-right: 20px;
}

.footer-address li svg {
  color: #01F6FC;
  margin-right: 10px;
}

.footer-address li:hover {
  border: 1.5px solid #17191E;
  border-image-source: linear-gradient(135.92deg, rgba(1, 246, 252, 0.7) 0%, rgba(255, 255, 255, 0) 46.35%, rgba(1, 246, 252, 0.7) 100%);
  border-image-slice: 1;
}

.footer-copy {
  border-top: 1px solid  #363D52;
  padding: 20px 0;
}

.footer-right a {
  color: #01F6FC;
}

.site-policy li {
  display: inline-block;
  position: relative;
}

.site-policy li:not(:last-child) {
  padding: 0 14px 0 8px;
}

.site-policy li:not(:last-child)::before {
  position: absolute;
  right: 0;
  height: 85%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  background-color: #fff;
  content: "";
}

.site-policy li:last-child {
  margin-left: 7px;
}

/*================================================
14. Details Page CSS
=================================================*/
.details-content-wrap .details-info-text {
  margin-top: 10px;
}

.details-content-wrap .details-info-list {
  margin-top: 20px;
}

.details-content-wrap .details-info-list li {
  position: relative;
  padding-left: 26px;
}

.details-content-wrap .details-info-list li:not(:last-child) {
  margin-bottom: 13px;
}

.details-content-wrap .details-info-list li::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f272";
  font-family: bootstrap-icons !important;
}

.details-content-wrap .details-quote {
  margin-top: 20px;
}

.details-content-wrap .details-quote h2 {
  font-size: 26px;
  font-style: italic;
}

.details-content-wrap .details-quote p {
  font-size: 22px;
  color: #01F6FC;
  font-weight: 500;
  margin-top: 15px;
}

.sidebar-wrap .single-sidebar:not(:last-child) {
  margin-bottom: 35px;
}

.sidebar-title {
  margin-bottom: 20px;
  font-size: 24px;
}

.sidebar-contact-form {
  background-color: #17191E;
  padding: 30px;
}

.sidebar-contact-form .single-input-wrap .input-icon {
  margin-top: 2px;
}

.sidebar-contact-form .single-input-wrap input, .sidebar-contact-form .single-input-wrap textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0 0 12px 32px;
  border-bottom: 1px solid #363D52;
  margin-bottom: 30px;
  color: #fff;
}

.sidebar-contact-form .single-input-wrap input::-webkit-input-placeholder, .sidebar-contact-form .single-input-wrap textarea::-webkit-input-placeholder {
  color: rgba(240, 242, 246, 0.89);
}

.sidebar-contact-form .single-input-wrap input:-ms-input-placeholder, .sidebar-contact-form .single-input-wrap textarea:-ms-input-placeholder {
  color: rgba(240, 242, 246, 0.89);
}

.sidebar-contact-form .single-input-wrap input::-ms-input-placeholder, .sidebar-contact-form .single-input-wrap textarea::-ms-input-placeholder {
  color: rgba(240, 242, 246, 0.89);
}

.sidebar-contact-form .single-input-wrap input::placeholder, .sidebar-contact-form .single-input-wrap textarea::placeholder {
  color: rgba(240, 242, 246, 0.89);
}

.sidebar-contact-form .single-input-wrap input:focus, .sidebar-contact-form .single-input-wrap textarea:focus {
  border-bottom: 1px solid #ffffff33;
}

.sidebar-contact-form button {
  border: none;
  background: none;
  color: #01F6FC;
}

.sidebar-contact-form button svg, .sidebar-contact-form button i {
  -webkit-transition: all .4s;
  transition: all .4s;
}

.sidebar-contact-form button:hover svg, .sidebar-contact-form button:hover i {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.sidebar-contact-form.submit-form-wrap {
  border: 1.5px solid #17191E;
  border-image-source: linear-gradient(135.92deg, rgba(1, 246, 252, 0.7) 0%, rgba(255, 255, 255, 0) 46.35%, rgba(1, 246, 252, 0.7) 100%);
  border-image-slice: 1;
  padding: 40px;
}

.sidebar-contact-form.submit-contact-form-wrap {
  background-color: transparent;
}

.sidebar-cta-img {
  width: 100%;
}

.page-list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 18px;
  line-height: 30px;
  border: 1px solid #9CA5BF;
  color: #9CA5BF;
  border-radius: 5px 5px 5px 0px;
  width: 40px;
  height: 38px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 20px 20px 0px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.page-list li i {
  -webkit-text-stroke: 1px;
}

.page-list li.active, .page-list li:hover {
  background-color: #01F6FC;
  color: #1B1F2B;
  border: 1px solid transparent;
}

.sidebar-search input {
  width: 100%;
  padding: 12px 95px 12px 20px;
  border: 1px solid #01F6FC;
  background: none;
  color: #fff;
}

.sidebar-search button {
  background: #01F6FC;
  border: none;
  position: absolute;
  height: 100%;
  width: 56px;
  top: 0;
  right: 0;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sidebar-latest-post li {
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.sidebar-latest-post li:hover {
  color: #01F6FC;
}

.sidebar-latest-post li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar-trending-wrap .single-sidebar-trending .trending-img {
  max-width: 80px;
  width: 100%;
}

.sidebar-trending-wrap .single-sidebar-trending .trending-img img {
  width: 100%;
}

.sidebar-trending-wrap .single-sidebar-trending .trending-info {
  margin-left: 10px;
}

.sidebar-trending-wrap .single-sidebar-trending .trending-info h3 {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 5px;
  font-weight: 500;
}

.sidebar-trending-wrap .single-sidebar-trending .trending-info p {
  color: #E9EBF1;
  font-size: 14px;
}

.sidebar-trending-wrap .single-sidebar-trending .trending-info p i {
  margin-right: 10px;
}

.sidebar-trending-wrap .single-sidebar-trending:not(:last-child) {
  margin-bottom: 25px;
}

.sidebar-gallery li {
  margin: 0 10px 10px 0;
}

.share-wrap {
  border-bottom: 1px solid #2D3344;
  border-top: 1px solid #2D3344;
  padding: 25px 0;
  margin: 30px 0 60px;
}

.share-wrap .details-tag li {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.share-wrap .details-tag li:first-child {
  font-weight: 700;
  margin-right: 5px;
}

.share-wrap .details-tag li:not(:first-child):hover {
  color: #01F6FC;
}

.share-wrap .details-share li {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.share-wrap .details-share li i {
  margin-left: 5px;
  -webkit-transition: .3;
  transition: .3;
}

.share-wrap .details-share li:hover i {
  color: #01F6FC;
}

.comments-wrap .comment-box {
  padding: 20px 30px;
  background-color: #17191E;
}

.comments-wrap .comment-box:not(:last-child) {
  margin-bottom: 30px;
}

.comments-wrap .comment-box .comment-img {
  max-width: 100px;
  width: 100%;
}

.comments-wrap .comment-box .comment-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.comments-wrap .comment-box .comment-info {
  padding-left: 20px;
}

.comments-wrap .comment-box .comment-info h3 {
  font-size: 20px;
  font-weight: 400;
}

.comments-wrap .comment-box .comment-info h3 span {
  font-size: 16px;
}

.comments-wrap .comment-box .comment-info h3 a {
  float: right;
  -webkit-transition: .3s;
  transition: .3s;
}

.comments-wrap .comment-box .comment-info h3 i {
  font-size: 17px;
}

.comments-wrap .comment-box .comment-info p {
  margin: 5px 0 10px;
}

.comments-wrap .comment-box .replay-btn {
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
}

.comments-wrap .comment-box .replay-btn svg {
  margin-right: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.comments-wrap .comment-box:nth-child(even) {
  margin-left: 50px;
}

.comments-wrap .comment-box:hover .comment-info h3 a {
  color: #01F6FC;
}

.comments-wrap .comment-box:hover .replay-btn svg {
  color: #01F6FC;
}

/*================================================
15. Error CSS
=================================================*/
.error-wrap .error-info h1 {
  font-size: 36px;
  margin: 16px 0 15px;
}

.error-wrap .error-info .sidebar-search {
  margin: 35px 0 40px;
}

/*================================================
16. FAQ CSS
=================================================*/
.faq-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

.faq-wrap .accordion-button {
  background-color: #17191E;
  color: #fff;
  padding: 25px;
  font-weight: 400;
  font-size: 20px;
}

.faq-wrap .accordion-button:not(.collapsed) {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  color: #01F6FC;
}

.faq-wrap .accordion-button:not(.collapsed)::after {
  background-image: unset;
  font-family: bootstrap-icons !important;
  content: "\f2ea";
  -webkit-transform: unset;
          transform: unset;
}

.faq-wrap .accordion-button:focus {
  z-index: 3;
  border-color: #17191E;
  outline: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.faq-wrap .accordion-button::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 26px;
  margin-left: auto;
  content: "\f4fe";
  font-family: bootstrap-icons !important;
  background-image: unset;
  background-repeat: no-repeat;
  background-size: unset;
  font-size: 21px;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.faq-wrap .accordion-item {
  background-color: unset;
  border: unset;
}

.faq-wrap .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: unset;
  border-top-right-radius: unset;
}

.faq-wrap .accordion-item .accordion-body {
  padding: 0px 25px 25px;
  background-color: #17191E;
}

.faq-wrap .accordion-item:last-child .accordion-body {
  margin-bottom: 0px;
}

.faq-wrap.faq-wrap-project {
  display: unset;
  -ms-grid-columns: unset;
      grid-template-columns: unset;
  grid-gap: unset;
}

.faq-wrap.faq-wrap-project .accordion-item:not(:last-child) {
  margin-bottom: 24px;
}

/*================================================
17. Contact CSS
=================================================*/
.contact-address-wrap {
  height: 456px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10px;
}

.contact-address-wrap .contact-address-info {
  background: rgba(23, 25, 30, 0.9);
  padding: 30px;
  border: 1.5px solid #17191E;
  border-image-source: linear-gradient(135.92deg, rgba(1, 246, 252, 0.7) 0%, rgba(255, 255, 255, 0) 46.35%, rgba(1, 246, 252, 0.7) 100%);
  border-image-slice: 1;
  max-width: 370px;
}

.contact-address-wrap .contact-address-info .single-address-info {
  font-size: 18px;
}

.contact-address-wrap .contact-address-info .single-address-info:not(:last-child) {
  margin-bottom: 20px;
}

.contact-address-wrap .contact-address-info .single-address-info svg {
  color: #01F6FC;
  margin-right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*================================================
18. Project CSS
=================================================*/
.main-project-wrap {
  overflow-x: hidden;
  margin: 0;
}

.main-project-wrap .horizontal-project-sliders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: hidden;
}

.main-project-wrap .horizontal-project-sliders .project-slide {
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
}

.main-project-wrap .horizontal-project-sliders .project-slide .project-item {
  width: 38vw;
  position: relative;
  margin-left: 50px;
}

.main-project-wrap .horizontal-project-sliders .project-slide .project-item .project-img img {
  width: 100%;
}

.main-project-wrap .horizontal-project-sliders .project-slide .project-item.project-item-home-white .project-info span {
  color: #485272;
}

.main-project-wrap .horizontal-project-sliders .project-slide .project-item.project-item-home-white .project-info h3, .main-project-wrap .horizontal-project-sliders .project-slide .project-item.project-item-home-white .project-info h4 {
  color: #1B1F2B;
}

.project-item-two {
  margin-bottom: 30px;
  position: relative;
}

.project-item-two .project-img {
  overflow: hidden;
}

.project-item-two .project-img img {
  -webkit-transition: .4s;
  transition: .4s;
}

.project-item-two:hover .project-info .ml-auto h4 {
  color: #01F6FC;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.project-item-two:hover .project-img img {
  -webkit-transform: scale(1.05) translateX(-2%);
          transform: scale(1.05) translateX(-2%);
}

.portfolio-box {
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.portfolio-box::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #00000030;
  z-index: 0;
  content: "";
}

.portfolio-box img {
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-transform: scale(1) translateX(0px);
          transform: scale(1) translateX(0px);
  height: 100%;
}

.portfolio-box .portfolio-hover-info {
  padding: 15px;
  left: 30px;
  bottom: 30px;
  display: inline-block;
  background-color: rgba(0, 248, 252, 0.4);
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-transform: translateY(50px) scale(0.8);
          transform: translateY(50px) scale(0.8);
  opacity: 0;
}

.portfolio-box:hover img {
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-transform: scale(1.1) translateX(1%);
          transform: scale(1.1) translateX(1%);
}

.portfolio-box:hover .portfolio-hover-info {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}

/*================================================
19. Menu CSS
=================================================*/
/*================================================
20. Menu CSS
=================================================*/
/*================================================
21. Menu CSS
=================================================*/
/*# sourceMappingURL=style.css.map */