@charset "UTF-8";
:root {
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Nunito", sans-serif;
  --color-primary: #22232c;
  --color-thirdly: #7059e2;
  --_animbezier: cubic-bezier(0.23, 0.65, 0.74, 1.09);
}

body {
  font-family: var(--font-primary);
  color: var(--color-primary);
  background: #e6ebf4;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  border: 0;
  top: 0 !important;
}

.skiptranslate {
  display: none;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
input,
button,
textarea {
  outline: none !important;
}
a {
  text-decoration: none !important;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
p {
  margin: 5px 0;
  line-height: 28px;
  letter-spacing: 0.5px;
}
*,
::after,
::before {
  box-sizing: border-box;
}
.d-flex {
  display: flex !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.align-items-center {
  align-items: center !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.center-layout {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.blur {
  position: absolute;
  z-index: 1;
  -moz-border-radius: 900px;
  border-radius: 900px;
  -webkit-filter: blur(clamp(40px, 7vw, 90px));
  filter: blur(clamp(40px, 7vw, 90px));
}
.blur:nth-of-type(1) {
  background: #cec4ef;
  height: clamp(400px, 20vw, 60vw);
  width: -moz-calc(clamp(400px, 30vw, 70vw) * 1.1);
  width: calc(clamp(400px, 30vw, 70vw) * 1.1);
  top: -10vh;
  right: -5vw;
}
.blur:nth-of-type(2) {
  background: #f5c5cd;
  height: clamp(300px, 16vw, 46vw);
  width: -moz-calc(clamp(300px, 16vw, 56vw) * 0.75);
  width: calc(clamp(300px, 16vw, 56vw) * 0.75);
  top: 5vh;
  right: 0vw;
}
.blur:nth-of-type(3) {
  background: #ac8fe3;
  height: clamp(100px, 20vw, 20vw);
  width: -moz-calc(clamp(100px, 20vw, 20vw) * 2);
  width: calc(clamp(100px, 20vw, 20vw) * 2);
  top: -10vh;
  left: -10vw;
}
.fullpage .center-layout {
  gap: 50px;
}
.left-page {
  width: 400px;
  padding-top: 50px;
}
.scroll-sticky {
  position: sticky;
  top: 50px;
  background: #ebf0f7;
  border: 1px solid #d1d5e0;
  border-radius: 3.6rem;
  padding: 45px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.row-resume {
  text-align: center;
}
.top-resume {
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
.logo img {
  max-height: 30px;
}
.top-resume .name {
  font-size: 2.5rem;
  font-family: var(--font-secondary);
  font-weight: 800;
}
.avatar img {
  border-radius: 3rem;
  width: 100%;
  max-height: 300px;
}
.row-resume span {
  color: #424550;
}
.row-resume div {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-secondary);
}
.social-resume {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.social-resume img {
  max-width: 50px;
  transition: all 0.5s;
}
.social-resume a:hover img {
  transform: rotate(360deg);
}
.contact-now {
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  height: 60px;
  cursor: pointer;
  min-width: 225px;
  padding: 0 20px;
  line-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-now::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s var(--_animbezier);
  transition: -webkit-transform 0.3s var(--_animbezier);
  -moz-transition: transform 0.3s var(--_animbezier),
    -moz-transform 0.3s var(--_animbezier);
  transition: transform 0.3s var(--_animbezier);
  transition: transform 0.3s var(--_animbezier),
    -webkit-transform 0.3s var(--_animbezier),
    -moz-transform 0.3s var(--_animbezier);
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-thirdly) 100%
  );
}
.contact-now:hover::before {
  -webkit-transform: scale3d(1.03, 1.03, 1.03);
  -moz-transform: scale3d(1.03, 1.03, 1.03);
  transform: scale3d(1.03, 1.03, 1.03);
}
.contact-now span {
  font-family: var(--font-secondary);
  position: absolute;
  color: #ebf0f7;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.contact-now span.text1 {
  position: absolute;
  top: 0;
}
.contact-now span.text2 {
  transform: translateY(45px);
  opacity: 0;
}
.contact-now:hover span.text1 {
  transform: translateY(-45px);
  opacity: 0;
}
.contact-now:hover span.text2 {
  opacity: 1;
  transform: translateY(0);
}
.right-page {
  position: relative;
  width: calc(100% - 440px);
}
.header__navigation {
  display: none;
}
.header {
  margin-top: 50px;
}
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  animation: sticky 1.2s;
  width: 100%;
  z-index: 123;
}
.header .center-layout {
  display: flex;
  justify-content: flex-end;
}
.menu-right {
  width: calc(100% - 440px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
.menu ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu ul li {
  padding: 18px 12px;
  font-size: 1rem;
  font-family: var(--font-secondary);
  font-weight: 700;
  color: #717586;
  border: 1px solid transparent;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-transform: capitalize;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
}

.menu ul li.active {
  color: var(--color-primary);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.menu ul li:hover {
  color: var(--color-primary);
}
.lang {
  cursor: pointer;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  outline: none;
  border: none;
  color: #ebf0f7;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-thirdly) 100%
  );
}
.lang option,
.lang_mb option {
  color: var(--color-primary);
}
.lang_mb {
  display: none;
}
.section-1 {
  position: relative;
  height: 100vh;
}
.main-section1 {
  position: absolute;
  bottom: 70px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.subtitle {
  margin-bottom: 16px;
  border: 1px solid #d1d5e0;
  background: #e6ebf4;
  border-radius: 1.7rem;
  padding: 9px 20px;
  font-weight: 700;
  color: #424550;
  font-family: var(--font-secondary);
}
.subtitle i {
  margin-right: 8px;
}
.main-section1 h2 {
  font-weight: 600;
  font-size: 4.5rem;
  color: var(--color-secondary);
  background: -webkit-linear-gradient(
    15deg,
    var(--color-secondary) 0%,
    var(--color-thirdly) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-secondary);
  font-weight: 800;
}
.main-section1 .text {
  line-height: 1.5;
  font-size: 1.25rem;
}
.btn-xemthem {
  cursor: pointer;
  margin-top: 24px;
  padding: 0 20px;
  line-height: 60px;
  font-size: 1.25rem;
  border-radius: 25px;
  background: #e6ebf4;
  border: 1px solid #a8b0c1;
  font-weight: 700;
  font-family: var(--font-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s var(--_animbezier);
  transition: -webkit-transform 0.3s var(--_animbezier);
  -moz-transition: transform 0.3s var(--_animbezier),
    -moz-transform 0.3s var(--_animbezier);
  transition: transform 0.3s var(--_animbezier);
  transition: transform 0.3s var(--_animbezier),
    -webkit-transform 0.3s var(--_animbezier),
    -moz-transform 0.3s var(--_animbezier);
  overflow: hidden;
}
.btn-xemthem:hover {
  -webkit-transform: scale3d(1.03, 1.03, 1.03);
  -moz-transform: scale3d(1.03, 1.03, 1.03);
  transform: scale3d(1.03, 1.03, 1.03);
}
.btn-xemthem span {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.btn-xemthem span.text1 {
  position: absolute;
  top: 0;
}
.btn-xemthem span.text2 {
  transform: translateY(45px);
  opacity: 0;
}
.btn-xemthem:hover span.text1 {
  transform: translateY(-45px);
  opacity: 0;
}
.btn-xemthem:hover span.text2 {
  opacity: 1;
  transform: translateY(0);
}

.btn-scroll {
  position: absolute;
  bottom: 65px;
  right: 0;
  width: 140px;
  height: 140px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-family: "Syne";
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
}
.btn-scroll svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  translate: none;
  rotate: none;
  scale: none;
  transform: translate3d(0px, 0px, 0px) rotate(145.643deg);
}
.btn-scroll i {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  font-size: 1.25rem;
}
.section-video {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.padding-section {
  padding: 130px 0 60px 0;
}
.box-video iframe {
  border-radius: 24px;
}
.section-2,
.section-3,
.section-4,
.section-5,
.section-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-2 h2,
.section-3 h2,
.section-4 h2,
.section-5 h2,
.section-6 h2 {
  margin-bottom: 50px;
  font-size: 3.5rem;
  color: var(--color-secondary);
  background: -webkit-linear-gradient(
    15deg,
    var(--color-secondary) 0%,
    var(--color-thirdly) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-family: var(--font-secondary);
}
.flex-project {
  display: flex;
  flex-wrap: wrap;
  margin: -25px;
}
.box-project {
  width: 50%;
  padding: 25px;
  cursor: pointer;
}
.item-project {
  position: relative;
  height: 100%;
  transition: all 0.5s;
  overflow: hidden;
  border-radius: 40px;
}
.img-project img {
  border-radius: 40px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s var(--_animbezier);
  transition: -webkit-transform 0.3s var(--_animbezier);
  -moz-transition: transform 0.3s var(--_animbezier),
    -moz-transform 0.3s var(--_animbezier);
  transition: transform 0.3s var(--_animbezier);
  transition: transform 0.3s var(--_animbezier),
    -webkit-transform 0.3s var(--_animbezier),
    -moz-transform 0.3s var(--_animbezier);
}
.box-project:hover .img-project img {
  -webkit-transform: scale3d(1.03, 1.03, 1.03);
  -moz-transform: scale3d(1.03, 1.03, 1.03);
  transform: scale3d(1.03, 1.03, 1.03);
}
.name-project {
  position: absolute;
  bottom: 30px;
  padding: 14px 20px;
  left: 30px;
  color: #ebf0f7;
  background: #111111;
  border-radius: 30px;
  font-family: var(--font-secondary);
  font-weight: 600;
  transition: all 0.5s;
}
.box-project:hover .name-project {
  background: #fff;
  color: #000;
}
.content-about {
  margin-top: 50px;
  margin-bottom: 32px;
  font-size: 1.5rem;
  line-height: 1.5;
}
.flex__statistics {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}
.row__statistics {
  width: 33.333333%;
  padding: 20px;
}
.item__statistics {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #d1d5e0;
  background: #e6ebf4;
  border-radius: 30px;
  padding: 30px;
  transition: all 0.5s;
}
.item__statistics:hover {
  border-color: var(--color-secondary);
}
.top_statistics {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 4.5rem;
  letter-spacing: -0.2rem;
  font-weight: 600;
  background: -webkit-linear-gradient(
    15deg,
    var(--color-secondary) 0%,
    var(--color-thirdly) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.name__statistics {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.content-sc4 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 50px;
}
.flex__skill {
  display: flex;
  flex-wrap: wrap;
  margin: -25px;
}
.row__skill {
  width: 50%;
  padding: 25px;
  height: 620px;
}
.box__skill {
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #d1d5e0;
  background: #e6ebf4;
  border-radius: 30px;
  transition: all 0.5s;
  cursor: pointer;
}
.box__skill:hover {
  border-color: var(--color-secondary);
}
.top__skill {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.name__skill {
  font-size: 2.25rem;
  font-weight: 600;
  font-family: var(--font-secondary);
}
.box__skill:hover .name__skill {
  color: var(--color-secondary);
}
.desc__skill {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #424550;
}

.box-feedback {
  height: 100%;
  padding: 50px;
  border: 1px solid #d1d5e0;
  background: #e6ebf4;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  cursor: pointer;
  transition: all 0.5s;
  overflow: hidden;
}
.box-feedback:hover {
  border-color: var(--color-secondary);
}
.top_feedback {
  display: flex;
  align-items: center;
  gap: 30px;
}
.img-feedback {
  width: 100px;
  height: 100%;
  border-radius: 3rem;
  overflow: hidden;
}
.img-feedback img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.name-feedback {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-secondary);
}
.desc-feedback {
  color: #424550;
  margin-top: 5px;
}
.content-feedback {
  font-size: 1.5rem;
  line-height: 1.5;
}
.btn_feedback {
  gap: 16px;
  margin-top: 30px;
}
.btn_feedback div {
  width: 60px;
  height: 60px;
  border: 1px solid #a8b0c1;
  border-radius: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  transition: all 0.5s;
  cursor: pointer;
}
.btn_feedback div:hover {
  border-color: var(--color-secondary);
}

.section-contact {
  padding: 80px 0px;
  background: #fff url(../images/map.png) no-repeat bottom center;
  background-size: 40%;
}
.main-footer {
  gap: 40px;
}
.left-footer {
  max-width: 770px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.left-footer h2 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 90px;
}
.note {
  color: #808285;
  font-weight: 500;
  margin-bottom: 15px;
}
.item-footer {
  position: relative;
  width: 50%;
}

.item-footer .title {
  padding: 10px 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.item-footer .text {
  font-size: 1.5rem;
  font-weight: 700;
}
.right-footer {
  position: relative;
  max-width: 450px;
  text-align: center;
}
.right-footer img {
  position: relative;
  border-radius: 250px;
  z-index: 12;
}
.right-footer .shape-icon-two {
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  -webkit-filter: blur(100px);
  filter: blur(100px);
}
.form-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form-contact input,
.form-contact select {
  width: 49%;
  margin-bottom: 30px;
  display: inline-block;
  outline: none;
  min-height: 0;
  padding: 16px;
  resize: vertical;
  border-radius: 0;
  background: #fff;
  border-radius: 30px;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  border: 0;
  border-bottom: 2px solid #d1d5e0;
  font-weight: 500;
}
.form-contact input::placeholder,
.form-contact select::placeholder {
  color: var(--color-primary);
}
.form-contact input:focus {
  border-bottom: 2px solid var(--color-secondary);
}
.btn-send {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.form-contact input[type="submit"] {
  width: auto;
  min-width: 236px;
  padding: 18px 30px;
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-thirdly) 100%
  );
  border: 0;
  color: #fff;
  border-radius: 25px;
  transition: all 0.5s;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  font-family: var(--font-secondary);
}
.form-contact input:hover[type="submit"] {
  background: #000;
  color: #fff;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.aos-animate .char {
  animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation-delay: calc(30ms * var(--char-index));
}
.note-bottom {
  font-family: var(--font-secondary);
  padding: 40px 0px;
  font-size: 2.5rem;
  font-weight: 700;
  background: -webkit-linear-gradient(
    15deg,
    var(--color-secondary) 0%,
    var(--color-thirdly) 80%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-lines__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 40px 0px 100px 0px;
  border-top: 1px solid #d1d5e0;
}
.contact-lines__data {
  width: 32%;
}
.contact-lines__title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-secondary);
}
.contact-lines__text {
  color: #666a79;
}
/* Preloader CSS */
.preloader {
  background-color: #fff;
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  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;
  z-index: 99999;
}
.preloader-form {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.preloader .loader {
  margin: 0 auto;

  position: relative;
  text-align: center;
}
.preloader .pre-box {
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  -webkit-animation: animate 0.5s linear infinite;
  animation: animate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
.preloader .pre-shadow {
  width: 50px;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: shadow 0.5s linear infinite;
  animation: shadow 0.5s linear infinite;
}
@-webkit-keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}

@-webkit-keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}

@keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}
@media screen and (max-width: 1024px) {
  .header {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .center-layout {
    padding: 0 30px !important;
  }
  html {
    font-size: 14px !important;
  }
  .lang_mb {
    display: block;
    cursor: pointer;
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    outline: none;
    border: none;
    color: #ebf0f7;
    background: linear-gradient(
      135deg,
      var(--color-secondary) 0%,
      var(--color-thirdly) 100%
    );
    margin-bottom: 10px;
  }
  .header__navigation {
    display: block;
    position: fixed;
    bottom: 15px;
    left: 50%;
    height: 44px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 12;
    width: 71%;
  }
  .header__navigation ul {
    display: flex;
  }
  .header__navigation ul li {
    flex: 1 1 auto;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__navigation ul li i {
    color: #717586;
    font-size: 1.125rem;
  }
  .header__navigation ul li.click-scroll.active {
    background: #111111;

    border-radius: 20px;
  }
  .header__navigation ul li.click-scroll.active i {
    color: #ebf0f7;
  }
  .padding-section {
    padding: 60px 0px;
  }
  .fullpage .center-layout {
    flex-direction: column;
  }
  .left-page,
  .right-page {
    width: 100%;
  }
  .left-page {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-section1 {
    position: relative;
    bottom: auto;
  }
  .section-1 {
    height: auto;
    padding: 60px 0px;
  }
  .btn-scroll {
    position: relative;
    bottom: auto;
    margin-top: 50px;
  }
  .scroll-sticky {
    padding: 30px;
  }
  .main-section1 h2,
  .section-2 h2,
  .section-3 h2,
  .section-4 h2,
  .section-5 h2,
  .section-6 h2 {
    font-size: 2.75rem;
  }
  .top_statistics {
    font-size: 3.5rem;
  }
  .name__statistics {
    font-size: 1.125rem;
  }
  .box-project {
    padding: 15px;
  }
  .flex-project {
    margin: -15px;
  }
  .form-contact input,
  .form-contact select {
    width: 100%;
  }
  .contact-lines__item {
    padding: 40px 0px;
  }

  .name__skill {
    font-size: 2rem;
  }
}
@media screen and (max-width: 650px) {
  .box-video iframe {
    height: 500px;
  }
  .row__statistics,
  .contact-lines__data {
    width: 100%;
  }
  .flex__skill,
  .flex__statistics {
    margin: 0;
  }
  .row__statistics {
    padding: 0;
    margin-bottom: 24px;
  }
  .row__skill {
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
    height: 520px;
  }
  .top__skill,
  .box-feedback {
    padding: 30px;
  }
  .note-bottom {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .flex-project {
    margin: 0;
  }
  .box-project {
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
  }
}
