:root {
  --textColorLight: #fff;
  --textColorDark: #301B65;
  --primary: #512DA8;
  --darkPrimary: #301B65;
  --lightPrimary: #DFD7F4;
  --lightBg: #fff;
  --accent: #536DFE;
  --purpleGradient: linear-gradient(0deg, rgba(48,27,101,1) 0%, rgba(48,27,101,0) 100%);
}

@font-face {
  font-family: 'ClashGrotesk-Regular';
  src: url('../fonts/ClashGrotesk-Regular.woff2') format('woff2'),
       url('../fonts/ClashGrotesk-Regular.woff') format('woff'),
       url('../fonts/ClashGrotesk-Regular.ttf') format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: normal;
}

@font-face {
  font-family: 'ClashGrotesk-Bold';
  src: url('../fonts/ClashGrotesk-Bold.woff2') format('woff2'),
       url('../fonts/ClashGrotesk-Bold.woff') format('woff'),
       url('../fonts/ClashGrotesk-Bold.ttf') format('truetype');
       font-weight: 700;
       font-display: swap;
       font-style: normal;
}

* {
  -webkt-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
    background-color: var(--lightBg);
	color: var(--darkPrimary);
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'ClashGrotesk-Regular';
    font-size: 18px;
    line-height: 1.4;
	margin: 0;
    overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
 
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

.hide {
  opacity: 0;
  visibility: hidden;
}
.show {
  opacity: 1;
  visibility: visible;
}

.hide__desktop {
  display: none;
}

.lazy {
  display: block;
  border: none !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--textColorLight);
}
::-moz-placeholder { /* Firefox 19+ */
  color: var(--textColorLight);
}
:-ms-input-placeholder { /* IE 10+ */
  color: var(--textColorLight);
}
:-moz-placeholder { /* Firefox 18- */
  color: var(--textColorLight);
}

img {
  display: inline-block;
}

p {
  margin: 0 0 16px;
  line-height: 1.4;
}
a {
  color: var(--textColor);
}
a:hover {
  color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 24px;
  line-height: 1.1;
  /*font-weight: 800;*/
  font-family: 'ClashGrotesk-Bold';
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1680px) {
  .container {
    max-width: 1440px;
  }
}

.btn {
  position: relative;
  min-width: 120px;
  padding: 8px 24px;
  background-color: var(--accent);
  color: var(--textColorLight);
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  border: none;
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.btn:hover {
  background: var(--darkPrimary);
  color: var(--textColorLight);
}

.page__title {
  font-size: 40px;
  text-align: center;
  margin: 0 0 80px;
  text-transform: uppercase;
}
.container__text {
  width: 100%;
  margin: 0  auto;
  display: flex;
  gap: 80px;
  justify-content: space-around;
}
.section__title {
  font-size: 40px;
  color: var(--darkPrimary);
  margin: 0 0 24px;
  max-width: 960px;
  text-transform: uppercase;
}
.section__desc {
  font-size: 24px;
  color: var(--darkPrimary);
  max-width: 960px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99999;
}
.preloader img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  max-width: 400px;
  height: auto;
  transform: translate(-50%, -50%);
}

/*header*/
header {
  position: relative;
  width: 100%;
  height: 80px;
  padding: 16px 40px;
  background-color: var(--lightBg);
  color: var(--textColorDark);
  z-index: 9999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}
.logo {
 position: relative;
}
.logo img {
  width: auto;
  height: 72px;
  position: relative;
}

.main__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.menu > li {
  position: relative;
}
/* .menu > li:before {
  display: none;
  content: '';
  width: 24px;
  height: 8px;
  position: absolute;
  bottom: -31px;
  background: var(--darkPrimary);
  left: 50%;
  transform: translateX(-50%);
}  */
.menu > li:after {
  display: none;
  content: '';
  width: 24px;
  height: 8px;
  position: absolute;
  top: -31px;
  background: var(--darkPrimary);
  left: 50%;
  transform: translateX(-50%);
} 
.menu > li.current-menu-item:after {
  display: block;
}
.menu > li:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 40px;;
}
.main__nav li a {
  display: block;
  text-transform: uppercase;
  color: var(--textColorDark);
  text-decoration: none;
  line-height: 1;
  font-size: 18px;

  transition: all .2s ease-in-out;
}
.main__nav li a:hover,
.main__nav li.current-menu-item a {
  
}
.main__nav .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 49px;
  left: 0;
  width: 240px;
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 4px rgba(21, 21, 21, .15);

  transform: translateY(10px);
  transition: all .2s ease-in-out;
}
.main__nav .sub-menu.active {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.social__links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social__links img {
  display: block;
  width: 24px;
  height: 24px;
}

.menu__btn {
  display: none;
  width: 40px;
  height: 28px;
  cursor: pointer;
  position: relative;
}
.menu__btn span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: var(--darkPrimary);
  opacity: 1;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}
.menu__btn span:nth-child(even) {
  left: 50%;
}
.menu__btn span:nth-child(odd) {
  left:0px;
}
.menu__btn span:nth-child(1), .menu__btn span:nth-child(2) {
  top: 0px;
}
.menu__btn span:nth-child(3), .menu__btn span:nth-child(4) {
  top: 12px;
}
.menu__btn span:nth-child(5), .menu__btn span:nth-child(6) {
  top: 24px;
}
.menu__btn.active span:nth-child(1),.menu__btn.active span:nth-child(6) {
  transform: rotate(45deg);
}
.menu__btn.active span:nth-child(2),.menu__btn.active span:nth-child(5) {
  transform: rotate(-45deg);
}
.menu__btn.active span:nth-child(1) {
  left: 5px;
  top: 7px;
}
.menu__btn.active span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
.menu__btn.active span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.menu__btn.active span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.menu__btn.active span:nth-child(5) {
  left: 5px;
  top: 13px;
}
.menu__btn.active span:nth-child(6) {
  left: calc(50% - 5px);
  top: 13px;
}

/*Homepage*/
.big__slider-wrapper {
  position: relative;
  height: calc(100vh - 128px);
  margin-bottom: 200px;
}
.big__slider {
  position: relative;
  height: 100%;
}
.big__slider-shape {
  width: 100%;
  height: auto;
  display: block;
}
.big__slider .slick-list,
.big__slider .slick-track,
.big__slider .slick-slide {
  width: 100%;
  height: 100%;
}
.big__slider-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.big__slider-img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--purpleGradient);
}
.big__slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big__slider-icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: auto;
  z-index: 1;
  transform: translateY(-50%);
}
.big__slider-info {
  display: flex;
  align-items: center;
  height: 100%;
}
.big__slider-info h1 {
  position: relative;
  font-size: 100px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--textColorLight);
  text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  z-index: 1;
  max-width: 960px;
}
.big__slider-illustration {
  position: absolute;
  bottom: -240px;
  right: 0;
  width: 680px;
  height: auto;
}

/*home about*/
.home__about {
  margin: 240px 0 80px;
}

/*home services*/
.home__services {

}
.home__services .container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.home__service-item {
  position: relative;
  display: block;
  width: 33.333%;
  height: 480px;
}
.home__service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__service-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(33, 33, 33);
  background: linear-gradient(0deg, rgba(33, 33, 33, 1) 0%, rgba(33, 33, 33, 0) 100%);
}
.home__service-title h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 24px;
  font-size: 24px;
  color: var(--textColorLight);
}

/* home projects */
.home__projects {
  margin: 120px 0;
}
.home__projects .container {
  display: flex;
  gap: 40px;
}
.home__projects-slider {
  width: 66.666%;
}
.home__projects-item {
  position: relative;
  display: block;
  max-width: 400px;
  height: 360px;
  margin-right: 16px;
}
.home__projects-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__projects-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(33,33,33);
  background: linear-gradient(0deg, rgba(33,33,33,1) 0%, rgba(33,33,33,0) 100%);
}
.home__projects-title h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 24px;
  font-size: 24px;
  color: var(--textColorLight);
}
.home__projects .next__btn {
  position: absolute;
  top: 50%;
  right: -24px;
  background: var(--accent);
  width: 48px;
  height: 48px;
  transform: translateY(-50%) rotate(45deg);
  transition: all .2s ease-in-out;
  cursor: pointer;
}
.home__projects .next__btn:hover {
  background: var(--darkPrimary);
}
.home__projects .next__btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.home__projects .next__btn svg {
  width: 24px;
  height: 24px;
}
.prev__btn {
  display: none !important;
}

/* home blog */

.home__blog {
  margin: 120px 0;
}
.home__blog .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.home__blog-info {
  max-width: 640px;
}
.home__blog-info span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 24px;
}
.home__blog-info .btn {
  display: inline-block;
  margin-top: 40px;
}
.home__blog-wrapper {
  display: flex;
  gap: 40px;
}
.home__blog-item {
  width: calc(25% - 30px);
  text-decoration: none;
}
.home__blog-item img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.home__blog-text {
  margin-top: 24px;
}
.home__blog-title {
  font-size: 24px;
  margin: 0 0 16px;
}
.home__blog-desc {

}


.blogs {
  margin: 80px auto;
}
.blogs__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.blog__item {
  width: calc(33.333% - 27px);
  text-decoration: none;
}
.blog__item-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog__item-img {
  height: 320px;
}
.blog__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__item-info h2 {
  font-size: 24px;
  margin: 0 0 16px;
}
.blog__item-link {
  
}

/*about*/
.about {
  padding: 80px 0;
}
.about .container {
  display: flex;
  gap: 80px;
  align-items: center;
}
.about__page-img {
  width: 100%;
  height: 800px;
}
.about__page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__desc {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.about__desc .page__title {
  font-size: 40px;
  text-align: left;
  margin: 0 0 40px;
}

/*services*/
.services {
  padding: 80px 0;
}

.service__item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  text-decoration: none;
}
.service__item-info {
  position: relative;
  width: 50%;
  min-height: 400px;
  padding: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.service__item:hover .service__item-info {
  color: var(--textColorLight);
}
.service__item-info:after {
  content: '';
  position: absolute;
  top: 0;
  left: -80px;
  width: calc(100% + 80px);
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all .3s ease-in-out;
}
.service__item:hover .service__item-info:after {
  opacity: 1;
  visibility: visible;
  background: rgb(81,45,168);
  background: linear-gradient(0deg, rgba(81,45,168,1) 0%, rgba(48,27,101,1) 100%);
}
.service__item-info h2 {
  font-size: 32px;
  line-height: 1;
}
.service__item-info p {
  margin: 0;
}
.serice__item-link {
  display: block;
  margin: 40px 0 0;
  font-weight: 600;
  transition: all .3s ease-in-out;
}
.service__item-img {
  width: 50%;
}
.service__item-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: all .3s ease-in-out;
}
.service__item:hover img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
}
.service__item:nth-child(even) .service__item-info {
  order: 1;
}
.service__item:nth-child(even) .service__item-img {
  order: 2;
}
.service__item:nth-child(even) .service__item-info:after {
  right: -80px;
  left: auto;
}

.bottom__page-shape {
  position: relative;
}
.bottom__page-shape img {
  position: absolute;
  top: -200px;
  right: 0;
  height: 400px;
  width: auto;
}

/*single service*/
.single__service {
  padding: 80px 0;
}
.single__service-img {
  height: 400px;
}
.service__details {
  width: 960px;
  max-width: 100%;
  margin: 80px auto 0;
}
.service__details h2,
.service__details h3,
.service__details h4,
.service__details h5,
.service__details h6 {
  margin: 40px 0 16px;
}

.single__page-img {
  width: 100%;
  height: 640px;
  margin-top: 40px;
}
.single__page-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single__page-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 160px;
}
.single__pagination-btn a {
  text-decoration: none;
}
.single__pagination-btn svg {
  width: 16px;
  height: 16px;
}
.single__pagination-title {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.single__pagination-info h3 {
  font-size: 18px;
  line-height: 1;
  margin: 0;
}

/*projects*/
.projects {
  padding: 80px 0;
}
.projects__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.project__item {
  position: relative;
  width: calc(25% - 30px);
}
.project__item.gradient__bg-h:after {
  width: calc(100% - 40px);
  transition: all .3s cubic-bezier(.17,.67,1,1);
}
.project__item.gradient__bg-h:hover:after {
  width: calc(100% + 20px);
  transition: all .3s cubic-bezier(.17,.67,1,1);
}
.project__item:first-child {
  width: calc(50% - 30px);
}
.project__item:nth-child(6n) {
  width: calc(50% - 30px);
}
.project__item:nth-child(7n) {
  width: calc(50% - 30px);
}
.project__item-img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(33, 33, 33);
  background: linear-gradient(0deg, rgba(33, 33, 33, 1) 0%, rgba(33, 33, 33, 0) 100%);
}
.project__item-img {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
.project__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project__item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  color: var(--textColorLight);
  z-index: 2;
}
.project__item h2 {
  font-size: 32px;
  line-height: 1;
  margin: 0;
}
.project__item .btn__readmore {
  opacity: 0;
  visibility: hidden;
  display: none;
  margin: 16px 0 0;
  gap: 16px;
}
.project__item .btn__readmore img {
  width: 16px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.project__item:hover .btn__readmore {
  opacity: 1;
  visibility: visible;
  display: flex;
}

/*single project*/
.single__project {
  padding: 80px 0;
}
.single__project .page__title {
  margin-bottom: 24px;
}
.project__subtitle {
  display: block;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 24px;
  text-align: center;
}

.single__page-img {
  width: 100%;
  height: 640px;
  margin-top: 40px;
}
.single__page-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project__details {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
.project__brief {
  width: 50%;
  padding-right: 40px;
}
.project__details h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 16px;
}
.project__work {
  width: 50%;
  padding-left: 40px;
}
.project__work-item {
  margin-bottom: 40px;
}
.project__work-item span {
  display: block;
}
.project__location {
  width: 100%;
  height: 480px;
  margin-top: 40px;
}
.project__location iframe {
  width: 100%;
  height: 100%;
}

.single__page-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}
.single__pagination-btn a {
  text-decoration: none;
}
.single__pagination-btn svg {
  width: 16px;
  height: 16px;
}
.single__pagination-title {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.single__pagination-info h3 {
  font-size: 18px;
  line-height: 1;
  margin: 0;
}

/*contact*/
.contact {
  padding: 80px 0;
}
.contact__wrapper {
  display: flex;
  flex-wrap: wrap;
  color: var(--textColorDark);
}
.contact__map {
  width: 33.333%;
}
.contact__map iframe {
  width: 100%;
  height: 640px;
}
.contact__info {
  width: 66.666%;
  padding-left: 80px;
}
.contact__address {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.contact__item {
  width: calc(50% - 27px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__item a {
  text-decoration: none;
}
.contact__item img {
  width: 24px;
  height: 24px;
}

.contact__form {
  width: 75%;
  margin-top: 80px;
}
.contact__form > p {
  margin-bottom: 8px;
}
.contact__form form {
  margin-top: 40px;
}
.form__item {
  margin-bottom: 40px;
}
.form__item input[type="text"],
.form__item input[type="email"],
.form__item input[type="tel"] {
  width: 100%;
  height: 40px;
  padding: 8px 0;
  color: #212121;
  background: none;
  border: 0;
  border-bottom: 1px solid #212121;
  outline: none;
}
.form__item textarea {
  width: 100%;
  height: 120px;
  padding: 8px 0;
  color: #212121;
  background: none;
  border: 0;
  border-bottom: 1px solid #212121;
  resize: vertical;
}
.form__item input[type="submit"] {

}

/*footer*/
.footer_shape {
  display: block;
  width: 100%;
  height: auto;
}

footer {
  color: #fff;
  padding: 80px 0 40px;
  background: var(--darkPrimary);
}
footer .container {
  display: flex;
  gap: 40px;
}
.footer__item{
  display: flex;
  width: 66.666%;
  gap: 40px;
}
.footer__item:first-child {
  width: 33.333%;
  flex-direction: column;
  gap: 0;
}
.footer__logo {
  display: block;
  margin-bottom: 40px;
}
.footer__logo img {
  width: auto;
  height: 48px;
  display: block;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
footer a {
  text-decoration: none;
}

.footer__item-info {
  display: flex;
  gap: 16px;
  width: 33.333%;
}

.copyright {
  margin-top: 40px;
}

.grecaptcha-badge {
  display: none !important;
}










