/* Start pre-design */
:root {
  --main-color: #f00f70;
  --main-trans: 0.3s;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.container {
  max-width: 320px;
  padding: 0 2em;
  margin: 0 auto;
}

@media (min-width: 400px) {
  .container {
    max-width: 400px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 570px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 760px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 980px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1390px;
  }
}

@media (min-width: 2000px) {
  .container {
    max-width: 1990px;
  }
}

@media (min-width: 2600px) {
  .container {
    max-width: 2580px;
  }
}

.special-name {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

section {
  padding: 4em 0;
}

h2.head {
  text-align: center;
  font-size: 4rem;
  color: var(--main-color);
}

@media (min-width: 2000px) {
  h2.head {
    font-size: 6rem;
  }
}

@media (max-width: 575.8px) {
  h2.head {
    font-size: 2rem;
  }
}

.scroll-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: -70px;
  width: 50px;
  height: 50px;
  background-color: #514e4d;
  border-radius: 50%;
  z-index: 9999;
  cursor: pointer;
  transition: var(--main-trans);
}

.scroll-top.appear {
  right: 20px;
}

.scroll-top i {
  color: var(--main-color);
}

@media (min-width: 2000px) {
  .scroll-top {
    width: 70px;
    height: 70px;
  }

  .scroll-top i {
    color: var(--main-color);
    font-size: 1.5rem;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #1d1c1a;
}

::-webkit-scrollbar-thumb {
  background-color: #303030;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #c2c2c2;
}
/* End pre-design */

/* Start Settings Box */
.setting-box {
  position: fixed;
  top: 0;
  left: -250px;
  background-color: rgb(255 255 255 / 10%);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 20%);
  min-height: 100vh;
  width: 250px;
  z-index: 9999;
  transition: var(--main-trans);
}

.setting-box.open {
  left: 0;
}

.setting-box .toggle-setting {
  position: absolute;
  right: -31px;
  top: 20%;
  transform: translateY(-20%);
  background-color: rgb(255 255 255 / 10%);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 20%);
  border-left: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.setting-box .toggle-setting i {
  color: white;
}

.setting-box .options {
  padding: 10px;
}

.setting-box .options > div {
  padding: 10px;
  background-color: rgb(255 255 255 / 10%);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 8px;
  text-align: center;
}

.setting-box .options > div:not(:first-of-type) {
  margin-top: 10px;
}

.setting-box .options > div h4 {
  font-size: 1.2rem;
  color: white;
}

.setting-box .colors-options .colors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
  margin-top: 0.75em;
}

.setting-box .colors-options .colors li {
  list-style: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
}

.setting-box .colors-options .colors li:hover {
  border: 2px solid black;
}

.setting-box .colors-options .colors li.active {
  border: 2px solid black;
}

.setting-box .colors-options .colors li:first-child {
  background-color: #f00f70;
}

.setting-box .colors-options .colors li:nth-child(2) {
  background-color: #f2b50b;
}

.setting-box .colors-options .colors li:nth-child(3) {
  background-color: #9cd5ff;
}

.setting-box .colors-options .colors li:nth-child(4) {
  background-color: #aeb784;
}

.setting-box .colors-options .colors li:nth-child(5) {
  background-color: #66cd29;
}

.setting-box .options .btns {
  margin-top: 0.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.setting-box .options .btns span {
  background-color: rgb(31 31 31 / 50%);
  padding: 0.25em 0.5em;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  transition: var(--main-trans);
}

.setting-box .options .btns span:hover,
.setting-box .options .btns span.active {
  background-color: rgb(31 31 31);
}

@media (min-width: 2000px) {
  .setting-box {
    left: -300px;
    width: 300px;
  }

  .setting-box .toggle-setting {
    width: 45px;
    height: 45px;
    right: -45px;
    font-size: 1.5rem;
  }

  .setting-box .options > div h4 {
    font-size: 1.5rem;
  }

  .setting-box .options .btns span {
    font-size: 1.25rem;
  }

  .setting-box .colors-options .colors li {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 575.8px) {
  .setting-box {
    left: -200px;
    width: 200px;
  }

  .setting-box .options > div h4 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .setting-box .colors-options .colors li {
    width: 20px;
    height: 20px;
  }

  .setting-box .options .btns span {
    font-size: 0.9rem;
  }
}

@media (max-width: 374.8px) {
  .setting-box {
    left: -150px;
    width: 150px;
  }

  .setting-box .options .btns span {
    font-size: 0.75rem;
  }
}
/* End Settings Box */

/* Start nav Bullets */
.nav-bullets {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 9999;
  margin-right: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-bullets .bullet {
  border: 2px solid var(--main-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
}

.nav-bullets .bullet .tool-tip {
  position: absolute;
  color: white;
  background-color: var(--main-color);
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  right: 32px;
  text-align: center;
  padding: 0.25em;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

.nav-bullets .bullet .tool-tip::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -15.8px;
  border: 8px solid;
  border-color: transparent transparent transparent var(--main-color);
}

.nav-bullets .bullet:hover .tool-tip {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 2000px) {
  .nav-bullets {
    gap: 1em;
  }

  .nav-bullets .bullet {
    width: 30px;
    height: 30px;
  }

  .nav-bullets .bullet .tool-tip {
    right: 50px;
    font-size: 1.5rem;
    width: 200px;
  }
}
/* End nav Bullets */

/* Start Landing Section */
.landing {
  min-height: 100vh;
  background-image: url(../images/landing-img_0.jpg);
  background-size: cover;
  position: relative;
  transition: 0.5s;
}

.landing .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
  z-index: 1;
}

.landing .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
  position: relative;
  color: white;
}

.landing .header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
}

.landing .header .toggle-menu {
  width: 40px;
  height: 21px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  cursor: pointer;
  display: none;
  z-index: 2;
}

.landing .header .toggle-menu span {
  width: 40px;
  height: 4px;
  background: white;
  border-radius: 5px;
  transition: var(--main-trans);
}

.landing .header .toggle-menu.open {
  height: 30px;
  z-index: 3;
}

.landing .header .toggle-menu.open span:first-of-type {
  transform: rotate(45deg) translate(5px, 5px);
}

.landing .header .toggle-menu.open span:last-of-type {
  transform: rotate(-45deg) translate(5px, -5px);
}

.landing .header .navs {
  display: flex;
  z-index: 2;
}

.landing .header .navs a {
  text-decoration: none;
  font-size: 1.15rem;
  color: inherit;
  margin-left: 20px;
  letter-spacing: 1px;
}

.landing .header .navs a li {
  list-style: none;
  transition: var(--main-trans);
}

.landing .header .navs a li.active {
  color: var(--main-color);
}

.landing .header .navs a li:hover {
  color: var(--main-color);
}

.landing .introduction-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
}

.landing .introduction-text h1 {
  font-size: 6rem;
  margin: 0;
}

.landing .introduction-text h1 .colored {
  color: var(--main-color);
}

.landing .introduction-text .desc {
  margin-top: 10px;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

@media (min-width: 2000px) {
  .landing .header {
    padding: 2em 0;
  }

  .landing .header .logo {
    font-size: 2.5rem;
  }

  .landing .header .navs a {
    font-size: 1.75rem;
    margin-left: 50px;
  }

  .landing .introduction-text h1 {
    font-size: 8rem;
  }

  .landing .introduction-text .desc {
    font-size: 2rem;
  }
}

@media (max-width: 991.8px) {
  .landing .header .navs {
    display: none;
  }

  .landing .header .toggle-menu {
    display: flex;
  }

  .landing .header .navs:has(~ .toggle-menu.open) {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    position: absolute;
    top: 60px;
    right: 15px;
    background-color: rgb(255 255 255 / 10%);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 5px;
    padding: 1em;
    z-index: 3;
  }

  .landing .header .navs:has(~ .toggle-menu.open) a {
    color: #c2c2c2;
    margin-left: 0;
    width: max-content;
  }

  .landing .introduction-text {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    min-width: max-content;
  }

  .landing .introduction-text h1 {
    font-size: 4rem;
  }

  .landing .introduction-text .desc {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 575.8px) {
  .landing .header .logo {
    font-size: 1.25rem;
  }

  .landing .header .toggle-menu span {
    width: 30px;
    height: 3px;
  }

  .landing .header .navs:has(~ .toggle-menu.open) a {
    font-size: 0.75rem;
  }

  .landing .header .toggle-menu.open span:first-of-type {
    transform: rotate(45deg) translate(5px, 3px);
  }

  .landing .introduction-text h1 {
    font-size: 2rem;
  }

  .landing .introduction-text .desc {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}

@media (max-width: 399.8px) {
  .landing .introduction-text .desc {
    font-size: 0.65rem;
    line-height: 1.6;
  }
}
/* End Landing Section */

/* Start About Section */
.about {
  background-color: black;
}

.about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}

.about .text-content {
  max-width: 800px;
}

.about .text-content h2 {
  font-size: 4rem;
  color: var(--main-color);
}

.about .text-content .desc {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 1em;
  color: white;
}

.about .img-container {
  width: 350px;
  height: 350px;
  background-color: rgb(255 255 255 / 10%);
  border-radius: 8px;
  padding: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .img-container::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  z-index: -1;
  transition: var(--main-trans);
}

.about .img-container:hover::before {
  width: 100%;
  height: 100%;
}

.about .img-container img {
  width: 100%;
  height: 100%;
}

@media (min-width: 2000px) {
  .about .text-content h2 {
    font-size: 6rem;
  }

  .about .text-content .desc {
    font-size: 2rem;
  }

  .about .img-container {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 1199.8px) {
  .about .container {
    display: block;
  }

  .about .img-container {
    display: none;
  }

  .about .text-content {
    max-width: initial;
    text-align: center;
  }
}

@media (max-width: 575.8px) {
  .about .text-content h2 {
    font-size: 2rem;
  }

  .about .text-content .desc {
    font-size: 1rem;
  }
}
/* End About Section */

/* Start Our Skills */
.content {
  background-color: #1d1c1a;
}

.content .progress-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #303030;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-top: 2em;
  border-radius: 5px;
}

.content .progress-container .progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content .progress .progress-name {
  font-weight: 600;
  font-size: 1.25rem;
  color: white;
}

.content .progress .progress-percent {
  width: 90%;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #eee;
}

.content .progress .progress-percent span {
  display: block;
  height: 100%;
  background-color: var(--main-color);
  width: 0;
  transition: 1.2s;
}

@media (min-width: 2000px) {
  .content .progress-container {
    max-width: 1900px;
  }

  .content .progress-container .progress {
    justify-content: space-evenly;
  }
}

@media (min-width: 2600px) {
  .content .progress-container {
    max-width: 2400px;
  }
}

@media (max-width: 991.8px) {
  .content .progress-container {
    gap: 1.25em;
  }

  .content .progress-container .progress {
    flex-direction: column;
    gap: 0.75em;
  }

  .content .progress .progress-name {
    font-size: 1rem;
  }
}

@media (max-width: 575.8px) {
  .content .progress .progress-percent {
    height: 20px;
    border-radius: 5px;
  }
}
/* End Our Skills */

/* Start Just For You */
.for-you {
  background-color: black;
}

.for-you .imgs-box {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #303030;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-top: 2em;
  border-radius: 8px;
}

.for-you img {
  cursor: pointer;
  border-radius: 5px;
  transition: var(--main-trans);
}

.for-you img:hover {
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgb(0 0 0 / 70%);
}

.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background-color: rgb(255 255 255 / 10%);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 12px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.popup-box .popup-box-img {
  border-radius: 5px;
  max-height: 400px;
}

.popup-box .popup-box-h {
  font-size: 1.25rem;
  color: var(--main-color);
}

.popup-box .close-popup-btn {
  position: absolute;
  top: -25px;
  right: -25px;
  color: white;
  background-color: rgb(255 255 255 / 10%);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

@media (min-width: 2000px) {
  .for-you .imgs-box {
    max-width: 1900px;
  }

  .popup-box {
    width: 1200px;
    height: 600px;
    justify-content: space-evenly;
  }

  .popup-box .popup-box-h {
    font-size: 2.5rem;
  }

  .popup-box .popup-box-img {
    transform: scale(1.1);
  }

  .popup-box .close-popup-btn {
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
  }
}

@media (min-width: 2600px) {
  .for-you .imgs-box {
    max-width: 2400px;
  }
}

@media (max-width: 991.8px) {
  .popup-box {
    width: 700px;
    height: 450px;
    justify-content: space-evenly;
    gap: 0;
  }

  .popup-box .popup-box-img {
    max-height: 350px;
  }
}

@media (max-width: 767.8px) {
  .popup-box {
    width: 500px;
    height: 350px;
  }

  .popup-box .popup-box-img {
    max-height: 250px;
  }
}

@media (max-width: 575.8px) {
  .popup-box {
    width: 350px;
    height: 250px;
  }

  .popup-box .popup-box-img {
    max-height: 170px;
  }

  .popup-box .popup-box-h {
    font-size: 1rem;
  }

  .popup-box .close-popup-btn {
    width: 30px;
    height: 30px;
    top: -20px;
    right: -20px;
    font-size: 0.75rem;
  }
}

@media (max-width: 399.8px) {
  .popup-box {
    width: 270px;
    height: 170px;
  }

  .popup-box .popup-box-img {
    max-height: 120px;
  }

  .popup-box .popup-box-h {
    font-size: 0.75rem;
  }

  .popup-box .close-popup-btn {
    width: 20px;
    height: 20px;
    top: -12px;
    right: -12px;
    font-size: 0.5rem;
  }
}
/* End Just For You */

/* Start Timeline */
.timeline {
  background-color: #1d1c1a;
}

.timeline .container {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.timeline .container .timeline-walks {
  content: "";
  position: absolute;
  width: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.timeline .container .timeline-walks .filler {
  position: absolute;
  width: 100%;
  height: 0;
  background-color: var(--main-color);
  transition: 0.1s;
}

.timeline .container .year {
  position: relative;
  margin: 0 auto;
  background-color: var(--main-color);
  padding: 0.5em;
  border-radius: 5px;
  font-size: 1.05rem;
}

.timeline .container .walk {
  padding: 1em;
  background-color: rgb(255 255 255 / 10%);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 20%);
  width: calc(50% - 70px);
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.timeline .container .walk::before {
  content: "";
  background-color: var(--main-color);
  width: 25px;
  height: 25px;
  position: absolute;
  border-radius: 50%;
  border: 3px solid white;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: var(--main-trans);
}

.timeline .container .walk.activate::before {
  transform: translateY(-50%) scale(1);
}

.timeline .container .walk.left::before {
  right: -86px;
}

.timeline .container .walk.right::before {
  left: -86px;
}

.timeline .container .walk::after {
  content: "";
  background-color: var(--main-color);
  height: 3px;
  width: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--main-trans);
  z-index: -1;
}

.timeline .container .walk.activate::after {
  width: 66px;
}

.timeline .container .walk.left::after {
  right: -67px;
}

.timeline .container .walk.right::after {
  left: -67px;
}

.timeline .container .left {
  align-self: flex-start;
}

.timeline .container .right {
  align-self: flex-end;
}

.timeline .container .walk h3 {
  font-size: 1.3rem;
}

.timeline .container .walk .desc {
  line-height: 1.8;
  margin-top: 0.75em;
  color: #c2c2c2;
}

@media (min-width: 2000px) {
  .timeline .container .year {
    font-size: 1.5rem;
  }

  .timeline .container .walk::before {
    width: 35px;
    height: 35px;
  }

  .timeline .container .walk.right::before {
    left: -91px;
  }

  .timeline .container .walk.left::before {
    right: -91px;
  }

  .timeline .container .walk h3 {
    font-size: 2rem;
  }

  .timeline .container .walk .desc {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.8px) {
  .timeline .container .walk {
    width: 100%;
  }

  .timeline .container .walk::before {
    display: none;
  }

  .timeline .container .walk::after {
    display: none;
  }

  .timeline .container .walk h3 {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media (max-width: 575.8px) {
  .timeline .container .walk h3 {
    font-size: 1rem;
    line-height: 1.8;
  }

  .timeline .container .walk .desc {
    font-size: 0.8rem;
  }
}
/* End Timeline */

/* Start Features */
.features {
  background-color: black;
}

.features .feats {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2em;
  margin-top: 3em;
}

.features .feat-box {
  text-align: center;
}

.features .feat-box i {
  color: var(--main-color);
  font-size: 2rem;
}

.features .feat-box h3 {
  margin-top: 1em;
  font-size: 1.5rem;
}

.features .feat-box .desc {
  margin-top: 0.5em;
  font-size: 1.25rem;
  line-height: 1.6;
}

@media (max-width: 575.8px) {
  .features .feat-box h3 {
    font-size: 1rem;
  }

  .features .feat-box .desc {
    font-size: 0.8rem;
  }

  .features .feat-box i {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.8px) {
  .features .feats {
    flex-direction: column;
    gap: 2.5em;
  }
}
/* End Features */

/* Start Testemonials */
.testemonials {
  position: relative;
}

.testemonials h2 {
  text-align: center;
  font-size: 4rem;
  color: white;
}

.testemonials::before,
.testemonials::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.testemonials::before {
  left: 0;
  background-color: var(--main-color);
}

.testemonials::after {
  right: 0;
  background-color: #1d1c1a;
}

.testemonials .tests {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 1.25em;
  margin-top: 2.5em;
}

@media (max-width: 767.8px) {
  .testemonials .tests {
    grid-template-columns: 1fr;
  }
}

.testemonials .tests .test {
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: white;
}

.testemonials .tests .test > p {
  font-style: italic;
  font-size: 1.1rem;
}

.testemonials .tests .test .person-info {
  display: flex;
  align-items: center;
  gap: 1.25em;
  margin-top: 1em;
}

.testemonials .test .person-info img {
  width: 60px;
  border-radius: 50%;
  padding: 1px;
  border: 3px solid white;
}

.testemonials .test .person-info .text-infos h5 {
  font-size: 1.05rem;
}

.testemonials .test .person-info .text-infos p {
  margin-top: 0.5em;
}

@media (min-width: 2000px) {
  .testemonials h2 {
    font-size: 6rem;
  }

  .testemonials .test .person-info img {
    width: 80px;
  }

  .testemonials .tests .test > p,
  .testemonials .test .person-info .text-infos h5,
  .testemonials .test .person-info .text-infos p {
    font-size: 2rem;
  }
}

@media (max-width: 575.8px) {
  .testemonials h2 {
    font-size: 2rem;
  }

  .testemonials .tests .test > p,
  .testemonials .test .person-info .text-infos h5,
  .testemonials .test .person-info .text-infos p {
    font-size: 1rem;
  }
}
/* End Testemonials */

/* Start Contact Us */
section.contact {
  background-image: url(../images/map.jpg);
  background-size: cover;
}

.contact .desc {
  text-align: center;
  font-size: 2rem;
  color: var(--main-color);
  margin-top: 0.75em;
  text-transform: capitalize;
}

.contact .form {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 3em;
}

.contact .left,
.contact .right {
  display: flex;
  flex-direction: column;
  gap: 1em;
  flex: 1;
}

.contact .form input:not([type="submit"]),
.contact .form textarea {
  background-color: rgb(255 255 255 / 10%);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 20%);
  padding: 0.5em 0.75em;
  color: #c2c2c2;
  caret-color: #c2c2c2;
  outline: 0;
  transition: var(--main-trans);
}

.contact .form input:not([type="submit"]):focus,
.contact .form textarea:focus {
  border: 1px solid var(--main-color);
}

.contact .form textarea {
  resize: none;
  height: 183px;
}

.contact .form input {
  height: 50px;
}

.contact .form input[type="submit"] {
  background-color: var(--main-color);
  color: white;
  border: 0;
  outline: 0;
  cursor: pointer;
}

@media (min-width: 2000px) {
  .contact .desc {
    font-size: 3rem;
  }

  .contact .form {
    flex-direction: column;
  }

  .contact .left,
  .contact .right {
    width: 80%;
  }

  .contact .form input,
  .contact .form textarea {
    font-size: 1.75rem;
    padding: 1.25em 1.15em !important;
  }

  .contact .form textarea {
    height: 300px;
  }
}

@media (max-width: 767.8px) {
  .contact .form {
    flex-direction: column;
  }

  .contact .desc {
    font-size: 1.25rem;
  }

  .contact .left,
  .contact .right {
    width: 100%;
  }
}

@media (max-width: 575.8px) {
  .contact .desc {
    font-size: 1rem;
  }
}
/* End Contact Us */

/* Start Footer */
.footer {
  padding: 1.5em;
  text-align: center;
  background-color: #1d1c1a;
  color: white;
}

.footer .special-name {
  color: var(--main-color);
}

@media (min-width: 992px) {
  .footer {
    font-size: 1.5rem;
  }
}

@media (min-width: 2000px) {
  .footer {
    font-size: 2.5rem;
  }
}
/* End Footer */
