.front {
  background-color: #111;
}
.header {
  margin-top: 30px;
  margin-bottom: 70px;
}
.header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  min-height: 55px;
  align-items: center;
  border-radius: 15px;
  padding: 0 20px;
}
.header .title {
  font-weight: 400;
  font-size: 30px;
  color: #fff;
  margin: 0;
  margin-bottom: -7px;
  z-index: 1;
  text-decoration: none;
}
.header .title:visited, .header .title:active, .header .title:focus, .header .title:hover {
  color: #fff;
  text-decoration: none;
  outline: none;
}
.header .button {
  border: 1px solid #fff;
  border-radius: 10px;
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  padding: 8px 35px;
  background-color: transparent;
  z-index: 1;
  transition: all 0.2s;
}
.header .button:hover, .header .button:active, .header .button:focus {
  background-color: #fff;
  color: #185aa8;
  border-color: #185aa8;
}
.header .blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(33px);
  opacity: 0.7;
  background-color: #185aa8;
}
.header .circle-1 {
  width: 300px;
  height: 300px;
  top: 11%;
  left: -2%;
}
.header .circle-2 {
  width: 300px;
  height: 300px;
  bottom: 24%;
  right: 49%;
}
.header .circle-3 {
  width: 350px;
  height: 350px;
  top: 46%;
  left: 80%;
}
.header .title-not-home {
  padding-left: 30px;
  position: relative;
}
.header .title-not-home svg {
  position: absolute;
  left: 5px;
  bottom: 18px;
  transition: all 0.2s;
}
.header .title-not-home:hover svg, .header .title-not-home:active svg, .header .title-not-home:focus svg {
  left: -3px;
}
section {
  margin-bottom: 100px;
}
.main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.main .left-side .title {
  font-weight: 400;
  font-size: 70px;
  color: #fff;
}
.main .left-side .description {
  font-weight: 400;
  font-size: 20px;
  color: #185aa8;
  text-align: right;
}
.main .right-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main .right-side .title {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  margin-bottom: 15px;
}
.main .right-side .skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0f1627;
  border: 1px solid #192435;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 35px;
}
.main .right-side .skills-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.main .right-side .skill-card {
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #fff;
  padding: 4px 30px 1px 30px;
  border: 1px solid #185aa8;
  border-radius: 100px;
  background-color: transparent;
  flex: 0 0 24.84375%;
  cursor: pointer;
  transition: all 0.2s;
}
.main .right-side .skill-card:hover, .main .right-side .skill-card:active, .main .right-side .skill-card:focus {
  background-color: #262e44;
}
.main .right-side .terminal-container {
  background-color: #101729;
  border-radius: 10px;
  border: 1px solid #1a222f;
  display: flex;
  flex-direction: column;
  padding: 20px;
  max-width: 367px;
  font-family: 'Courier New', monospace !important;
  font-size: 14px;
}
.main .right-side .terminal-container .top-side {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #212b3f;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.main .right-side .terminal-container .red-circle {
  width: 12px;
  height: 12px;
  background-color: #ef4444;
  border-radius: 50%;
  margin-right: 7px;
}
.main .right-side .terminal-container .yellow-circle {
  width: 12px;
  height: 12px;
  background-color: #eab308;
  border-radius: 50%;
  margin-right: 7px;
}
.main .right-side .terminal-container .green-circle {
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border-radius: 50%;
  margin-right: 15px;
}
.main .right-side .terminal-container .terminal-title {
  color: #fff;
  margin: 0;
}
.main .right-side .terminal-container .line {
  color: #fff;
}
.main .right-side .terminal-container .line:not(:last-child) {
  margin-bottom: 12px;
}
.main .right-side .terminal-container .dollar {
  color: #2282f4;
  margin-right: 15px;
}
.main .right-side .terminal-container .green-line {
  margin-bottom: 12px;
  color: #46cf79;
}
.main .right-side .terminal-container .line-1 {
  animation: green-color 4s infinite;
}
.main .right-side .terminal-container .line-2 {
  animation: green-color 4.5s infinite;
}
.main .right-side .terminal-container .line-3 {
  animation: green-color 3s infinite;
}
.main .right-side .blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  background-color: #185aa8;
  z-index: -10;
}
.main .right-side .circle-1 {
  width: 300px;
  height: 300px;
  top: 36%;
  left: 57%;
}
@keyframes green-color {
  0% {
    color: #2a7151;
  }
  50% {
    color: #46cf79;
  }
  100% {
    color: #2a7151;
  }
}
.portfolio .title {
  font-weight: 400;
  font-size: 50px;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}
.portfolio .portfolio-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.portfolio .portfolio-cards .portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 21px 250px 18px 21px;
  margin-right: 65px;
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
}
.portfolio .portfolio-cards .portfolio-card .title {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin: 0;
  margin-bottom: 12px;
}
.portfolio .portfolio-cards .portfolio-card .description {
  font-weight: 400;
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}
.portfolio .portfolio-cards .portfolio-card .date {
  position: absolute;
  right: 16px;
  bottom: 5px;
  font-weight: 400;
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}
.portfolio .portfolio-cards .portfolio-card .crown-icon {
  margin-bottom: 2px;
}
.portfolio .portfolio-cards .portfolio-card .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
  justify-content: flex-end;
}
.portfolio .portfolio-cards .portfolio-card .hover-content .hover-image {
  width: 25%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-100%);
  transition: transform 0.2s ease-out;
  background-color: #111;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.portfolio .portfolio-cards .portfolio-card .hover-content .preview-image {
  width: 60%;
}
.portfolio .portfolio-cards .portfolio-card .hover-content .hover-overlay {
  width: 75%;
  height: 100%;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.portfolio .portfolio-cards .portfolio-card .hover-content .open-text {
  font-size: 12px;
  color: #9ca3af;
}
.portfolio .portfolio-cards .portfolio-card .hover-content.without-logo .hover-overlay {
  width: 100%;
}
.portfolio .portfolio-cards .portfolio-card:hover .hover-image {
  transform: translateX(0);
}
.portfolio .portfolio-cards .portfolio-card:hover .hover-overlay {
  opacity: 1;
}
.portfolio .portfolio-cards .primary-card {
  border-color: #185aa8;
  margin-right: 20px;
}
.feedback {
  position: relative;
}
.feedback .title {
  font-weight: 400;
  font-size: 50px;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}
.feedback .feedback-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.feedback .feedback-content .left-side {
  position: relative;
  background-color: #1f2937;
  border-radius: 10px;
  padding: 25px;
  overflow: hidden;
}
.feedback .feedback-content .left-side .title {
  position: relative;
  font-weight: 400;
  font-size: 25px;
  color: #fff;
  margin: 0;
  margin-bottom: 23px;
  z-index: 1;
}
.feedback .feedback-content .right-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feedback .feedback-content .right-side .top-side {
  position: relative;
  background-color: #1f2937;
  border-radius: 10px;
  padding: 25px;
  overflow: hidden;
}
.feedback .feedback-content .right-side .top-side .main-contacts {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.feedback .feedback-content .right-side .top-side .main-contacts .information {
  position: relative;
  display: flex;
  flex-direction: row;
  z-index: 1;
}
.feedback .feedback-content .right-side .top-side .main-contacts .information img {
  margin-right: 18px;
}
.feedback .feedback-content .right-side .top-side .main-contacts .information .information-name {
  font-weight: 300;
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}
.feedback .feedback-content .right-side .top-side .main-contacts .information .text {
  display: flex;
  flex-direction: column;
}
.feedback .feedback-content .right-side .top-side .main-contacts .information .value {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.feedback .feedback-content .right-side .top-side .main-contacts .information:not(:last-child) {
  margin-bottom: 30px;
}
.feedback .feedback-content .right-side .top-side .links {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 1;
}
.feedback .feedback-content .right-side .top-side .links .link:not(:last-child) {
  margin-right: 20px;
}
.feedback .feedback-content .right-side .top-side .links .link:hover, .feedback .feedback-content .right-side .top-side .links .link:active, .feedback .feedback-content .right-side .top-side .links .link:focus {
  outline: none;
}
.feedback .feedback-content .right-side .bottom-side {
  position: relative;
  background-color: #1f2937;
  border-radius: 10px;
  overflow: hidden;
  padding: 25px;
}
.feedback .feedback-content .right-side .bottom-side .contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.feedback .feedback-content .right-side .bottom-side .contact img {
  position: relative;
  z-index: 1;
}
.feedback .feedback-content .right-side .bottom-side .contact .contact-button {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  padding: 13px 25px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  transition: all 0.2s;
  z-index: 1;
  text-decoration: none;
}
.feedback .feedback-content .right-side .bottom-side .contact .contact-button:hover, .feedback .feedback-content .right-side .bottom-side .contact .contact-button:active, .feedback .feedback-content .right-side .bottom-side .contact .contact-button:focus {
  border-color: #185aa8;
  outline: none;
}
.feedback .feedback-content .right-side .title {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin: 0;
  margin-bottom: 23px;
  text-align: left;
  z-index: 1;
}
.feedback .wpcf7 {
  position: relative;
  z-index: 1;
}
.feedback .wpcf7 label {
  font-weight: 300;
  font-size: 15px;
  color: #fff;
  margin-left: 15px;
}
.feedback .wpcf7 input, .feedback .wpcf7 textarea {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  border: none;
  outline: none;
  background-color: #343f4e;
  border-radius: 10px;
  padding: 10px;
  padding-right: 5px;
}
.feedback .wpcf7 textarea {
  max-height: 145px;
  width: 100%;
}
.feedback .wpcf7 input:not([type="submit"]) {
  width: 100%;
}
.feedback .wpcf7 p:not(:last-child) {
  margin-bottom: 20px;
}
.feedback .wpcf7 .form-submit {
  text-align: center;
}
.feedback .wpcf7 .wpcf7-spinner {
  display: none;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
}
.feedback .wpcf7 .wpcf7-response-output {
  color: #fff;
}
.feedback .wpcf7 .wpcf7-submit {
  border: 1px solid #185aa8;
  padding: 10px 25px;
}
.feedback .blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  background-color: #185aa8;
}
.feedback .circle-1 {
  width: 600px;
  height: 600px;
  top: 9%;
  left: 20%;
}
.feedback .circle-2 {
  width: 600px;
  height: 600px;
  top: 20%;
  left: -53%;
}
.feedback .circle-3 {
  width: 600px;
  height: 600px;
  top: -300%;
  left: -59%;
}
.footer .left-side {
  display: flex;
  flex-direction: column;
}
.footer .left-side .main-title {
  font-weight: 400;
  font-size: 35px;
  color: #fff;
  margin: 0;
  margin-bottom: 70px;
}
.footer .left-side .slogan-container {
  width: 90%;
}
.footer .left-side .slogan-container .slogan {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6523;
  color: #9ca3af;
  margin: 0;
}
.footer .left-side .slogan-container .slogan-reload {
  margin-right: 5px;
  margin-top: -2px;
  cursor: pointer;
  transition: rotate 0.2s;
}
.footer .left-side .slogan-container .slogan-reload.active {
  rotate: 360deg;
}
.footer .right-side {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.footer .right-side .nav-col {
  display: flex;
  flex-direction: column;
}
.footer .right-side .nav-col .nav-title {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
}
.footer .right-side .nav-col .menu {
  margin: 0;
  padding: 0;
}
.footer .right-side .nav-col .menu .menu-item {
  list-style-type: none;
  position: relative;
}
.footer .right-side .nav-col .menu .menu-item a {
  font-weight: 400;
  font-size: 16px;
  color: #9ca3af;
  text-decoration: none;
  cursor: pointer;
}
.footer .right-side .nav-col .menu .menu-item a:visited, .footer .right-side .nav-col .menu .menu-item a:focus, .footer .right-side .nav-col .menu .menu-item a:active, .footer .right-side .nav-col .menu .menu-item a:hover {
  color: #9ca3af;
  text-decoration: none;
}
.footer .right-side .nav-col .menu .menu-item:not(:last-child) {
  margin-bottom: 10px;
}
.footer .right-side .nav-col .menu .menu-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #185aa8;
  transition: all 0.3s;
}
.footer .right-side .nav-col .menu .menu-item:hover::before {
  width: 100%;
}
.footer .right-side .nav-col .contact-container .description {
  font-weight: 400;
  font-size: 16px;
  color: #9ca3af;
  margin: 0;
}
.footer .right-side .nav-col .contact-container .value {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.footer .right-side .nav-col .contact-container .telegram {
  font-weight: 400;
  font-size: 16px;
  color: #9ca3af;
  margin: 0;
  cursor: pointer;
}
.footer .right-side .nav-col .contact-container .telegram-white {
  color: #fff;
}
.footer .right-side .nav-col .contact-container:not(:last-child) {
  margin-bottom: 20px;
}
.footer .right-side .nav-col .language-switcher {
  margin-top: 10px;
}
.footer .right-side .nav-col .language-switcher .change-lang {
  font-size: 16px;
  color: #fff;
}
.footer .right-side .nav-col .language-switcher .change-lang:visited, .footer .right-side .nav-col .language-switcher .change-lang:focus, .footer .right-side .nav-col .language-switcher .change-lang:active {
  color: #fff;
  outline: none;
}
.footer .right-side .nav-col:not(:last-child) {
  margin-right: 80px;
}
@keyframes background-green-color {
  0% {
    background-color: #2a7151;
  }
  50% {
    background-color: #46cf79;
  }
  100% {
    background-color: #2a7151;
  }
}
.about-me {
  background-color: #111;
}
.about-me .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 100px;
}
.about-me .about-title {
  font-weight: 400;
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin: 0;
}
.about-me .subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #9ca3af;
  text-align: center;
  margin: 0;
  margin-bottom: 80px;
}
.about-me .block {
  background-image: linear-gradient(0deg, transparent 24%, #1b1d1d 25%, #1b1d1d 26%, transparent 27%, transparent 74%, #1b1d1d 75%, #1b1d1d 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, #1b1d1d 25%, #1b1d1d 26%, transparent 27%, transparent 74%, #1b1d1d 75%, #1b1d1d 76%, transparent 77%, transparent);
  background-size: 55px 55px;
  border: 1px solid #1b1d1d;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 50px;
}
.about-me .block .title {
  font-weight: 400;
  font-size: 28px;
  color: #fff;
  margin: 0;
  margin-bottom: 20px;
  text-align: left;
}
.about-me .block .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #9ca3af;
  margin: 0;
}
.about-me .block .links {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 1;
}
.about-me .block .links .link:not(:last-child) {
  margin-right: 20px;
}
.about-me .block .description-white {
  color: #fff;
}
.about-me .block .achievement {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.about-me .block .achievement .image {
  margin-right: 10px;
}
.about-me .block .achievement .title {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin: 0;
  text-align: left;
  margin-bottom: 5px;
  display: flex;
  flex-direction: row;
}
.about-me .block .achievement .description {
  line-height: 1;
}
.about-me .block .achievement .year {
  font-weight: 400;
  font-size: 12px;
  color: #185aa8;
  border: 1px solid #185aa8;
  border-radius: 100px;
  padding: 3px 10px 0 10px;
  margin: 0;
  margin-bottom: 3px;
  margin-left: 5px;
}
.about-me .block .achievement .text {
  display: flex;
  flex-direction: column;
}
.about-me .block .achievement:not(:last-child) {
  margin-bottom: 30px;
}
.about-me .block .skills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.about-me .block .skills .skill {
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  border: 1px solid #185aa8;
  border-radius: 100px;
  padding: 4px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.about-me .block .skills .skill:not(:last-child) {
  margin-right: 15px;
}
.about-me .block .skills .skill:hover, .about-me .block .skills .skill:active, .about-me .block .skills .skill:focus {
  background-color: #262e44;
}
.about-me .block .info {
  display: flex;
  flex-direction: row;
}
.about-me .block .info .image {
  margin-right: 10px;
}
.about-me .block .info .text {
  display: flex;
  flex-direction: column;
}
.about-me .block .info .text .description {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #9ca3af;
  margin-bottom: 10px;
}
.about-me .block .info .text .value {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.about-me .block .info .text .status {
  display: block;
  animation: background-green-color 2s infinite;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-left: 7px;
}
.about-me .block .info:not(:last-child) {
  margin-bottom: 30px;
}
.about-me .block .interests {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.about-me .block .interests .interest {
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  border: 1px solid #185aa8;
  border-radius: 100px;
  padding: 4px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.about-me .block .interests .interest:not(:last-child) {
  margin-right: 15px;
}
.about-me .block .interests .interest:hover, .about-me .block .interests .interest:active, .about-me .block .interests .interest:focus {
  background-color: #262e44;
}
.custom-modal section {
  margin: 0;
}
.custom-modal .feedback {
  margin-top: 10px;
}
.custom-modal .custom-modal-container .title {
  font-weight: 400;
  font-size: 30px;
  color: #fff;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}
.custom-modal .custom-modal-container .swiper {
  border-radius: 15px;
  margin-right: 20px;
}
.custom-modal .custom-modal-container .subtitle {
  font-weight: 400;
  font-size: 18px;
  color: #9ca3af;
}
.custom-modal .custom-modal-container .date {
  font-weight: 400;
  font-size: 16px;
  color: #9ca3af;
}
.custom-modal .custom-modal-container .top-content {
  display: flex;
  flex-direction: row;
  margin-bottom: 40px;
}
.custom-modal .custom-modal-container .top-content .right-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.custom-modal .custom-modal-container .top-content .description {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
.custom-modal .custom-modal-container .top-content .link a {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
.custom-modal .custom-modal-container .top-content .link a:visited {
  color: #fff;
}
.custom-modal .custom-modal-container .top-content .link:hover, .custom-modal .custom-modal-container .top-content .link:active, .custom-modal .custom-modal-container .top-content .link:focus {
  box-shadow: none;
}
.custom-modal .custom-modal-container .top-content .skills {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}
.custom-modal .custom-modal-container .top-content .skills .skills-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.custom-modal .custom-modal-container .top-content .skills .skills-cards .skill-card {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  border: 1px solid #185aa8;
  border-radius: 100px;
  padding: 4px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.custom-modal .custom-modal-container .top-content .skills .skills-cards .skill-card:not(:last-child) {
  margin-right: 15px;
}
.custom-modal .custom-modal-container .top-content .skills .skills-cards .skill-card:hover, .custom-modal .custom-modal-container .top-content .skills .skills-cards .skill-card:active, .custom-modal .custom-modal-container .top-content .skills .skills-cards .skill-card:focus {
  background-color: #262e44;
}
.custom-modal .custom-modal-container .bottom-content .description {
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}
.custom-modal .custom-modal-container .bottom-content .work-list {
  margin: 0;
  padding-bottom: 0;
  padding-left: 15px;
}
.custom-modal .custom-modal-container .bottom-content .work {
  list-style-type: none;
  font-weight: 400;
  font-size: 13px;
}
#can-copy {
  cursor: pointer;
}
@media (max-width: 1200px) {
  .portfolio .portfolio-cards .portfolio-card {
    padding-right: 160px;
  }
}
@media (max-width: 992px) {
  .main {
    flex-direction: column;
    align-items: center;
  }
  .main .left-side .description {
    margin-bottom: 40px;
  }
  .main .right-side .circle-1 {
    top: 50%;
    left: 33%;
  }
  .portfolio .portfolio-cards .portfolio-card {
    margin-right: 20px;
    padding-right: 120px;
  }
  .portfolio .portfolio-cards .portfolio-card .title {
    font-size: 18px;
  }
  .portfolio .portfolio-cards .portfolio-card .description {
    font-size: 12px;
  }
  .feedback .feedback-content {
    flex-direction: column;
  }
  .feedback .feedback-content .left-side {
    margin-bottom: 30px;
  }
  .feedback .feedback-content .right-side .top-side {
    margin-bottom: 30px;
  }
  .custom-modal-content {
    height: 85%;
    overflow: auto;
  }
  .custom-modal .custom-modal-container .top-content {
    flex-direction: column;
  }
  .custom-modal .custom-modal-container .top-content .left-side {
    margin-bottom: 20px;
  }
  .custom-modal .custom-modal-container .top-content .right-side .skills {
    margin-bottom: 20px;
  }
  .custom-modal .custom-modal-container .top-content .right-side .short-description {
    margin-bottom: 20px;
  }
  .about-me .block .title {
    font-size: 20px;
  }
  .about-me .block .description {
    font-size: 14px;
  }
  .about-me .block .achievement .title {
    align-items: center;
    font-size: 16px;
  }
  .about-me .block .interests .interest {
    text-align: center;
  }
  .about-me .block .info .text .vaLue {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer .container-fluid {
    flex-direction: column;
    align-items: center;
    background-position: bottom center;
  }
  .footer .container-fluid .left-side {
    align-items: center;
    margin-bottom: 50px;
  }
  .footer .container-fluid .left-side .main-title {
    margin-bottom: 20px;
  }
  .footer .container-fluid .left-side .slogan-container {
    width: unset;
  }
  .footer .container-fluid .right-side {
    justify-content: center;
  }
  .portfolio .portfolio-cards .portfolio-card {
    width: 100%;
  }
  .about-me .content {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .about-me .subtitle {
    margin-bottom: 40px;
  }
  .about-me .block {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .header {
    margin-top: 0;
    margin-bottom: 40px;
  }
  .header .container {
    flex-direction: column;
    padding: 15px 0;
  }
  .header .container .title {
    margin-bottom: 10px;
  }
  section {
    margin-bottom: 50px;
  }
  .main .left-side .title {
    font-size: 40px;
  }
  .main .right-side .skills-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .main .right-side .circle-1 {
    left: 0;
  }
  .portfolio .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .portfolio .portfolio-cards .portfolio-card .title {
    font-size: 16px;
  }
  .portfolio .portfolio-cards .portfolio-card .description {
    font-size: 11px;
  }
  .feedback .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .feedback .feedback-content .right-side .bottom-side .contact {
    flex-direction: column;
  }
  .feedback .feedback-content .right-side .bottom-side .contact img {
    margin-bottom: 20px;
  }
  .footer {
    text-align: center;
  }
  .footer .container-fluid .right-side {
    flex-direction: column;
  }
  .footer .container-fluid .nav-col:not(:last-child) {
    margin: 0;
    margin-bottom: 50px;
  }
  .custom-modal-content {
    width: 100%;
    height: 100%;
  }
}
