html,
* {
  padding: 0;
  margin: 0;
}

/* HEADER */
.fixed-menu {
  background-color: #fff;
}

.fixed-menu a {
  color: #000;
}

.fixed-menu .bar-top,
.fixed-menu .bar-middle,
.fixed-menu .bar-bottom {
  background: #000;
}

header {
  transition: all 0.1s ease;
  width: 100%;
  background-color: transparent;
  position: fixed;
  z-index: 10;
  border-bottom: 1px solid #f2f2f2;
  z-index: 99999999999;
  overflow: hidden;
}

header nav {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  width: 30%;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

header .logo img {
  max-width: 70%;
  transition: all 0.3s ease;
}

header nav ul {
  width: 30%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

header nav ul li {
  padding: 0 5px;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: var(--roboto);
}

/* BURGER MENU */
.hamburger-menu {
  margin: 2rem;
  flex-flow: column wrap;
  justify-content: space-between;
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  display: none;
}
.bar-top,
.bar-middle,
.bar-bottom {
  height: 5px;
  background: white;
  border-radius: 5px;
  margin: 3px 0;
  transform-origin: left;
  transition: all 0.5s;
}

@media screen and (max-width: 1390px) {
  header nav ul {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
  }
}

@media screen and (max-width: 568px) {
  header nav {
    width: 100%;
  }

  header .logo {
    width: 60%;
    display: flex;
    align-items: center;
    padding: 5px 3px;
  }

  header .logo img {
    max-width: 100%;
  }

  header nav ul {
    transition: all 0.3s ease;
    position: fixed;
    top: 95px;
    left: -100%;
    width: 100%;
    height: 30vh;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    z-index: 9999999999;
    background-color: #fff;
  }

  header nav ul li a {
    color: #000;
    font-size: 1.2rem;
  }
  .hamburger-menu {
    display: flex;
  }
}

/* FIGURES */

.figure-1 {
  width: 400px;
  height: 250px;
  position: absolute;
  left: 0;
  bottom: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.figure-1 img {
  max-width: 100%;
}

.figure-text {
  position: absolute;
  width: 60%;
  height: 200px;
  top: 5%;
}

.figure-text img {
  max-width: 100%;
}

/* MAIN BANNER */

.main {
  background-image: url("../assets/images/main/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.main::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.main-copy {
  width: 40%;
  padding: 15px 20px;
  line-height: 4rem;
  z-index: 10;
  margin-top: 50px;
}

.main-copy h2 {
  color: #fff;
  font-family: var(--poppins);
  font-size: 4rem;
  letter-spacing: 4px;
}

.main-copy h2.no-fill {
  color: black;
  -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
}

.main-copy h3 {
  color: #fff;
  font-family: var(--poppins);
  font-size: 3rem;
}

.border-container {
  background-color: var(--main-red);
  width: 85%;
  padding: 0px 10px;
  border-radius: 0 100px 0 0;
}

.main-copy p {
  color: #fff;
  font-family: var(--poppins);
  font-size: 1.8rem;
}

@media screen and (max-width: 1201px) {
  .main-copy {
    width: 50%;
  }
}

@media screen and (max-width: 980px) {
  .main-copy {
    width: 70%;
  }
}

@media screen and (max-width: 769px) {
  .main {
    height: 100vh;
    justify-content: center;
    position: relative;
  }

  .main-copy {
    width: 90%;
    padding: 5px;
    line-height: 3rem;
    margin-top: 60px;
    text-align: center;
  }

  .main-copy h2 {
    color: #fff;
    font-size: 2.3rem;
    letter-spacing: auto;
  }

  .main-copy h3 {
    color: #fff;
    font-family: var(--poppins);
    font-size: 1.9rem;
  }

  .border-container {
    background-color: var(--main-red);
    width: 100%;
    margin: auto;
    margin-top: 20px;
    padding: 5px 0;
    border-radius: 10px;
    line-height: 2.3rem;
  }

  .main-copy p {
    color: #fff;
    font-family: var(--poppins);
    font-size: 1.5rem;
  }
  .figure-1 {
    width: auto;
    bottom: 0%;
  }

  .figure-text {
    position: absolute;
    width: 100%;
    height: 200px;
    top: 20%;
  }

  .figure-text img {
    max-width: 100%;
  }
}

/* ABOUT SECTION */
.about {
  background-image: url("../assets/images/about/background-section.png");
  background-position: center;
  background-size: cover;
  height: 150vh;
  opacity: 0;
  transition: all 1s ease;
}

.about .about-copy {
  width: 50%;
  margin: auto;
  padding: 4rem 5px 0 5px;
  font-family: var(--poppins);
  text-align: center;
  line-height: 3rem;
}

.about-copy h2 {
  font-size: 3rem;
}

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

.about-copy p {
  font-size: 2rem;
  font-weight: lighter;
  font-family: var(--roboto);
}

.about-copy p span {
  background-color: var(--main-red);
  border-radius: 50%;
  padding: 5px;
  color: #fff;
}

.about-copy h2.last-text-title {
  font-size: 2.4rem;
}

.about-call {
  width: 80%;
  margin: auto;
  background-image: url("../assets/images/about/background-section-2.png");
  background-position: center;
  background-size: cover;
  margin-top: -100px;
  position: relative;
}

.about-call img {
  max-width: 100%;
}

.about-button {
  width: 50%;
  margin: auto;
  position: absolute;
  bottom: 0px;
  left: 25%;
  text-align: center;
}

.about-button a {
  display: inline-block;
  width: 60%;
  background-color: var(--secondary-blue);
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 40px;
  font-size: 1.2rem;
  color: #fff;
  font-family: var(--poppins);
  box-shadow: 10px 10px 16px -10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 10px 10px 16px -10px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 10px 10px 16px -10px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}

.about-button p span {
  font-size: 1.3rem;
  font-family: var(--poppins);
}

.about-button p {
  font-size: 1.3rem;
  font-family: var(--roboto);
}

@media screen and (max-width: 769px) {
  .about {
    height: 100vh;
    opacity: 0;
  }

  .about .about-copy {
    width: 90%;
    margin: auto;
    line-height: 2rem;
    padding: 1rem 5px 0 5px;
  }

  .about-copy h2 {
    font-size: 2rem;
  }

  .about-copy h2.blue-text {
    font-size: 2rem;
  }

  .about-copy p {
    font-size: 1.2rem;
  }

  .about-copy h2.last-text-title {
    font-size: 1.6rem;
  }

  .about-call {
    width: 100%;
    margin-top: -100px;
    overflow: hidden;
  }

  .about-call img {
    max-width: 170%;
    margin-left: -35%;
  }

  .about-button {
    width: 100%;
    bottom: 0px;
    left: 0%;
  }

  .about-button a {
    width: 70%;
    padding: 10px 20px;
    font-size: 1rem;
  }

  .about-button p span {
    font-size: 1rem;
  }

  .about-button p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 569px) {
  .about {
    height: 70vh;
    opacity: 0;
  }
}

/* GOALS SECTION */

.goals {
  opacity: 0;
  transition: all 1s ease;
}

.goals-title {
  padding: 15px 0;
  width: 50%;
  text-align: center;
  margin: auto;
  font-size: 4rem;
  font-family: var(--poppins);
  color: var(--main-red);
}

.goals-columns {
  width: 85%;
  margin: auto;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.goals-container {
  width: 45%;
  text-align: center;
  font-size: 2.1rem;
  font-family: var(--roboto);
}

.goals-container span {
  font-family: var(--poppins);
}

.second-container {
  width: 50%;
  font-size: 2rem;
}

.goals-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  color: #fff;
  width: 150px;
  height: 150px;
  margin: auto;
  margin-top: 20px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--secondary-blue);
  box-shadow: 5px 3px 5px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 5px 3px 5px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 5px 3px 5px 0px rgba(0, 0, 0, 0.4);
}

.second-container a {
  background-color: var(--main-red);
  box-shadow: 5px 3px 5px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 5px 3px 5px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 5px 3px 5px 0px rgba(0, 0, 0, 0.4);
}

.goals-success-title {
  width: 50%;
  margin: auto;
  margin-top: 50px;
  text-align: center;
  font-family: var(--poppins);
  line-height: 135px;
  position: relative;
}

.goals-success-title h3 {
  font-size: 4rem;
  font-family: var(--roboto);
  line-height: 10px;
}

.goals-success-title h2 {
  font-size: 4.2rem;
  color: var(--main-red);
}

.goals-success-title h2.goals-success-main {
  font-size: 12rem;
  color: var(--main-blue);
}

.goals-success-title h3.goals-success-secondary {
  font-size: 4rem;
  color: var(--main-blue);
  margin-top: 30px;
  font-family: var(--poppins);
}

.goals-success-title img {
  position: absolute;
  max-width: 50%;
}

img.figure-succes-main {
  left: -20%;
  top: 0;
}

.figure-succes-secondary {
  right: -20%;
  top: 0;
}

@media screen and (max-width: 1201px) {
  .goals-success-title h3.goals-success-secondary {
    font-size: 3rem;
  }
}

@media screen and (max-width: 769px) {
  .goals-title {
    padding: 15px 0;
    width: 100%;
    font-size: 2.6rem;
  }

  .goals-columns {
    width: 95%;
    flex-direction: column;
    margin-top: 20px;
  }

  .goals-container {
    width: 100%;
    text-align: center;
    font-size: 1.7rem;
    font-family: var(--roboto);
  }

  .second-container {
    width: 100%;
    margin-top: 20px;
  }

  .second-container a {
    background-color: var(--main-red);
    box-shadow: 5px 3px 5px 0px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 5px 3px 5px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 5px 3px 5px 0px rgba(0, 0, 0, 0.4);
  }

  .goals-success-title {
    width: 100%;
    margin-top: 50px;
    text-align: center;
    line-height: 55px;
    overflow: hidden;
  }

  .goals-success-title h3 {
    font-size: 2rem;
    line-height: 35px;
  }

  .goals-success-title h2 {
    font-size: 2.2rem;
  }

  .goals-success-title h2.goals-success-main {
    font-size: 4rem;
    color: var(--main-blue);
  }

  .goals-success-title h3.goals-success-secondary {
    font-size: 2rem;
    margin-top: -5px;
  }

  .goals-success-title img {
    position: absolute;
    max-width: 30%;
  }

  img.figure-succes-main {
    left: 0%;
    top: 0;
  }

  .figure-succes-secondary {
    right: -5%;
    top: 0;
  }

  .customers {
    overflow-x: scroll;
  }
}

/* INFORMATION */

.information {
  height: 100vh;
  background-image: url("../assets/images/section-4/background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 1s ease;
}

.information-title {
  width: 60%;
  margin: auto;
  position: relative;
  font-family: var(--poppins);
  text-align: center;
  font-size: 2rem;
}

.information-title .rounded-main-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.information-title .rounded-main-title h2 {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  background-color: var(--main-red);
}

.rounded-main-title img {
  max-width: 20%;
}

.information-title h2 span.main-red {
  color: var(--main-red);
}

.information-title h2 span.main-blue {
  color: var(--main-blue);
}

.information img.information-figure-main,
.information img.information-figure-secondary {
  position: absolute;
}

.information img.information-figure-main {
  left: -50%;
  top: 20%;
  max-width: 80%;
}

.information img.information-figure-secondary {
  right: -30%;
  top: 0%;
  max-width: 80%;
}

@media screen and (max-width: 1201px) {
  .information img.information-figure-secondary {
    right: -35%;
    top: 0%;
    max-width: 80%;
  }
  .information img.information-figure-main {
    left: -60%;
    top: 30%;
    max-width: 80%;
  }
}

@media screen and (max-width: 568px) {
  .information {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .information-title {
    width: 90%;
    margin: auto;
    position: relative;
    font-family: var(--poppins);
    text-align: center;
    font-size: 2rem;
  }

  .information-title .rounded-main-title h2 {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .rounded-main-title img {
    max-width: 20%;
    margin-left: 10px;
  }

  .information-title h2 span.main-red {
    color: var(--main-red);
  }

  .information-title h2 span.main-blue {
    color: var(--main-blue);
  }

  .information img.information-figure-main,
  .information img.information-figure-secondary {
    display: none;
  }
}

/* US SECTION */

.us-section {
  height: 100vh;
  background-image: url("../assets/images/us/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.us-section img.main-figure {
  position: absolute;
  bottom: 0;
}

.us-title {
  width: 40%;
  padding: 5rem 2rem;
  position: relative;
}

.us-title h2 {
  font-size: 4rem;
  font-family: var(--poppins);
  color: var(--main-blue);
}

.us-section ul {
  list-style: none;
}

.us-section ul li p {
  font-size: 1.5rem;
  font-family: var(--roboto);
}

.us-section ul li p span {
  font-family: var(--poppins);
}

.us-section .us-title-asset {
  position: absolute;
  top: 0;
  max-width: 50%;
  right: 20%;
}

.team-member {
  width: 40%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  transition: all 1s ease;
  overflow: hidden;
}

.team-member .member-img {
  width: 60% !important;
}

.team-member .member-img img {
  max-width: 100%;
}

.team-member .member-full-name h3 {
  font-family: var(--poppins);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}

.team-member .member-full-name h3.member-name {
  color: #fff;
  padding: 5px 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.member-1 {
  flex-direction: row-reverse;
  right: -100%;
  top: 30%;
}

.member-2 {
  left: -100%;
}

.member-3 {
  flex-direction: row-reverse;
  right: -100%;
  bottom: 0;
}

.member-1 .member-full-name h3.member-name {
  background-color: var(--secondary-blue);
  border-radius: 20px;
}

.member-2 .member-full-name h3.member-name {
  background-color: var(--main-blue);
  border-radius: 20px;
}

.member-3 .member-full-name h3.member-name {
  background-color: var(--main-red);
  border-radius: 20px;
}

@media screen and (max-width: 769px) {
  .us-section {
    height: auto;
    overflow: hidden;
  }

  .us-section img.main-figure {
    position: absolute;
    bottom: 0;
  }

  .us-title {
    width: 100%;
    padding: 1rem 2rem;
  }

  .us-title h2 {
    font-size: 3rem;
  }

  .us-section ul {
    list-style: none;
  }

  .us-section ul li p {
    width: 90%;
    font-size: 1rem;
    font-family: var(--roboto);
  }

  .us-section .us-title-asset {
    position: absolute;
    top: 0;
    max-width: 50%;
    right: 0%;
  }

  .us-team {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
  }

  .team-member {
    width: 90%;
    display: flex;
    position: static;
    margin-top: 20px;
    overflow: hidden;
  }

  .team-member .member-img {
    width: 100%;
    text-align: left;
  }

  .team-member .member-img img {
    max-width: 100%;
  }
  .team-member .member-full-name {
    width: 50%;
  }
  .team-member .member-full-name h3 {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .member-1 {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .member-3 {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .figure-section {
    position: absolute;
    top: 50%;
  }
}

/* SOLUTIONS */

.solutions {
  height: 100vh;
  background-color: #5265f6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solutions-copy {
  width: 50%;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

.solutions-copy h2 {
  color: #fff;
  font-family: var(--poppins);
  font-size: 5rem;
}

.solutions-copy h2.solutions-blue-text {
  color: var(--secondary-blue);
}

.solutions-copy h4 {
  color: #fff;
  font-size: 3rem;
  padding: 10px 55px;
  border-radius: 40px;
  font-family: var(--poppins);
  background-color: var(--main-red);
}

.solutions-copy img {
  max-width: 100%;
}

.solutions-copy img.figure-1 {
  max-width: 150px;
  height: auto;
  position: absolute;
  top: 0;
  left: 10%;
}

.solutions-copy img.figure-2 {
  max-width: 40%;
  position: absolute;
  top: 15%;
  right: -10%;
}

.solutions-copy img.figure-3 {
  max-width: 30%;
  position: absolute;
  top: 15%;
  left: -10%;
}

@media screen and (max-width: 1201px) {
  .solutions-copy img.figure-1 {
    left: 0%;
  }
}

@media screen and (max-width: 769px) {
  .solutions {
    overflow: hidden;
    height: 50vh;
  }

  .solutions-copy {
    width: 90%;
  }

  .solutions-copy h2 {
    color: #fff;
    padding: 10px;
    font-size: 3rem;
  }

  .solutions-copy h4 {
    color: #fff;
    font-size: 1.5rem;
    padding: 10px 25px;
  }

  .solutions-copy img.figure-1 {
    max-width: 100px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0%;
  }

  .solutions-copy img.figure-2 {
    right: 0%;
  }

  .solutions-copy img.figure-3 {
    max-width: 30%;
    position: absolute;
    top: 15%;
    left: 0%;
  }
}

/* SERVICES */

.services {
  background-image: url("../assets/images/services/background-services.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-copy {
  width: 50%;
  margin: auto;
  text-align: center;
  padding: 20px 10px;
  line-height: 50px;
}

.services-copy h4 {
  font-family: var(--poppins);
  font-size: 2.5rem;
}

.services-copy h4.services-red-title {
  color: var(--main-red);
}

.services-copy h4.services-roboto {
  font-family: var(--roboto);
}

.services-copy h4.services-blue-title {
  color: var(--main-blue);
}

.service-list {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.service-item {
  width: 33%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
}

.service-item h3 {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-family: var(--poppins);
}

.service-item p {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-family: var(--roboto);
}

.service-item a {
  text-decoration: none;
  display: inline-block;
  width: 60%;
  padding: 10px 20px;
  border-radius: 50px;
  margin: auto;
  margin-top: 20px;
  text-align: center;
  font-size: 1.5rem;
  font-family: var(--poppins);
  color: #fff;
}

.service-item.service-item-1 a {
  background-color: var(--secondary-blue);
}

.service-item.service-item-2 a {
  background-color: #5265f6;
}

.service-item.service-item-3 a {
  background-color: var(--main-red);
}

.service-item-2 {
  align-self: flex-end;
  margin-top: 180px;
}

.service-item img {
  max-width: 100%;
}

.service-item-3 img {
  margin-top: 20px;
  max-width: 80%;
}

@media screen and (max-width: 769px) {
  .services {
    overflow: hidden;
  }

  .services-copy {
    width: 90%;
    padding: 10px 10px;
    line-height: 40px;
  }

  .services-copy h4 {
    font-size: 2rem;
  }

  .service-list {
    width: 100%;
    margin: auto;
    flex-direction: column;
  }

  .service-item {
    width: 90%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: center;
  }

  .service-item h3 {
    width: 90%;
    margin: auto;
    font-size: 1.5rem;
  }

  .service-item p {
    width: 100%;
    font-size: 1.5rem;
    font-family: var(--roboto);
  }

  .service-item a {
    width: 60%;
    padding: 10px 5px;
    margin-top: 20px;
  }

  .service-item-2 {
    align-self: flex-end;
    margin-top: 0px;
  }

  .service-item img {
    max-width: 100%;
  }

  .service-item-3 img {
    margin-top: 20px;
    max-width: 100%;
  }
}

/* CELLPHONE SECTION */

.cellphone-section {
  margin-top: 100px;
  height: 60vh;
  background-image: url("../assets/images/cellphone/background-cellphone.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.image-cellphone {
  position: relative;
  width: 50%;
  margin: auto;
  margin-top: 50px;
}

.image-cellphone img {
  max-width: 100%;
}

.image-cellphone img.figure-cellphone {
  max-width: 90%;
  position: absolute;
  top: 10%;
  left: 5%;
}

.image-cellphone img.figure-1 {
  width: 10%;
  height: 10%;
  position: absolute;
  top: 50%;
  left: 15%;
}

.image-cellphone img.figure-2 {
  width: 15%;
  height: 15%;
  position: absolute;
  top: 30%;
  right: 12%;
}

@media screen and (max-width: 769px) {
  .cellphone-section {
    height: auto;
  }

  .image-cellphone {
    width: 100%;
  }
}

/* CONTACT SECTION */

.contact {
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-image {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: red;
  background-image: url("../assets/images/contact/contact-image.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-image img {
  max-width: 100%;
}

.contact-image h3 {
  color: #fff;
  font-size: 4rem;
  text-align: center;
  font-family: var(--poppins);
}

.contact-image p {
  font-family: var(--roboto);
  font-size: 3rem;
  background-color: #5265f6;
  color: #fff;
  padding: 5px 30px;
  border-radius: 20px;
}

.form {
  width: 50%;
  box-sizing: border-box;
}

.form form {
  width: 80%;
  margin: auto;
  box-sizing: border-box;
}

.form input {
  border: 2px solid #5265f6;
  padding: 15px;
  margin-top: 15px;
  max-width: 100%;
  font-family: var(--roboto);
}

.form .complete-input input {
  width: 95%;
}

.form .split-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form .split-input input {
  width: 43%;
}

.form .complete-input textarea {
  width: 97%;
  margin-top: 20px;
  border: 2px solid #5265f6;
  padding: 10px;
  font-family: var(--roboto);
}

.form input[type="submit"] {
  width: 30%;
  border-radius: 20px;
  border: none;
  background-color: var(--main-red);
  color: #fff;
  font-size: 1rem;
}

.map {
  width: 100%;
  height: 60vh;
}

@media screen and (max-width: 769px) {
  .contact-image h3 {
    font-size: 2.5rem;
  }

  .contact-image p {
    font-size: 2.5rem;
    padding: 5px 10px;
    border-radius: 20px;
  }

  .form .split-input {
    flex-direction: column;
  }

  .form .split-input input {
    width: 95%;
    margin-left: 20px;
  }
}

@media screen and (max-width: 568px) {
  .contact {
    height: auto;
    flex-direction: column;
  }

  .contact-image {
    width: 100%;
    height: 50vh;
  }

  .contact-image h3 {
    font-size: 2.5rem;
  }

  .contact-image p {
    font-size: 2.5rem;
    padding: 5px 10px;
    border-radius: 20px;
  }

  .form {
    width: 100%;
  }

  .form form {
    width: 90%;
  }

  .form input {
    max-width: 90%;
  }

  .form .split-input {
    flex-direction: column;
  }

  .form .split-input input {
    margin-left: 0;
    width: 90%;
  }

  .form .complete-input textarea {
    width: 93%;
  }

  .form input[type="submit"] {
    width: 60%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .map {
    width: 100%;
    height: 100vh;
  }
}

/* FOOTER */

footer {
  background-color: var(--main-blue);
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-family: var(--roboto);
  text-align: center;
  width: 25%;
}

.social-item img {
  max-width: 70%;
  margin-bottom: 20px;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 769px) {
  .social {
    width: 100%;
  }
}

@media screen and (max-width: 568px) {
  footer {
    height: auto;
  }

  .social {
    width: 90%;
    margin: auto;
    flex-direction: column;
  }

  .social-item {
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
  }

  .social-item img {
    max-width: 70%;
    margin-bottom: 20px;
    margin: auto;
    text-align: center;
  }
}
/* FIXED BUTTON */

.contact-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #4da829;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: pointer;
  text-align: center;
}

.contact-btn img {
  max-width: 50%;
}

/* MODAL */

.modal-section {
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999999;
}

.modal {
  width: 50%;
  height: 400px;
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  background-image: url("../assets/images/us/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.modal h2 {
  width: 70%;
  margin: auto;
  text-align: center;
  font-family: var(--roboto);
  color: var(--main-blue);
  font-size: 38px;
  margin-top: 120px;
}

.modal button {
  width: 170px;
  padding: 10px 15px;
  margin-top: 50px;
  background-color: transparent;
  border: 2px solid var(--main-red);
  color: var(--main-red);
  font-size: 16px;
  transition: all 0.3s ease;
}

.modal button:hover {
  background-color: var(--main-red);
  color: #fff;
}

.modal img.figure-modal-1 {
  position: absolute;
  right: 0;
  max-width: 100%;
}

@media screen and (max-width: 569px) {
  .modal {
    width: 95%;
    height: 400px;
  }

  .modal h2 {
    width: 90%;
    font-size: 32px;
  }
}
