@charset "UTF-8";
:root {
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --font-fourly: "Caveat", sans-serif;
  --color-primary: #000;
}
@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: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.header {
  position: relative;
}
.bg-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(89, 86, 233) 0%,
    rgb(0, 208, 156) 100%
  );
  opacity: 0.102;
  z-index: -1;
}
.bg-one {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  background: url(../images/bg-shape-1.png) no-repeat left;
}
.bg-two {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  right: 0;
  background: url(../images/bg-shape-2.png) no-repeat right;
}
.hero-img-one {
  position: absolute;
  z-index: -1;
  bottom: 60px;
  left: 65px;
}
.hero-img-one img {
  border-radius: 121px;
}
.hero-img-two {
  position: absolute;
  z-index: -1;
  bottom: 80px;
  right: 150px;
}
.hero-img-two img {
  border-radius: 245px;
}
.hero-img-three {
  position: absolute;
  z-index: -1;
  bottom: 190px;
  right: 38%;
}
.shape-one {
  position: absolute;
  top: 190px;
  left: 130px;
}
.shape-two {
  position: absolute;
  top: 190px;
  right: 40%;
}
.shape-three {
  position: absolute;
  bottom: 110px;
  left: 45%;
}
.main-head {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(25, 25, 25, 0.1);
  z-index: 123;
  padding: 20px 0px;
}
.main-head .center-layout {
  max-width: 100%;
  padding: 0 70px !important;
}
.header-fixed {
  animation: sticky 1.2s;
  box-shadow: 0px 10px 30px 0px rgb(110 104 162 / 10%);
  background: #fff;
}
@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
.logo {
  display: flex;
}
.logo img {
  max-width: 150px;
}
.right-head {
  gap: 40px;
}
.menu ul {
  gap: 36px;
}
.menu ul li {
  position: relative;
  color: #162542;
  cursor: pointer;
  transition: all 0.5s;
  font-weight: 700;
  font-size: 1.063rem;
}
.menu ul li:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color-secondary);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.menu ul li:hover:after {
  width: 100%;
}
.menu ul a {
  color: #162542;
}
.menu ul li:hover,
.menu ul li:hover a {
  color: var(--color-secondary);
}
.pulse {
  animation-name: pulse;
}
.r-head {
  gap: 24px;
}
.lang {
  padding: 5px 20px 5px 10px;
  border-radius: 30px;
  font-family: var(--font-primary);
  font-size: 1rem;
  outline: none;
}
.contact-now {
  padding: 12px 30px;
  background: var(--color-secondary);
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  color: #fff;
  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: #000;
}
.btn-menu-mb {
  display: none;
}
.btn-menu-mb span {
  position: relative;
  background-color: #162542;
  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: 700;
  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-secondary);
}
#google_language_translator {
  display: none;
}
.section-head {
  padding: 255px 0 180px;
  height: 100vh;
}
.section1-head {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 770px;
}
.section1-head h1 {
  font-size: 3rem;
  line-height: 90px;
  font-weight: 700;
  font-family: var(--font-secondary);
}
.section1-head .desc-sc1 {
  font-size: 1.125rem;
  color: #808285;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  max-width: 500px;
}
.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: 49%;
  max-width: 660px;
  background: url(../images/bg-peoples.png) center no-repeat;
  background-size: 100%;
  text-align: center;
}
.section2-head img {
  width: 80%;
}
.section-video {
  padding: 40px 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section-video iframe {
  border-radius: 24px;
}
.section-about {
  background-size: cover !important;
  padding: 80px 0px 40px 0px;
}
.section-about .d-flex {
  gap: 40px;
}
.left-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 560px;
}
.left-about .sm-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-thirdly);
}
.left-about h2 {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--font-secondary);
}
.content-about {
  line-height: 28px;
}
.right-about {
  width: 45%;
  position: relative;
}
.list-social img {
  max-width: 40px;
  transition: all 0.5s;
  margin-right: 3px;
}
.list-social a:hover img {
  transform: rotate(360deg);
}
.social-about span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-thirdly);
  font-weight: 600;
  font-family: var(--font-secondary);
}
.about-draphic {
  height: 448px;
  left: -189px;
  overflow: visible;
  position: absolute;
  right: -102px;
  top: 9px;
  transform: rotate(10deg) translateZ(0px);
}
.shape1 {
  transform: rotate(23deg) translateZ(0);
  background: linear-gradient(
    269.9579642095413deg,
    #eebcc8 0%,
    rgba(189, 200, 222, 1) 100%
  );
  border-radius: 64px;
  height: 84px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 317px;
  width: 723px;
}
.shape2 {
  transform: rotate(23deg) translateZ(0);
  background: linear-gradient(
    269.9173895347253deg,
    #fb9e9d 0%,
    rgba(209, 178, 234, 1) 100%
  );
  border-radius: 64px;
  flex: none;
  height: 84px;
  left: 74px;
  overflow: hidden;
  position: absolute;
  top: 251px;
  width: 741px;
}
.img-about {
  position: relative;
  z-index: 1;
  padding-bottom: 27px;
}
.img-about img {
  max-width: 431px;
  border-radius: 12px;
}
.point1 {
  background-color: #fefffe;
  border-radius: 24px;
  box-shadow: 0 10px 30px #3e0f151a;
  padding: 16px 20px;
  position: absolute;
  top: 59px;
  left: -61px;
  font-weight: 600;
}
.point2 {
  background-color: #fefffe;
  border-radius: 24px;
  box-shadow: 0 10px 30px #3e0f151a;
  padding: 16px 20px;
  position: absolute;
  left: 260px;
  bottom: 170px;
  font-weight: 600;
}
.point3 {
  background-color: #fefffe;
  border-radius: 24px;
  box-shadow: 0 10px 30px #3e0f151a;
  padding: 16px 20px;
  position: absolute;
  left: 96px;
  bottom: 0;
  font-weight: 600;
}
.animate-float-x {
  -webkit-animation-name: float-x;
  animation-name: float-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.animate-float-y {
  -webkit-animation-name: float-y;
  animation-name: float-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes float-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes float-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@-webkit-keyframes float-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.section-skill {
  padding: 80px 0px;
  position: relative;
}
.bg-skill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(89, 86, 233) 0%,
    rgb(0, 208, 156) 100%
  );
  opacity: 0.102;
}
.section-skill .center-layout {
  max-width: 1330px;
}
.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-weight: 800;
  text-transform: capitalize;
  text-align: center;
}
.main-title div {
  font-size: 1.125rem;
  color: #808285;
  text-align: center;
}
.title-skill {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 90%;
  margin-bottom: 90px;
  line-height: 80px;
}
.exp-skill,
.exp-skill-mb {
  font-size: 1.25rem;
  margin-bottom: 60px;
  font-weight: 600;
  line-height: 32px;
}
.exp-skill-mb {
  display: none;
}
.content-skill1 {
  grid-auto-columns: 1fr;
  display: grid;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}
.content-skill2 {
  grid-auto-columns: 1fr;
  display: grid;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
  margin-top: 90px;
}
.box-skill.mr {
  margin-top: -100px;
}
.item-skill {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.big-img {
  height: 470px;
  object-fit: cover;
}
.img-skill {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.img-skill .lv {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 10px 20px;
  background-color: #f3f4f2;
  border-radius: 30px;
  color: var(--color-primary);
  font-weight: 600;
  z-index: 1;
}
.img-skill img {
  transition: all 0.5s;
  border-radius: 30px;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.img-skill:hover img {
  transform: translate3d(0px, 0px, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.name-skill {
  font-size: 1.5rem;
  font-family: var(--font-secondary);
  line-height: 35px;
  font-weight: 600;
}
.desc-skill {
  line-height: 28px;
}
.section-project {
  padding: 80px 0px;
}
.flex-project {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.box-project {
  width: 33.333333%;
  padding: 15px;
  cursor: pointer;
}
.item-project {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 20px 70px 20px;
  background: #fff url(../images/pat-2.png) no-repeat bottom -15px right -15px;
  background-size: 100px;
  border-radius: 20px;
  transition: all 0.5s;
}
.item-project:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.11);
}

.img-project {
  display: flex;
  overflow: hidden;
  border-radius: 18px;
}
.img-project img {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  width: 100%;
  transition: all 0.5s;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}
.box-project:hover img {
  transform: translate3d(0px, 0px, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(3deg) skew(0deg, 0deg);
}
.name-project {
  font-weight: 600;
  font-size: 1.5rem;
  font-family: var(--font-secondary);
}
.box-project:hover .name-project {
  color: var(--color-secondary);
}
.desc-project {
  line-height: 22px;
}
.section-feedback {
  padding: 60px 0px 150px 0px;
}
.box-feedback {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.img-feedback {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
  max-width: 440px;
  border-radius: 10px;
}
.content-feed {
  max-width: 536px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.tt-feedback {
  border: 1px solid #2f2f2f;
  border-radius: 60px;
  padding: 10px 28px;
  color: #fff;
}
.name-feedback {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 5px;
  color: #fff;
}
.desc-feedback {
  color: #b1b1b1;
  line-height: 24px;
}
.content-feedback {
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 8px;
}
.wr-feedback {
  position: relative;
  max-width: 1080px;
  margin: auto;
  padding: 20px;
  background: #161616;
  border-radius: 12px;
}
.wr-feedback .owl_prev {
  position: absolute;
  width: 50px;
  height: 50px;
  top: auto;
  bottom: -100px;
  left: 45%;
  margin: auto;
  background: transparent;
  border: 1px solid #7e7e7e;
  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_next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: auto;
  bottom: -100px;
  right: 45%;
  margin: auto;
  background: transparent;
  border: 1px solid #7e7e7e;
  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-secondary);
  border-color: transparent;
  color: #fff;
}
.section-follow {
  padding: 40px 0px 80px 0px;
}

.content-follow {
  max-width: 800px;
  font-size: 4.75rem;
  font-weight: 700;
}
.content-follow .mail {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}
.content-follow span {
  width: 70px;
  height: 70px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  margin-left: 40px;
}
.content-follow span i {
  font-size: 1.5rem;
  overflow: hidden;
  transform: rotate(-45deg);
  color: #fff;
}
.content-follow span:hover {
  transform: rotate(45deg);
}
.social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social img {
  max-width: 40px;
  transition: all 0.5s;
}
.social a:hover img {
  transform: rotate(360deg);
}
.section-contact {
  position: relative;
  padding: 60px 0px 220px;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-secondary) 100%);
  background-size: cover !important;
}
.bg-img2 {
  position: absolute;
  left: 7%;
  bottom: 7%;
  width: 240px;
  height: 240px;
  background: url(../images/pat-1.png) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.bg-title {
  position: absolute;
  width: 100%;
  font-size: 280px;
  font-family: var(--font-fourly);
  color: rgba(0, 0, 0, 0.02);
  font-weight: bold;
  line-height: 1px;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  bottom: 10%;
}
.bg-img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -32px;
  width: 240px;
  height: 240px;
  background: url(../images/pat-1.png) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.main-footer h2 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  line-height: 48px;
}
.note {
  text-align: center;
  max-width: 680px;
  margin: 20px auto 60px auto;
  font-size: 1.125rem;
  font-weight: 500;
}
.left-footer {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.item-footer {
  position: relative;
  padding-left: 130px;
}
.item-footer .icon {
  border: 2px solid #000;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 5px 5px 0px 0px rgb(0 0 0 / 20%);
  width: 56px;
  height: 56px;
  text-align: center;
  line-height: 52px;
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: 0;
}
.item-footer .icon:after {
  margin-top: -1px;
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #000;
}
.item-footer .title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #000;
  font-family: var(--font-fourly);
}
.item-footer .text {
  opacity: 0.8;
}
.right-footer {
  width: 57%;
}
.form-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: auto;
  margin-top: 12px;
}
.form-contact input,
.form-contact select,
.form-contact textarea {
  width: 49%;
  margin-bottom: 30px;
  display: inline-block;
  outline: none;
  min-height: 0;
  padding: 17px 30px;
  resize: vertical;
  border-radius: 30px;
  background: #fff;
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 2px solid #000;
  font-weight: 600;
}
.form-contact input::placeholder,
.form-contact select::placeholder,
.form-contact textarea::placeholder {
  color: var(--color-primary);
}
.btn-send {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.form-contact input[type="submit"] {
  width: auto;
  padding: 15px 55px;
  margin: 0;
  background: #fff;
  border: 2px solid #000;
  color: var(--color-primary);
  border-radius: 30px;
  transition: all 0.5s;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
}

.form-contact input:hover[type="submit"] {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
@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-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) {
  .main-head {
    padding: 12px 0px;
  }
  .main-head .center-layout {
    padding: 0 15px !important;
  }
  .menu,
  .section-project .pbefore,
  .section-project .pafter,
  .main-head .contact-now,
  .bg-title,
  .bg-img2 {
    display: none;
  }
  .btn-menu-mb {
    display: block;
  }
  .right-footer {
    width: 100%;
  }
  .left-footer {
    max-width: 100%;
    width: 100%;
  }
  .main-footer .d-flex {
    flex-direction: column;
    gap: 24px;
  }
  .section-contact {
    padding: 40px 0px;
  }
  .section-head {
    padding: 120px 0px 20px;
    height: auto;
  }
  .hero-img-two {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 95%;
    margin: auto;
    text-align: center;
    padding-bottom: 40px;
  }
  .hero-img-one,
  .hero-img-three,
  .shape-one,
  .shape-two,
  .shape-three,
  .about-draphic {
    display: none;
  }
  .section1-head,
  .section1-head p {
    max-width: 100%;
  }
  .left-about {
    width: 100%;
    max-width: 100%;
  }
  .section-about .d-flex {
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .center-layout {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  html {
    font-size: 14px;
  }
  .form-contact input,
  .form-contact select {
    width: 100%;
    margin-bottom: 16px;
  }
  .wr-feedback .owl_prev {
    left: 35%;
    bottom: -80px;
  }
  .wr-feedback .owl_next {
    right: 35%;
    bottom: -80px;
  }
  .content-skill1,
  .content-skill2 {
    gap: 20px;
  }
  .header {
    padding: 0px 0px 20px 0px;
  }
  .content-follow {
    max-width: 100%;
    font-size: 4rem;
    line-height: 70px;
  }
  .wr-follow.d-flex {
    flex-direction: column;
    gap: 24px;
  }

  .section-about .d-flex {
    flex-direction: column-reverse;
  }

  .box-project {
    width: 50%;
  }
  .content-follow span {
    display: none;
  }
  .point1,
  .point2,
  .point3 {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    margin-bottom: 15px;
  }

  .section-about,
  .section-skill,
  .section-project,
  .section-follow {
    padding: 40px 0px;
  }
  .section-feedback {
    padding: 40px 0px 100px 0px;
  }

  .title-skill {
    max-width: 100%;
  }
  .social {
    flex-direction: row-reverse;
  }
  .img-about {
    text-align: center;
  }
}
@media screen and (max-width: 650px) {
  .logo img {
    max-width: 120px;
  }
  .section-video iframe {
    height: 300px;
  }
  .box-feedback {
    flex-direction: column;
    gap: 24px;
  }
  .exp-skill-mb {
    display: block;
  }
  .exp-skill {
    display: none;
  }
  .content-skill1,
  .content-skill2 {
    display: flex;
    flex-direction: column;
  }
  .content-skill2,
  .box-skill.mr {
    margin-top: 0;
  }
  .item-skill {
    padding: 0;
  }
  .title-skill {
    font-size: 2.5rem;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .img-about img {
    max-width: 100%;
  }
  .main-footer {
    padding: 40px 20px;
  }
  .section1-head h1 {
    font-size: 3.5rem;
    line-height: 55px;
  }
  .main-title h2 {
    font-size: 2rem;
    line-height: 48px;
  }
  .box-skill {
    width: 100%;
  }
  .box-skill {
    margin-bottom: 0;
  }
  .main-footer h2 {
    font-size: 2rem;
    line-height: 38px;
  }
  .right-about {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .lang {
    font-size: 0.875rem;
  }
  .content-skill,
  .flex-project {
    margin: 0;
  }
  .box-project {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }
}
