html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none !important;
}

p {
  margin-bottom: 0;
  font-weight: 300;
}
p.dark-p {
  color: #5f727f;
}
p.light-p {
  color: #b6c6c9;
}
p.small-p {
  font-size: 16px;
  line-height: 26px;
}
p.large-p {
  font-size: 20px;
  line-height: 33px;
}

i {
  display: flex;
}

@keyframes identifier {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.7);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes PreloaderSpin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.heading-section h2 {
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 2px;
  line-height: 60px;
  color: #393b5e;
}
.heading-section h2 span {
  font-weight: 700;
}

.btns-move {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btns-move a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #ba4f95;
  color: #ba4f95;
  background-color: transparent;
  min-width: 90px;
  padding: 0 5px;
  line-height: 30px;
  text-transform: uppercase;
  transition: all ease 0.3s;
  font-size: 17px;
  font-weight: 700;
}
.btns-move a i {
  display: flex;
}
.btns-move a:hover {
  background-color: #ba4f95;
  color: #fff;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: transparent;
}
header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
header .header-content .logo img {
  display: none;
}
header .header-content .logo img.light {
  display: block;
}
header .header-content .logo img.dark {
  display: none;
}
header .header-content .list-nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
header .header-content .list-nav-main .list-item-main {
  position: relative;
  padding: 30px 0;
}
header .header-content .list-nav-main .list-item-main .list-link-main {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  transition: all ease 0.3s;
  padding: 0 16px;
  display: block;
}
header .header-content .list-nav-main .list-item-main .list-link-main.list-link-bar {
  padding: 0;
  font-size: 20px;
}
header .header-content .list-nav-main .list-item-main .list-link-main.list-link-lang {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
header .header-content .list-nav-main .list-item-main .list-nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  border: 1px solid #dfe5e8;
  border-top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
  transform: translateY(20px);
  z-index: 9999;
}
header .header-content .list-nav-main .list-item-main .list-nav-submenu .list-item-submenu {
  border-top: 1px solid #dfe5e8;
}
header .header-content .list-nav-main .list-item-main .list-nav-submenu .list-item-submenu .list-link-submenu {
  padding: 15px 30px 15px 27px;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  border-left: 3px solid transparent;
  color: #5f727f;
  background-color: #f4f6f7;
  display: block;
}
header .header-content .list-nav-main .list-item-main .list-nav-submenu .list-item-submenu .list-link-submenu:hover {
  border-color: #ce93d8;
  background-color: #fff;
  color: #393b5e;
}
header .header-content .list-nav-main .list-item-main:hover .list-link-main {
  color: #ce93d8;
}
header .header-content .list-nav-main .list-item-main:hover .list-nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
header.active {
  background-color: #fff;
  position: sticky;
  z-index: 999;
  transition: all ease 0.3s;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.07);
}
header.active .header-content .logo img.light {
  display: none;
}
header.active .header-content .logo img.dark {
  display: block;
}
header.active .header-content .list-nav-main .list-item-main .list-link-main {
  color: #393b5e;
}
header.active .header-content .list-nav-main .list-item-main:hover .list-link-main {
  color: #ce93d8;
}

.header-mob {
  display: none;
  padding: 10px 0;
}
.header-mob .header-content {
  padding: 0;
}
.header-mob .header-content .list-nav-main .list-item-main {
  padding: 0;
}
.header-mob .header-content .list-nav-main .list-item-main .list-link-main {
  color: #393b5e;
}
.header-mob .header-fixed-links {
  position: fixed;
  top: -110%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212331;
  opacity: 0.96;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all ease;
  z-index: 999;
}
.header-mob .header-fixed-links .close-header-mob {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #fff;
  font-size: 25px;
}
.header-mob .header-fixed-links .header-fixed-content .list-header-mob .list-item-header-mob {
  transition: all ease 0.3s;
}
.header-mob .header-fixed-links .header-fixed-content .list-header-mob .list-item-header-mob.has-submenu .list-link-header-mob {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mob .header-fixed-links .header-fixed-content .list-header-mob .list-item-header-mob.has-submenu .list-link-header-mob::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  margin-left: 10px;
  font-size: 18px;
  transition: all ease 0.3s;
}
.header-mob .header-fixed-links .header-fixed-content .list-header-mob .list-item-header-mob.has-submenu .submenu {
  max-height: 0;
  height: auto;
  overflow: hidden;
  transition: all ease 0.3s;
}
.header-mob .header-fixed-links .header-fixed-content .list-header-mob .list-item-header-mob.has-submenu .submenu .submenu-item:first-child {
  margin-top: 20px;
}
.header-mob .header-fixed-links .header-fixed-content .list-header-mob .list-item-header-mob.has-submenu .submenu .submenu-item:last-child {
  margin-bottom: 20px;
}
.header-mob .header-fixed-links .header-fixed-content .list-header-mob .list-item-header-mob.has-submenu .submenu .submenu-item .submenu-link {
  text-align: center;
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 0;
  font-size: 24px;
}
.header-mob .header-fixed-links .header-fixed-content .list-header-mob .list-item-header-mob.has-submenu.active .list-link-header-mob::after {
  transform: rotate(180deg);
}
.header-mob .header-fixed-links .header-fixed-content .list-header-mob .list-item-header-mob.has-submenu.active .submenu {
  max-height: max-content;
}
.header-mob .header-fixed-links .header-fixed-content .list-header-mob .list-item-header-mob .list-link-header-mob {
  text-align: center;
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 0;
  font-size: 24px;
}
.header-mob .header-fixed-links.active {
  top: 0;
}

.slider {
  overflow: hidden;
  height: 100vh;
}
.slider .content-slider {
  height: 100%;
  width: 100%;
  background: url(../img/slider/slider01.jpg) no-repeat center fixed;
  background-size: cover;
  animation: identifier infinite 150s;
}

.services {
  padding: 48px 0 24px;
  background: url(../img/bg/services_bg.jpg) no-repeat center;
  background-size: cover;
}
.services .desc-services {
  margin-bottom: 36px;
}
.services .service {
  background-color: #f0f3f2;
  transition: all ease 0.3s;
  height: 100%;
}
.services .service a {
  padding: 24px;
  display: block;
}
.services .service .img-service {
  margin-bottom: 24px;
  color: #ce93d8;
  font-size: 48px;
}
.services .service .head-service {
  margin-bottom: 15px;
}
.services .service .head-service h3 {
  color: #393b5e;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 38px;
  text-transform: uppercase;
  transition: all ease 0.3s;
}
.services .service .body-service p {
  margin: 0;
  transition: all ease 0.3s;
}
.services .service:hover {
  background-color: #393b5e;
}
.services .service:hover .head-service h3 {
  color: #fff;
}
.services .service:hover .body-service p {
  color: #fff;
}

.works {
  padding: 48px 0 24px;
  background: url(../img/bg/works_bg.jpg) no-repeat center fixed;
  background-size: cover;
}
.works .heading-section {
  margin-bottom: 24px;
}
.works .heading-section h2 {
  color: #fff;
}
.works .work {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all ease 0.3s;
  transition-duration: 1s;
}
.works .work .link-work {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 9;
  display: block;
}
.works .work .link-work .title {
  position: absolute;
  z-index: 9;
  bottom: 0;
  padding: 25px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.works .work .link-work .title h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative;
  z-index: 9;
}
.works .work .link-work .title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 1;
  background: -moz-linear-gradient(top, rgba(30, 87, 153, 0) 50%, rgb(0, 0, 0) 100%) !important;
  background: -webkit-linear-gradient(top, rgba(30, 87, 153, 0) 50%, rgb(0, 0, 0) 100%) !important;
  background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 50%, rgb(0, 0, 0) 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001e5799",endColorstr="#80000000",GradientType=0) !important;
}
.works .work .link-work::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 25px;
  z-index: 9;
  opacity: 1;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all ease 0.3s;
  content: "+";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: auto;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
}
.works .work .content-plus .list-plus {
  margin: 0;
  padding: 0;
  transition: all ease 0.3s;
  margin-bottom: 12px;
  gap: 18px;
  opacity: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 35px;
  left: 25px;
  width: max-content;
  z-index: 9;
}
.works .work .content-plus .list-plus .list-plus-item {
  transform: translateY(70px);
  transition: all ease 0.3s;
  transition-delay: var(--delay);
  opacity: 0;
}
.works .work .content-plus .list-plus .list-plus-item .list-plus-link {
  font-size: 32px;
  transition: all ease 0.3s;
  color: #fff;
}
.works .work .content-plus .list-plus .list-plus-item .list-plus-link i {
  transition: all ease 0.3s;
  display: flex;
}
.works .work .content-plus .list-plus .list-plus-item .list-plus-link:hover i {
  transform: scale(1.2);
}
.works .work .content-plus .list-share {
  margin: 0;
  padding: 0;
  transition: all ease 0.3s;
  margin-bottom: 12px;
  gap: 18px;
  opacity: 0;
  padding: 15px 0;
  margin: 15px 0;
  position: absolute;
  top: 85px;
  left: 25px;
  width: max-content;
  z-index: 11;
}
.works .work .content-plus .list-share .list-plus-item {
  transform: translateY(70px);
  transition: all ease 0.3s;
  opacity: 0;
}
.works .work .content-plus .list-share .list-plus-item .socials-item {
  font-size: 18px;
  transition: all ease 0.3s;
  color: #fff;
}
.works .work .content-plus .list-share .list-plus-item .socials-item i {
  transition: all ease 0.3s;
}
.works .work .content-plus .list-share .list-plus-item .socials-item:hover i {
  transform: scale(1.2);
}
.works .work .content-plus .list-share.active {
  opacity: 1;
}
.works .work .content-plus .list-share.active .list-plus-item {
  transform: translateX(0);
  opacity: 1;
}
.works .work::before {
  content: "";
  position: absolute;
  z-index: 9;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.2s;
  transition: opacity 0.5s 0.2s;
  border-radius: 50%;
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
  box-sizing: content-box;
  background: linear-gradient(90deg, rgba(0, 188, 212, 0.75) 0%, rgba(53, 64, 147, 0.75) 100%) !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%) !important;
}
.works .work.image-videos-gallery .link-work::before {
  content: "\f04b";
}
.works .work:hover {
  background-position: center 100%;
}
.works .work:hover .link-work::before {
  opacity: 1;
  visibility: visible;
}
.works .work:hover .content-plus .list-plus {
  opacity: 1;
}
.works .work:hover .content-plus .list-plus .list-plus-item {
  transform: translateX(0);
  opacity: 1;
}
.works .work:hover .content-plus .list-share.active {
  opacity: 1;
}
.works .work:hover .content-plus .list-share.active .list-plus-item {
  opacity: 1;
}
.works .work:hover .content-plus .list-share {
  opacity: 0;
}
.works .work:hover .content-plus .list-share .list-plus-item {
  opacity: 0;
}
.works .work:hover::before {
  opacity: 1;
  width: 150%;
  height: 150%;
}
.works .section-more {
  margin-bottom: 24px;
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.works .section-more a {
  transition: all ease 0.3s;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  background-color: #ce93d8;
  font-size: 14px;
  text-transform: uppercase;
  max-width: max-content;
  font-weight: 700;
  border-radius: 3px;
  line-height: 14px;
}
.works .section-more a:hover {
  background-color: #6a5683;
}
.works.portfolio {
  background: #23254c;
}
.works.portfolio .heading-section {
  margin-bottom: 24px;
}
.works.portfolio .heading-section .nav-tabs {
  gap: 12px;
}
.works.portfolio .heading-section .btn {
  background-color: #543975;
  color: #fff;
  padding: 0 24px;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  height: 30px;
  letter-spacing: 0.7px;
  line-height: 30px;
  transition: all ease 0.3s;
  border-radius: 12px;
  margin: 0;
  text-transform: uppercase;
}
.works.portfolio .heading-section .btn:hover {
  background-color: #863b93;
}
.works.portfolio .heading-section .btn.active {
  background-color: #ce93d8;
}
.works.portfolio .content-works .work {
  margin-bottom: 24px;
}
.works.portfolio .content-works .work .link-work .title h4 {
  font-size: 20px;
}

.process {
  padding: 48px 0 24px;
  background: url(../img/bg/process_bg.jpg) no-repeat center;
  background-size: cover;
}
.process .desc-process {
  margin-bottom: 36px;
}
.process .process-item {
  margin-bottom: 24px;
  overflow: hidden;
  height: 100%;
  display: grid;
}
.process .process-item .head-item {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 24px;
}
.process .process-item .head-item h4 {
  color: #99a9b5;
  line-height: 38px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-align: center;
}
.process .process-item .body-item p {
  margin-bottom: 0;
  text-align: center;
}

.whyus {
  padding: 48px 0 24px;
  position: relative;
}
.whyus .heading-section {
  margin-bottom: 24px;
}
.whyus .heading-section h2 {
  color: #fff;
}
.whyus .content-whyus-left {
  margin-bottom: 24px;
}
.whyus .content-whyus-left h3 {
  color: #fff;
  margin-bottom: 12px;
  line-height: 42px;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.whyus .content-whyus-left p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.whyus .item-whyus {
  background-color: rgba(77, 98, 117, 0.4);
  border: 1px solid #b6c6c9;
  padding: 24px;
}
.whyus .item-whyus .icon-item {
  margin-bottom: 12px;
  font-size: 48px;
  color: #b6c6c9;
  text-align: center;
}
.whyus .item-whyus .body-item h4 {
  color: #b6c6c9;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 38px;
  text-align: center;
}
.whyus .item-whyus .body-item h4 span {
  font-weight: 700;
}
.whyus video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.clients {
  background-color: #23254c;
  padding: 48px 0 24px;
}
.clients .heading-section {
  margin-bottom: 24px;
}
.clients .heading-section h2 {
  color: #fff;
}
.clients .clients-content {
  margin-bottom: 24px;
}
.clients .clients-content .owl-dots {
  margin-top: 24px;
  text-align: center;
}
.clients .clients-content .owl-dots .owl-dot {
  width: 17px;
  height: 17px;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #fff;
  border-radius: 17px;
  -moz-border-radius: 17px;
  -webkit-border-radius: 17px;
  box-shadow: none;
  outline: none;
}
.clients .clients-content .owl-dots .owl-dot.active {
  background-color: #ce93d8;
}

.location {
  padding: 48px 0 24px;
}
.location .media-location {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.location .media-location .icon-location {
  margin-right: 12px;
}
.location .media-location .icon-location i {
  color: #ce93d8;
  font-size: 96px;
}
.location .media-location .body-location h3 {
  color: #393b5e;
  margin-bottom: 24px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 38px;
}
.location .media-location .body-location p {
  margin-bottom: 24px;
}
.location .media-location .body-location p:last-child {
  margin-bottom: 0;
}

.footer .footer-top {
  padding: 48px 0 24px;
  background: url(../img/bg/footer-top_bg.jpg) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
.footer .footer-top .footer-top-left {
  margin-bottom: 24px;
}
.footer .footer-top .footer-top-left .logo {
  margin-bottom: 24px;
}
.footer .footer-top .footer-top-left .desc-footer {
  margin: 0;
}
.footer .footer-top .footer-top-right {
  margin-bottom: 24px;
}
.footer .footer-top .footer-top-right .head-footer-top-right h4 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.95px;
  line-height: 30px;
  margin-bottom: 24px;
}
.footer .footer-top .footer-top-right .head-footer-top-right h4::after {
  content: "";
  border: 4px solid transparent;
  border-bottom-color: #f44336;
  border-left-color: #f44336;
  height: auto;
  width: auto;
  display: inline-block;
  margin-left: 12px;
}
.footer .footer-top .footer-top-right form .form-group {
  margin-bottom: 12px;
}
.footer .footer-top .footer-top-right form .form-group:last-child {
  margin-bottom: 0;
}
.footer .footer-top .footer-top-right form .form-group .form-control {
  background-color: #181828;
  border: 1px solid #394050;
  padding: 6px;
  border-radius: 3px;
  outline: 0;
  box-shadow: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.footer .footer-top .footer-top-right form .form-group .form-controltextarea {
  height: auto;
}
.footer .footer-top .footer-top-right form .form-group .form-control[type=submit] {
  background-color: #394050;
  color: #fff;
  transition: all ease 0.3s;
  height: 40px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}
.footer .footer-top .footer-top-right form .form-group .form-control[type=submit]:hover {
  color: #ba4f95;
  background-color: #ce93d8;
}
.footer .footer-bottom {
  background-color: #181828;
  padding: 12px 0 0;
  border-top: 1px solid #313646;
}
.footer .footer-bottom .footer-bottom-copyrights {
  margin-bottom: 12px;
}
.footer .footer-bottom .footer-bottom-copyrights p {
  margin: 0;
}
.footer .footer-bottom .footer-bottom-copyrights p a {
  color: #ce93d8;
  font-weight: 700;
  transition: all ease 0.3s;
}
.footer .footer-bottom .footer-bottom-copyrights p a:hover {
  text-decoration: underline !important;
}
.footer .footer-bottom .footer-bottom-listlinks {
  margin-bottom: 12px;
}
.footer .footer-bottom .footer-bottom-listlinks .listlinks {
  flex-wrap: wrap;
  margin: 0;
}
.footer .footer-bottom .footer-bottom-listlinks .listlinks .list-item {
  padding: 0 18px;
  position: relative;
}
.footer .footer-bottom .footer-bottom-listlinks .listlinks .list-item .list-link {
  color: #99a9b5;
  font-size: 14px;
  text-transform: capitalize;
  transition: all ease 0.3s;
  font-family: "Source Sans 3", sans-serif;
}
.footer .footer-bottom .footer-bottom-listlinks .listlinks .list-item .list-link:hover {
  color: #ce93d8;
}
.footer .footer-bottom .footer-bottom-listlinks .listlinks .list-item::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: -1px;
  top: 0;
  font-size: 0;
  border-right: 1px solid #333146;
}
.footer .footer-bottom .footer-bottom-listlinks .listlinks .list-item:first-child::before {
  display: none;
}
.footer .footer-bottom .footer-bottom-listsocail {
  margin-bottom: 12px;
}
.footer .footer-bottom .footer-bottom-listsocail .listsocail {
  flex-wrap: wrap;
  margin: 0;
}
.footer .footer-bottom .footer-bottom-listsocail .listsocail .list-item .list-link {
  margin: 0 6px;
  display: inline-block;
  transition: all ease 0.3s;
  color: var(--color);
}
.footer .footer-bottom .footer-bottom-listsocail .listsocail .list-item .list-link:hover {
  color: #fff;
}

.scrollTop {
  position: fixed;
  right: -200px;
  bottom: 48px;
  height: 48px;
  width: 48px;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  font-size: 18px;
  line-height: 48px;
  text-align: center;
  transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  background-color: #06060f;
  color: #99a9b5;
}
.scrollTop:hover {
  color: #ce93d8;
}
.scrollTop.active {
  right: 48px;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2c2e3d;
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader .loader-content {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #d893a3;
  position: relative;
  -webkit-animation: PreloaderSpin 2s linear infinite;
  animation: PreloaderSpin 2s linear infinite;
}
.loader .loader-content::before {
  content: "";
  height: 68px;
  width: 68px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #ce93d8;
  position: absolute;
  top: 4px;
  left: 4px;
  -webkit-animation: PreloaderSpin 3s linear infinite;
  animation: PreloaderSpin 3s linear infinite;
}
.loader .loader-content::after {
  content: "";
  height: 56px;
  width: 56px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #5379e3;
  position: absolute;
  top: 10px;
  left: 10px;
  -webkit-animation: PreloaderSpin 1.5s linear infinite;
  animation: PreloaderSpin 1.5s linear infinite;
}

/* =========== About Page =========== */
.main-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.main-section .main-section-img {
  position: relative;
}
.main-section .main-section-img img {
  max-height: 100vh;
  width: 100%;
}
.main-section .main-section-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.main-section .overlay-main-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 9;
}
.main-section .title-main-section h1 {
  font-size: 80px;
  line-height: 120px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}
.main-section .title-main-section h1 span {
  font-style: normal;
  font-weight: 400;
}

.about {
  background-image: url(../img/bg/about-section_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 48px 0 24px;
}
.about .overlay-about .about-description .head-desc {
  margin-bottom: 24px;
}
.about .overlay-about .about-description .head-desc p {
  color: #fff;
  margin: 0;
}
.about .overlay-about .about-description .body-desc ul li {
  color: #fff;
  font-size: 20px;
  line-height: 37px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  padding-left: 24px;
  position: relative;
}
.about .overlay-about .about-description .body-desc ul li:last-child {
  margin: 0;
}
.about .overlay-about .about-description .body-desc ul li::before {
  content: "";
  position: absolute;
  top: 18px;
  transform: translateY(-50%);
  left: 0;
  height: 6px;
  width: 6px;
  background-color: #ba4f95;
  border-radius: 50%;
}
.about .overlay-about .about-img {
  margin-bottom: 24px;
}
.about .overlay-about .about-img img {
  width: 100%;
}
.about .overlay-about .about-title {
  margin-bottom: 24px;
}
.about .overlay-about .about-title p {
  color: #fff;
  margin: 0;
  font-size: 28px;
  line-height: 36px;
}
.about .overlay-about .about-title p span {
  font-weight: 700;
}
.about.about-home {
  background: none;
}
.about.about-home .overlay-about .about-title h2 {
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: normal;
  line-height: 60px;
  color: #393b5e;
}
.about.about-home .overlay-about .about-title h2 span {
  font-weight: 700;
}
.about.about-home .overlay-about .about-description .head-desc p {
  color: #000;
  font-size: 20px;
  line-height: 37px;
  font-weight: 400;
}
.about.about-home .overlay-about .about-description .body-desc ul li {
  color: #000;
  font-weight: 300;
}

.about-process {
  padding: 48px 0 24px;
  background-image: url(../img/bg/about-process_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-process .process-item {
  margin-bottom: 24px;
  overflow: hidden;
}
.about-process .process-item .img-item {
  margin-bottom: 24px;
  text-align: center;
}
.about-process .process-item .img-item img {
  width: 100%;
  max-width: 260px;
}
.about-process .process-item .head-item {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 24px;
}
.about-process .process-item .head-item h4 {
  color: #99a9b5;
  line-height: 38px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-align: center;
}
.about-process .process-item .body-item h5 {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 37px;
  color: #5f727f;
}
.about-process .process-item .body-item p {
  margin-bottom: 0;
}

.about-exeri {
  padding: 48px 0 24px;
  position: relative;
}
.about-exeri .heading-section {
  margin-bottom: 0px;
}
.about-exeri .heading-section h2 {
  color: #fff;
}
.about-exeri .desc-about-exeri {
  margin-bottom: 24px;
}
.about-exeri .desc-about-exeri p {
  color: #99a9b5;
  margin-bottom: 0;
}
.about-exeri .item-about-exeri {
  background-color: rgba(77, 98, 117, 0.4);
  border: 1px solid #7e8f9a;
  padding: 40px;
  transition: all ease 0.3s;
  height: 100%;
}
.about-exeri .item-about-exeri .icon-item {
  margin-bottom: 24px;
  font-size: 40px;
  color: var(--color);
  text-align: center;
}
.about-exeri .item-about-exeri .body-item h4 {
  color: #b6c6c9;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 38px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: all ease 0.3s;
}
.about-exeri .item-about-exeri .body-item p {
  padding-bottom: 24px;
  color: #99a9b5;
  font-size: 16px;
  font-weight: 300;
  transition: all ease 0.3s;
}
.about-exeri .item-about-exeri:hover {
  background-color: #7d8b95;
}
.about-exeri .item-about-exeri:hover .body-item h4, .about-exeri .item-about-exeri:hover .body-item p {
  color: #fff;
}
.about-exeri video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.main-clients {
  padding: 48px 0 24px;
  background-color: #f5f5f5;
}
.main-clients .overlay-main-clients .heading-section {
  margin-bottom: 24px;
}
.main-clients .overlay-main-clients .clients-img {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.main-clients .overlay-main-clients .clients-img .client img {
  background-color: #fff;
  width: 245px;
}

.mfp-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: end;
  background-color: #ccc;
  padding: 6px 12px;
  font-size: 14px;
  color: #000;
}
.mfp-bottom-bar .mfp-counter, .mfp-bottom-bar .mfp-title {
  padding: 0;
  font-size: 14px;
  color: #000;
  position: initial;
  direction: ltr;
  text-align: right;
}

.get-touch {
  padding: 48px 0 650px;
  background-image: url(../img/bg/rocket_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.get-touch .overlay-get-touch .heading-section {
  margin-bottom: 24px;
}
.get-touch .overlay-get-touch .heading-section h2 {
  color: #fff;
}
.get-touch .overlay-get-touch .heading-section p {
  color: #fff;
  margin: 0 auto;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  max-width: 570px;
}
.get-touch .overlay-get-touch form .form-group {
  margin-bottom: 24px;
  position: relative;
}
.get-touch .overlay-get-touch form .form-group label {
  position: absolute;
  top: 24px;
  transform: translateY(-50%);
  right: 12px;
  z-index: 99;
  color: #ba4f95;
  font-size: 18px;
}
.get-touch .overlay-get-touch form .form-group .form-control {
  padding: 12px 48px 12px 24px;
  height: 48px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  box-shadow: none;
  color: #ba4f95;
  font-size: 16px;
}
.get-touch .overlay-get-touch form .form-group .form-control:valid, .get-touch .overlay-get-touch form .form-group .form-control:invalid {
  background-image: none;
}
.get-touch .overlay-get-touch form .form-group textarea.form-control {
  height: auto;
}
.get-touch .overlay-get-touch form .form-group .invalid-feedback {
  color: #fff;
}
.get-touch .overlay-get-touch form .form-group .btn-submit {
  background-color: #ce93d8;
  color: #fff;
  line-height: 48px;
  padding: 0 24px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 0;
  box-shadow: none;
  outline: 0;
  margin: 0 auto;
  border: 0;
  transition: all ease 0.3s;
}
.get-touch .overlay-get-touch form .form-group .btn-submit:hover {
  background-color: #fff;
  color: #ce93d8;
}
.get-touch .overlay-get-touch .social-network .head-social {
  margin: 600px 0 12px;
  font-size: 24px;
  line-height: 37px;
  color: #fff;
}
.get-touch .overlay-get-touch .social-network .social-list {
  gap: 15px;
  flex-wrap: wrap;
}
.get-touch .overlay-get-touch .social-network .social-list li a {
  display: block;
  height: 48px;
  width: 48px;
  background-color: #ce93d8;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  color: #18314a;
  font-size: 25px;
  transition: all ease 0.3s;
}
.get-touch .overlay-get-touch .social-network .social-list li a:hover {
  background-color: #e3b8ea;
}
.get-touch.social-touch {
  padding: 48px 0 24px;
  background-image: url(../img/bg/social-touch_bg.jpg);
}

.web {
  padding: 48px 0 24px;
  position: relative;
}
.web .heading-section {
  margin-bottom: 24px;
}
.web .heading-section h2 {
  color: #fff;
}
.web .item-web {
  background-color: rgba(77, 98, 117, 0.4);
  border: 1px solid #b6c6c9;
  padding: 24px;
  height: 100%;
}
.web .item-web .icon-item {
  margin-bottom: 15px;
  font-size: 48px;
  color: #b6c6c9;
  text-align: center;
}
.web .item-web .body-item h4 {
  color: #b6c6c9;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 28px;
  text-align: center;
}
.web .item-pricing {
  background-color: #fff;
  margin-bottom: 24px;
}
.web .item-pricing .head-item {
  text-align: center;
  background-color: #393d50;
  padding: 24px 0;
}
.web .item-pricing .head-item .title-item h4 {
  color: #ce93d8;
  font-weight: 400;
  margin: 0;
  margin-bottom: 12px;
  line-height: 38px;
  font-size: 36px;
  text-transform: uppercase;
}
.web .item-pricing .head-item .price-item h5 {
  font-weight: 400;
  line-height: 38px;
  font-size: 24px;
  color: #99a9b5;
  margin-bottom: 0;
}
.web .item-pricing .head-item .price-item h5 span {
  color: #fff;
}
.web .item-pricing .body-item .content-body .list-item {
  text-align: center;
  color: #99a9b5;
  padding: 16px 10px;
  border-left: 2px solid;
  border-right: 2px solid;
  border-color: #dfe5e8;
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
}
.web .item-pricing .body-item .content-body .list-item.dark-item {
  background-color: #f4f6f7;
}
.web .item-pricing .foot-item {
  text-align: center;
  padding: 25px 0;
}
.web .item-pricing .foot-item .btn {
  text-align: center;
  border: 2px solid #ce93d8;
  padding: 0 17px;
  color: #ce93d8;
  line-height: 36px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease 0.3s;
}
.web .item-pricing .foot-item .btn:hover {
  background-color: #ce93d8;
  color: #fff;
}
.web video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.seo {
  padding: 48px 0 24px;
  background-image: url(../img/bg/seo_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.seo .overlay-seo .heading-section {
  margin-bottom: 48px;
}
.seo .overlay-seo .heading-section h2 {
  color: #fff;
}
.seo .overlay-seo .heading-section p {
  color: #fff;
  margin: 0 auto;
  margin-bottom: 0;
  width: 100%;
  max-width: 750px;
}
.seo .overlay-seo .col-lg-4.col-md-6.col-sm-12 {
  margin-bottom: 24px;
}
.seo .overlay-seo .item-pricing {
  background-color: #fff;
  height: 100%;
}
.seo .overlay-seo .item-pricing .head-item {
  text-align: center;
  background-color: #393d50;
  padding: 24px 0;
}
.seo .overlay-seo .item-pricing .head-item .title-item h4 {
  color: #ce93d8;
  font-weight: 400;
  margin: 0;
  padding: 10px 0 20px;
  line-height: 38px;
  font-size: 36px;
  text-transform: uppercase;
}
.seo .overlay-seo .item-pricing .head-item .price-item h5 {
  font-weight: 400;
  line-height: 38px;
  font-size: 24px;
  color: #99a9b5;
}
.seo .overlay-seo .item-pricing .head-item .price-item h5 span {
  padding-right: 10px;
  color: #fff;
}
.seo .overlay-seo .item-pricing .body-item .content-body .list-item {
  text-align: start;
  color: #99a9b5;
  padding: 16px 10px;
  border-color: #dfe5e8;
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.seo .overlay-seo .item-pricing .body-item .content-body .list-item .mark-right i {
  color: green;
}
.seo .overlay-seo .item-pricing .body-item .content-body .list-item .mark-wrong i {
  color: red;
}
.seo .overlay-seo .item-pricing .body-item .content-body .list-item.dark-item {
  background-color: #f4f6f7;
}
.seo .overlay-seo .item-pricing .foot-item {
  text-align: center;
  padding: 25px 0;
}
.seo .overlay-seo .item-pricing .foot-item .btn {
  text-align: center;
  border: 2px solid #ce93d8;
  padding: 0 17px;
  color: #ce93d8;
  line-height: 36px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease 0.3s;
}
.seo .overlay-seo .item-pricing .foot-item .btn:hover {
  background-color: #ce93d8;
  color: #fff;
}
.seo .overlay-strategy {
  padding-top: 200px;
}
.seo .overlay-strategy .progress-strategy {
  margin-bottom: 24px;
}
.seo .overlay-strategy .progress-strategy .title-strategy {
  margin-bottom: 12px;
}
.seo .overlay-strategy .progress-strategy .title-strategy h3 {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  letter-spacing: 2.5px;
  line-height: 70px;
  color: #fff;
}
.seo .overlay-strategy .progress-strategy .title-strategy h3 span {
  font-weight: 400;
}
.seo .overlay-strategy .progress-strategy .content-progress .item-progress {
  margin-bottom: 24px;
}
.seo .overlay-strategy .progress-strategy .content-progress .item-progress:last-child {
  margin-bottom: 0;
}
.seo .overlay-strategy .progress-strategy .content-progress .item-progress .progress-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.seo .overlay-strategy .progress-strategy .content-progress .item-progress .progress-title p {
  margin-bottom: 0;
  color: #99a9b5;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-transform: capitalize;
}
.seo .overlay-strategy .progress-strategy .content-progress .item-progress .progress-title span {
  color: var(--color);
  font-weight: 700;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.seo .overlay-strategy .progress-strategy .content-progress .item-progress .progress {
  background-color: #3a3b5f;
  border-radius: 0;
  height: 12px;
}
.seo .overlay-strategy .progress-strategy .content-progress .item-progress .progress .progress-bar {
  width: var(--width);
  background-color: var(--backgroundColor);
}
.seo .overlay-strategy .content-right {
  margin-bottom: 24px;
}
.seo .overlay-strategy .content-right .desc-right {
  margin-bottom: 24px;
  color: #fff;
}
.seo .overlay-strategy .content-right .list-content-right .list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  color: #99a9b5;
  font-weight: 300;
  line-height: 25px;
  font-size: 16px;
  margin-bottom: 12px;
}
.seo .overlay-strategy .content-right .list-content-right .list-item i {
  color: #ba4f95;
  font-size: 12px;
}
.seo .overlay-touch .heading-section {
  margin-bottom: 24px;
}
.seo .overlay-touch .heading-section h2 {
  color: #fff;
}
.seo .overlay-touch .heading-section p {
  color: #fff;
  margin: 0 auto;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 200;
  line-height: 37px;
  text-align: center;
  width: 100%;
  max-width: 570px;
}
.seo .overlay-touch form .form-group {
  margin-bottom: 24px;
  position: relative;
}
.seo .overlay-touch form .form-group label {
  position: absolute;
  top: 24px;
  transform: translateY(-50%);
  right: 12px;
  z-index: 99;
  color: #ba4f95;
  font-size: 18px;
}
.seo .overlay-touch form .form-group .form-control {
  padding: 12px 48px 12px 24px;
  height: 48px;
  background-color: #23254c;
  border: 1px solid #fff;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  font-size: 16px;
}
.seo .overlay-touch form .form-group .form-control::placeholder {
  color: #fff;
}
.seo .overlay-touch form .form-group .form-control:valid, .seo .overlay-touch form .form-group .form-control:invalid {
  background-image: none;
}
.seo .overlay-touch form .form-group textarea.form-control {
  height: auto;
}
.seo .overlay-touch form .form-group .invalid-feedback {
  color: #fff;
}
.seo .overlay-touch form .form-group .btn-submit {
  background-color: #ce93d8;
  color: #fff;
  line-height: 48px;
  padding: 0 24px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 0;
  box-shadow: none;
  outline: 0;
  margin: 0 auto;
  border: 0;
  transition: all ease 0.3s;
}
.seo .overlay-touch form .form-group .btn-submit:hover {
  background-color: #fff;
  color: #ce93d8;
}
.seo.offers {
  background-image: url(../img/bg/service_bg.jpg);
  background-image: url(../img/bg/rocket_bg.jpg);
}

.graphic {
  padding: 48px 0 24px;
  background-image: url(../img/bg/about-section_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.graphic .overlay-graphic .content-left .title-content-left {
  margin-bottom: 0px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  letter-spacing: 2.5px;
  line-height: 60px;
  color: #fff;
}
.graphic .overlay-graphic .content-left .desc-left {
  margin-bottom: 24px;
  color: #fff;
}
.graphic .overlay-graphic .content-left .list-content-left {
  margin-bottom: 24px;
}
.graphic .overlay-graphic .content-left .list-content-left .list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: #fff;
  font-weight: 200;
  line-height: 37px;
  font-size: 24px;
  margin-bottom: 12px;
}
.graphic .overlay-graphic .content-left .list-content-left .list-item i {
  color: #ba4f95;
  font-size: 16px;
}
.graphic .overlay-graphic .content-left .desc-last-left {
  margin-bottom: 24px;
}
.graphic .overlay-graphic .content-right .shape {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  height: 500px;
  width: 500px;
  margin-bottom: 24px;
}
.graphic .overlay-graphic .content-right .shape .shape-small {
  position: absolute;
  border: 15px solid;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
  z-index: 0;
}
.graphic .overlay-graphic .content-right .shape .shape-small::after {
  width: 150px;
  height: 50px;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #23254C;
  z-index: 999;
}
.graphic .overlay-graphic .content-right .shape .shape-small .content {
  width: 200px;
  height: 200px;
  color: #99a9b5;
  font-weight: 700;
  padding: 30px 15px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all ease 0.3s;
  background-color: #23254C;
  border-radius: 50%;
  opacity: 0;
}
.graphic .overlay-graphic .content-right .shape .shape-small .content .content-overlay {
  display: grid;
  gap: 12px;
}
.graphic .overlay-graphic .content-right .shape .shape-small .content h3 {
  font-size: 20px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.graphic .overlay-graphic .content-right .shape .shape-small .content span {
  font-weight: 700;
  font-size: 36px;
  color: var(--backgroundColor);
}
.graphic .overlay-graphic .content-right .shape .shape-1 {
  width: 100%;
  height: 100%;
  border-color: var(--backgroundColor);
  border-right-color: #fff;
  z-index: 1;
}
.graphic .overlay-graphic .content-right .shape .shape-1::after {
  width: 105px;
  height: 105px;
}
.graphic .overlay-graphic .content-right .shape .shape-1:hover {
  border-width: 20px;
}
.graphic .overlay-graphic .content-right .shape .shape-1:hover .content {
  opacity: 1;
}
.graphic .overlay-graphic .content-right .shape .shape-2 {
  width: 88%;
  height: 88%;
  border-color: var(--backgroundColor);
  border-top-color: #fff;
  z-index: 2;
}
.graphic .overlay-graphic .content-right .shape .shape-2::after {
  width: 93px;
  height: 93px;
}
.graphic .overlay-graphic .content-right .shape .shape-2:hover {
  border-width: 20px;
}
.graphic .overlay-graphic .content-right .shape .shape-2:hover .content {
  opacity: 1;
}
.graphic .overlay-graphic .content-right .shape .shape-3 {
  width: 76%;
  height: 76%;
  border-color: var(--backgroundColor);
  border-left-color: #fff;
  z-index: 3;
}
.graphic .overlay-graphic .content-right .shape .shape-3::after {
  width: 81px;
  height: 81px;
}
.graphic .overlay-graphic .content-right .shape .shape-3:hover {
  border-width: 20px;
}
.graphic .overlay-graphic .content-right .shape .shape-3:hover .content {
  opacity: 1;
}
.graphic .overlay-graphic .content-right .shape .shape-4 {
  width: 64%;
  height: 64%;
  border-color: var(--backgroundColor);
  border-bottom-color: #fff;
  border-right-color: #fff;
  z-index: 4;
}
.graphic .overlay-graphic .content-right .shape .shape-4::after {
  width: 69px;
  height: 69px;
}
.graphic .overlay-graphic .content-right .shape .shape-4:hover {
  border-width: 20px;
}
.graphic .overlay-graphic .content-right .shape .shape-4:hover .content {
  opacity: 1;
}
.graphic .overlay-graphic .content-right .shape .shape-5 {
  width: 52%;
  height: 52%;
  border-color: var(--backgroundColor);
  border-top-color: #fff;
  border-left-color: #fff;
  z-index: 4;
}
.graphic .overlay-graphic .content-right .shape .shape-5::after {
  width: 57px;
  height: 57px;
}
.graphic .overlay-graphic .content-right .shape .shape-5:hover {
  border-width: 20px;
}
.graphic .overlay-graphic .content-right .shape .shape-5:hover .content {
  opacity: 1;
}
.graphic .overlay-graphic .content-right .shape .shape-main {
  border-color: transparent;
  z-index: 0;
  width: 200px;
  height: 200px;
}
.graphic .overlay-graphic .content-right .shape .shape-main::after {
  display: none;
}
.graphic .overlay-graphic .content-right .shape .shape-main .content {
  opacity: 1;
}
.graphic .overlay-graphic .content-right .shape .shape-main .content h3 {
  font-weight: 200;
}
.graphic .overlay-graphic .content-right .shape .shape-main:hover .content {
  opacity: 1;
}
.graphic .overlay-graphic .content-right .list-content-right {
  margin-bottom: 24px;
}
.graphic .overlay-graphic .content-right .list-content-right .list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  color: #99a9b5;
  font-weight: 200;
  line-height: 37px;
  font-size: 24px;
  margin: 0 auto;
  max-width: 50%;
  margin-bottom: 12px;
}
.graphic .overlay-graphic .content-right .list-content-right .list-item:last-child {
  margin-bottom: 0;
}
.graphic .overlay-graphic .content-right .list-content-right .list-item span {
  height: 16px;
  width: 16px;
  display: inline-block;
  background-color: var(--backgroundColor);
}

.contactInfo {
  padding: 48px 0 24px;
  background-image: url(../img/bg/about-process_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contactInfo .overlay-contactInfo .heading-section {
  margin-bottom: 24px;
}
.contactInfo .overlay-contactInfo .heading-section p {
  margin: 0 auto;
  margin-bottom: 0;
  width: 100%;
  max-width: 970px;
}
.contactInfo .overlay-contactInfo .line-img {
  margin-bottom: 24px;
}
.contactInfo .overlay-contactInfo .contactInfo-item {
  margin-bottom: 24px;
}
.contactInfo .overlay-contactInfo .contactInfo-item .head-item {
  margin-bottom: 24px;
  text-align: center;
}
.contactInfo .overlay-contactInfo .contactInfo-item .body-item h4 {
  color: #393b5e;
  line-height: 38px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 12px;
}
.contactInfo .overlay-contactInfo .contactInfo-item .body-item p {
  margin-bottom: 0;
}
.contactInfo .overlay-contactInfo .contactInfo-item .body-item p span {
  margin-right: 25px;
}

.project {
  background-color: #23254c;
  padding: 48px 0 24px;
}
.project .overlay-project .head-project {
  margin-bottom: 24px;
}
.project .overlay-project .head-project .list-head ul {
  gap: 12px;
  color: #fff;
  margin: 0;
}
.project .overlay-project .head-project .list-head ul li {
  color: #ce93d8;
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
}
.project .overlay-project .head-project .arrows-head ul {
  gap: 12px;
  margin: 0;
}
.project .overlay-project .head-project .arrows-head ul li a {
  color: #b6c6c9;
  font-size: 16px;
  line-height: 25px;
}
.project .overlay-project .imgs-project .img-project {
  margin-bottom: 24px;
}
.project .overlay-project .imgs-project .desc-project h3 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.2px;
  line-height: 38px;
  margin-bottom: 12px;
}
.project .overlay-project .imgs-project .desc-project .title-desc-project {
  margin-bottom: 24px;
}
.project .overlay-project .imgs-project .desc-project .title-desc-project p {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 300;
  color: #99a9b5;
  line-height: 25px;
}
.project .overlay-project .imgs-project .desc-project .diagram-project .content-progress .item-progress {
  margin-bottom: 24px;
}
.project .overlay-project .imgs-project .desc-project .diagram-project .content-progress .item-progress .progress-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.project .overlay-project .imgs-project .desc-project .diagram-project .content-progress .item-progress .progress-title p {
  margin-bottom: 0;
  text-transform: capitalize;
}
.project .overlay-project .imgs-project .desc-project .diagram-project .content-progress .item-progress .progress-title span {
  color: var(--color);
  font-weight: 700;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.project .overlay-project .imgs-project .desc-project .diagram-project .content-progress .item-progress .progress {
  background-color: #3a3b5f;
  border-radius: 0;
  height: 10px;
}
.project .overlay-project .imgs-project .desc-project .diagram-project .content-progress .item-progress .progress .progress-bar {
  width: var(--width);
  background-color: var(--backgroundColor);
}
.project .overlay-project .social-network {
  padding-bottom: 24px;
  border-bottom: 1px solid #4a4d6d;
  margin-bottom: 24px;
}
.project .overlay-project .social-network .social-list {
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.project .overlay-project .social-network .social-list li a {
  display: block;
  height: 24px;
  width: 24px;
  background-color: #fff;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  color: #23254c;
  font-size: 14px;
  transition: all ease 0.3s;
}
.project .overlay-project .social-network .social-list li a:hover {
  background-color: var(--backgroundColor);
}

.blogs {
  background-color: #23254c;
  padding: 48px 0 24px;
}
.blogs .overlay-blogs .blog .img-blog {
  margin-bottom: 24px;
}
.blogs .overlay-blogs .blog .img-blog .img-content {
  position: relative;
  overflow: hidden;
}
.blogs .overlay-blogs .blog .img-blog .img-content .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.blogs .overlay-blogs .blog .img-blog .img-content .layer .icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.07);
  color: #000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transform: translateY(500px);
  transition: transform 0.25s ease-in-out;
}
.blogs .overlay-blogs .blog .img-blog .img-content:hover .layer {
  opacity: 1;
  visibility: visible;
}
.blogs .overlay-blogs .blog .img-blog .img-content:hover .layer .icon {
  transform: translateY(0px);
  transition: transform 0s;
}
.blogs .overlay-blogs .blog .head-blog {
  margin-bottom: 24px;
}
.blogs .overlay-blogs .blog .head-blog .list-head ul {
  gap: 12px;
  color: #fff;
  margin: 0;
}
.blogs .overlay-blogs .blog .head-blog .list-head ul li {
  color: #ce93d8;
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  text-transform: capitalize;
}
.blogs .overlay-blogs .blog .head-blog .list-head ul li a {
  color: #ce93d8;
  font-weight: 300;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 25px;
}
.blogs .overlay-blogs .blog .content-blog {
  border-bottom: 1px solid #ce93d8;
  padding-bottom: 24px;
  margin-bottom: 48px;
}
.blogs .overlay-blogs .blog .content-blog .title h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.blogs .overlay-blogs .blog .content-blog .title h2 span {
  font-weight: 700;
}
.blogs .overlay-blogs .blog .content-blog .desc p {
  color: #99a9b5;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  margin-bottom: 24px;
}
.blogs .overlay-blogs .blog .content-blog .read-share ul {
  gap: 12px;
  margin: 0;
}
.blogs .overlay-blogs .blog .content-blog .read-share ul li {
  position: relative;
}
.blogs .overlay-blogs .blog .content-blog .read-share ul li.icon-share a {
  background-color: #ce93d8;
  color: #fff;
  padding: 6px;
  border-radius: 3px;
  display: inline-block;
  font-size: 18px;
  transition: all ease 0.3s;
}
.blogs .overlay-blogs .blog .content-blog .read-share ul li.icon-share a:hover {
  background-color: #6a5683;
}
.blogs .overlay-blogs .blog .content-blog .read-share ul li.icon-share .social-network {
  width: max-content;
  position: absolute;
  left: -20px;
  bottom: 60px;
  z-index: 999;
  transition: all ease 0.3s;
  display: none;
}
.blogs .overlay-blogs .blog .content-blog .read-share ul li.icon-share .social-network .social-list {
  gap: 15px;
  flex-wrap: wrap;
  padding: 10px 30px;
  background-color: #ce93d8;
  max-width: max-content;
  border-radius: 25px;
  position: relative;
}
.blogs .overlay-blogs .blog .content-blog .read-share ul li.icon-share .social-network .social-list li a {
  display: block;
  background-color: transparent;
  text-align: center;
  color: #fff;
  font-size: 18px;
  transition: all ease 0.3s;
  padding: 0;
  border-radius: 0;
}
.blogs .overlay-blogs .blog .content-blog .read-share ul li.icon-share .social-network .social-list li a:hover {
  color: var(--backgroundColor);
}
.blogs .overlay-blogs .blog .content-blog .read-share ul li.icon-share .social-network .social-list::after {
  content: "";
  width: 30px;
  height: 15px;
  position: absolute;
  top: 100%;
  left: 25px;
  background: url(../img/icons/post-arrow.png) no-repeat center center;
  background-size: cover;
}
.blogs .overlay-blogs .blog .content-blog .read-share ul li.read-more a {
  background-color: transparent;
  color: #ce93d8;
  padding: 5px 16px;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  transition: all ease 0.3s;
  text-transform: uppercase;
  border: 2px solid #ce93d8;
  font-weight: 700;
}
.blogs .overlay-blogs .blog .content-blog .read-share ul li.read-more a:hover {
  background-color: #ce93d8;
  color: #fff;
}

.blogContent {
  background-color: #23254c;
  padding: 48px 0 24px;
}
.blogContent .overlay-blogContent .head-blogContent {
  margin-bottom: 24px;
}
.blogContent .overlay-blogContent .head-blogContent .list-head ul {
  gap: 12px;
  color: #fff;
  margin: 0;
}
.blogContent .overlay-blogContent .head-blogContent .list-head ul li {
  color: #ce93d8;
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  text-transform: capitalize;
}
.blogContent .overlay-blogContent .head-blogContent .list-head ul li a {
  color: #ce93d8;
  font-weight: 300;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 25px;
}
.blogContent .overlay-blogContent .head-blogContent .arrows-head ul {
  gap: 12px;
  margin: 0;
}
.blogContent .overlay-blogContent .head-blogContent .arrows-head ul li a {
  color: #b6c6c9;
  font-size: 16px;
  line-height: 25px;
}
.blogContent .overlay-blogContent .imgs-blogContent {
  margin-bottom: 12px;
}
.blogContent .overlay-blogContent .imgs-blogContent .img-blogContent {
  margin-bottom: 24px;
  position: relative;
  height: 100%;
  background-size: cover !important;
  min-height: 350px;
  overflow: hidden;
}
.blogContent .overlay-blogContent .imgs-blogContent .img-blogContent a {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.blogContent .overlay-blogContent .imgs-blogContent .img-blogContent a img {
  opacity: 0;
  visibility: hidden;
}
.blogContent .overlay-blogContent .imgs-blogContent .img-blogContent .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(106, 86, 131, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.blogContent .overlay-blogContent .imgs-blogContent .img-blogContent .layer .icon {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transform: translateY(-500px);
  transition: transform 0.25s ease-in-out;
}
.blogContent .overlay-blogContent .imgs-blogContent .img-blogContent.special-blog {
  min-height: 300px;
  max-height: 320px;
  height: 100%;
}
.blogContent .overlay-blogContent .imgs-blogContent .img-blogContent:hover .layer {
  opacity: 1;
  visibility: visible;
}
.blogContent .overlay-blogContent .imgs-blogContent .img-blogContent:hover .layer .icon {
  transform: translateY(0px);
  transition: transform 0s;
}
.blogContent .overlay-blogContent .imgs-blogContent .desc-blogContent .title-desc-blogContent {
  margin-bottom: 12px;
}
.blogContent .overlay-blogContent .imgs-blogContent .desc-blogContent .title-desc-blogContent h3 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.2px;
  line-height: 38px;
  margin-bottom: 12px;
}
.blogContent .overlay-blogContent .imgs-blogContent .desc-blogContent .title-desc-blogContent p {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 300;
  color: #99a9b5;
  line-height: 25px;
}
.blogContent .overlay-blogContent .imgs-blogContent .desc-blogContent .title-desc-blogContent .list-desc li {
  font-size: 16px;
  font-weight: 300;
  color: #99a9b5;
  line-height: 25px;
  margin-bottom: 12px;
  padding-left: 17px;
  position: relative;
}
.blogContent .overlay-blogContent .imgs-blogContent .desc-blogContent .title-desc-blogContent .list-desc li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 6px;
  width: 6px;
  background-color: #ba4f95;
  border-radius: 50%;
}
.blogContent .overlay-blogContent .imgs-blogContent .desc-blogContent .title-desc-blogContent .qoute {
  background-color: #393b5e;
  padding: 32px 48px;
  color: #fff;
  font-size: 24px;
  font-weight: 200;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.blogContent .overlay-blogContent .imgs-blogContent .desc-blogContent .title-desc-blogContent .qoute span {
  position: relative;
  z-index: 1;
}
.blogContent .overlay-blogContent .imgs-blogContent .desc-blogContent .title-desc-blogContent .qoute::after {
  content: "\f76d";
  font-size: 100px;
  font-family: uicons-regular-straight !important;
  position: absolute;
  bottom: -36px;
  right: 48px;
  color: #ba4f95;
  z-index: 0;
}
.blogContent .overlay-blogContent .tags {
  margin-bottom: 24px;
  padding: 0 12px;
}
.blogContent .overlay-blogContent .tags ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  gap: 18px 36px;
}
.blogContent .overlay-blogContent .tags ul li a {
  position: relative;
  background-color: #ce93d8;
  padding: 5px 10px;
  line-height: 25px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: capitalize;
  font-size: 13px;
  transition: all ease 0.3s;
}
.blogContent .overlay-blogContent .tags ul li a span {
  position: relative;
  z-index: 10;
}
.blogContent .overlay-blogContent .tags ul li a::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #23254c;
  z-index: 0;
}
.blogContent .overlay-blogContent .tags ul li a::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: #ce93d8;
}
.blogContent .overlay-blogContent .tags ul li a:hover {
  color: #ba4f95;
}
.blogContent .overlay-blogContent .social-network {
  margin-bottom: 24px;
}
.blogContent .overlay-blogContent .social-network .social-list {
  gap: 24px;
  flex-wrap: wrap;
}
.blogContent .overlay-blogContent .social-network .social-list li a {
  display: block;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all ease 0.3s;
}
.blogContent .overlay-blogContent .social-network .social-list li a:hover {
  color: var(--backgroundColor);
}

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