@charset "UTF-8";
:root {
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --color-primary: #000;
  --color-secondary: #2d2d2d;
}
@font-face {
  font-family: "font-Signature";
  src: url("../font/NVNFunkySignature-2.woff2") format("woff2"),
    url("../font/NVNFunkySignature-2.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: var(--font-primary);
  color: var(--color-primary);
  background: #fff;
  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: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.header {
  padding: 15px 0px;
  width: 100%;
  position: relative;
  background: var(--color-secondary);
}
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0.12),
    0 3px 1px -2px rgba(0, 0, 0, 0);
  z-index: 12;
}
.logo {
  display: flex;
}
.logo img {
  max-width: 150px;
}
.right-head {
  gap: 40px;
}
.r-head {
  gap: 24px;
}
.lang {
  padding: 5px 20px 5px 10px;
  border-radius: 30px;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  outline: none;
}
.menu ul {
  gap: 20px;
}
.menu ul li {
  font-size: 0.875rem;
  color: #fff;
  padding: 8px 8px;
  cursor: pointer;
  transition: all 0.5s;
}
.menu ul a {
  color: #fff;
}
.menu ul li:hover,
.menu ul li:hover a {
  color: var(--color-thirdly);
}
.pulse {
  animation-name: pulse;
}
.contact-now {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  background: var(--color-thirdly);
  border: 1px solid var(--color-thirdly);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 30px;
  color: var(--color-primary);
  transition: all 0.5s;
  cursor: pointer;
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  box-shadow: 0px 15px 15px -15px var(--color-thirdly);
  -webkit-box-shadow: 0px 15px 15px -15px var(--color-thirdly);
}
.contact-now:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-primary);
}
.btn-menu-mb {
  display: none;
}
.btn-menu-mb span {
  position: relative;
  background-color: #fff;
  border-radius: 3px;
  display: block;
  height: 3px;
  margin-top: 5px;
  padding: 0;
  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  width: 30px;
  cursor: pointer;
  display: block;
}
.btn-menu-mb span:first-child {
  margin-top: 0;
}
.btn-menu-mb.active span:nth-child(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  top: 8px;
}
.btn-menu-mb.active span:nth-child(2) {
  opacity: 0;
}
.btn-menu-mb.active span:nth-child(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  top: -8px;
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-menu {
  text-align: left;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 300px;
  height: 100%;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  padding: 0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 70px;
}
.nav-menu.menu-off {
  left: -300px;
}
.nav-menu.menu-on {
  left: 0;
}
.navbar-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 12;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  background: var(--color-secondary);
}
.navbar-close i {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.main-menu ul {
  display: flex;
  flex-direction: column;
}
.main-menu ul li {
  border-bottom: 1px solid #ececec;
  padding: 13px 20px;
  color: var(--color-primary);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1.063rem;
}
.main-menu ul li a {
  color: var(--color-primary);
}
.main-menu ul li:hover,
.main-menu ul li:hover a {
  color: var(--color-thirdly);
}
.section-head {
  background: var(--color-secondary);
  background-size: cover !important;
  position: relative;
  overflow: hidden;
}
.section1-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 44%;
}
.section1-head h5 {
  color: var(--color-thirdly);
  font-size: 1rem;
}
.section1-head h1 {
  font-size: 3.438rem;
  line-height: 66px;
  font-weight: 600;
  color: #fff;
}
.section1-head p {
  margin: 0px 0px 20px 0px;
  max-width: 448px;
  color: #a6a6a6;
}
.group_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
.group_btn .contacts {
  font-size: 1.063rem;
  font-weight: 600;
  transition: all 0.5s;
  cursor: pointer;
}
.group_btn .contacts:hover {
  color: var(--color-thirdly);
}
.section2-head {
  width: 52%;
  max-width: 670px;
  position: relative;
  aspect-ratio: 1;
  background-color: var(--color-thirdly);
  border-radius: 100%;
  bottom: -80px;
  text-align: center;
}
.section2-head img {
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: auto;
}
.section-video {
  padding: 40px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section-video iframe {
  border-radius: 24px !important;
}
.section-about {
  background: url(../images/bg-about.jpg) no-repeat center;
  background-size: cover !important;
  padding: 80px 0px 40px 0px;
}
.section-about .d-flex {
  gap: 100px;
}
.col-about {
  display: flex;
  flex-direction: column;
  max-width: 25%;
}
.mid-about {
  max-width: 25%;
  border-radius: 10px;
  overflow: hidden;
}
.mid-about img {
  object-fit: cover;
  aspect-ratio: 9 / 16;
}
.box-about {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.box-about.n1 {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 40px;
}
.box-about.n2 {
  padding-top: 40px;
}
.num-about {
  font-weight: 500;
  background-color: #f4f4f4;
  border: 1px solid #eee;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  display: flex;
}
.name-about {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  font-family: var(--font-secondary);
}
.desc-about {
  line-height: 24px;
}
.list-social {
  margin-top: 10px;
}
.list-social img {
  max-width: 20px;
  transition: all 0.5s;
  margin-right: 15px;
}
.list-social1 img {
  max-width: 40px;
  transition: all 0.5s;
  margin-right: 5px;
}
.list-social a:hover img,
.list-social1 a:hover img {
  transform: rotate(360deg);
}

.section-skill {
  padding: 80px 0px;
}
.main-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.main-title h2 {
  font-size: 3rem;
  line-height: 60px;
  font-family: var(--font-secondary);
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
}
.main-title div {
  font-size: 1.125rem;
  color: #808285;
  text-align: center;
}
.content-skill {
  display: flex;
  flex-wrap: wrap;
  max-width: 1170px;
  margin: auto;
}
.box-skill {
  width: 25%;
}
.item-skill {
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 65px 50px;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(76, 76, 76, 0.1);
  position: relative;
}
.item-skill:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #e9e056;
  -webkit-filter: blur(57.5px);
  filter: blur(57.5px);
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.item-skill:hover:after {
  opacity: 1;
}
.img-skill img {
  max-width: 75px;
  max-height: 75px;
  z-index: 12;
}
.name-skill {
  display: flex;
  align-items: center;
  font-size: 3.438rem;
  line-height: 60px;
  font-weight: 600;
  z-index: 12;
}
.desc-skill {
  z-index: 12;
  color: #808285;
}
.section-project {
  padding: 120px 0px 115px 0px;
  background: #f9f9fc;
}
.flex-project {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.box-project {
  width: 50%;
  padding: 15px;
}
.item-project {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.icon-play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.box-project:hover .icon-play {
  opacity: 1;
}
.img-project {
  overflow: hidden;
  border-radius: 8px;
}
.img-project img {
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  transition: all 0.5s;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.box-project:hover img {
  transform: scale(1.1);
}
.content-project {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 40px 40px 44px 50px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-project:hover .content-project {
  opacity: 1;
}
.name-project {
  font-weight: 700;
  font-size: 1.375rem;
  color: #fff;
}
.desc-project {
  color: #fff;
  line-height: 24px;
}
.section-feedback {
  padding: 60px 0px;
}
.box-feedback {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.left-feedback {
  max-width: 375px;
  display: flex;
  align-items: center;
  gap: 27px;
}
.img-feedback {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
}
.r-feedback {
  max-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.name-feedback {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.desc-feedback {
  font-size: 1.125rem;
  color: #767676;
}
.content-feedback {
  max-width: 690px;
  padding-top: 100px;
  background: url(../images/quote.svg) no-repeat top left;
  font-size: 1rem;
  line-height: 1.7;
}
.wr-feedback {
  position: relative;
  max-width: 1200px;
  margin: auto;
}
.wr-feedback .owl_prev {
  position: absolute;
  width: 40px;
  height: 40px;
  top: auto;
  bottom: 80px;
  left: 0;
  margin: auto;
  background: transparent;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  text-align: center;
  z-index: 12;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  font-size: 1.125rem;
}
.wr-feedback .owl_next {
  position: absolute;
  width: 40px;
  height: 40px;
  top: auto;
  bottom: 80px;
  right: auto;
  left: 60px;
  margin: auto;
  background: transparent;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  text-align: center;
  z-index: 12;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  font-size: 1.25rem;
}
.wr-feedback .owl_prev:hover,
.wr-feedback .owl_next:hover {
  background: var(--color-thirdly);
  border-color: transparent;
}
.section-follow {
  padding: 80px 0px;
  background: #f5f5f7 url(../images/tree.svg) no-repeat right -23% center;
  background-size: 30%;
}
.wr-follow {
  background: url(../images/bg-follow.jpg) no-repeat center;
  border-radius: 24px;
  overflow: hidden;
  padding: 120px 60px;
  position: relative;
}
.fl-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    90.00000000000004deg,
    rgba(54, 22, 80, 0.75) 0%,
    rgba(54, 22, 80, 0.550000011920929) 23.95833283662796%,
    rgba(54, 22, 80, 0) 98.95833134651184%
  );
}
.main-fl {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 1;
  max-width: 550px;
}
.main-fl .tt-fl {
  color: #e3e5e8;
  font-size: 1.5rem;
  font-weight: 500;
}
.main-fl h3 {
  color: #fefefe;
  font-weight: 600;
  font-size: 2.75rem;
}
.group-fl {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.group-fl a {
  padding: 16px 20px;
  background-color: #fefffe;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #2a2b2b;
  transition: all 0.5s;
}
.group-fl a:hover {
  background: var(--color-thirdly);
}

.section-contact {
  padding: 115px 0px 120px;
}
.left-footer {
  max-width: 600px;
}
.right-footer {
  max-width: 545px;
}
.main-footer h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 48px;
  font-family: var(--font-secondary);
  margin-bottom: 40px;
}
.main-footer .note {
  font-size: 1.5rem;
  line-height: 38px;
  color: #767676;
}
.main-footer .note span {
  color: var(--color-primary);
  font-weight: 600;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.contact-footer div {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #767676;
  font-size: 1.125rem;
  line-height: 32px;
}
.contact-footer div i {
  font-size: 1.5rem;
  color: var(--color-thirdly);
}
.form-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.form-contact input,
.form-contact select,
.form-contact textarea {
  width: 48%;
  margin-bottom: 30px;
  display: inline-block;
  line-height: 1.4em;
  outline: none;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #cbd3d9;
  resize: vertical;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
}
.form-contact input::placeholder,
.form-contact select::placeholder,
.form-contact textarea::placeholder {
  color: #7e7e7e;
}
.form-contact input[type="submit"] {
  width: auto;
  background: transparent;
  border: 2px solid #7e7e7e;
  color: #0f172a;
  font-weight: 500;
  transition: all 0.5s;
  cursor: pointer;
  border-radius: 6px;
  padding: 10px 33px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  margin-bottom: 0;
}
.form-contact input:hover[type="submit"] {
  background: var(--color-thirdly);
  border-color: var(--color-thirdly);
}
@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));
}
/* 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-thirdly);
  -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) {
  .section-about .d-flex {
    gap: 30px;
  }
  .col-about,
  .mid-about {
    max-width: 30%;
  }
  .box-skill {
    width: 50%;
  }
  .wr-feedback .owl_prev {
    left: 0;
    bottom: auto;
    top: 30%;
  }
  .wr-feedback .owl_next {
    right: 0;
    bottom: auto;
    top: 30%;
    left: auto;
  }
  .content-feedback {
    max-width: 100%;
    background-position: top 50px left;
  }
  .menu,
  .section-project .pbefore,
  .section-project .pafter,
  .header .contact-now {
    display: none;
  }
  .btn-menu-mb {
    display: block;
  }
  .header {
    padding: 12px 0px;
  }
}
@media screen and (max-width: 768px) {
  .center-layout {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .form-contact input,
  .form-contact textarea,
  .form-contact select {
    width: 100%;
  }
  .main_head {
    padding-top: 80px;
  }
  .section1-head p {
    max-width: 100%;
  }
  html {
    font-size: 14px;
  }
  .section-contact {
    padding: 40px 0px;
  }
  .wr-follow {
    padding: 60px 20px;
  }
  .box-feedback {
    flex-direction: column;
    gap: 16px;
  }
  .content-follow {
    max-width: 100%;
  }
  .main_head.d-flex,
  .section-about .d-flex,
  .main-footer.d-flex {
    flex-direction: column;
    gap: 24px;
  }
  .section1-head,
  .section2-head,
  .left-about,
  .right-about,
  .left-footer,
  .right-footer {
    width: 100%;
    max-width: 100%;
  }

  .col-about,
  .mid-about {
    max-width: 100%;
  }
  .section-skill,
  .section-about,
  .section-project,
  .section-feedback {
    padding: 40px 0px;
  }
}
@media screen and (max-width: 650px) {
  .section-video iframe {
    height: 300px;
  }
  .right-head {
    gap: 16px;
  }
  .logo img {
    max-width: 120px;
  }
  .item-skill {
    padding: 30px 25px;
  }
  .section1-head h1 {
    font-size: 3rem;
    line-height: 55px;
  }
  .main-title h2 {
    font-size: 2rem;
    line-height: 48px;
  }
  .box-skill,
  .box-project {
    width: 50%;
  }
  .main-footer h2 {
    font-size: 2rem;
    line-height: 38px;
  }
  .left-about h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 576px) {
  .wr-feedback .owl_prev,
  .wr-feedback .owl_next {
    top: 23%;
  }
  .lang {
    font-size: 0.875rem;
  }
  .group-fl {
    flex-direction: column;
  }
  .content-skill,
  .flex-project {
    margin: 0;
  }
  .box-skill,
  .box-project {
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
  }
}
