@font-face {
  font-family: "JetBrainsMono-Regular";
  src: url('../fonts/JetBrainsMono-Regular.otf');
}

@font-face {
  font-family: "JetBrainsMono-BoldItalic";
  src: url('../fonts/JetBrainsMono-BoldItalic.otf');
}

@font-face {
  font-family: "JetBrainsMono-ExtraBold";
  src: url('../fonts/JetBrainsMono-ExtraBold.otf');
}

@font-face {
  font-family: "JetBrainsMono-ExtraBoldItalic";
  src: url('../fonts/JetBrainsMono-ExtraBoldItalic.otf');
}

@font-face {
  font-family: "JetBrainsMono-ExtraLight";
  src: url('../fonts/JetBrainsMono-ExtraLight.otf');
}

@font-face {
  font-family: "JetBrainsMono-ExtraLightItalic";
  src: url('../fonts/JetBrainsMono-ExtraLightItalic.otf');
}

@font-face {
  font-family: "JetBrainsMono-Italic";
  src: url('../fonts/JetBrainsMono-Italic.otf');
}

@font-face {
  font-family: "JetBrainsMono-Light";
  src: url('../fonts/JetBrainsMono-Light.otf');
}

@font-face {
  font-family: "JetBrainsMono-LightItalic";
  src: url('../fonts/JetBrainsMono-LightItalic.otf');
}

@font-face {
  font-family: "JetBrainsMono-Medium";
  src: url('../fonts/JetBrainsMono-Medium.otf');
}

@font-face {
  font-family: "JetBrainsMono-MediumItalic";
  src: url('../fonts/JetBrainsMono-MediumItalic.otf');
}

@font-face {
  font-family: "JetBrainsMono-SemiBold";
  src: url('../fonts/JetBrainsMono-SemiBold.otf');
}


body,
html {
  padding: 0 !important;
  margin: 0 !important;
  height: 100vh !important;
  width: 100% !important;
  overflow: hidden;
}


/* header */

/* header desktop */

header {
  z-index: 99;
}

#header-desktop {
  padding: 1.7rem 5rem 1.8rem 5rem;
  position: absolute;
  width: 100%;
}
#header-desktop .header-logo {
  width: 9.5rem;
  height: 2.25rem;
}

#header-desktop .header-logo #logo-black {
  display: none;
}

#header-desktop .header-logo img {
  width: 100%;
  height: 100%;
}

#header-desktop .header-link-list-wrapper {
  list-style-type: none;
  display: flex;
  justify-content: end;
}

#header-desktop .header-link-list-wrapper .item {
  color: white;
  font-size: 20px;
  font-family: "JetBrainsMono-Regular";
}

#header-desktop .header-link-list-wrapper .item.black {
  color: black;
}

#header-desktop .header-link-list-wrapper .item:hover {
  cursor: pointer;
}

#header-desktop .header-link-list-wrapper .item:nth-child(2) {
  margin: 0 5rem;
}

#progress-bar-desktop {
  position: absolute;
  z-index: 1;
  top: 40%;
  left: 5%;
}

#progress-bar-desktop .progress-bar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#progress-bar-desktop .progress-bar-wrapper .point-wrapper {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#progress-bar-desktop .progress-bar-wrapper .point-wrapper.active {
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

#progress-bar-desktop .progress-bar-wrapper .point-wrapper .point {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

#progress-bar-desktop .progress-bar-wrapper .point-wrapper .point.active {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  opacity: 1;
}

#progress-bar-desktop .progress-bar-wrapper .point-wrapper.active.dark {
  width: 18px;
  height: 18px;
  background-color: rgba(3, 0, 67, 0.2);
  border-radius: 50%;
}

#progress-bar-desktop .progress-bar-wrapper .point-wrapper .point.dark {
  width: 6px;
  height: 6px;
  background-color: rgba(3, 0, 67, 0.2);
  border-radius: 50%;
}

#progress-bar-desktop .progress-bar-wrapper .point-wrapper .point.dark.active {
  width: 6px;
  height: 6px;
  background-color: rgba(3, 0, 67, 1);
  border-radius: 50%;
  opacity: 1;
}



#header-mobile {
  display: none;

  position: absolute;
  width: 100%;
}

#header-mobile .header-logo #logo-black-mob {
  display: none;
}

#header-mobile .menu-burget-btn {
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}

#header-mobile .mobile-menu-list {
  color: white;
  font-family: "JetBrainsMono-Regular";
  font-size: 30px;
  list-style: none;
  margin: 0rem auto;
  padding: 0;
}

#header-mobile .mobile-menu-list li {
  text-align: center;
  margin: 4rem 0;
}

#header-mobile .menu-burget-btn .title {
  color: white;
  font-size: 15px;
  font-family: "JetBrainsMono-Regular";
  margin-right: 1rem;
}

#header-mobile .burger-menu {
  background-color: white;
  width: 2rem;
  height: .3rem;
  border-radius: 50px;
  position: relative;
}

#header-mobile .burger-menu:hover {
  cursor: pointer;
}

#header-mobile .burger-menu::after,
#header-mobile .burger-menu::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: .3rem;
  border-radius: 50px;
  background-color: white;
}

#header-mobile .burger-menu.black::after,
#header-mobile .burger-menu.black::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: .3rem;
  border-radius: 50px;
  background-color: black;
}

#header-mobile .burger-menu::after {
  top: .5rem;
}

#header-mobile .burger-menu::before {
  bottom: .5rem;
}

#header-mobile .mobile-menu-wrapper {
  position: absolute;
  height: 100dvh;
  width: 100%;
  background-image: url('../images/mobile-menu-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #030044;
  top: -100vh;
  transition: .5s ease-in-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#header-mobile .mobile-menu-wrappe-active {
  top: 0 !important;
}

#header-mobile .border-black {
  border: none!important;
}

#header-mobile .mobile-menu-wrapper .close-btn-menu-wrapper {
  display: flex;
  width: 100%;
  justify-content: end;
  padding: 2rem;
}

#header-mobile .mobile-menu-wrapper .close-btn-menu-wrapper .close-btn {
  width: 2rem;
  height: 2px;
  background-color: white;
  transform: rotate(45deg);
  position: relative;
}

#header-mobile .mobile-menu-wrapper .close-btn-menu-wrapper .close-btn::before {
  content: "";
  width: 2rem;
  height: 2px;
  background-color: white;
  transform: rotate(90deg);
  position: absolute;
}

#header-mobile .contact-us-btn {
  border: none;
  outline: none;
  background-color: #CEF65F;
  color: #030044;
  font-family: "JetBrainsMono-Regular";
  padding: 1.5rem 8rem;
  margin: 0 auto 4rem auto;
}

@media only screen and (max-width: 890px) {
  #header-desktop {
    display: none;
  }

  #header-mobile {
    display: block;
  }
}

/* end header descktop */

/* end header */

/* main section */

#main-section-desktop {
  width: 100%;
  height: 100vh;
  background-color: rgba(3, 0, 68, 1);
  position: relative;
}

#main {
  background-color: rgba(3, 0, 68, 1);
}

#main-section-desktop #main-banner-img {
  background-image: url('../images/main-banner-img.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}
 

#main-section-desktop .techworks-logo-svg path {
  fill: rgba(3, 0, 68, 1);
  transition: fill 1s ease-in-out;
}

#main-section-desktop .logo-svg {
  width: 30rem;
  top: -5rem;
  position: absolute;
  left: 2rem;
}

@keyframes expand {
  100% {
    width: 50rem;
  }
}

@keyframes expandBack {
  100% {
    width: 50rem;
  }
  0% {
    width: 30rem;
  }
}

#main-section-desktop .main-wrapper-info {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#main-section-desktop .main-title .first-line-title {
  font-size: 4rem;
  color: white;
  font-family: "JetBrainsMono-Regular";
}

#main-section-desktop .main-title .second-line-title {
  font-size: 4rem;
  color: #CEF65F;
  font-family: "JetBrainsMono-Regular";
}

#main-section-desktop .main-btn-get-started button {
  position: relative;
  z-index: 1;
  background-color: #CEF65F;
  color: black;
  font-family: "JetBrainsMono-Regular";
  font-size: 16px;
  border: none;
  outline: none;
  padding: 2rem 6rem;
  margin-top: 5rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: ease-out 0.5s;
  -webkit-transition: ease-out 0.5s;
  -moz-transition: ease-out 0.5s;
}

#main-section-desktop .main-btn-get-started button:hover {
  cursor: pointer;
}

#main-section-desktop .main-btn-get-started button::after,
#main-section-desktop .main-btn-get-started button::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: .5s;
}

#main-section-desktop .main-btn-get-started button::after {
    top: -9px;
    left: -9px;
    border-top: 3px solid transparent;
    border-left: 3px solid transparent;
}

#main-section-desktop .main-btn-get-started button::before {
    bottom: -9px;
    right: -9px;
    border-bottom: 3px solid transparent;
    border-right: 3px solid transparent;
}

#main-section-desktop .main-btn-get-started button:hover::after,
#main-section-desktop .main-btn-get-started button:hover::before {
    width: 30px;
    height: 30px;
    border-color: #CEF65F;
}

#main-section-desktop .main-svg {
  width: 35rem;
  border-radius: 50%;
  height: 35rem;
  border: 1px solid #FFFFFF40;
  position: relative;
  background-color: rgba(3, 0, 68, 1);
}

#main-section-desktop .main-svg img {
  position: absolute;
  bottom: 0;
  left: -.9rem;
  animation: rotate 15s linear infinite;
}

#main-section-desktop .main-svg-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  position: absolute;
  align-items: center;
  transition: 3s ease-in-out;
}

#main-section-desktop .mouse-body {
  width: 2.5rem;
  height: 3.5rem;
  border-radius: 30px;
  border: 2px solid white;
  position: relative;
  display: flex;
  justify-content: center;
  padding: .3rem;
}

#main-section-desktop .mouse-scroll {
  width: 4px;
  height: 12px;
  border-radius: 30px;
  background-color: white;
  position: relative;
  animation: mouseScrollEvent 2s ease-in-out infinite;
}

@keyframes mouseScrollEvent {
  0% {
    top: .7rem;
  }
  50% {
    top: .2rem;
  }
  100% {
    top: .7rem;
  }
}

#main-section-desktop .mouse-down-wrapper {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#main-section-desktop .mouse-down-top {
  height: .2rem;
  width: 1.5rem;
  margin: 1rem 0;
  position: relative;
}

#main-section-desktop .mouse-down-top:before, 
#main-section-desktop .mouse-down-top:after {
  content: "";
  height: 100%; 
  width: 50%;
  position: absolute; 
  top: 0;
  background: white;
}

#main-section-desktop .mouse-down-top:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

#main-section-desktop .mouse-down-top:after {
  right: 0;
  transform: skew(0deg, -30deg);
}

#main-section-desktop .main-tech-info-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 200px
}

.tech-info .title {
  font-family: "JetBrainsMono-Regular";
  font-size: 80px;
  font-weight: 400;
  line-height: 105.6px;
  letter-spacing: -0.02em;
  text-align: left;
}

.tech-info .info {
  max-width: 649px;
  font-family: "JetBrainsMono-Regular";
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: -0.02em;
  text-align: left;
}

#main-section-desktop .main-tech-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  position: absolute;
  align-items: center;
  background-color:#CEF26A;
  width: 100%;
}

#main-section-desktop .main-tech-wrapper .images-list {
  height: 480px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  grid-gap: 30px;
  justify-items: center;
  align-items: center;
}

#main-section-desktop .main-tech-wrapper img {
  max-height: 100%;
}

#main-section-desktop .main-work-info-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 200px
}

.work-info .title {
  font-family: "JetBrainsMono-Regular";
  font-size: 80px;
  font-weight: 400;
  line-height: 105.6px;
  letter-spacing: -0.02em;
  text-align: left;
}

.work-info .info {
  max-width: 649px;
  font-family: "JetBrainsMono-Regular";
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: -0.02em;
  text-align: left;
}

#main-section-desktop .main-work-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  position: absolute;
  align-items: center;
  width: 100%;
}

#main-section-desktop .main-work-wrapper .images-list {
  /* height: 460px; */
  display: grid;
  grid-template-columns: repeat(2, 200px); 
  grid-gap: 80px;
  justify-items: center;
  align-items: center;
}

#main-section-desktop .main-work-wrapper .images-list .logo{
  padding: 24px 32px 24px 32px;
  width: 200px;
  height: 100px;
  border: 1px;
  display: flex;
  justify-items: center;
  align-items: center;
  border: 1px solid #0000001A;
}

#main-section-desktop .main-work-wrapper img {
  max-width: 100%;
}

#experience{
  background-color: rgba(3, 0, 68, 1);
}

#main-section-desktop .main-experience-info-wrapper {
  height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-left: 150px;
}

.experience-info .title {
  font-family: "JetBrainsMono-Regular";
  font-size: 150px;
  font-weight: 400;
  line-height: 198px;
  letter-spacing: -0.01em;
  text-align: left;
  color: rgba(206, 246, 95, 1);
}

.experience-info .info {
  max-width: 649px;
  font-family: "JetBrainsMono-Regular";
  font-size: 32px;
  font-weight: 400;
  line-height: 42.24px;
  letter-spacing: -0.02em;
  text-align: left;
  color: rgba(255, 255, 255, 1);
}

.experience-content {
  opacity: 0;
  transform: translateY(300px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.experience-info.show .experience-content {
  opacity: 1;
  transform: translateY(0);
}

#main-section-desktop .main-contacts-info-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 200px
}

.contacts-info .title {
  font-family: "JetBrainsMono-Regular";
  font-size: 80px;
  font-weight: 400;
  line-height: 79.2px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 50px;
}

.contacts-info .info {
  max-width: 649px;
  font-family: "JetBrainsMono-Regular";
  font-size: 40px;
  font-weight: 400;
  line-height: 52.8px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #3E39A9;
  margin-bottom: 30px;
}

#main-section-desktop .main-contacts-wrapper {
  height: 100vh;
  display: flex;
  width: 100%;
  background-color: #030144;
  flex-direction: column;
  color: white;
}

#main-section-desktop .main-contacts-wrapper .center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#main-section-desktop .main-contacts-wrapper .center .input-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  padding: 0 40px;
}

#main-section-desktop .main-contacts-wrapper .center .input-container input {
  flex: 1 1 45%;
  box-sizing: border-box;
  padding: 16px 0px 16px 0px;
  gap: 10px;
  border: 0;
  opacity: 0px;
  border-bottom: 2px solid #FFFFFF40;
  background-color: transparent;
  padding: 5px;
  outline: none;
  color:#B9DBEE;
  font-family: "JetBrainsMono-Regular";
  font-size: 18px;
  font-weight: 400;
  line-height: 23.76px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 30px;
}

.input-container input::placeholder {
  color: #B9DBEE; 
  opacity: 1;
}

#main-section-desktop .main-contacts-wrapper .center textarea {
  border: 0;
  opacity: 0px;
  border-bottom: 2px solid #FFFFFF40;
  background-color: transparent;
  padding: 5px;
  outline: none;
  color:#B9DBEE;
  font-family: "JetBrainsMono-Regular";
  font-size: 18px;
  font-weight: 400;
  line-height: 23.76px;
  letter-spacing: -0.02em;
  text-align: left;
  width: calc(100% - 80px);
  height: 90px;
  resize: none;
  margin-bottom: 50px;
}

.center textarea::placeholder {
  color: #B9DBEE; 
  opacity: 1;
}

#main-section-desktop .main-contacts-wrapper .center .contact-btn-info{
  display: flex;
  width: calc(100% - 80px);
  justify-content: space-between;
  justify-items: center;
  align-items: center;
}

#main-section-desktop .main-contacts-wrapper .center .contact-btn-info .info{
  font-family: "JetBrainsMono-Regular";
  font-size: 14px;
  font-weight: 400;
  line-height: 18.48px;
  letter-spacing: -0.02em;
  text-align: left;
  max-width: 366px;
  color: #A3C9DD;
  margin-left: 10px;
}

#main-section-desktop .main-contacts-wrapper .center .contact-btn-info button {
  background-color: #CEF65F;
  color: black;
  font-family: "JetBrainsMono-Regular";
  font-size: 16px;
  border: none;
  padding: 2rem 6rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: ease-out 0.5s;
  -webkit-transition: ease-out 0.5s;
  -moz-transition: ease-out 0.5s;
}

#main-section-desktop .main-contacts-wrapper .center .contact-btn-info button:hover {
  cursor: pointer;
}

#main-section-desktop .main-contacts-wrapper .center .contact-btn-info button::after,
#main-section-desktop .main-contacts-wrapper .center .contact-btn-info button::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: .5s;
}

#main-section-desktop .main-contacts-wrapper .center .contact-btn-info button::after {
    top: -9px;
    left: -9px;
    border-top: 3px solid transparent;
    border-left: 3px solid transparent;
}

#main-section-desktop .main-contacts-wrapper .center .contact-btn-info button::before {
    bottom: -9px;
    right: -9px;
    border-bottom: 3px solid transparent;
    border-right: 3px solid transparent;
}

#main-section-desktop .main-contacts-wrapper .center .contact-btn-info button:hover::after,
#main-section-desktop .main-contacts-wrapper .center .contact-btn-info button:hover::before {
    width: 30px;
    height: 30px;
    border-color: #CEF65F;
}

#main-section-desktop .main-contacts-wrapper .bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  font-family: "JetBrainsMono-Regular";
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #ADD9F1;
  opacity: 70%;
}

.slide-up {
  position: absolute;
  width: 100%;
  animation: slideUp 1s ease-in-out forwards;
}

.slide-out {
  position: absolute;
  width: 100%;
  animation: slideOut 1s ease-in-out forwards;
}

.slide-in {
  position: absolute;
  width: 100%;
  animation: slideIn 1s ease-in-out forwards;
}

.slide-down {
  position: absolute;
  width: 100%;
  animation: slideDown 1s ease-in-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}



#main-section-mobile {
  display: none;
  width: 100%;
  height: 100dvh;
}

#main-mobile {
  width: 100%;
  height: 100%;
  background-color: rgba(3, 0, 68, 1);
}

#main-section-mobile .main-section-wrapper-mobile {
  position: relative;
  width: 100%;
  height: 100%;
}

#main-section-mobile svg {
  max-width: 100%;
  height: auto;
}

#main-section-mobile .techworks-logo-svg path {
  fill: rgba(3, 0, 68, 1);
}

#main-section-mobile .logo-svg {
  /* width: 22.3rem; */
  top: 0rem;
  position: absolute;
  left: 3rem;
  width: 90%;
}

#main-section-mobile .main-wrapper-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 10;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2rem;
}

#main-section-mobile .main-title .first-line-title {
  font-size: 2.3rem;
  color: white;
  font-family: "JetBrainsMono-Regular";
}

#main-section-mobile .main-title .second-line-title {
  font-size: 2.3rem;
  color: #CEF65F;
  font-family: "JetBrainsMono-Regular";
}

#main-section-mobile .main-btn-get-started {
  background-color: #CEF65F;
  color: black;
  font-family: "JetBrainsMono-Regular";
  font-size: 1rem;
  border: none;
  outline: none;
  padding: 1rem 7rem;
  margin-top: 2.5rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: ease-out 0.5s;
  -webkit-transition: ease-out 0.5s;
  -moz-transition: ease-out 0.5s;
}

#main-section-mobile .main-btn-get-started:hover {
  cursor: pointer;
}

#main-section-mobile .main-btn-get-started::after,
#main-section-mobile .main-btn-get-started::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: .5s;
}

#main-section-mobile .main-btn-get-started::after {
    top: -9px;
    left: -9px;
    border-top: 3px solid transparent;
    border-left: 3px solid transparent;
}

#main-section-mobile .main-btn-get-started::before {
    bottom: -9px;
    right: -9px;
    border-bottom: 3px solid transparent;
    border-right: 3px solid transparent;
}

#main-section-mobile .main-btn-get-started:hover::after,
#main-section-mobile .main-btn-get-started:hover::before {
    width: 30px;
    height: 30px;
    border-color: #CEF65F;
}

#main-section-mobile #main-banner-img {
  background-image: url('../images/mobile-main-bg.png');
  background-size: cover;
  background-repeat: no-repeat; 
  width: 100%;
  height: 100%;
  position: absolute;
}

#main-section-mobile .main-svg {
  width: 22.5rem;
  border-radius: 50%;
  height: 22.5rem;
  border: 1px solid #FFFFFF40;
  position: relative;
  background-color: rgba(3, 0, 68, 1);
}

#main-section-mobile .main-svg img {
  position: absolute;
  width: 7rem;
  height: 7rem;
  bottom: 0;
  left: -.5rem;
  animation: rotate 15s linear infinite;
}
 
#main-section-mobile .main-svg-wrapper {
  top: 7rem;
  left: 1rem;
  display: flex;
  justify-content: center;
  position: absolute;
  align-items: center;
  transition: 3s ease-in-out;
}

#main-section-mobile .tech-section-wrapper-mobile {
  position: relative;
  width: 100vw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

#tech-mobile .row-mob {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

#tech-mobile .col-7-mob {
  flex: 7;
  width: 100%;
}

#tech-mobile .col-5-mob {
  flex: 5;
  width: 100%;
}

#main-section-mobile .tech-info-wrapper-mobile {
  height: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  padding: 0 20px;
}

#main-section-mobile .tech-info-wrapper-mobile .tech-title {
  font-family: "JetBrainsMono-Regular";
  font-size: 34px;
  font-weight: 400;
  line-height: 39.78px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 20px;
}

#main-section-mobile .tech-info-wrapper-mobile .tech-info {
  font-family: "JetBrainsMono-Regular";
  font-size: 15px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: -0.02em;
  text-align: left;
}

#main-section-mobile .tech-wrapper-mobile {
  background-color: #CEF26A;
  width: 100%;
  height: 100%;
}

#main-section-mobile .tech-list-wrapper-mobile {
  overflow-x: auto;
  padding: 10px;
  box-sizing: border-box;
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none; /* IE и Edge */
}

#main-section-mobile .tech-list-wrapper-mobile::-webkit-scrollbar {
  display: none;  /* Chrome, Safari и Opera */
}

.tech-list-wrapper-mobile .images-list {
  display: flex;
  gap: 50px;
  margin: 40px 26px 0 0;
}

.tech-list-wrapper-mobile .images-list .tech-group {
  display: flex;
  flex-direction: column; 
  gap: 30px;
}

.tech-list-wrapper-mobile .images-list img {
  width: 182px; 
  height: 100px; 
  object-fit: none;  
  border-radius: 8px;
}

.tech-wrapper-mobile .point-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.tech-wrapper-mobile .point-list .point-wrapper {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
}

.tech-wrapper-mobile .point-list .point-wrapper.active {
  border-radius: 50%;
  background-color: rgba(3, 0, 67, 0.2);
}

.tech-wrapper-mobile .point-list .point {
  background-color: #030043;
  width: 6px;
  height: 6px;
  gap: 0px;
  opacity: 0.5;
  border-radius: 50%;
  z-index: 2; 
  position: relative;
}

.tech-wrapper-mobile .point-list .point.active {
  opacity: 1;
}

#main-section-mobile .work-section-wrapper-mobile {
  position: relative;
  width: 100vw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

#work-mobile .row-mob {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

#work-mobile .col-7-mob {
  flex: 7;
  width: 100%;
}

#work-mobile .col-5-mob {
  flex: 5;
  width: 100%;
}

#main-section-mobile .work-info-wrapper-mobile {
  height: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  padding: 0 20px;
}

#main-section-mobile .work-info-wrapper-mobile .work-title {
  font-family: "JetBrainsMono-Regular";
  font-size: 34px;
  font-weight: 400;
  line-height: 39.78px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 20px;
}

#main-section-mobile .work-info-wrapper-mobile .work-info {
  font-family: "JetBrainsMono-Regular";
  font-size: 15px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: -0.02em;
  text-align: left;
}

#main-section-mobile .work-list-wrapper-mobile{
  width: 100%;
  margin-bottom: 10px;
}

#main-section-mobile .work-wrapper-mobile {
  width: 100%;
  height: 100%;
}

#main-section-mobile .work-list-wrapper-mobile {
  overflow-x: auto;
  padding: 10px;
  box-sizing: border-box;
  scrollbar-width: none;  /* Firefox */
  -ms-overflow-style: none; /* IE и Edge */
}

#main-section-mobile .work-list-wrapper-mobile::-webkit-scrollbar {
  display: none;  /* Chrome, Safari и Opera */
}

.work-list-wrapper-mobile .images-list {
  display: flex;
  gap: 20px;
  /* margin: 40px 26px 0 0; */
  justify-content: space-around;
}

.work-list-wrapper-mobile .images-list .work-group {
  padding: 0 5px;
  display: flex;
  flex-direction: column; 
  gap: 30px;
}

.work-list-wrapper-mobile .images-list .work-group .logo {
  border: 1px;
  display: flex;
  justify-items: center;
  align-items: center;
  border: 1px solid #0000001A;
  padding: 20px 20px;
  width: 160px;
  height: 100px;
}

.work-list-wrapper-mobile .images-list img {
  width: 100%; 
}

.work-wrapper-mobile .point-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.work-wrapper-mobile .point-list .point-wrapper {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
}

.work-wrapper-mobile .point-list .point-wrapper.active {
  border-radius: 50%;
  background-color: rgba(3, 0, 67, 0.2);
}

.work-wrapper-mobile .point-list .point {
  background-color: #030043;
  width: 6px;
  height: 6px;
  gap: 0px;
  opacity: 0.5;
  border-radius: 50%;
  z-index: 2; 
  position: relative;
}

.work-wrapper-mobile .point-list .point.active {
  opacity: 1;
}

#experience-mobile{
  background-color: rgba(3, 0, 68, 1);
}

#main-section-mobile .experience-section-wrapper-mobile {
  position: relative;
  width: 100vw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

#experience-mobile .row-mob {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

#main-section-mobile .experience-info-wrapper-mobile {
  height: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  padding: 0 20px;
}

#main-section-mobile .experience-info-wrapper-mobile .experience-title {
  font-family: "JetBrainsMono-Regular";
  font-size: 100px;
  font-weight: 400;
  line-height: 132px;
  letter-spacing: -0.01em;
  text-align: left;
  color: rgba(206, 246, 95, 1);
}

#main-section-mobile .experience-info-wrapper-mobile .experience-info {
  font-family: "JetBrainsMono-Regular";
  font-size: 24px;
  font-weight: 400;
  line-height: 31.68px;
  letter-spacing: -0.02em;
  text-align: left;
  color: rgba(255, 255, 255, 1);
}

.experience-info-wrapper-mobile {
  opacity: 0;
  transform: translateY(300px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.experience-info-wrapper-mobile.show{
  opacity: 1;
  transform: translateY(0);
}

#main-section-mobile .contacts-section-wrapper-mobile {
  position: relative;
  width: 100vw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: rgba(3, 0, 68, 1);
}

#contacts-mobile .row-mob {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

#contacts-mobile .col-9-mob {
  flex: 9;
  width: 100%;
}

#contacts-mobile .col-3-mob {
  flex: 3;
  width: 100%;
}

#main-section-mobile .contacts-info-wrapper-mobile {
  height: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  padding: 100px 20px 0 20px;
  box-sizing: border-box;
}

#main-section-mobile .contacts-info-wrapper-mobile .contacts-title {
  color: white;
  font-family: "JetBrainsMono-Regular";
  font-size: 34px;
  font-weight: 400;
  line-height: 39.78px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 20px;
}

#main-section-mobile .contacts-list-wrapper-mobile{
  width: 100%;
  height: 100%;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#main-section-mobile .contacts-info-wrapper-mobile .input-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#main-section-mobile .contacts-info-wrapper-mobile .input-container input {
  flex: 1 1 45%;
  box-sizing: border-box;
  padding: 16px 0px 16px 0px;
  gap: 10px;
  border: 0;
  opacity: 0px;
  border-bottom: 2px solid #FFFFFF40;
  background-color: transparent;
  padding: 5px;
  outline: none;
  color:#B9DBEE;
  font-family: "JetBrainsMono-Regular";
  font-size: 18px;
  font-weight: 400;
  line-height: 23.76px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 30px;
}

#main-section-mobile .contacts-info-wrapper-mobile textarea {
  border: 0;
  opacity: 0px;
  border-bottom: 2px solid #FFFFFF40;
  background-color: transparent;
  padding: 5px;
  outline: none;
  color:#B9DBEE;
  font-family: "JetBrainsMono-Regular";
  font-size: 18px;
  font-weight: 400;
  line-height: 23.76px;
  letter-spacing: -0.02em;
  text-align: left;
  min-height: 50px;
  max-height: 230px;
  resize: none;
}

#main-section-mobile .contacts-info-wrapper-mobile textarea::placeholder {
  color: #B9DBEE; 
  opacity: 1;
}

#main-section-mobile .main-btn-submit {
  width: 100%;
  background-color: #CEF65F;
  color: black;
  font-family: "JetBrainsMono-Regular";
  font-size: 1rem;
  border: none;
  padding: 1rem 7rem;
  margin-top: 2.5rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: ease-out 0.5s;
  -webkit-transition: ease-out 0.5s;
  -moz-transition: ease-out 0.5s;
}

#main-section-mobile .main-btn-submit:hover {
  cursor: pointer;
}

#main-section-mobile .main-btn-submit::after,
#main-section-mobile .main-btn-submit::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: .5s;
}

#main-section-mobile .main-btn-submit::after {
    top: -9px;
    left: -9px;
    border-top: 3px solid transparent;
    border-left: 3px solid transparent;
}

#main-section-mobile .main-btn-submit::before {
    bottom: -9px;
    right: -9px;
    border-bottom: 3px solid transparent;
    border-right: 3px solid transparent;
}

#main-section-mobile .main-btn-submit:hover::after,
#main-section-mobile .main-btn-submit:hover::before {
    width: 30px;
    height: 30px;
    border-color: #CEF65F;
}

#main-section-mobile .contacts-list-wrapper-mobile .contacts-info{
  width: 100%;
  font-family: "JetBrainsMono-Regular";
  font-size: 14px;
  font-weight: 400;
  line-height: 18.48px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #A3C9DD;
}

@media only screen and (max-width: 890px) {
  #main-section-desktop {
    display: none;
  }

  #main-section-mobile {
    display: block;
  }

  #progress-bar-desktop {
    display: none;
  }
}

/* end main section */

/* about section */

#about-section {
  width: 100%;
  height: 100vh;
  background-color: #CEF26A;
  position: relative;
  display: none;
}

/* end about section */

@media only screen and (max-width: 1600px) {
  #progress-bar-desktop {
    left: 2%;
  }

  #main-section-desktop .main-tech-wrapper .images-list {
    grid-template-columns: repeat(3, 140px); 
  }

  #main-section-desktop .main-tech-wrapper img {
    width: 110px;
  }

  #main-section-desktop .main-work-wrapper .images-list {
    grid-template-columns: repeat(2, 200px); 
    padding: 0 10px;
    /* height: 500px; */
  }

  #main-section-desktop .main-work-wrapper .images-list .logo {
    width: 200px;
    height: 100px;
  }

  #main-section-desktop .main-work-wrapper img {
    width: 100%;
  }

  #header-desktop .header-link-list-wrapper .item {
    font-size: 18px;
  }

  #main-section-desktop .main-contacts-wrapper .center .contact-btn-info { 
    flex-direction: column;
  }

  #main-section-desktop .main-contacts-wrapper .center .contact-btn-info button {
    width: 100%;
    margin-bottom: 20px;
  }

  #main-section-desktop .main-contacts-wrapper .center .contact-btn-info .info {
    margin-left: 0px;
  }

  #header-desktop {
    padding: 1.7rem 1rem 1.8rem 2rem;
  }

  .tech-info .title {
    font-size: 60px;
  }

  .work-info .title {
    font-size: 60px;
  }

  .contacts-info .title {
    font-size: 60px;
  }

  .contacts-info .info {
    font-size: 30px;
  }

  #main-section-desktop .main-tech-info-wrapper {
    margin-left: 120px;
  }

  #main-section-desktop .main-work-info-wrapper {
    margin-left: 120px;
  }

  #main-section-desktop .main-contacts-info-wrapper {
    margin-left: 120px;
  }
}

@media only screen and (min-width: 1100px) and (max-width: 1250px) {
  #main-section-desktop .main-tech-wrapper .images-list {
    grid-template-columns: repeat(3, 120px); 
  }

  #main-section-desktop .main-tech-wrapper img {
    width: 90px;
  }

  #main-section-desktop .main-work-wrapper .images-list {
    /* height: 400px; */
    grid-template-columns: repeat(2, 180px); 
    padding: 0 10px;
  }

  #main-section-desktop .main-work-wrapper .images-list .logo {
    width: 180px;
    height: 80px;
  }

  #main-section-desktop .main-work-wrapper img {
    width: 100%;
  }

  .experience-info .title {
    font-size: 110px;
  }
  
  .experience-info .info {
    font-size: 26px;
  }
}

@media only screen and (min-width: 890px) and (max-width: 1100px) {
  #progress-bar-desktop {
    left: 2%;
  }

  #header-desktop .header-link-list-wrapper .item {
    font-size: 14px;
  }

  #main-section-desktop .main-tech-wrapper .images-list {
    grid-template-columns: repeat(3, 120px); 
  }

  #main-section-desktop .main-tech-wrapper img {
    width: 90px;
  }

  #main-section-desktop .main-work-wrapper .images-list {
    height: 260px;
    grid-template-columns: repeat(2, 140px); 
    padding: 0 10px;
    gap: 20px;
  }

  #main-section-desktop .main-work-wrapper .images-list .logo {
    padding: 20px 28px 20px 28px;
    width: 140px;
    height: 60px;
  }

  #main-section-desktop .main-work-wrapper img {
    width: 100%;
  }

  #main-section-desktop .main-contacts-wrapper .center .contact-btn-info { 
    flex-direction: column;
  }

  #main-section-desktop .main-contacts-wrapper .center .contact-btn-info button {
    width: 100%;
    margin-bottom: 20px;
  }

  #main-section-desktop .main-contacts-wrapper .center .contact-btn-info .info {
    margin-left: 0px;
  }

  #header-desktop {
    padding: 1.7rem 0rem 1.8rem 2rem;
  }

  .tech-info .title {
    font-size: 60px;
  }

  .work-info .title {
    font-size: 60px;
  }

  .contacts-info .title {
    font-size: 60px;
  }

  .contacts-info .info {
    font-size: 24px;
  }

  #main-section-desktop .main-tech-info-wrapper {
    margin-left: 120px;
  }

  #main-section-desktop .main-work-info-wrapper {
    margin-left: 120px;
  }

  #main-section-desktop .main-contacts-info-wrapper {
    margin-left: 120px;
  }

  .experience-info .title {
    font-size: 90px;
  }
  
  .experience-info .info {
    font-size: 18px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 890px) {
  #main-section-mobile .tech-list-wrapper-mobile {
    padding: 50px 50px 50px 140px;
  }

  .tech-list-wrapper-mobile .images-list {
    gap: 100px;
  }

  .tech-list-wrapper-mobile .images-list img {
    width: 250px;
  }

  #main-section-mobile .work-list-wrapper-mobile {
    /* padding: 50px 50px 50px 140px; */
  }

  .work-list-wrapper-mobile .images-list {
    gap: 100px;
  }

  .work-list-wrapper-mobile .images-list .work-group .logo {
    width: 230px;
    height: 150px;
  }

  /* .work-list-wrapper-mobile .images-list img {
    width: 250px;
  } */
}

.tech__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: transparent;
  z-index: 1;
}

.tech__logo .col-5 {
  display: flex;
  justify-content: center;
  padding-left: 15px;
  padding-right: 0;
}

.tech__logo .logo__wrapper {
  width: 40rem;
  height: 40rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 1s ease-in-out;
}

.tech__logo .logo__wrapper .techworks-logo-svg {
  position: absolute;
  transform-origin: center;
  fill: rgba(3, 0, 68, 1);
  transition: all 1s ease-in-out;
  z-index: 1;
  width: 30rem;
}

.tech__logo .circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #030043;
  z-index: 0;
  width: 40rem;
  height: 40rem;
  border: 1px solid #FFFFFF40;
  border-radius: 50%;
}

.tech__logo .circle.about {
  z-index: 1;
  opacity: 0;
}

.tech__logo .logo__wrapper .main-logo-bounce {
  position: absolute;
  left: 0;
  bottom: 0.55rem;
}

.tech__logo .logo__wrapper .main-logo-bounce.about {
  z-index: 1;
  opacity: 0;
}

.tech__logo .logo__wrapper .techworks-logo-svg path {
  stroke: white;
  stroke-opacity: 0.35;
}

.tech__logo .logo__wrapper .techworks-logo-svg.about {
  transform: scale(0.4);
  fill: white;
}

.rotate {
  animation: rotate 15s linear infinite;
}

@media only screen and (max-width: 1600px) {
  .tech__logo .logo__wrapper {
    width: 35rem;
    height: 35rem;
  }
  
  .tech__logo .logo__wrapper .techworks-logo-svg {
    width: 25rem;
  }
  
  .tech__logo .circle {
    width: 30rem;
    height: 30rem;
  }

  .tech__logo .logo__wrapper .main-logo-bounce {
    bottom: -2.2rem;
  }
}

@media only screen and (max-width: 1250px) {
  .tech__logo .logo__wrapper {
    width: 35rem;
    height: 30rem;
    padding-right: 1rem;
  }
  
  .tech__logo .logo__wrapper .techworks-logo-svg {
    width: 18rem;
  }
  
  .tech__logo .circle {
    width: 25rem;
    height: 25rem;
  }
  
  .tech__logo .logo__wrapper .main-logo-bounce {
    bottom: -3.5rem;
  }
}

@media only screen and (max-width: 1110px) {
  .tech__logo .logo__wrapper .techworks-logo-svg {
    width: 17rem;
  }
  
  .tech__logo .circle {
    width: 22rem;
    height: 22rem;
  }
  
  .tech__logo .logo__wrapper .main-logo-bounce {
    bottom: -4.2rem;
  }
}

@media only screen and (max-width: 890px) {
  .tech__logo {
   justify-content: center;
   align-items: unset;
  }
  
  .tech__logo .col-5 {
    transform: unset;
    width: 312px;
    height: 41.66%;
  }
  
  .tech__logo .logo__wrapper {
    width: 100%;
    height: 100%;
    top: 50px;
  }
  
  .tech__logo .logo__wrapper .techworks-logo-svg {
    width: 225px;
  }
  
  .tech__logo .circle {
    width: 312px;
    height: 312px;
  }
  
  .tech__logo .logo__wrapper .main-logo-bounce {
    width: 98px;
    height: 98px;
    bottom: -5px;
  }
}

#addresses-mobile {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#addresses-mobile .addresses-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

#addresses-mobile .contacts-info {
  padding-top: 45px;
  padding-left: 15px;
  padding-right: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#addresses-mobile .contacts-info .title {
  font-size: 2.1rem;
}

#addresses-mobile .copyright {
  width: 100%;
  height: 152px;
  padding: 25.5px 15px;
  color: #ADD9F1;
  background-color: #030043;
  font-size: 1rem;
  font-family: "JetBrainsMono-Regular";
  font-weight: 400;
  line-height: 27.2px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #ADD9F1;
}

#addresses-mobile .copyright div:nth-child(2),
#addresses-mobile .copyright div:nth-child(3) {
  margin-top: 10px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fadeOut {
  animation: fadeOut 1s ease-in-out forwards;
}

.fadeOutRotate {
  animation: fadeOut 1s ease-in-out forwards, rotate 15s linear infinite;
}

.fadeInRotate {
  animation: fadeIn 1s ease-in forwards, rotate 15s linear infinite;
}

.fadeToBlue {
  animation: fadeToBlue 1s ease-in-out forwards;
}

.fadeToTransparent {
  animation: fadeToTransparent 1s ease-in-out forwards;
}

.fadeIn {
  animation: fadeIn 1s ease-in-out forwards;
}

.scale {
  animation: scale 1s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes fadeToBlue {
  0% {
    background-color: transparent;
    z-index: 1;
  }
  100% {
    background-color: #030043;
    z-index: 9999;
  }
}

@keyframes fadeToTransparent {
  0% {
    z-index: 9999;
    background-color: #030043;
  }
  100% {
    z-index: 1;
    background-color: transparent;
  }
}