@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.banner-sec {
  background-color: #41296E;
}
.banner-sec .bg-sliding-line {
  background-image: linear-gradient(135deg, transparent 45%, rgba(209, 185, 178, 0) 45%, #694e9c 55%, transparent 0);
  background-size: 5px 5px;
  height: 100vh;
}
.banner-sec .bg {
  background: linear-gradient(357deg, rgba(88, 45, 129, 0.6), rgba(255, 255, 255, 0.88)), url(../imgs/banner-img.jpg);
  background-size: cover;
  position: relative;
}
.banner-sec .white-box {
  background-color: #fff;
  padding: 50px;
  width: auto;
  display: inline;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.banner-sec .mask-text {
  padding: 10px;
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: transparent;
  background-image: url(../imgs/text-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
}
.banner-sec .contact-ul ul {
  list-style: none;
}
.banner-sec .contact-ul ul li {
  font-family: "Space Grotesk", serif;
  color: #fff;
  font-size: 22px;
}

header {
  display: flex;
  justify-content: flex-end;
}

/* Гамбургер иконка */
.menu-btn {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 9999;
  overflow: hidden;
}

.menu-btn .bar {
  width: 30px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.menu-btn .bar:nth-of-type(2) {
  top: calc(50% - 9px);
}

.menu-btn .bar:nth-of-type(3) {
  top: calc(50% + 9px);
}

/* Меняем гамбургер иконку, когда меню открыто */
.menu-btn.active .bar:nth-of-type(1) {
  display: none;
}

.menu-btn.active .bar:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn.active .bar:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

/* Меню, которое будет появляться */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #41296e;
  transform: translateX(100%);
  transition: transform 0.5s;
  z-index: 999;
}

.nav.active {
  transform: translateX(0);
}

.nav .nav__list_item {
  list-style-type: none;
  font-family: "Space Grotesk", serif;
  font-size: 56px;
  text-decoration: none;
}

.nav__link {
  text-decoration: none;
  color: #ffffff;
}

.text-wrp {
  display: flex;
  align-items: start;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
.text-wrp h1 {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 150px;
  color: #ffffff;
  line-height: 150px;
}
.text-wrp p {
  font-family: "Poppins", serif;
  font-size: 30px;
  color: #ffffff;
}
.text-wrp a {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 26px;
  color: #F1A532;
  text-decoration: none;
}
.text-wrp a i {
  background-color: #F1A532;
  padding: 10px 15px 13px 14px;
  border-radius: 30px;
}

.hero-social-icon i {
  color: #F1A532;
  font-size: 22px;
  margin-bottom: 15px;
  transition: 0.5s;
}
.hero-social-icon i:hover {
  color: #ffffff;
}
.hero-social-icon hr {
  margin-top: 68px;
  opacity: 1;
  color: #ffffff;
  width: 110px;
  rotate: 90deg;
}

.one-sec {
  padding: 100px 0px 100px 0px;
}
.one-sec h2 {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 54px;
  color: #000000;
}
.one-sec h3 {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 26px;
  color: #000000;
}
.one-sec p {
  font-family: "Poppins", serif;
  font-size: 18px;
  color: #727272;
}
.one-sec .circle {
  background-color: #41296e;
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 100px;
  color: #ffffff;
  padding: 20px;
  width: 250px;
  height: 250px;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, transparent 45%, #464646 45%, #464646 55%, transparent 0);
  background-size: 5px 5px;
  position: relative;
}
.one-sec .circle .top-one {
  font-family: "Space Grotesk", serif;
  font-weight: 400;
  font-size: 36px;
  color: #ffffff;
  position: absolute;
  top: 83px;
  right: 55px;
}
.one-sec .top-bdr {
  border-top: 1px solid #7b7b7b;
  padding-top: 20px;
}
.one-sec .top-bdr p {
  font-family: "Poppins", serif;
  font-size: 18px;
  color: #727272;
}
.one-sec .top-bdr p span {
  font-family: "Poppins", serif;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
}
.one-sec .top-bdr i {
  font-size: 36px;
  color: #f1a532;
}

.sec-two {
  background-color: #41296E;
  background-image: linear-gradient(135deg, transparent 45%, rgba(209, 185, 178, 0) 45%, #694e9c 55%, transparent 0);
  background-size: 5px 5px;
  padding: 100px 0px 100px 0px;
}
.sec-two h2 {
  font-weight: 600;
  font-size: 54px;
  color: #ffffff;
}
.sec-two .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.5) !important;
}
.sec-two p {
  font-family: "Poppins", serif;
  font-size: 18px;
  color: #ffffff;
}
.sec-two i {
  color: #ffffff;
  font-size: 30px;
}
.sec-two .alt-font {
  font-family: "Space Grotesk", serif;
  font-weight: 400;
  font-size: 36px;
}

.sec-3 {
  padding: 100px 0px 100px 0px;
}
.sec-3 h2 {
  font-family: "Space Grotesk", serif;
  font-weight: 600;
  font-size: 54px;
  color: #000000;
}

.sec-four {
  background-color: #41296E;
  background-image: linear-gradient(135deg, transparent 45%, rgba(209, 185, 178, 0) 45%, #694e9c 55%, transparent 0);
  background-size: 5px 5px;
  padding: 100px 0px 100px 0px;
}
.sec-four h2 {
  font-family: "Space Grotesk", serif;
  font-weight: 600;
  font-size: 54px;
  color: #ffffff;
}

.process-sec {
  background-color: #41296E;
  background-image: linear-gradient(135deg, transparent 45%, rgba(209, 185, 178, 0) 45%, #694e9c 55%, transparent 0);
  background-size: 5px 5px;
  padding: 100px 0px 100px 0px;
}
.process-sec h2 {
  font-family: "Space Grotesk", serif;
  font-weight: 600;
  font-size: 54px;
  color: #ffffff;
}
.process-sec h3 {
  font-family: "Space Grotesk", serif;
  font-weight: 400;
  font-size: 26px;
  color: #ffffff;
  margin-top: 10px;
}
.process-sec i img {
  width: 40px;
}

.text-sec {
  background-color: #ffffff;
  padding: 50px 0px 50px 0px;
}

.box {
  background: #331964;
  padding: 20px;
  border-radius: 6px;
  display: flex;
  height: 100%;
  flex-direction: column;
  transition: 0.3s;
}
.box:hover {
  transform: translate(0, -20px);
  box-shadow: -1px 2px 49px -24px rgba(255, 255, 255, 0.92);
  -webkit-box-shadow: -1px 2px 49px -24px rgba(255, 255, 255, 0.92);
  -moz-box-shadow: -1px 2px 49px -24px rgba(255, 255, 255, 0.92);
}

marquee {
  background-color: #ffffff;
  padding: 10px;
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 80px;
  color: #331964;
}

.strock {
  color: black;
  -webkit-text-fill-color: white; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #331964;
  display: contents;
}

.ftr-sec {
  background-color: #ffffff;
  padding: 0px 0px 10px 0px;
}
.ftr-sec h5 {
  font-family: "Space Grotesk", serif;
  font-weight: 600;
  font-size: 32px;
  color: #000000;
}
.ftr-sec h5 i {
  font-size: 36px;
  color: #F1A532;
}
.ftr-sec p {
  font-family: "Space Grotesk", serif;
  font-weight: 400;
  font-size: 14px;
  color: #707070;
  margin-top: 10px;
}

.phone-num {
  font-family: "Space Grotesk", serif;
  font-weight: 600;
  font-size: 26px;
  color: #F1A532;
  display: none;
}
.phone-num i {
  color: #F1A532;
}

.header__nav ul {
  list-style: none !important;
}

.social-medai ul {
  list-style: none;
}
.social-medai ul li {
  display: inline;
}
.social-medai ul li a {
  color: #331964;
}
.social-medai ul li a i {
  font-size: 26px;
  margin-right: 10px;
}

.sub-banner-sec {
  background-color: #331964;
  background-image: linear-gradient(135deg, transparent 45%, rgba(209, 185, 178, 0) 45%, #694e9c 55%, transparent 0);
  background-size: 5px 5px;
  padding: 0px 0px 50px 0px;
  position: relative;
}
.sub-banner-sec::before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  background-image: linear-gradient(135deg, transparent 45%, rgba(209, 185, 178, 0) 45%, #694e9c 55%, transparent 0);
  background-size: 5px 5px;
  padding: 0px 0px 50px 0px;
  width: 30%;
  height: 100%;
}
.sub-banner-sec h1 {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 70px;
  color: #ffffff;
}
.sub-banner-sec p {
  font-family: "Poppins", serif;
  font-size: 18px;
  color: #ffffff;
}

.about-one-sec {
  padding: 100px 0px 100px 0px;
}
.about-one-sec h2 {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 54px;
  color: #000000;
}
.about-one-sec p {
  font-family: "Poppins", serif;
  font-size: 18px;
  color: #000000;
}
.about-one-sec .img-wrp {
  position: relative;
}
.about-one-sec .img-wrp .box {
  background-color: #ffffff;
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 100px;
  color: #000000;
  padding: 20px;
  width: 250px;
  height: 250px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, transparent 45%, #464646 45%, #f3f3f3 55%, transparent 0);
  background-size: 5px 5px;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.about-one-sec .img-wrp .box .top-one {
  font-family: "Space Grotesk", serif;
  font-weight: 400;
  font-size: 36px;
  color: #000000;
  position: absolute;
  top: 83px;
  right: 55px;
}

a.btn-talk {
  background-color: #331964;
  padding: 16px;
  font-family: "Space Grotesk", serif;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 3px;
}
a.btn-talk i {
  font-size: 22px;
  color: #ffffff;
}

a.num {
  font-family: "Space Grotesk", serif;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  text-decoration: none;
}
a.num i {
  font-size: 22px;
  color: #F1A532;
}

.about-two-sec {
  background: linear-gradient(357deg, rgba(88, 45, 129, 0.6), rgb(51, 25, 100)), url(../imgs/about-bg.jpg);
  background-size: cover;
  position: relative;
  height: 500px;
}
.about-two-sec h2 {
  font-family: "Space Grotesk", serif;
  font-weight: 600;
  font-size: 54px;
  color: #ffffff;
  text-align: center;
  margin-top: 18%;
}
.about-two-sec .emblem {
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  margin: 0 auto;
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  font-weight: bold;
  color: #ffffff;
  animation: spinZ 20s linear infinite;
  text-align: center;
}
.about-two-sec .emblem span {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 3vh;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1);
}
@keyframes spinZ {
  0% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}

.about-three-sec {
  padding: 100px 0px 0px 0px;
}
.about-three-sec h2 {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 54px;
  color: #000000;
}
.about-three-sec h4 {
  font-family: "Space Grotesk", serif;
  font-weight: 600;
  font-size: 26px;
  color: #331964;
  margin-top: 20px;
}
.about-three-sec p {
  font-family: "Poppins", serif;
  font-size: 18px;
  color: #313131;
  margin-top: 20px;
}

.contact-sec {
  padding: 100px 0px 100px 0px;
}
.contact-sec h2 {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 54px;
  color: #000000;
}
.contact-sec h4 {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 26px;
  color: #000000;
}
.contact-sec h6 {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  text-align: center;
}
.contact-sec .form-control {
  background-color: #c7acfb;
  padding: 10px;
}
.contact-sec .form-control:focus {
  box-shadow: none;
}

.submit-btn {
  background-color: #000000;
  padding: 10px 20px;
  color: #ffffff;
}

.service-sec-one {
  padding: 100px 0px 100px 0px;
}
.service-sec-one h2 {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 54px;
  color: #000000;
}
.service-sec-one .project-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.service-sec-one .project-wrp h4 {
  font-family: "Space Grotesk", serif;
  font-weight: 900;
  font-size: 26px;
  color: #000000;
}

.photo-gallery {
  padding: 100px 0px 100px 0px;
  background-color: #ffffff;
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.gallery-item {
  display: block;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}
[data-bs-theme=dark] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme=dark] .lightbox-modal .carousel-control-prev-icon {
  filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: 0.6;
  font-size: 1.25rem;
}

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor;
}

a.border-bottom {
  text-decoration: none;
  transition: 0.3s;
}
a.border-bottom:hover {
  background-color: #3f266c;
}

.border-bottom-one {
  border-bottom: #dee2e6 1px solid;
}

.contentDiv {
  width: 300px;
  height: 1000px;
  background-color: #ff0000;
}

button.back-to-top {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  height: 0px;
  width: 0px;
  overflow: hidden;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  color: transparent;
  clear: both;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  right: 50px;
  bottom: 75px;
  font-size: 0px;
  outline: 0 !important;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
  outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
  content: "";
  display: block;
  vertical-align: middle;
  border-bottom: solid 10px #EA5D5F;
  border-left: solid 10px transparent;
  line-height: 0;
  border-right: solid 10px transparent;
  height: 0;
  margin: 18px auto 0;
  width: 0;
  border-radius: 20px;
  visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
  visibility: visible;
}

button.back-to-top::after {
  border-bottom-color: #fff;
  position: relative;
  top: -24px;
}

button.back-to-top.show {
  display: block;
  background: #fff;
  color: #00ab6c;
  font-size: 25px;
  right: 25px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 120px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 8px;
}/*# sourceMappingURL=style.css.map */