@import "font.css";

:root {
  --backgroundDark: #152c39;
  --backgroundLight: #476178;
  --accent: #e53624;
  --overlay: #0000002c;
}

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Inter";
  font-weight: 400;
  overflow-x: hidden;
  background: var(--backgroundDark);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

h1 {
  font-size: 66px;
  color: #fff;
  text-align: center;
}

h2,
.portfolio-title {
  font-size: 44px;
  color: #fff;
  text-shadow: 0 0 15px #000;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pins {
  display: flex;
  gap: 20px;
  flex-flow: wrap;
}

.pin {
  border: 1px solid #ffffff80;
  padding: 5px 7px;
  text-shadow: 0 0 15px #000;
  border-radius: 15px;
}

.btn {
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  width: max-content;
  padding: 12px 100px;
  border-radius: 100px;
  display: flex;
}

/* header start */

#header {
  position: fixed;
  width: 100%;
  backdrop-filter: blur(5px);
  z-index: 999;

}

.header-logo {
  z-index: 999;
}

.nav-but-wrap {
  position: relative;
  display: inline-block;
  float: right;
  padding-left: 15px;
  padding-top: 15px;
  margin-top: 20px;
  transition: all 0.3s ease-out;
  z-index: 99;
  margin-right: 15px;
}

.menu-icon {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 99;
  cursor: pointer;
  display: block;
}

.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #fff;
  margin-bottom: 7px;
  cursor: pointer;
  -webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, background-color .5s ease;
  transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}

.menu-icon__line-left {
  width: 16.5px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.menu-icon__line-right {
  width: 16.5px;
  float: right;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}

.nav {
  position: fixed;
  z-index: 98;
}

.nav:before,
.nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: var(--backgroundDark);
  border-bottom-left-radius: 200%;
  z-index: -1;
  -webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  -webkit-transform: translateX(100%) translateY(-100%);
  transform: translateX(100%) translateY(-100%);
  top: 0;
}

.nav:after {
  background: var(--backgroundDark);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.nav:before {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.nav__content {
  position: fixed;
  visibility: hidden;
  top: 50%;
  margin-top: 20px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  height: 0vh;
  padding-top: 50px;
}

.nav__list {
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 2;
}

.nav__list-item {
  position: relative;
  display: block;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  font-size: 8vh;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 3px;
  -webkit-transform: translate(100px, 0%);
  transform: translate(100px, 0%);
  -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, transform .3s ease;
  transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
  margin-top: 0;
  margin-bottom: 0;
}

.nav__list-item a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 900;
  z-index: 2;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.nav__list-item a:after {
  position: absolute;
  content: '';
  top: 50%;
  margin-top: -2px;
  left: 50%;
  width: 0;
  height: 0;
  opacity: 0;
  background-color: var(--accent);
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.nav__list-item a:hover {
  color: rgba(255, 255, 255, 1);
}

.nav__list-item.active-nav a {
  color: rgba(255, 255, 255, 1);
}

body.nav-active .nav__content {
  visibility: visible;
}

body.nav-active .menu-icon__line {
  background-color: #fff;
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
  transform: translate(0px, 0px) rotate(-45deg);
}

body.nav-active .menu-icon__line-left {
  width: 15px;
  -webkit-transform: translate(2px, 4px) rotate(45deg);
  transform: translate(2px, 4px) rotate(45deg);
}

body.nav-active .menu-icon__line-right {
  width: 15px;
  float: right;
  -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
  transform: translate(-3px, -3.5px) rotate(45deg);
}

body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
  width: 15px;
}

body.nav-active .nav {
  visibility: visible;
}

body.nav-active .nav:before,
body.nav-active .nav:after {
  -webkit-transform: translateX(0%) translateY(0%);
  transform: translateX(0%) translateY(0%);
  border-radius: 0;
}

body.nav-active .nav:after {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

body.nav-active .nav:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

body.nav-active .nav__list-item {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}

body.nav-active .nav__list-item:nth-child(0) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

body.nav-active .nav__list-item:nth-child(1) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

body.nav-active .nav__list-item:nth-child(2) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

body.nav-active .nav__list-item:nth-child(3) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

body.nav-active .nav__list-item:nth-child(4) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

body.nav-active .nav__list-item:nth-child(5) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

body.nav-active .nav__list-item:nth-child(6) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

body.nav-active .nav__list-item:nth-child(7) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

body.nav-active .nav__list-item:nth-child(8) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

body.nav-active .nav__list-item:nth-child(9) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

body.nav-active .nav__list-item:nth-child(10) {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}

.switch-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  transform: translateY(-50%);
  width: 100%;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  margin: 0 auto;
  text-align: center;
}

.switch-wrap h1 {
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

@media screen and (max-width: 580px) {
  .switch-wrap h1 {
    font-size: 32px;
  }
}

.switch-wrap p {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  color: #8167a9;
  text-align: center;
  margin-top: 15px;
}

.switch-wrap p span {
  position: relative;
}

.switch-wrap p span:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: -4px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.switch-wrap p span:nth-child(2):before {
  opacity: 0;
}

#switch,
#circle {
  cursor: pointer;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

#switch {
  width: 60px;
  height: 8px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid #000;
  border-radius: 27px;
  background: #8167a9;
  position: relative;
  display: inline-block;
}

#circle {
  position: absolute;
  top: -11px;
  left: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
  background: #fff;
}

.switched {
  border-color: #8167a9 !important;
  background: #000 !important;
}

.switched #circle {
  left: 43px;
  background: #000;
}

.header-nav-container {
  border-bottom: 1px solid #ffffff50;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* header end */

/* Swiper start */

.banner-swiper {
  padding: 30px 0 50px;
  color: #fff;
}

.swiper-wrapper {
  position: relative;
}

.swiper-button-left {
  content: "";
  width: 50px;
  height: 50px;
  top: 50%;
  position: absolute;
  background: url(../img/icons/pagination-left.svg);
  z-index: 999;
  left: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}

.swiper-button-right {
  content: "";
  width: 50px;
  height: 50px;
  top: 50%;
  position: absolute;
  background: url(../img/icons/pagination-right.svg);
  z-index: 999;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}

.swiper-slide-1 {
  width: 100%;
  height: 270px;
  background: url(../img/banners/swiper1.png) no-repeat center / cover;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 150px;
  backface-visibility: 15%;
}

.swiper-slide-2 {
  width: 100%;
  height: 270px;
  background: url(../img/banners/swiper2.png) no-repeat center / cover;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 150px;
}

.swiper-slide-3 {
  width: 100%;
  height: 270px;
  background: url(../img/banners/swiper3.png) no-repeat center / cover;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 150px;
}

.swiper-slide-text {
  margin: 15px 0 15px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.swiper-slide-txt {
  max-width: 240px;
  width: 100%;
  text-shadow: 0 0 15px #000;
}

.swiper-pagination-bullet {
  border-radius: 10px;
  width: 50px;
  background: #000;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}

/* Swiper end */

/* serviceMain start */

.serviceMain {
  padding: 70px;
}

.serviceMain-title {
  max-width: 1200px;
  text-transform: uppercase;
  margin: 0 auto;
  margin-bottom: 45px;
}

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

.serviceMain-box {
  max-width: 360px;
  width: 100%;
}

.serviceMain-txt {
  color: #ffffff80;
}

/* serviceMain end */

/* aboutMain start */

.aboutMain {
  background: var(--backgroundLight);
  display: flex;
  align-items: center;
}

.aboutMain-banner {
  height: 525px;
  max-width: 60%;
  width: 100%;
}

.aboutMain-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutMain-desc {
  max-width: 400px;
  width: 100%;
  margin-left: 55px;
}

.aboutMain-title {
  margin-bottom: 18px;
}

.aboutMain-txt {
  color: #fffffff1;
  margin-bottom: 24px;
  line-height: 19.6px;
}


/* aboutMain end */

/* sample start */

.sample {
  padding: 100px 0;
  background: #fff;
}

.sample-title {
  color: #000;
  margin-bottom: 48px;
  text-shadow: none;
}

.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0.5rem;
}

.news-card {
  border: 0px solid aqua;
  margin: 0.5rem;
  position: relative;
  height: 12rem;
  overflow: hidden;
  border-radius: 0.5rem;
  flex: 1;
  min-width: 350px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

@media (min-width: 900px) {

  .news-card {
    height: 20rem
  }
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%);
  ;
  z-index: 0;
}

.news-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  z-index: -1;
}

.news-card__text-wrapper {
  position: absolute;
  bottom: 0rem;
  padding: 1rem;
  color: white;
  /* background-color: rgba(0, 0, 0, 0.4); */
  transition: background-color 1.5s ease;
  width: 100%;
  height: 100%;
}

.news-card__title {
  transition: color 1s ease;
  margin-bottom: .5rem;
}

.news-card__details-wrapper {
  max-height: 0;
  opacity: 0;
  transition: max-height 1.5s ease, opacity 1s ease;
}

@media (min-width: 900px) {
  .news-card:hover .news-card__details-wrapper {
    max-height: 20rem;
    opacity: 1;
  }

  .news-card:hover .news-card__text-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .news-card:hover .news-card__image {
    transform: scale(1.2);
    z-index: -1;
  }
}

.news-card h2 {
  font-size: 36px;
}

/* sample end */

/* portfolio start */

.portfolio-blocks {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  width: 100%;
  background: var(--backgroundLight);
  font-family: "Play";
}

.portfolio-block {
  height: 50vh;
  transition: .5s;
  overflow: hidden;
}

.b1 {
  max-width: 59vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.b2 {
  max-width: 40vw;
  width: 100%;
  background: url(../img/portfolio/bridge.png) no-repeat center / cover;
}

.b3 {
  max-width: 30vw;
  width: 100%;
  background: url(../img/portfolio/b2.png) no-repeat center / cover;
}

.b4 {
  max-width: 69vw;
  width: 100%;
  background: url(../img/portfolio/s7.png) no-repeat center / cover;
}

.portfolio-title {
  margin-bottom: 20px;
  text-shadow: none;
}

.portfolio-txt {
  max-width: 400px;
  width: 100%;
  color: #fff;
}

.portfolio-link {
  margin-top: 30px;
  color: #fff;
  font-size: 24px;
}

.portfolio-block-desc {
  padding: 70px 100px;
}

.portfolio-block-pin {
  color: #fff;
}

.portfolio-block-title {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  text-transform: uppercase;
}

/* portfolio end */

/* blogMain start */

.blogMain {
  background: #fff;
  font-family: "Play";
  padding: 100px 0 150px;
}

.blogPage {
  background: var(--backgroundDark);
  padding: 0;
}

.blogMain-title {
  text-shadow: none;
  margin-bottom: 48px;
  color: #000;
}

.blogMain-boxes {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}

.blogMain-btn {
  float: right;
  margin-top: 48px;
}

.snip1529 {
  background-color: #000000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  font-size: 16px;
  margin: 10px 10px 50px;
  max-width: 310px;
  min-width: 250px;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
  border-radius: 12px;
  min-height: 350px;
}

.snip1529 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.snip1529 img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
  opacity: 0.75;
  width: 100%;
  height: 100%;
}

.snip1529 figcaption {
  padding: 25px 20px 25px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.snip1529 .date {
  background-color: #ffffffa1;
  color: #333;
  font-size: 18px;
  font-weight: 800;
  min-height: 48px;
  min-width: 58px;
  padding: 10px 0;
  position: absolute;
  right: 15px;
  text-align: center;
  text-transform: uppercase;
  top: 0;
}

.snip1529 .date span {
  display: block;
}

.snip1529 .date .month {
  font-size: 11px;
}

.snip1529 h3,
.snip1529 p {
  margin: 0;
  padding: 0;
}

.snip1529 h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.snip1529 .hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  background-color: rgba(158, 158, 158, 0.75);
  display: flex;
  font-size: 32px;
  justify-content: center;
  opacity: 0;
}

.snip1529 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.snip1529:hover .hover,
.snip1529.hover .hover {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 1;
}

.snip1529:hover figcaption,
.snip1529.hover figcaption {
  opacity: 0;
}

.snip1529:hover .date,
.snip1529.hover .date {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.hover img {
  width: 32px;
  height: 32px;
}


/* blogMain end */

/* footer start */

.footer-container {
  padding: 50px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid #ffffff50;
}

.footer-block {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-block img {
  width: 32px;
  height: 32px;
}

.footer-block-title {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 5px;
}

.footer-block-txt {
  color: #ffffff80;
  margin-bottom: 5px;
}

.footer-line {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-line-title {
  font-size: 16px;
  color: #ffffff80;
  margin-right: 10px;
  transition: .5s;
}

.footer-line:hover .footer-line-title {
  color: #fff;
}

/* footer end */

.page-links {
  padding: 150px 0 40px;
}

.page-link {
  color: #ffffff80;
}

.page-link.active {
  color: #ffffff;
  text-decoration: underline;
}

/* aboutPage start */

.aboutPageMain {
  font-family: "Play";
}

.aboutPage-title {
  text-align: left;
  margin-bottom: 40px;
}

.aboutPage-subtitle {
  margin-bottom: 24px;
}

.aboutPage-txt {
  padding-bottom: 50px;
  border-bottom: 1px solid #ffffff50;
  font-size: 18px;
  color: #ffffff80;
}

.aboutPage-title2 {
  padding: 50px 0 20px;
}

.aboutPage-line {
  display: flex;
  align-items: center;
}

.aboutPage-line span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  padding: 25px 50px;
  border: 1px solid #ffffff80;
}

.aboutPage-desc {
  padding: 100px 0 0;
  display: flex;
}

.aboutPage-desc-img {
  width: 50%;
}

.aboutPage-desc-img img {
  width: 100%;
  object-fit: cover;
}

.aboutPage-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  background: var(--backgroundLight);
}

.aboutPage-right-title {
  margin-bottom: 30px;
}

.aboutPage-blocks {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 40px 170px;
}

.aboutPage-block {
  color: #fff;
  max-width: 140px;
  width: 100%;
  text-align: center;
}

/* aboutPage end */

/* contactPage start */

.contact-left {
  padding-top: 40px;
  border-top: 1px solid #ffffff50;
  max-width: 407px;
  width: 100%;
}

.contacts-subtitle {
  color: #ffffff80;
}

.contacts-title {
  margin-bottom: 40px;
}

.contact-blocks {
  display: flex;
  gap: 70px 100px;
  flex-flow: wrap;
}

.contact-block-title {
  color: #ffffff80;
  margin-bottom: 8px;
}

.contact-block-txt {
  color: #fff;
}

.contact-desc {
  display: flex;
  justify-content: space-between;
}

.contact-right {
  width: 60%;
  height: 50vh;
}

.contact-right-map {
  width: 100%;
  height: 32vh;
}

/* contactPage end */

/* servicePage start */

.servicePage {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  align-items: center;
}

.servicePage-left {
  width: 55%;
}

.servicePage-right {
  width: 35%;
}

.servicePage-left-img,
.servicePage-right-img {
  width: 100%;
}

.servicePage-right-img {
  margin-bottom: 40px;
}

.servicePage-left-img img,
.servicePage-right-img img {
  width: 100%;
}

.servicePage-left-title {
  margin-bottom: 18px;
}

.servicePage-left-txt,
.servicePage-right-txt {
  margin-bottom: 40px;
  color: #ffffff80;
}

/* servicePage end */

/* portfolio start */

.portfolio-cards {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}

.portfolio-card {
  max-width: 407px;
  width: 100%;
  background: var(--backgroundLight);
  margin-bottom: 50px;
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-card-desc {
  padding: 20px;
}

.portfolio-card-title {
  font-size: 24px;
}

.portfolio-card-txt {
  color: #ffffff80;
  font-size: 18px;
}

/* portfolio end */

/* modal start */

.modal {
  position: relative;
  z-index: 999;
}

.modal__container {
  padding: 20px;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  background: #141414;
}

.modal__title {
  text-align: center;
  width: 100%;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  margin: 10px 0 20px;
}

.modal__close {
  opacity: 0.6;
  -webkit-transition: 0.5 0.6s;
  -o-transition: 0.5 0.6s;
  transition: 0.5 0.6s;
  position: relative;
  top: -5px;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.modal__close:hover {
  opacity: 1;
}

.modal__footer {
  padding: 10px 0;
  text-align: center;
}

/* modal form */

form input,
form textarea {
  width: 100%;
  margin: 5px 0 10px;
  padding: 12px 14px 7px;
  border: none;
  font-family: "Play";
  outline: none;
  background: none;
  border-bottom: 2px solid #2b2b2b;
  color: #E42652;
  border-radius: 5px;
  font-weight: normal;
}

form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
  color: #d1d1e3;
}

form input::-moz-placeholder,
form textarea::-moz-placeholder {
  color: #d1d1e3;
}

form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  color: #d1d1e3;
}

form input::-ms-input-placeholder,
form textarea::-ms-input-placeholder {
  color: #d1d1e3;
}

form input::placeholder,
form textarea::placeholder {
  color: #d1d1e3;
}

.button {
  background: #2b2b2b;
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 25px;
  border-radius: 10px;
  cursor: pointer;
}

/* modal */

.video-banner {
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-banner video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  object-position: center;
}

.video-banner-title {
  text-transform: uppercase;
  font-family: "Play";
}

/* video end */