@charset "UTF-8";

* {
   padding: 0;
   margin: 0;
   border: 0;
}

*,
*:before,
*:after {
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

:focus,
:active {
   outline: none;
}

a:focus,
a:active {
   outline: none;
}

nav,
footer,
header,
aside {
   display: block;
}

html,
body {
   height: 100%;
   width: 100%;
   font-size: 100%;
   -ms-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
   -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
   display: none;
}

button {
   cursor: pointer;
}

button::-moz-focus-inner {
   padding: 0;
   border: 0;
}

a,
a:visited {
   text-decoration: none;
}

a:hover {
   text-decoration: none;
}

ul li {
   list-style: none;
}

img {
   vertical-align: top;
}

@font-face {
   font-family: Travels;
   font-display: swap;
   src: url("../fonts/Travels-Black-Outline.woff2") format("woff2"),
      url("../fonts/Travels-Black-Outline.woff") format("woff");
   font-weight: 100;
   font-style: normal;
}

@font-face {
   font-family: Travels;
   font-display: swap;
   src: url("../fonts/Travels-Black.woff2") format("woff2"), url("../fonts/Travels-Black.woff") format("woff");
   font-weight: 900;
   font-style: normal;
}

@font-face {
   font-family: Travels;
   font-display: swap;
   src: url("../fonts/Travels-Light.woff2") format("woff2"), url("../fonts/Travels-Light.woff") format("woff");
   font-weight: 300;
   font-style: normal;
}

@font-face {
   font-family: Travels;
   font-display: swap;
   src: url("../fonts/Travels-Bold.woff2") format("woff2"), url("../fonts/Travels-Bold.woff") format("woff");
   font-weight: 700;
   font-style: normal;
}

@font-face {
   font-family: Travels;
   font-display: swap;
   src: url("../fonts/Travels-Regular.woff2") format("woff2"), url("../fonts/Travels-Regular.woff") format("woff");
   font-weight: 400;
   font-style: normal;
}

@font-face {
   font-family: Travels;
   font-display: swap;
   src: url("../fonts/Travels-Medium.woff2") format("woff2"), url("../fonts/Travels-Medium.woff") format("woff");
   font-weight: 500;
   font-style: normal;
}

html {
   scroll-behavior: smooth;
}

body {
   background-color: #1d1d1d;
   /* Для вебкит-скроллбара (Chrome, Safari) */
   /* Для ползунка скроллбара */
   /* Для трека скроллбара (фон) */
   /* Для скрытия скроллбара на всех элементах, кроме ползунка и трека */
}

body::-webkit-scrollbar {
   width: 8px;
   /* Ширина скроллбара */
}

body::-webkit-scrollbar-thumb {
   background-color: #555;
   /* Цвет ползунка */
}

body::-webkit-scrollbar-thumb:hover {
   background-color: rgb(135, 135, 135);
}

body::-webkit-scrollbar-track {
   background: #333;
   /* Цвет трека */
}

body ::-webkit-scrollbar {
   display: none;
}

body._lock,
body._popup,
body._preloader {
   overflow: hidden;
}

.preloader {
   background-color: #101010;
   height: 100dvh;
   position: fixed;
   top: 0;
   width: 100vw;
   z-index: 99999;
}

.preloader::before {
   content: "LOADING";
   position: fixed;
   display: block;
   top: 45%;
   left: 50%;
   -webkit-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   transform: translateX(-50%);
   z-index: 99999;
   color: #fff;
   letter-spacing: 1.4em;
   font-size: 16px;
}

.preloader .loader-bar {
   background-color: #009e66;
}

.preloader .loader-bar::before {
   content: "";
   position: absolute;
   display: block;
   top: 50%;
   left: 33.3%;
   width: 33.3%;
   height: 1px;
   background-color: #009e66;
   z-index: 99999;
   -webkit-transform-origin: left;
   -ms-transform-origin: left;
   transform-origin: left;
   -webkit-transform: scaleX(0);
   -ms-transform: scaleX(0);
   transform: scaleX(0);
   -webkit-animation: loaderbar 2s infinite alternate;
   animation: loaderbar 2s infinite alternate;
}

@-webkit-keyframes loaderbar {
   0% {
      -webkit-transform: translateX(0) scaleX(0);
      transform: translateX(0) scaleX(0);
      -webkit-transform-origin: left;
      transform-origin: left;
      left: 33.3%;
      right: auto;
   }

   45% {
      -webkit-transform: translateX(0) scaleX(1);
      transform: translateX(0) scaleX(1);
      -webkit-transform-origin: left;
      transform-origin: left;
      left: 33.3%;
      right: auto;
   }

   50% {
      -webkit-transform: translateX(0) scaleX(1);
      transform: translateX(0) scaleX(1);
      -webkit-transform-origin: right;
      transform-origin: right;
      left: auto;
      right: 33.3%;
   }

   100% {
      -webkit-transform: translateX(0) scaleX(0);
      transform: translateX(0) scaleX(0);
      -webkit-transform-origin: right;
      transform-origin: right;
      left: auto;
      right: 33.3%;
   }
}

@keyframes loaderbar {
   0% {
      -webkit-transform: translateX(0) scaleX(0);
      transform: translateX(0) scaleX(0);
      -webkit-transform-origin: left;
      transform-origin: left;
      left: 33.3%;
      right: auto;
   }

   45% {
      -webkit-transform: translateX(0) scaleX(1);
      transform: translateX(0) scaleX(1);
      -webkit-transform-origin: left;
      transform-origin: left;
      left: 33.3%;
      right: auto;
   }

   50% {
      -webkit-transform: translateX(0) scaleX(1);
      transform: translateX(0) scaleX(1);
      -webkit-transform-origin: right;
      transform-origin: right;
      left: auto;
      right: 33.3%;
   }

   100% {
      -webkit-transform: translateX(0) scaleX(0);
      transform: translateX(0) scaleX(0);
      -webkit-transform-origin: right;
      transform-origin: right;
      left: auto;
      right: 33.3%;
   }
}

.wrapper {
   min-height: 100%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   font-family: Travels;
   font-weight: 700;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   position: relative;
}

.wrapper ::-moz-selection {
   color: white;
   background: #009e66;
}

.wrapper ::selection {
   color: white;
   background: #009e66;
}

.wrapper .bgline1,
.wrapper .bgline2,
.wrapper .bgline3,
.wrapper .bgline4 {
   position: absolute;
   top: 0;
   width: 1px;
   height: 100%;
   background-color: #212529;
   z-index: -1;
}

.wrapper .bgline1 {
   left: 20%;
}

.wrapper .bgline2 {
   left: 40%;
}

.wrapper .bgline3 {
   left: 60%;
}

.wrapper .bgline4 {
   left: 80%;
}

body.light-theme {
   background-color: #f7f7f7;
}

body.light-theme .bgline1,
body.light-theme .bgline2,
body.light-theme .bgline3,
body.light-theme .bgline4 {
   background-color: rgb(224, 224, 224);
}

main {
   -webkit-box-flex: 1;
   -ms-flex: 1 1 auto;
   flex: 1 1 auto;
}

.container {
   width: min(100% - 2rem, 1360px);
   margin-inline: auto;
}

@media (max-width: 1400px) {
   .container {
      width: min(100% - 2rem, 1200px);
   }
}

/*------------------------------------------HEADER-----------------------------------------------*/

.header {
   padding: 30px 0;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 99;
}

.header__body {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   gap: 20px;
}

.header__logo a {
   color: #fff;
   font-size: 24px;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.header__logo a span {
   color: #ff7f50;
}

.header__logo a:hover {
   opacity: 0.8;
}

.menu {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}

.menu__icon {
   display: none;
   will-change: transform;
}

.menu__body {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 15px;
}

.menu__list li {
   overflow: hidden;
}

.menu__link {
   padding: 10px;
   color: #9f9f9f;
   font-weight: 500;
   -webkit-transition: all 0.4s ease 0s;
   -o-transition: all 0.4s ease 0s;
   transition: all 0.4s ease 0s;
   white-space: nowrap;
   position: relative;
}

.menu__link::after {
   content: attr(data-title);
   position: absolute;
   left: 0;
   top: 0;
   padding: 10px;
   display: block;
   opacity: 0;
   width: 100%;
   -webkit-transform: translateY(-100%);
   -ms-transform: translateY(-100%);
   transform: translateY(-100%);
   -webkit-transition: all 0.4s ease 0s;
   -o-transition: all 0.4s ease 0s;
   transition: all 0.4s ease 0s;
   color: coral;
}

.menu__link span {
   display: inline-block;
   -webkit-transition: all 0.4s ease 0s;
   -o-transition: all 0.4s ease 0s;
   transition: all 0.4s ease 0s;
   -webkit-transform: translateY(0px);
   -ms-transform: translateY(0px);
   transform: translateY(0px);
}

.menu__link:hover {
   color: #fff;
}

.menu__link:hover span {
   -webkit-transform: translateY(100px);
   -ms-transform: translateY(100px);
   transform: translateY(100px);
}

.menu__link:hover::after {
   opacity: 1;
   -webkit-transform: translateY(0);
   -ms-transform: translateY(0);
   transform: translateY(0);
}

.menu__link.active {
   color: coral;
}

/* Стили для переключателя */

.toggle-theme {
   height: 100%;
}

.switch {
   position: relative;
   display: inline-block;
   width: 56px;
   height: 30px;
   margin-left: 20px;
   -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
   -webkit-tap-highlight-color: transparent;
}

.switch input {
   display: none;
}

.switch input:checked+.slider {
   background-color: #009e66;
}

.switch input:checked+.slider:before {
   -webkit-transform: translateX(26px);
   -ms-transform: translateX(26px);
   transform: translateX(26px);
}

.slider {
   position: absolute;
   cursor: pointer;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: coral;
   -webkit-transition: 0.4s;
   -o-transition: 0.4s;
   transition: 0.4s;
   border-radius: 34px;
}

.slider.left:before {
   content: "";
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   position: absolute;
   height: 22px;
   width: 22px;
   left: 4px;
   bottom: 4px;
   background: url("../img/header/night.svg") center/60% 60% no-repeat;
   background-color: #1d1d1d;
   -webkit-transition: 0.4s;
   -o-transition: 0.4s;
   transition: 0.4s;
   border-radius: 50%;
}

.slider.right:before {
   content: "";
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   position: absolute;
   height: 22px;
   width: 22px;
   left: 4px;
   bottom: 4px;
   background: url("../img/header/sun.svg") center/80% 80% no-repeat;
   background-color: white;
   -webkit-transition: 0.4s;
   -o-transition: 0.4s;
   transition: 0.4s;
   border-radius: 50%;
}

/*--------------------------------------------HOME---------------------------------------------*/

.socials {
   position: fixed;
   left: 0px;
   top: 50%;
   -webkit-transform: translateY(-30%);
   -ms-transform: translateY(-30%);
   transform: translateY(-30%);
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 30px;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
}

.socials__text {
   color: #fff;
   font-size: 14px;
   -webkit-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
   line-height: 1;
   font-weight: 300;
   margin-bottom: 50px;
}

.socials__line {
   width: 1px;
   height: 80px;
   background-color: #f7f7f7;
}

.socials__link {
   margin-bottom: 15px;
}

.socials__link svg {
   fill: #fff;
}

.no-webp .home {
   background: url("../img/main-bg.png") center/cover no-repeat;
}

.home {
   min-height: 100vh;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   -webkit-box-pack: end;
   -ms-flex-pack: end;
   justify-content: flex-end;
   padding: 150px 0 40px 80px;
}

@media (min-width: 1801px) {
   .home {
      padding: 150px 0 80px 80px;
   }
}

@media (max-width: 1200px) {
   .home {
      padding: 150px 0 80px 20px;
   }
}

.home__title {
   color: #fff;
   line-height: 1.2;
   margin-bottom: 40px;
}

.home__title h1 {
   font-size: 35px;
   font-weight: 300;
}

.home__title h3 {
   font-size: 35px;
   font-weight: 300;
}

.home__title h2 {
   font-size: 56px;
   font-weight: 700;
   margin: 7px 0;
   display: inline-block;
   white-space: nowrap;
}

.home__button {
   margin-bottom: 55px;
   height: 60px;
   z-index: 1;
   position: relative;
}

.home__button a {
   font-size: 18px;
   color: #fff;
   padding: 10px 30px;
   background-color: #009e66;
   position: relative;
   display: -webkit-inline-box;
   display: -ms-inline-flexbox;
   display: inline-flex;
}

.home__button a::after {
   content: "";
   position: absolute;
   display: block;
   top: -3px;
   left: -4px;
   width: 100%;
   height: 100%;
   border: 1px solid #ccc;
   z-index: -1;
}

.home__button a:hover {
   -webkit-transform: translate(-4px, -3px);
   -ms-transform: translate(-4px, -3px);
   transform: translate(-4px, -3px);
}

.home__button a:hover::after {
   border: 1px solid #009e66;
   top: 0;
   left: 0;
}

.home__infoblock {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}

.infoblock__item {
   padding: 0 35px;
}

.infoblock__item:not(:last-child) {
   border-right: 1px solid #fff;
}

.infoblock__item:first-child {
   padding-left: 0;
}

.infoblock__item h5 {
   font-size: 18px;
   color: #fff;
   font-weight: 400;
}

.infoblock__item a {
   font-size: 18px;
   color: #9f9f9f;
   font-weight: 300;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.infoblock__item a:hover {
   color: coral;
}

/* Анимация печатания текста */

@-webkit-keyframes typing {

   0%,
   100% {
      width: 0;
   }

   60%,
   80% {
      width: 90%;
   }
}

@keyframes typing {

   0%,
   100% {
      width: 0;
   }

   60%,
   80% {
      width: 90%;
   }
}

@-webkit-keyframes typingMobile {

   0%,
   100% {
      width: 0;
   }

   60%,
   80% {
      width: 100%;
   }
}

@keyframes typingMobile {

   0%,
   100% {
      width: 0;
   }

   60%,
   80% {
      width: 100%;
   }
}

/* Стиль для плавного появления и исчезания текста */

.typing-text {
   display: inline-block;
   overflow: hidden;
   white-space: nowrap;
   border-right: 4px solid transparent;
}

/* Анимация мигания курсора */

@-webkit-keyframes blink-caret {

   from,
   to {
      border-color: #fff;
   }

   50% {
      border-color: #fff;
   }
}

@keyframes blink-caret {

   from,
   to {
      border-color: #fff;
   }

   50% {
      border-color: #fff;
   }
}

.scrolltop {
   position: fixed;
   right: 40px;
   bottom: 40px;
   z-index: 99;
   -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
   -webkit-tap-highlight-color: transparent;
}

.scrolltop__mouse {
   display: inline-block;
   height: 38px;
   width: 26px;
   border: 2px solid #f7f7f7;
   border-radius: 50px;
   background-color: transparent;
   position: relative;
   -webkit-animation: bounce 3s infinite ease-in-out;
   animation: bounce 3s infinite ease-in-out;
}

.scrolltop__mouse::before {
   content: "";
   width: 2px;
   height: 7px;
   background-color: #f7f7f7;
   position: absolute;
   top: 5px;
   left: 50%;
   -webkit-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   transform: translateX(-50%);
}

.scrolltop__line {
   width: 2px;
   height: 40px;
   background-color: #f7f7f7;
   position: absolute;
   top: 118%;
   left: 50%;
   -webkit-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   transform: translateX(-50%);
   -webkit-animation: altura 3s infinite ease 1.5s;
   animation: altura 3s infinite ease 1.5s;
}

@-webkit-keyframes altura {
   0% {
      height: 50px;
   }

   50% {
      height: 0;
   }

   60% {
      height: 0;
   }

   100% {
      height: 50px;
   }
}

@keyframes altura {
   0% {
      height: 50px;
   }

   50% {
      height: 0;
   }

   60% {
      height: 0;
   }

   100% {
      height: 50px;
   }
}

@-webkit-keyframes bounce {
   0% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
   }

   50% {
      -webkit-transform: translateY(10px);
      transform: translateY(10px);
   }

   100% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
   }
}

@keyframes bounce {
   0% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
   }

   50% {
      -webkit-transform: translateY(10px);
      transform: translateY(10px);
   }

   100% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
   }
}

.no-webp .light-theme .home {
   background: url("../img/main-bg-white.png") center/cover no-repeat;
}

/*--------------------------------------------WHO I AM---------------------------------------------*/

.who {
   color: #fff;
}

.who__body {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 50px;
   padding: 60px 0 60px 40px;
}

.who__image {
   -webkit-box-flex: 0;
   -ms-flex: 0 1 30%;
   flex: 0 1 30%;
}

.who__image img {
   width: 100%;
}

.who__content {
   -webkit-box-flex: 0;
   -ms-flex: 0 1 70%;
   flex: 0 1 70%;
}

.who__title {
   font-size: 24px;
   font-weight: 600;
   color: coral;
}

.who__subtitle h3 {
   font-size: 30px;
   font-weight: 700;
   line-height: 1.6em;
}

.who__text {
   color: #9f9f9f;
   font-weight: 400;
   margin-bottom: 26px;
   border-bottom: 1px solid #9f9f9f;
   padding-bottom: 20px;
}

.who__info {
   display: -ms-grid;
   display: grid;
   -ms-grid-columns: 1fr 1fr;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
   margin-bottom: 20px;
}

.who__info p {
   color: #9f9f9f;
   font-weight: 400;
}

.who__info span {
   color: #fff;
   font-weight: 500;
   display: inline-block;
   margin-right: 7px;
}

.who__download-resume a {
   font-size: 16px;
   color: #fff;
   padding: 10px 30px;
   background-color: #009e66;
   display: -webkit-inline-box;
   display: -ms-inline-flexbox;
   display: inline-flex;
   gap: 7px;
   font-weight: 400;
   position: relative;
   overflow: hidden;
}

.who__download-resume a span {
   display: inline-block;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.who__download-resume a span:nth-child(2) {
   position: absolute;
   bottom: 100%;
   right: 35px;
}

.who__download-resume a:hover span {
   -webkit-transform: translateY(40px);
   -ms-transform: translateY(40px);
   transform: translateY(40px);
}

/*--------------------------------------------RESUME---------------------------------------------*/

.resume__body {
   padding: 100px 0 60px 40px;
}

.resume__title {
   margin-bottom: 60px;
}

.resume__columns {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 80px;
}

.resume__column {
   -webkit-box-flex: 0;
   -ms-flex: 0 1 50%;
   flex: 0 1 50%;
}

.resume__subtitle {
   margin-bottom: 20px;
   font-size: 24px;
   font-weight: 400;
   color: #f7f7f7;
}

.resume__items {
   background-color: #242424;
   border-left: 2px solid coral;
}

.resume__item {
   padding: 30px;
}

.resume__item:not(:last-child) {
   border-bottom: 1px solid #313131;
}

.title h4,
.title h1 {
   font-size: 38px;
   color: #fff;
   font-weight: 700;
   line-height: 100%;
   position: relative;
}

.title h4::before,
.title h1::before {
   content: attr(data-title);
   position: absolute;
   top: -10px;
   left: -20px;
   color: #333;
   -webkit-text-stroke: 1px #1d1d1d;
   font-size: 110px;
   font-weight: 100;
   max-width: 100%;
   white-space: nowrap;
   bottom: -30px;
   text-transform: uppercase;
   z-index: -1;
}

.item-resume {
   position: relative;
}

.item-resume::before {
   content: "";
   display: inline-block;
   position: absolute;
   top: 35px;
   left: 0;
   width: 25px;
   height: 15px;
   background-color: coral;
   -webkit-clip-path: polygon(0% 0%, 65% 1%, 100% 50%, 65% 100%, 0% 100%);
   clip-path: polygon(0% 0%, 65% 1%, 100% 50%, 65% 100%, 0% 100%);
}

.item-resume__title {
   color: #f7f7f7;
   font-size: 18px;
}

.item-resume__text {
   color: #9f9f9f;
   font-size: 15px;
   font-weight: 400;
   line-height: 160%;
}

.item-resume__text span {
   display: block;
   margin-bottom: 7px;
}

/*--------------------------------------------SKILLS---------------------------------------------*/

.skills__body {
   padding: 100px 0 100px 40px;
}

.skills__title {
   margin-bottom: 60px;
}

.skills__items {
   display: -ms-grid;
   display: grid;
   -ms-grid-columns: 1fr 1fr;
   grid-template-columns: 1fr 1fr;
   gap: 30px 60px;
}

.skills__item:first-child span {
   width: 99%;
}

.skills__item:nth-child(2) span {
   width: 99%;
}

.skills__item:nth-child(3) span {
   width: 96%;
}

.skills__item:nth-child(4) span {
   width: 95%;
}

.skills__item:nth-child(5) span {
   width: 70%;
}

.skills__item:nth-child(6) span {
   width: 100%;
}

.skills__name {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   margin-bottom: 7px;
   color: #9f9f9f;
   font-weight: 400;
}

.skills__progressbar {
   width: 100%;
   height: 10px;
   background-color: #313131;
}

.skills__progressbar span {
   display: block;
   width: 80%;
   height: 10px;
   background-color: #009e66;
}

/*--------------------------------------------ОПЫТ---------------------------------------------*/

.experience__body {
   padding: 0px 0 100px 40px;
}

.experience__details {
   padding: 40px;
   background-color: #242424;
   color: #fff;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   gap: 30px;
   border-bottom: 2px solid #009e66;
}

.experience__item {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 15px;
   line-height: 1;
}

.experience__item p {
   font-size: 22px;
   font-weight: 400;
}

.experience__item p:first-child {
   font-size: 45px;
   color: #009e66;
   font-weight: 700;
   -webkit-box-flex: 0;
   -ms-flex: 0 1 35%;
   flex: 0 1 35%;
   text-align: center;
}

/*--------------------------------------------Portf---------------------------------------------*/

.portf__body {
   padding: 100px 0 100px 40px;
}

.portf__title {
   margin-bottom: 100px;
}

.portf__button {
   text-align: center;
}

.portf__button a {
   font-size: 14px;
   font-weight: 500;
   line-height: 1.5em;
   fill: #009e66;
   color: #009e66;
   background-color: rgba(0, 158, 102, 0);
   border-style: solid;
   border-width: 2px;
   border-color: #009e66;
   border-radius: 0 0 0 0;
   padding: 8px 25px;
   display: -webkit-inline-box;
   display: -ms-inline-flexbox;
   display: inline-flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   gap: 7px;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.portf__button a:hover {
   background-color: #009e66;
   color: #fff;
}

.portf__button a:hover svg {
   -webkit-animation: rightArrow 0.8s ease infinite 0s;
   animation: rightArrow 0.8s ease infinite 0s;
}

.portf__grid {
   display: -ms-grid;
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
   gap: 50px;
   margin-bottom: 40px;
}

.portf__item {
   display: block;
   text-align: center;
   position: relative;
}

.portf__item p {
   font-size: 18px;
   color: #fff;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.portf__item:hover p {
   color: #009e66;
}

.portf__item:hover .portf__details {
   display: block;
}

.portf__item:hover img {
   -webkit-filter: brightness(0.1);
   filter: brightness(0.1);
}

.portf__img {
   margin-bottom: 15px;
   -webkit-filter: grayscale(0.5);
   filter: grayscale(0.5);
}

.portf__img img {
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   -o-object-position: bottom;
   object-position: bottom;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.portf__details {
   display: none;
   width: 150px;
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   color: #009e66;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.portf__details p {
   color: inherit;
   font-size: 14px;
}

.portf__details svg {
   width: 30px;
   height: 30px;
}

@-webkit-keyframes rightArrow {

   0%,
   100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
   }

   50% {
      -webkit-transform: translateX(7px);
      transform: translateX(7px);
   }
}

@keyframes rightArrow {

   0%,
   100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
   }

   50% {
      -webkit-transform: translateX(7px);
      transform: translateX(7px);
   }
}

/*--------------------------------------------PRICE---------------------------------------------*/

.home-price__body {
   padding: 100px 0 100px 40px;
}

.home-price__title {
   margin-bottom: 60px;
}

.home-price__cards {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 20px;
}

.card-home-price {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   background-color: #242424;
   padding: 20px 30px;
   text-align: center;
}

.card-home-price__icon {
   color: #009e66;
   margin-bottom: 25px;
}

.card-home-price__icon svg {
   width: 50px;
   height: 50px;
}

.card-home-price__name {
   margin-bottom: 15px;
   font-size: 24px;
   color: #fff;
}

.card-home-price__price {
   margin-bottom: 20px;
   font-size: 22px;
   color: #009e66;
}

.card-home-price__text {
   -webkit-box-flex: 1;
   -ms-flex: 1 1 auto;
   flex: 1 1 auto;
   margin-bottom: 50px;
   font-size: 15px;
   color: #9f9f9f;
   font-weight: 400;
}

.card-home-price__text p:not(:last-child) {
   margin-bottom: 12px;
}

.card-home-price__button {
   margin-bottom: 20px;
}

.card-home-price__button a {
   font-size: 14px;
   font-weight: 500;
   line-height: 1.5em;
   color: #fff;
   background-color: #009e66;
   padding: 8px 25px;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.card-home-price__button a:hover {
   color: #009e66;
   background-color: transparent;
   border: 1px solid #009e66;
}

/*--------------------------------------------ОТЗЫВЫ---------------------------------------------*/

.testimonials__body {
   padding: 100px 0 100px 40px;
}

.testimonials__title {
   margin-bottom: 60px;
}

.testimonials__write {
   text-align: center;
   margin-top: 15px;
}

.testimonials__button {
   display: inline-block;
   padding: 10px 20px;
   color: #fff;
   background-color: #009e66;
   border: 1px solid transparent;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   font-family: Travels;
}

.testimonials__button:hover {
   cursor: pointer;
   background-color: transparent;
   border: 1px solid #009e66;
}

.testimonials__popup {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   display: none;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   background-color: rgba(0, 0, 0, 0.9);
   overflow-y: scroll;
   z-index: 2;
   padding: 40px 0;
}

.testimonials__popup form {
   max-width: 800px;
   height: auto;
   background-color: #232323;
   color: #9f9f9f;
   padding: 60px 40px 40px;
   overflow: auto;
   position: relative;
}

.testimonials__popup form .close-popup {
   position: absolute;
   top: 20px;
   right: 20px;
   cursor: pointer;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.testimonials__popup form .close-popup:hover {
   -webkit-transform: translateY(-4px) rotate(180deg);
   -ms-transform: translateY(-4px) rotate(180deg);
   transform: translateY(-4px) rotate(180deg);
}

.testimonials__popup label,
.testimonials__popup input,
.testimonials__popup select,
.testimonials__popup textarea {
   margin-bottom: 10px;
   font-size: 16px;
}

.testimonials__popup input[type="text"],
.testimonials__popup input[type="email"],
.testimonials__popup select,
.testimonials__popup textarea {
   width: 100%;
   padding: 8px;
   border-radius: 4px;
   border: 1px solid #ccc;
}

.testimonials__popup input:focus,
.testimonials__popup textarea:focus {
   -webkit-box-shadow: 0 0 10px #009e66;
   box-shadow: 0 0 10px #009e66;
}

.testimonials__popup textarea {
   resize: none;
}

.testimonials__popup input[type="submit"],
.testimonials__popup button {
   background-color: #009e66;
   color: white;
   padding: 10px 20px;
   cursor: pointer;
   font-size: 16px;
}

.testimonials__popup button {
   background-color: rgb(214, 54, 54);
}

.testimonials__popup button:hover {
   background-color: rgb(169, 34, 34);
}

.testimonials__popup input[type="submit"]:hover {
   background-color: #016b46;
}

.testimonials__popup ul.gender-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.testimonials__popup .form-btns {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: reverse;
   -ms-flex-direction: row-reverse;
   flex-direction: row-reverse;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
}

.testimonials__popup ul.gender-list li {
   display: inline-block;
   margin-right: 10px;
   cursor: pointer;
}

.testimonials__popup ul.gender-list li label {
   display: -webkit-inline-box;
   display: -ms-inline-flexbox;
   display: inline-flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   padding: 7px;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   border: 2px solid #ccc;
   line-height: 30px;
   text-align: center;
   cursor: pointer;
   font-size: 12px;
   font-weight: 400;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.testimonials__popup ul.gender-list li label:hover {
   border-color: #009e66;
   color: #009e66;
}

.testimonials__popup ul.gender-list li input[type="radio"] {
   display: none;
}

.testimonials__popup ul.gender-list li input[type="radio"]:checked+label {
   border-color: #009e66;
   color: #009e66;
}

.swiper-wrapper {
   padding: 40px 0;
}

.swiper-slide {
   height: auto;
}

.swiper-scrollbar-drag {
   background-color: rgb(94, 94, 94);
}

.swiper-pagination-bullet-active {
   background-color: #009e66;
}

.testimonial {
   padding: 30px;
   background-color: #242424;
   color: #9f9f9f;
   margin-right: 20px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   height: 100%;
}

.testimonial__title {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 20px;
}

.testimonial__author {
   -webkit-box-flex: 1;
   -ms-flex: 1 1 auto;
   flex: 1 1 auto;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 15px;
}

.testimonial__author-img {
   width: 65px;
   height: 65px;
   border-radius: 50%;
}

.testimonial__author-img img {
   width: 100%;
   height: 100%;
   -o-object-fit: contain;
   object-fit: contain;
}

.testimonial__author-name {
   margin-bottom: 20px;
}

.testimonial__author-name p:first-child {
   font-size: 16px;
   color: #fff;
}

.testimonial__author-name p:nth-child(2) {
   font-size: 14px;
   color: #fff;
}

.testimonial__author-name span {
   font-size: 14px;
   color: #777;
}

.testimonial__icon {
   -webkit-box-flex: 0;
   -ms-flex: 0 0 15%;
   flex: 0 0 15%;
}

.testimonial__icon svg {
   width: 100%;
   height: 100%;
   color: #009e66;
}

.testimonial__text {
   line-height: 1.95;
   font-weight: 400;
   -webkit-box-flex: 1;
   -ms-flex: 1 1 auto;
   flex: 1 1 auto;
}

.testimonial__text button {
   display: block;
   background-color: transparent;
   background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(36, 36, 36, 0)), to(#242424));
   background-image: -o-linear-gradient(top, rgba(36, 36, 36, 0), #242424);
   background-image: linear-gradient(to bottom, rgba(36, 36, 36, 0), #242424);
   text-align: center;
   width: 100%;
   -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
   -webkit-tap-highlight-color: transparent;
}

.testimonial__text button.active svg {
   -webkit-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
   transform: rotate(180deg);
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.testimonial__text svg {
   width: 20px;
   height: 20px;
   color: #009e66;
}

.testimonial__text-content {
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   overflow: hidden;
}

/*--------------------------------------------footer---------------------------------------------*/

.footer {
   background-color: rgb(18, 18, 18);
}

.footer__body {
   padding: 30px 0 30px 30px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   gap: 30px;
}

.footer__menu ul {
   display: -ms-grid;
   display: grid;
   -ms-grid-columns: 1fr 1fr;
   grid-template-columns: 1fr 1fr;
   -webkit-column-gap: 50px;
   -moz-column-gap: 50px;
   column-gap: 50px;
   row-gap: 8px;
}

.footer__menu a {
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   color: #f7f7f7;
   white-space: nowrap;
}

.footer__menu a:hover {
   color: coral;
}

.footer .header__logo {
   z-index: 0;
}

.copyright {
   background-color: rgb(12, 12, 12);
   color: #ddd;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   padding: 15px 5px;
   font-size: 14px;
}

/*--------------------------------------------РАБОТЫ---------------------------------------------*/

.cases {
   padding: 200px 0 100px 80px;
}

.cases__title {
   margin-bottom: 80px;
}

.cases__grid {
   display: -ms-grid;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 70px;
}

.case {
   position: relative;
   text-align: center;
}

.case__image:hover p {
   color: #009e66;
}

.case__image:hover .case__name {
   color: #009e66;
}

.case__image:hover .case__details {
   display: block;
}

.case__image:hover img {
   -webkit-filter: brightness(0.1);
   filter: brightness(0.1);
}

.case__image {
   margin-bottom: 15px;
   -webkit-filter: grayscale(0.5);
   filter: grayscale(0.5);
}

.case__image img {
   width: 100%;
   height: 100%;
   -o-object-fit: contain;
   object-fit: contain;
   -o-object-position: bottom;
   object-position: bottom;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.case__details {
   display: none;
   width: 150px;
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   color: #009e66;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.case__details p {
   color: inherit;
   font-size: 14px;
}

.case__details svg {
   width: 30px;
   height: 30px;
}

.case__name {
   color: #fff;
   transition: all 0.3s ease 0s;
}

.case__name:hover {
   color: #009e66;
}

/*--------------------------------------------ABOUT---------------------------------------------*/

.about {
   padding-top: 200px;
}

.about__title {
   padding-left: 80px;
}

.bio {
   padding: 40px 0 40px 80px;
}

.bio__title {
   color: coral;
   margin-top: 40px;
   margin-bottom: 20px;
   padding-left: 20px;
}

.bio__columns {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 50px;
}

.bio__column {
   -webkit-box-flex: 0;
   -ms-flex: 0 1 50%;
   flex: 0 1 50%;
   color: #f7f7f7;
   padding: 15px;
}

.bio__subtitle {
   margin-bottom: 15px;
   font-weight: 700;
}

.bio__blocks {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 30px;
   padding: 0px 0 30px 0;
}

.bio__block {
   -webkit-box-flex: 0;
   -ms-flex: 0 1 33%;
   flex: 0 1 33%;
   padding: 30px;
   background-color: #333;
}

.advantages__name {
   font-weight: 300;
}

.advantages__name span {
   color: #009e66;
   font-weight: 700;
}

.advantages__text {
   color: #9f9f9f;
   padding-left: 20px;
   margin-bottom: 20px;
}

.block-bio__icon {
   margin-bottom: 20px;
   color: #009e66;
}

.block-bio__icon svg {
   width: 60px;
   height: 60px;
}

.block-bio__name {
   margin-bottom: 10px;
   font-size: 20px;
   color: #f7f7f7;
}

.block-bio__text {
   font-size: 15px;
   color: #9f9f9f;
   line-height: 1.7;
   font-weight: 400;
}

/*--------------------------------------------КОНТАКТЫ---------------------------------------------*/

.contacts__body {
   padding: 200px 0 100px 40px;
}

.contacts__title {
   margin-bottom: 70px;
}

.contacts__title h1::before {
   font-size: 110px;
}

.contacts__content {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: end;
   -ms-flex-align: end;
   align-items: end;
   gap: 30px;
}

.contacts__info {
   -webkit-box-flex: 0;
   -ms-flex: 0 1 50%;
   flex: 0 1 50%;
}

.contacts__form {
   -webkit-box-flex: 0;
   -ms-flex: 0 1 50%;
   flex: 0 1 50%;
   padding-top: 40px;
   color: #fff;
}

.contacts__form input,
.contacts__form textarea {
   background-color: #333 !important;
   display: block;
   width: 100%;
   font-weight: 400;
   font-size: 15px;
   line-height: 1.5;
   background-color: #f2f2f2;
   color: inherit;
   border: none !important;
   border-bottom: 1px solid #545454 !important;
   border-radius: 0;
   height: 44px;
   padding: 9px 14px;
   -moz-appearance: none;
   -webkit-appearance: none;
   appearance: none;
   text-transform: inherit;
   margin-bottom: 40px;
   font-family: Travels;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.contacts__form input:is(:focus, :hover),
.contacts__form textarea:is(:focus, :hover) {
   border-bottom: 1px solid #009e66 !important;
}

.contacts__form input[type="submit"] {
   color: #009e66;
   font-weight: 500;
   margin-bottom: 25px;
   cursor: pointer;
}

.contacts__form input[type="submit"]:hover {
   border-bottom: 1px solid #009e66 !important;
}

.contacts__form textarea {
   height: 130px;
   resize: none;
}

.contacts__form div {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 20px;
}

.contacts__form p {
   color: #9f9f9f;
   margin-bottom: 20px;
}

.info-contacts__title {
   font-size: 20px;
   color: coral;
   margin-bottom: 7px;
}

.info-contacts__subtitle {
   font-size: 15px;
   color: #9f9f9f;
   line-height: 1.7;
   margin-bottom: 15px;
}

.info-contacts__link>* {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
}

.info-contacts__link svg {
   width: 35px;
   height: 35px;
   color: #009e66;
   margin-right: 22px;
}

.info-contacts__value {
   padding: 22px;
   border-left: 2px solid #9f9f9f;
}

.info-contacts__value p {
   color: #f7f7f7;
}

.info-contacts__value span,
.info-contacts__value a {
   color: #9f9f9f;
   font-weight: 400;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.info-contacts__value a:hover {
   color: #009e66;
}

.info-contacts__value-first {
   padding-top: 0;
   margin-top: 22px;
}

.info-contacts__value-last {
   padding-bottom: 0;
   margin-bottom: 22px;
}

@media (min-width: 601px) {
   .home__title h2 br {
      display: none;
   }
}

@media (min-width: 800px) {
   .menu__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 8px;
   }
}

@media (max-width: 1200px) {
   .preloader::before {
      font-size: calc(13px + 3 * ((100vw - 320px) / 880));
   }

   .socials {
      display: none;
   }

   .home__title h1 {
      font-size: calc(25px + 10 * ((100vw - 320px) / 880));
   }

   .home__title h3 {
      font-size: calc(16px + 19 * ((100vw - 320px) / 880));
   }

   .home__title h2 {
      font-size: calc(24px + 32 * ((100vw - 320px) / 880));
   }

   .home__button a {
      font-size: calc(14px + 4 * ((100vw - 320px) / 880));
   }

   .infoblock__item h5 {
      font-size: calc(14px + 4 * ((100vw - 320px) / 880));
   }

   .infoblock__item a {
      font-size: calc(14px + 4 * ((100vw - 320px) / 880));
   }

   .who__title {
      font-size: calc(18px + 6 * ((100vw - 320px) / 880));
   }

   .who__subtitle h3 {
      font-size: calc(22px + 8 * ((100vw - 320px) / 880));
   }

   .who__download-resume a {
      font-size: calc(14px + 2 * ((100vw - 320px) / 880));
   }

   .resume__body {
      padding-left: 0;
   }

   .resume__columns {
      gap: calc(40px + 40 * ((100vw - 320px) / 880));
   }

   .resume__subtitle {
      font-size: calc(18px + 6 * ((100vw - 320px) / 880));
   }

   .title h4,
   .title h1 {
      font-size: calc(28px + 10 * ((100vw - 320px) / 880));
   }

   .title h4::before,
   .title h1::before {
      font-size: calc(58px + 52 * ((100vw - 320px) / 880));
   }

   .item-resume__title {
      font-size: calc(16px + 2 * ((100vw - 320px) / 880));
   }

   .item-resume__text {
      font-size: calc(12px + 3 * ((100vw - 320px) / 880));
   }

   .skills__body {
      padding-left: 0;
   }

   .skills__items {
      gap: calc(20px + 10 * ((100vw - 320px) / 880));
   }

   .experience__body {
      padding-left: 0;
   }

   .experience__details {
      padding: calc(20px + 20 * ((100vw - 320px) / 880));
   }

   .experience__item p {
      font-size: calc(16px + 6 * ((100vw - 320px) / 880));
   }

   .experience__item p:first-child {
      font-size: calc(35px + 10 * ((100vw - 320px) / 880));
   }

   .portf__body {
      padding-left: 0;
   }

   .portf__item p {
      font-size: calc(16px + 2 * ((100vw - 320px) / 880));
   }

   .light-theme .portf__item p {
      font-size: calc(16px + 2 * ((100vw - 320px) / 880));
   }

   .home-price__body {
      padding-left: 0;
   }

   .card-home-price__name {
      font-size: calc(20px + 4 * ((100vw - 320px) / 880));
   }

   .card-home-price__price {
      font-size: calc(18px + 4 * ((100vw - 320px) / 880));
   }

   .card-home-price__text {
      font-size: calc(13px + 2 * ((100vw - 320px) / 880));
   }

   .testimonials__body {
      padding-left: 0;
   }

   .testimonials__popup label,
   .testimonials__popup input,
   .testimonials__popup select,
   .testimonials__popup textarea {
      font-size: calc(13px + 3 * ((100vw - 320px) / 880));
   }

   .testimonials__popup input[type="submit"],
   .testimonials__popup button {
      font-size: calc(13px + 3 * ((100vw - 320px) / 880));
   }

   .cases {
      padding-left: 0;
   }

   .light-theme .cases {
      padding-left: 0;
   }

   .about__title {
      padding-left: 0;
   }

   .bio {
      padding-left: 0;
   }

   .block-bio__name {
      font-size: calc(17px + 3 * ((100vw - 320px) / 880));
   }

   .block-bio__text {
      font-size: calc(13px + 2 * ((100vw - 320px) / 880));
   }

   .contacts__body {
      padding-left: 0;
   }

   .contacts__title h1::before {
      font-size: calc(44px + 66 * ((100vw - 320px) / 880));
   }
}

@media (max-width: 1000px) {
   .home {
      padding: 150px 0 40px 5px;
   }

   .who__body {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 30px;
      padding-left: 0;
   }

   .who__image {
      border-radius: 50%;
      overflow: hidden;
   }

   .who__image img {
      aspect-ratio: 1/1;
      -o-object-fit: cover;
      object-fit: cover;
   }

   .testimonials__popup {
      padding: 40px 15px;
   }
}

.webp .home {
   background: url(../img/hero.png) center/cover no-repeat;
}

.light-theme .home {
   background: url(../img/main-bg-white.webp) center/cover no-repeat;
}

@media (max-width: 900px) {
   .experience__details {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
   }

   .home-price__cards {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
   }
}

@media (max-width: 800px) {

   .wrapper .bgline3,
   .wrapper .bgline4 {
      display: none;
   }

   .wrapper .bgline1 {
      left: 33%;
   }

   .wrapper .bgline2 {
      left: 66%;
   }

   .header {
      background-color: #000;
      padding: 10px 0;
   }

   .header::before {
      content: "";
      background-color: #000;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
   }

   .header__logo {
      position: relative;
      z-index: 2;
   }

   .header__logo a {
      font-size: 20px;
   }

   .menu__icon {
      display: block;
      width: 50px;
      height: 50px;
      position: relative;
      z-index: 2;
   }

   .menu__icon::before,
   .menu__icon::after,
   .menu__icon span {
      height: 2px;
      position: absolute;
      background-color: #ccc;
      border-radius: 3px;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      width: 100%;
   }

   .menu__icon::before,
   .menu__icon::after {
      content: "";
      left: 0;
   }

   .menu__icon::before {
      top: 10px;
   }

   .menu__icon::after {
      bottom: 10px;
   }

   .menu__icon span {
      top: 23px;
      right: 0;
      width: 70%;
   }

   .menu__icon._active::before {
      top: 23px;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      background-color: #fff;
   }

   .menu__icon._active::after {
      top: 23px;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
      background-color: #fff;
   }

   .menu__icon._active span {
      display: none;
   }

   .menu__body {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      padding: 150px 15px 10px 15px;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      overflow: auto;
      background-color: #222;
      opacity: 0;
      pointer-events: none;
      -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
      transform: translateY(-30px);
      z-index: 1;
   }

   .menu__body._active {
      opacity: 1;
      pointer-events: visible;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
   }

   .menu__list li:not(:last-child) {
      margin-bottom: 10px;
   }

   .menu__link {
      display: block;
      font-size: 26px;
      width: 100%;
      border-radius: 10px;
      margin-bottom: 25px;
   }

   .menu__link:hover {
      color: #fff;
   }

   .menu__link.active {
      color: #9f9f9f;
   }

   .toggle-theme {
      position: relative;
      z-index: 2;
   }

   .switch {
      margin-left: 8px;
   }

   .light-theme .header {
      background-color: #f7f7f7;
   }

   .light-theme .header::before {
      background-color: #f7f7f7;
   }

   .light-theme .menu__body {
      background-color: #f7f7f7;
   }

   .light-theme .menu__body._active {
      opacity: 1;
      pointer-events: visible;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
   }

   .light-theme .menu__icon::before,
   .light-theme .menu__icon::after,
   .light-theme .menu__icon span {
      background-color: #1d1d1d;
   }

   .light-theme .menu__icon._active::before {
      background-color: #1d1d1d;
   }

   .light-theme .menu__icon._active::after {
      background-color: #1d1d1d;
   }

   .webp .home {
      background: url(../img/hero.png) center/cover no-repeat;
      background-position: 75% 50%;
   }

   .light-theme .home {
      background: url(../img/main-bg-white.webp) center/cover no-repeat;
      background-position: 80% 50%;
   }

   .home__infoblock {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 28px;
   }

   .infoblock__item {
      padding: 0;
      padding-left: 20px;
      border-left: 1px solid #fff;
   }

   .infoblock__item:not(:last-child) {
      border-right: none;
   }

   .infoblock__item:first-child {
      padding-left: 20px;
   }

   .scrolltop {
      right: 20px;
      bottom: 20px;
   }

   .scrolltop__line {
      display: none;
   }

   .light-theme .home {
      background-position: 80% 50%;
   }

   .light-theme .infoblock__item {
      border-left: 1px solid #1d1d1d;
   }

   .testimonial__text {
      line-height: 1.6;
   }

   .contacts__content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
   }

   .info-contacts__link>* {
      padding-left: 22px;
   }
}

@media (max-width: 800px) and (max-width: 1200px) {
   .menu__link {
      font-size: calc(16px + 10 * ((100vw - 320px) / 880));
   }
}

@media (max-width: 768px) {
   .experience__body {
      padding: 60px 0;
   }

   .portf__body {
      padding: 60px 0;
   }

   .home-price__body {
      padding: 60px 0;
   }

   .testimonials__body {
      padding: 60px 0;
   }

   .contacts__body {
      padding: 200px 0 60px 0;
   }
}

@media (max-width: 767px) {
   .testimonial {
      margin-right: 0;
   }

   .bio__blocks {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
   }
}

@media (max-width: 700px) {
   .who__info {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
   }
}

@media (max-width: 650px) {
   .resume__columns {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
   }

   .skills__items {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
   }

   .bio__columns {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 30px;
   }
}

@media (max-width: 600px) {
   .home {
      -ms-flex-pack: distribute;
      justify-content: space-around;
      background-position: 77% 50%;
   }

   .home__title h2 .line-span {
      display: inline-block;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
   }

   .light-theme .home {
      background-position: 77% 50%;
   }

   .skills__body {
      padding-bottom: 0;
   }

   .portf__title {
      margin-bottom: 60px;
   }

   .testimonials__title {
      margin-bottom: 0px;
   }

   .footer__menu ul {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
   }
}

@media (max-width: 500px) {

   .wrapper .bgline2,
   .wrapper .bgline3,
   .wrapper .bgline4 {
      display: none;
   }

   .wrapper .bgline1 {
      left: 50%;
   }
}

@media (max-width: 380px) {
   .info-contacts__link>* {
      padding-left: 15px;
   }

   .info-contacts__link svg {
      width: 25px;
      height: 25px;
      margin-right: 15px;
   }

   .info-contacts__value {
      padding: 15px;
   }

   .info-contacts__value-first {
      margin-top: 15px;
   }

   .info-contacts__value-last {
      margin-bottom: 15px;
   }
}

@media (min-width: 800px) and (max-width: 1200px) {
   .menu__list {
      gap: calc(8px + 0 * ((100vw - 320px) / 880));
   }
}

.light-theme .who {
   color: #222;
}

.light-theme .who__text {
   color: #686868;
}

.light-theme .who__info p {
   color: #686868;
}

.light-theme .who__info span {
   color: #222;
}

.light-theme .who__download-resume a {
   color: #fff;
   background-color: #009e66;
}

.light-theme .header__logo a {
   color: #1d1d1d;
}

.light-theme .menu__link {
   color: #1d1d1d;
}

.light-theme .menu__link::after {
   color: #009e66;
}

.light-theme .menu__link.active {
   color: #009e66;
}

.light-theme .socials__text {
   color: #222222;
   font-weight: 400;
}

.light-theme .socials__line {
   background-color: #222222;
}

.light-theme .socials__link svg {
   fill: #222;
}

.light-theme .home__title {
   color: #1d1d1d;
}

.light-theme .home__button a {
   color: #fff;
   background-color: #009e66;
}

.light-theme .home__button a::after {
   border: 1px solid #686868;
}

.light-theme .home__button a:hover::after {
   border: 1px solid #009e66;
}

.light-theme .infoblock__item:not(:last-child) {
   border-right: 1px solid #1d1d1d;
}

.light-theme .infoblock__item h5 {
   color: #1d1d1d;
}

.light-theme .infoblock__item a {
   color: #686868;
}

.light-theme .infoblock__item a:hover {
   color: coral;
}

.light-theme .scrolltop__mouse {
   border: 2px solid #222;
}

.light-theme .scrolltop__mouse::before {
   background-color: #222;
}

.light-theme .scrolltop__line {
   background-color: #222;
}

.light-theme .resume__subtitle {
   color: #222;
}

.light-theme .resume__items {
   background-color: #f7f7f7;
   -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
   box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
   border-left: 2px solid coral;
}

.light-theme .resume__item:not(:last-child) {
   border-bottom: 1px solid #ddd;
}

.light-theme .title h4,
.light-theme .title h1 {
   color: #222;
}

.light-theme .title h4::before,
.light-theme .title h1::before {
   color: rgb(227, 227, 227);
   -webkit-text-stroke: 1px #f7f7f7;
}

.light-theme .item-resume::before {
   background-color: coral;
}

.light-theme .item-resume__title {
   color: #222;
}

.light-theme .item-resume__text {
   color: #777;
}

.light-theme .skills__name {
   color: #777;
}

.light-theme .skills__progressbar {
   background-color: #dedede;
}

.light-theme .experience__details {
   background-color: #fff;
   color: #222;
   border-bottom: 2px solid #009e66;
   -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
   box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.light-theme .experience__item p:first-child {
   color: #009e66;
}

.light-theme .portf__item p {
   font-size: 18px;
   color: #333;
}

.light-theme .portf__item:hover p {
   color: #009e66;
}

.light-theme .portf__item:hover .portf__details {
   display: block;
}

.light-theme .portf__item:hover img {
   -webkit-filter: brightness(0.3);
   filter: brightness(0.3);
}

.light-theme .portf__img {
   -webkit-filter: grayscale(0.5);
   filter: grayscale(0.5);
}

.light-theme .portf__details {
   color: #fff;
}

.light-theme .portf__details p {
   color: #fff !important;
}

.light-theme .portf__details svg {
   width: 30px;
   height: 30px;
}

.light-theme .card-home-price {
   background-color: #fff;
   -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
   box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}

.light-theme .card-home-price__icon {
   color: #009e66;
}

.light-theme .card-home-price__name {
   color: #222;
}

.light-theme .card-home-price__price {
   color: #009e66;
}

.light-theme .card-home-price__text {
   color: #777;
}

.light-theme .testimonials__popup {
   background-color: rgba(0, 0, 0, 0.9);
}

.light-theme .testimonials__popup form {
   background-color: #f7f7f7;
   color: #222;
}

.light-theme .testimonials__popup form .close-popup svg {
   color: #222;
}

.light-theme .testimonial {
   background-color: #fff;
   border: 1px solid rgba(0, 0, 0, 0.1);
   color: #777;
}

.light-theme .testimonial__author-name p {
   color: #222;
}

.light-theme .testimonial__author-name span {
   color: #222;
}

.light-theme .testimonial__icon svg {
   color: #009e66;
}

.light-theme .testimonial__text button {
   background-color: transparent;
   background-image: none;
}

.light-theme .testimonial__text svg {
   color: #009e66;
}

.light-theme .swiper-scrollbar-drag {
   background-color: #9f9f9f;
}

.light-theme .cases {
   padding: 200px 0 100px 80px;
}

.light-theme .cases__title {
   margin-bottom: 80px;
}

.light-theme .cases__grid {
   display: -ms-grid;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 70px;
}

.light-theme .case:hover p {
   color: #009e66;
}

.light-theme .case:hover .case__name {
   color: #009e66;
}

.light-theme .case:hover img {
   -webkit-filter: brightness(0.4);
   filter: brightness(0.4);
}

.light-theme .case__details {
   color: #fff;
}

.light-theme .case__details p {
   color: #fff !important;
}

.light-theme .case__details svg {
   width: 30px;
   height: 30px;
}

.light-theme .case__name {
   color: #222;
}

.light-theme .bio__title {
   color: coral;
}

.light-theme .bio__column {
   color: #222;
}

.light-theme .bio__block {
   background-color: #fff;
   -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
   box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}

.light-theme .advantages__name {
   font-weight: 400;
}

.light-theme .advantages__name span {
   color: #009e66;
   font-weight: 700;
}

.light-theme .advantages__text {
   color: #888;
}

.light-theme .block-bio__icon {
   color: #009e66;
}

.light-theme .block-bio__name {
   color: #222;
}

.light-theme .block-bio__text {
   color: #888;
}

.light-theme .contacts__form {
   color: #222;
}

.light-theme .contacts__form input,
.light-theme .contacts__form textarea {
   background-color: #f2f2f2 !important;
   border-bottom: 1px solid #545454 !important;
   font-weight: 400;
}

.light-theme .contacts__form input:is(:focus, :hover),
.light-theme .contacts__form textarea:is(:focus, :hover) {
   border-bottom: 1px solid #009e66 !important;
}

.light-theme .contacts__form input[type="submit"] {
   color: #fff;
   background-color: #009e66 !important;
   border-bottom: 1px solid #fff !important;
}

.light-theme .contacts__form input[type="submit"]:hover {
   border-bottom: 1px solid #545454 !important;
}

.light-theme .contacts__form p {
   color: #9f9f9f;
}

.light-theme .info-contacts__title {
   color: coral;
}

.light-theme .info-contacts__subtitle {
   color: #9f9f9f;
}

.light-theme .info-contacts__value {
   border-left: 2px solid #9f9f9f;
}

.light-theme .info-contacts__value p {
   color: #222;
}

.light-theme .info-contacts__value span,
.light-theme .info-contacts__value a {
   color: #777;
   font-weight: 400;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.light-theme .info-contacts__value a:hover {
   color: #009e66;
}

.case__image {
   display: block;
}

.case__links {
   margin-top: 10px;
   display: flex;
   justify-content: space-around;
   align-items: center;
   gap: 10px;
}

.case__links a {
   font-size: 14px;
   font-weight: 400;
   color: #f9f9f9;
   transition: all 0.3s ease 0s;
   text-decoration: underline;
   display: flex;
   align-items: center;
   gap: 6px;
}

.case__links a:hover {
   color: coral;
}