@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  text-decoration: none;
  resize: none;
  outline: none;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #C7A475;
}

::-webkit-scrollbar-thumb {
  background-color: #1B67AE;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  height: 100vh;
}

.container {
  width: 80%;
}
@media (max-width: 1024px) {
  .container {
    width: 83%;
  }
}

p {
  font-size: 15px;
}

button {
  cursor: pointer;
  transition: all 0.5s ease;
}
button:hover {
  transform: translateY(-3px);
}

header {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  padding: 2.5rem 0;
  width: 100%;
  height: 100%;
  background-color: #1C2F4B;
}
@media (max-width: 1024px) {
  header {
    padding: 4.5rem 0;
  }
}
header .image-box {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/home.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: visible;
}
@media screen and (max-width: 64rem) {
  header .image-box {
    background-image: url("../assets/images/home-mobile.jpg");
  }
}
header .image-box .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  height: 100%;
}
header .image-box .container .header-logo {
  position: absolute;
  left: 0;
  top: -16px;
}
header .image-box .container .header-logo img {
  width: auto;
  height: 32px;
}
header .image-box .container .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
header .image-box .container .text p {
  color: #fff;
  font-size: 16px;
  padding: 0 0 5%;
}
header .image-box .container .text h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
}
header .image-box .container .text a button {
  width: 180px;
  height: 36px;
  border-radius: 39px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #1C2F4B;
  background-color: #C7A475;
}
header .image-box .container .text a button:hover {
  color: #C7A475;
  background-color: #1C2F4B;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
header .image-box .container img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  grid-column: 6/12;
}

@media (max-width: 755px) {
  header {
    padding: 4rem 0;
  }
  header .image-box {
    background-position: 60%;
  }
  header .image-box .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    height: 100%;
  }
  header .image-box .container .text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding-bottom: 30%;
  }
  header .image-box .container .text h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
  }
  header .image-box .container .text a button {
    width: 180px;
    height: 36px;
    border-radius: 39px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #1C2F4B;
    background-color: #C7A475;
  }
  header .image-box .container .text a button:hover {
    color: #C7A475;
    background-color: #1C2F4B;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  header .image-box .container img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    grid-column: 6/12;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  header {
    padding: 2.5rem 0;
  }
  header .image-box .container .header-logo {
    top: -14px;
  }
  header .image-box .container .header-logo img {
    height: 28px;
  }
  header .image-box .container .text {
    gap: 2rem;
  }
  header .image-box .container .text h1 {
    font-size: 30px;
  }
  header .image-box .container .text a button {
    width: 170px;
    height: 34px;
    border-radius: 39px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #1C2F4B;
    background-color: #C7A475;
  }
  header .image-box .container .text a button:hover {
    color: #C7A475;
    background-color: #1C2F4B;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}
@media (min-width: 1440px) and (max-width: 1535px) {
  header {
    padding: 3rem 0;
  }
  header .image-box .container .header-logo {
    top: -18px;
  }
  header .image-box .container .header-logo img {
    height: 36px;
  }
  header .image-box .container .text h1 {
    font-size: 36px;
  }
  header .image-box .container .text a button {
    width: 200px;
    height: 40px;
    border-radius: 39px;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1C2F4B;
    background-color: #C7A475;
  }
  header .image-box .container .text a button:hover {
    color: #C7A475;
    background-color: #1C2F4B;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  header {
    padding: 4rem 0;
  }
  header .image-box .container .header-logo {
    top: -21px;
  }
  header .image-box .container .header-logo img {
    height: 42px;
  }
  header .image-box .container .text {
    gap: 2.5rem;
  }
  header .image-box .container .text h1 {
    font-size: 38px;
  }
  header .image-box .container .text a button {
    width: 250px;
    height: 50px;
    border-radius: 39px;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #1C2F4B;
    background-color: #C7A475;
  }
  header .image-box .container .text a button:hover {
    color: #C7A475;
    background-color: #1C2F4B;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}
@media (min-width: 2560px) {
  header {
    padding: 4rem 0;
  }
  header .image-box .container .header-logo {
    top: -26px;
  }
  header .image-box .container .header-logo img {
    height: 52px;
  }
  header .image-box .container .text {
    gap: 3rem;
  }
  header .image-box .container .text h1 {
    font-size: 48px;
  }
  header .image-box .container .text a button {
    width: 245px;
    height: 50px;
    border-radius: 39px;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 600;
    color: #1C2F4B;
    background-color: #C7A475;
  }
  header .image-box .container .text a button:hover {
    color: #C7A475;
    background-color: #1C2F4B;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}
#professional_experience {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background-color: #1C2F4B;
  padding: 0 0 2.5rem 0;
}
@media (max-width: 1024px) {
  #professional_experience {
    padding: 4.5rem 0;
  }
}
#professional_experience .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#professional_experience .container h1 {
  color: #C7A475;
  font-weight: 700;
  font-size: 32px;
}
#professional_experience .container h2 {
  color: #fff;
  font-weight: 300;
  font-size: 32px;
}

@media (max-width: 755px) {
  #professional_experience {
    padding: 0 0 4rem 0;
  }
  #professional_experience .container {
    gap: 0.3rem;
  }
  #professional_experience .container h1 {
    font-size: 26px;
  }
  #professional_experience .container h2 {
    font-size: 26px;
  }
}
@media (min-width: 755px) and (max-width: 1023px) {
  #professional_experience {
    padding: 0 0 4rem 0;
  }
  #professional_experience .container {
    gap: 0.3rem;
  }
  #professional_experience .container h1 {
    font-size: 26px;
  }
  #professional_experience .container h2 {
    font-size: 26px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #professional_experience {
    padding: 0 0 2.5rem 0;
  }
  #professional_experience .container h1 {
    font-size: 30px;
  }
  #professional_experience .container h2 {
    font-size: 30px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #professional_experience {
    padding: 0 0 4rem 0;
  }
  #professional_experience .container h2 {
    font-size: 38px;
  }
}
@media (min-width: 2560px) {
  #professional_experience {
    padding: 0 0 4rem 0;
  }
  #professional_experience .container h1 {
    font-size: 48px;
  }
  #professional_experience .container h2 {
    font-size: 48px;
  }
}
#who_we_are {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  padding: 5rem 0;
  background-color: #C7A475;
}
@media (max-width: 1024px) {
  #who_we_are {
    padding: 4.5rem 0;
  }
}
#who_we_are .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  height: 100%;
  gap: 3rem;
}
#who_we_are .container .image_box {
  grid-column: 1/5;
  display: flex;
  flex-direction: column;
}
#who_we_are .container .image_box img {
  width: 100%;
  height: auto;
  border-radius: 20px 10px 20px 10px;
  z-index: 1;
}
#who_we_are .container .image_box .ceo_name {
  width: 80%;
  color: #fff;
  background-color: #1C2F4B;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  border-bottom-left-radius: 10px;
  padding-left: 1rem;
}
#who_we_are .container .image_box .ceo_name ::after {
  content: "";
  width: 100%;
  height: 100px;
  background-color: #1C2F4B;
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 0;
}
#who_we_are .container .image_box .ceo_name h3 {
  font-weight: 700;
  font-size: 18px;
  position: relative;
}
#who_we_are .container .image_box .ceo_name span {
  display: block;
  width: 15%;
  height: 1px;
  background-color: #C7A475;
}
#who_we_are .container .image_box .ceo_name p {
  font-weight: 300;
  font-size: 14px;
}
#who_we_are .container .content {
  grid-column: 5/11;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 2rem;
}
#who_we_are .container .content h1 {
  color: #1C2F4B;
  font-weight: 700;
  font-size: 32px;
  width: 20%;
  line-height: 1;
}
#who_we_are .container .content .texts {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 2rem;
}
#who_we_are .container .content .texts p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #1C2F4B;
}

@media (max-width: 755px) {
  #who_we_are {
    padding: 4rem 0;
  }
  #who_we_are .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #who_we_are .container .image_box {
    grid-column: 1/3;
  }
  #who_we_are .container .image_box .ceo_name {
    width: 90%;
    padding: 1.4rem 0;
    gap: 0.6rem;
    padding-left: 1rem;
  }
  #who_we_are .container .image_box .ceo_name h3 {
    font-size: 20px;
  }
  #who_we_are .container .image_box .ceo_name span {
    width: 20%;
  }
  #who_we_are .container .image_box .ceo_name p {
    font-size: 16px;
  }
  #who_we_are .container .content {
    grid-column: 1/3;
    gap: 2rem;
  }
  #who_we_are .container .content h1 {
    font-size: 28px;
    width: 100%;
  }
  #who_we_are .container .content .texts {
    gap: 2rem;
  }
  #who_we_are .container .content .texts p {
    font-size: 14px;
    line-height: 1.3;
  }
}
@media (min-width: 755px) and (max-width: 1023px) {
  #who_we_are {
    padding: 4rem 0;
  }
  #who_we_are .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #who_we_are .container .image_box {
    grid-column: 1/3;
  }
  #who_we_are .container .image_box .ceo_name {
    width: 90%;
    padding: 1.4rem 0;
    gap: 0.6rem;
    padding-left: 1rem;
  }
  #who_we_are .container .image_box .ceo_name h3 {
    font-size: 20px;
  }
  #who_we_are .container .image_box .ceo_name span {
    width: 20%;
  }
  #who_we_are .container .image_box .ceo_name p {
    font-size: 16px;
  }
  #who_we_are .container .content {
    grid-column: 1/3;
    gap: 2rem;
  }
  #who_we_are .container .content h1 {
    font-size: 32px;
    width: 100%;
  }
  #who_we_are .container .content .texts {
    gap: 2rem;
  }
  #who_we_are .container .content .texts p {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #who_we_are {
    padding: 5rem 0;
  }
  #who_we_are .container {
    gap: 3rem;
  }
  #who_we_are .container .image_box .ceo_name {
    width: 85%;
    gap: 0.6rem;
  }
  #who_we_are .container .image_box .ceo_name h3 {
    font-size: 16px;
  }
  #who_we_are .container .image_box .ceo_name p {
    font-size: 11px;
  }
  #who_we_are .container .content h1 {
    font-size: 32px;
  }
  #who_we_are .container .content .texts {
    gap: 1rem;
  }
  #who_we_are .container .content .texts p {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media (min-width: 1440px) and (max-width: 1535px) {
  #who_we_are .container {
    gap: 0rem;
  }
  #who_we_are .container .image_box {
    grid-column: 1/6;
    padding-right: 4rem;
  }
  #who_we_are .container .image_box .ceo_name {
    padding: 1.4rem 0;
    gap: 0.5rem;
    border-bottom-left-radius: 20px;
    padding-left: 1rem;
  }
  #who_we_are .container .image_box .ceo_name h3 {
    font-size: 20x;
  }
  #who_we_are .container .image_box .ceo_name span {
    height: 2px;
  }
  #who_we_are .container .image_box .ceo_name p {
    font-size: 15px;
  }
  #who_we_are .container .content {
    grid-column: 6/12;
    gap: 4rem;
  }
  #who_we_are .container .content h1 {
    font-size: 38px;
  }
  #who_we_are .container .content .texts {
    width: 95%;
    gap: 3rem;
  }
  #who_we_are .container .content .texts p {
    font-size: 19px;
    line-height: 1.3;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #who_we_are {
    padding: 6rem 0;
  }
  #who_we_are .container {
    gap: 8rem;
  }
  #who_we_are .container .image_box img {
    border-radius: 30px 20px 30px 20px;
  }
  #who_we_are .container .image_box .ceo_name {
    padding: 1.5rem 0;
    gap: 0.8rem;
    border-bottom-left-radius: 20px;
    padding-left: 1.5rem;
  }
  #who_we_are .container .image_box .ceo_name h3 {
    font-size: 22px;
  }
  #who_we_are .container .image_box .ceo_name span {
    height: 2px;
  }
  #who_we_are .container .image_box .ceo_name p {
    font-size: 18px;
  }
  #who_we_are .container .content {
    grid-column: 5/11;
    gap: 3rem;
  }
  #who_we_are .container .content h1 {
    font-size: 38px;
    width: 20%;
  }
  #who_we_are .container .content .texts {
    gap: 3rem;
    width: 95%;
  }
  #who_we_are .container .content .texts p {
    font-size: 22px;
    line-height: 1.3;
  }
}
@media (min-width: 2560px) {
  #who_we_are {
    padding: 6rem 0;
  }
  #who_we_are .container {
    gap: 8rem;
  }
  #who_we_are .container .image_box img {
    border-radius: 30px 20px 30px 20px;
  }
  #who_we_are .container .image_box .ceo_name {
    padding: 2rem 0;
    gap: 0.8rem;
    border-bottom-left-radius: 20px;
    padding-left: 2rem;
  }
  #who_we_are .container .image_box .ceo_name h3 {
    font-size: 24px;
  }
  #who_we_are .container .image_box .ceo_name span {
    height: 2px;
  }
  #who_we_are .container .image_box .ceo_name p {
    font-size: 18px;
  }
  #who_we_are .container .content {
    grid-column: 5/11;
    gap: 4rem;
  }
  #who_we_are .container .content h1 {
    font-size: 48px;
    width: 20%;
  }
  #who_we_are .container .content .texts {
    gap: 4rem;
    width: 95%;
  }
  #who_we_are .container .content .texts p {
    font-size: 28px;
    line-height: 1.5;
  }
}
#services {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  padding: 5rem 0;
  background-color: #1C2F4B;
}
@media (max-width: 1024px) {
  #services {
    padding: 4.5rem 0;
  }
}
#services .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#services .container .services_swiper {
  width: 80vw;
}
#services .container .services_swiper .swiper-pagination {
  display: none;
}
#services .container .services_swiper .swiper-wrapper .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 2rem;
  color: #1C2F4B;
  height: 65vh;
  padding: 0 2rem;
  position: relative;
}
#services .container .services_swiper .swiper-wrapper .service ::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 80%;
  background-color: #C7A475;
  border-radius: 18px;
  z-index: -1;
}
#services .container .services_swiper .swiper-wrapper .service .service_image {
  border-radius: 28px 14px 28px 14px;
  width: 90%;
  height: auto;
  z-index: 3;
}
#services .container .services_swiper .swiper-wrapper .service .text {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1rem;
  height: 30%;
}
#services .container .services_swiper .swiper-wrapper .service .text .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
}
#services .container .services_swiper .swiper-wrapper .service .text .title .icon {
  width: auto;
  height: 16px;
}
#services .container .services_swiper .swiper-wrapper .service .text .title h2 {
  font-size: 17px;
  font-weight: 600;
}
#services .container .services_swiper .swiper-wrapper .service .text p {
  font-size: 13px;
  font-weight: 400;
}
#services .container h1 {
  color: #fff;
  font-weight: 400;
  font-size: 32px;
}

@media (max-width: 754px) {
  #services {
    padding: 4rem 0;
  }
  #services .container {
    gap: 3rem;
  }
  #services .container .services_swiper {
    display: flex;
    width: 80vw;
  }
  #services .container .services_swiper .swiper-pagination {
    display: none;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 2rem;
    color: #1C2F4B;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 2rem 4rem 2rem;
    position: relative;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide ::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 70%;
    background-color: #C7A475;
    border-radius: 18px;
    z-index: -1;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .service_image {
    border-radius: 28px 14px 28px 14px;
    width: 80%;
    height: auto;
    z-index: 3;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .text {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
    height: 50%;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .text .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .text .title .icon {
    width: auto;
    height: 16px;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .text .title h2 {
    font-size: 20px;
    font-weight: 600;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .text p {
    font-size: 15px;
    font-weight: 400;
  }
  #services .container h1 {
    font-size: 32px;
  }
  #services .container .services_box {
    display: none;
  }
}
@media (min-width: 755px) and (max-width: 1023px) {
  #services {
    padding: 4rem 0;
  }
  #services .container {
    gap: 3rem;
  }
  #services .container .services_swiper {
    display: flex;
    width: 80vw;
  }
  #services .container .services_swiper .swiper-pagination {
    display: none;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 2rem;
    color: #1C2F4B;
    height: 45vh;
    padding: 0 2rem 4rem 2rem;
    position: relative;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide ::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 70%;
    background-color: #C7A475;
    border-radius: 18px;
    z-index: -1;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .service_image {
    border-radius: 28px 14px 28px 14px;
    width: 80%;
    height: auto;
    z-index: 3;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .text {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
    height: 40%;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .text .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .text .title .icon {
    width: auto;
    height: 16px;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .text .title h2 {
    font-size: 20px;
    font-weight: 600;
  }
  #services .container .services_swiper .swiper-wrapper .swiper-slide .text p {
    font-size: 15px;
    font-weight: 400;
  }
  #services .container h1 {
    font-size: 32px;
  }
  #services .container .services_box {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #services {
    padding: 3rem 0;
  }
  #services .container {
    gap: 4rem;
  }
  #services .container h1 {
    font-size: 32px;
  }
  #services .container .services_swiper .swiper-wrapper .service {
    gap: 1.5rem;
    height: 60vh;
    padding: 0 1rem;
  }
  #services .container .services_swiper .swiper-wrapper .service ::after {
    height: 70%;
  }
  #services .container .services_swiper .swiper-wrapper .service .service_image {
    width: 90%;
  }
  #services .container .services_swiper .swiper-wrapper .service .text {
    gap: 1rem;
    height: 30%;
  }
  #services .container .services_swiper .swiper-wrapper .service .text .title {
    gap: 0.3rem;
  }
  #services .container .services_swiper .swiper-wrapper .service .text .title .icon {
    height: 14px;
  }
  #services .container .services_swiper .swiper-wrapper .service .text .title h2 {
    font-size: 16px;
  }
  #services .container .services_swiper .swiper-wrapper .service .text p {
    font-size: 12px;
  }
}
@media (min-width: 1280px) and (max-width: 1365px) {
  #services .container {
    gap: 3rem;
  }
  #services .container .services_swiper .swiper-wrapper .service {
    gap: 2rem;
    color: #1C2F4B;
    height: 60vh;
    padding: 0 1.4rem;
  }
  #services .container .services_swiper .swiper-wrapper .service ::after {
    height: 80%;
  }
  #services .container .services_swiper .swiper-wrapper .service .service_image {
    border-radius: 28px 14px 28px 14px;
    width: 90%;
    height: auto;
    z-index: 3;
  }
  #services .container .services_swiper .swiper-wrapper .service .text {
    height: 35%;
  }
}
@media (min-width: 1440px) and (max-width: 1535px) {
  #services .container {
    gap: 2rem;
  }
  #services .container .services_swiper .swiper-wrapper .service {
    height: 50vh;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #services {
    padding: 5rem 0;
  }
  #services .container {
    gap: 6rem;
  }
  #services .container h1 {
    font-size: 38px;
  }
  #services .container .services_swiper .swiper-wrapper .service {
    gap: 2rem;
    height: 50vh;
    padding: 0 2.5rem;
  }
  #services .container .services_swiper .swiper-wrapper .service ::after {
    height: 80%;
  }
  #services .container .services_swiper .swiper-wrapper .service .service_image {
    width: 90%;
  }
  #services .container .services_swiper .swiper-wrapper .service .text {
    gap: 1rem;
    height: 30%;
  }
  #services .container .services_swiper .swiper-wrapper .service .text .title {
    gap: 1rem;
  }
  #services .container .services_swiper .swiper-wrapper .service .text .title .icon {
    height: 20px;
  }
  #services .container .services_swiper .swiper-wrapper .service .text .title h2 {
    font-size: 22px;
  }
  #services .container .services_swiper .swiper-wrapper .service .text p {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  #services {
    padding: 9rem 0;
  }
  #services .container {
    gap: 4rem;
  }
  #services .container h1 {
    font-size: 48px;
  }
  #services .container .services_swiper .swiper-wrapper .service {
    gap: 3rem;
    height: 50vh;
    padding: 0 4rem;
  }
  #services .container .services_swiper .swiper-wrapper .service ::after {
    width: 100%;
    height: 80%;
    border-radius: 18px;
  }
  #services .container .services_swiper .swiper-wrapper .service .service_image {
    border-radius: 28px 14px 28px 14px;
    width: 90%;
  }
  #services .container .services_swiper .swiper-wrapper .service .text {
    gap: 1rem;
    height: 30%;
  }
  #services .container .services_swiper .swiper-wrapper .service .text .title {
    gap: 0.5rem;
  }
  #services .container .services_swiper .swiper-wrapper .service .text .title .icon {
    height: 20px;
  }
  #services .container .services_swiper .swiper-wrapper .service .text .title h2 {
    font-size: 28px;
  }
  #services .container .services_swiper .swiper-wrapper .service .text p {
    font-size: 20px;
  }
}
#banner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  padding: 4rem 0;
  background-color: #C7A475;
}
@media (max-width: 1024px) {
  #banner {
    padding: 4.5rem 0;
  }
}
#banner .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#banner .container .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#banner .container .item img {
  width: auto;
  height: 24px;
}
#banner .container .item h1 {
  font-size: 20px;
  font-weight: 600;
  color: #1C2F4B;
}

@media (max-width: 755px) {
  #banner {
    padding: 4rem 0;
  }
  #banner .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
  #banner .container .item {
    gap: 1rem;
  }
  #banner .container .item img {
    height: 24px;
  }
  #banner .container .item h1 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #banner {
    padding: 3rem 0;
  }
  #banner .container .item img {
    height: 22px;
  }
  #banner .container .item h1 {
    font-size: 18px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #banner {
    padding: 5rem 0;
  }
  #banner .container .item img {
    height: 28px;
  }
  #banner .container .item h1 {
    font-size: 24px;
  }
}
@media (min-width: 2560px) {
  #banner {
    padding: 6rem 0;
  }
  #banner .container .item {
    gap: 2rem;
  }
  #banner .container .item img {
    height: 32px;
  }
  #banner .container .item h1 {
    font-size: 32px;
  }
}
#location {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background-color: #1C2F4B;
  padding: 5rem 0;
}
@media (max-width: 1024px) {
  #location {
    padding: 4.5rem 0;
  }
}
#location .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
#location .container .box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 65%;
}
#location .container .box .content {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2.5rem;
}
#location .container .box .content .text {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
#location .container .box .content .text h1 {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}
#location .container .box .content .text h2 {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  width: 80%;
}
#location .container .box .content .text h3 {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
}
#location .container .box .content a button {
  width: 180px;
  height: 36px;
  border-radius: 39px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #1C2F4B;
  background-color: #C7A475;
}
#location .container .box .content a button:hover {
  color: #C7A475;
  background-color: #1C2F4B;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#location .container .box .map img {
  width: 400px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
#location .container .swiper_box {
  width: 80vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#location .container .swiper_box h1 {
  color: #fff;
  font-weight: 500;
  font-size: 28px;
}
#location .container .swiper_box .partner_swiper {
  width: 100%;
}
#location .container .swiper_box .partner_swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
#location .container .swiper_box .partner_swiper .swiper-wrapper .swiper-slide img {
  width: 200px;
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

@media (max-width: 755px) {
  #location {
    padding: 3rem 0;
  }
  #location .container {
    gap: 3rem;
  }
  #location .container .box {
    flex-direction: column;
    width: 80%;
    gap: 4rem;
  }
  #location .container .box .content {
    gap: 2.5rem;
    order: 2;
  }
  #location .container .box .content .text {
    gap: 1rem;
  }
  #location .container .box .content .text h1 {
    font-size: 24px;
  }
  #location .container .box .content .text h2 {
    font-size: 24px;
    width: 100%;
  }
  #location .container .box .content .text h3 {
    font-size: 20px;
  }
  #location .container .box .content a button {
    width: 180px;
    height: 36px;
    border-radius: 39px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #1C2F4B;
    background-color: #C7A475;
  }
  #location .container .box .content a button:hover {
    color: #C7A475;
    background-color: #1C2F4B;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #location .container .box .map {
    order: 1;
  }
  #location .container .box .map img {
    width: 80vw;
    height: 300px;
  }
  #location .container .swiper_box h1 {
    font-size: 26px;
  }
  #location .container .swiper_box .partner_swiper {
    width: 80vw;
  }
  #location .container .swiper_box .partner_swiper .swiper-wrapper .swiper-slide img {
    max-width: 100%;
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 756px) and (max-width: 1023px) {
  #location .container {
    gap: 5rem;
  }
  #location .container .box {
    flex-direction: column;
    width: 80%;
    gap: 4rem;
  }
  #location .container .box .content {
    width: 100%;
    gap: 2.5rem;
    order: 2;
  }
  #location .container .box .content .text {
    gap: 1rem;
    width: 100%;
  }
  #location .container .box .content .text h1 {
    font-size: 24px;
  }
  #location .container .box .content .text h2 {
    font-size: 24px;
    width: 100%;
  }
  #location .container .box .content .text h3 {
    font-size: 20px;
  }
  #location .container .box .content a button {
    width: 180px;
    height: 36px;
    border-radius: 39px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #1C2F4B;
    background-color: #C7A475;
  }
  #location .container .box .content a button:hover {
    color: #C7A475;
    background-color: #1C2F4B;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #location .container .box .map {
    order: 1;
  }
  #location .container .swiper_box h1 {
    font-size: 26px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #location {
    padding: 5rem 0;
  }
  #location .container {
    gap: 4rem;
  }
  #location .container .box {
    width: 80%;
  }
  #location .container .box .content {
    gap: 2.5rem;
  }
  #location .container .box .content .text {
    gap: 1rem;
  }
  #location .container .box .content .text h1 {
    font-size: 22px;
  }
  #location .container .box .content .text h2 {
    font-size: 22px;
    width: 90%;
  }
  #location .container .box .content .text h3 {
    font-size: 18px;
  }
  #location .container .swiper_box {
    gap: 3rem;
  }
  #location .container .swiper_box h1 {
    font-size: 22px;
  }
}
@media (min-width: 1280px) and (max-width: 1365px) {
  #location .container .box {
    width: 70%;
  }
  #location .container .box .content .text h2 {
    width: 80%;
  }
  #location .container .swiper_box h1 {
    font-size: 26px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #location .container .box {
    width: 60%;
  }
  #location .container .box .content {
    gap: 3rem;
  }
  #location .container .box .content .text {
    gap: 1.5rem;
  }
  #location .container .box .content .text h1 {
    font-size: 38px;
  }
  #location .container .box .content .text h2 {
    font-size: 38px;
    width: 80%;
  }
  #location .container .box .content .text h3 {
    font-size: 24px;
  }
  #location .container .box .content a button {
    width: 240px;
    height: 48px;
    border-radius: 39px;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1C2F4B;
    background-color: #C7A475;
  }
  #location .container .box .content a button:hover {
    color: #C7A475;
    background-color: #1C2F4B;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #location .container .box .map img {
    width: 450px;
  }
  #location .container .swiper_box {
    width: 70vw;
    gap: 4rem;
  }
  #location .container .swiper_box h1 {
    font-size: 34px;
  }
  #location .container .swiper_box .partner_swiper {
    width: 100%;
  }
  #location .container .swiper_box .partner_swiper .swiper-wrapper .swiper-slide img {
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 2560px) {
  #location {
    padding: 6rem 0;
  }
  #location .container {
    gap: 6rem;
  }
  #location .container .box {
    width: 50%;
  }
  #location .container .box .content {
    gap: 4rem;
  }
  #location .container .box .content .text {
    gap: 2rem;
  }
  #location .container .box .content .text h1 {
    font-size: 42px;
  }
  #location .container .box .content .text h2 {
    font-size: 42px;
    width: 80%;
  }
  #location .container .box .content .text h3 {
    font-size: 28px;
  }
  #location .container .box .content a button {
    width: 290px;
    height: 54px;
    border-radius: 39px;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #1C2F4B;
    background-color: #C7A475;
  }
  #location .container .box .content a button:hover {
    color: #C7A475;
    background-color: #1C2F4B;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  #location .container .box .map img {
    width: 450px;
    height: 450px;
  }
  #location .container .swiper_box {
    width: 60vw;
    gap: 4rem;
  }
  #location .container .swiper_box h1 {
    font-size: 38px;
  }
  #location .container .swiper_box .partner_swiper {
    width: 100%;
  }
  #location .container .swiper_box .partner_swiper .swiper-wrapper .swiper-slide img {
    width: 200px;
    height: 200px;
  }
}
#social_medias {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background-color: #C7A475;
  padding: 4rem 0;
}
@media (max-width: 1024px) {
  #social_medias {
    padding: 4.5rem 0;
  }
}
#social_medias .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
#social_medias .container h1 {
  color: #1C2F4B;
  font-weight: 500;
  font-size: 24px;
}
#social_medias .container .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
#social_medias .container .buttons a img {
  transition: all 0.3s ease;
  width: auto;
  height: 20px;
}
#social_medias .container .buttons a img:hover {
  transform: scale(1.1);
}

@media (max-width: 755px) {
  #social_medias {
    padding: 4rem 0;
  }
  #social_medias .container {
    flex-direction: column;
    gap: 2.5rem;
  }
  #social_medias .container h1 {
    font-size: 20px;
  }
  #social_medias .container .buttons {
    gap: 1.5rem;
  }
  #social_medias .container .buttons a img {
    height: 26px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #social_medias {
    padding: 3rem 0;
  }
  #social_medias .container h1 {
    font-size: 20px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #social_medias {
    padding: 5rem 0;
  }
  #social_medias .container {
    gap: 3rem;
  }
  #social_medias .container h1 {
    font-size: 28px;
  }
  #social_medias .container .buttons {
    gap: 2rem;
  }
  #social_medias .container .buttons a img {
    height: 28px;
  }
}
@media (min-width: 2560px) {
  #social_medias {
    padding: 6rem 0;
  }
  #social_medias .container {
    gap: 3rem;
  }
  #social_medias .container h1 {
    font-size: 32px;
  }
  #social_medias .container .buttons {
    gap: 2rem;
  }
  #social_medias .container .buttons a img {
    height: 32px;
  }
}
#testimonials {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background-color: #C7A475;
}
@media (max-width: 1024px) {
  #testimonials {
    padding: 4.5rem 0;
  }
}
#testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
#testimonials .container h1 {
  color: #1C2F4B;
  font-weight: 500;
  font-size: 32px;
}
#testimonials .container .testimonials_swiper {
  width: 75vw;
}
#testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide {
  background-color: #D9D9D9;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 2rem 1rem;
  border-radius: 16px;
  gap: 0.8rem;
}
#testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name .photo {
  width: 30px;
  height: 30px;
  background-color: #1B1B1B;
  border-radius: 50%;
}
#testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name h1 {
  color: #1C2F4B;
  font-weight: 500;
  font-size: 18px;
}
#testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide p {
  color: #1C2F4B;
  font-weight: 400;
  font-size: 13px;
}

@media (max-width: 755px) {
  #testimonials {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    background-color: #C7A475;
  }
}
@media (max-width: 755px) and (max-width: 1024px) {
  #testimonials {
    padding: 4.5rem 0;
  }
}
@media (max-width: 755px) {
  #testimonials .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  #testimonials .container h1 {
    font-size: 26px;
  }
  #testimonials .container .testimonials_swiper {
    width: 75vw;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide {
    background-color: #D9D9D9;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 2rem 1rem;
    border-radius: 16px;
    gap: 0.8rem;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name .photo {
    width: 30px;
    height: 30px;
    background-color: #1B1B1B;
    border-radius: 50%;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name h1 {
    color: #1C2F4B;
    font-weight: 500;
    font-size: 18px;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide p {
    color: #1C2F4B;
    font-weight: 400;
    font-size: 13px;
  }
}
@media (min-width: 756px) and (max-width: 1023px) {
  #testimonials {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    background-color: #C7A475;
  }
}
@media (min-width: 756px) and (max-width: 1023px) and (max-width: 1024px) {
  #testimonials {
    padding: 4.5rem 0;
  }
}
@media (min-width: 756px) and (max-width: 1023px) {
  #testimonials .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  #testimonials .container h1 {
    font-size: 26px;
  }
  #testimonials .container .testimonials_swiper {
    width: 75vw;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide {
    background-color: #D9D9D9;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 2rem 1rem;
    border-radius: 16px;
    gap: 0.8rem;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name .photo {
    width: 30px;
    height: 30px;
    background-color: #1B1B1B;
    border-radius: 50%;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name h1 {
    color: #1C2F4B;
    font-weight: 500;
    font-size: 18px;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide p {
    color: #1C2F4B;
    font-weight: 400;
    font-size: 13px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #testimonials .container {
    gap: 3rem;
  }
  #testimonials .container h1 {
    font-size: 24px;
  }
  #testimonials .container .testimonials_swiper {
    width: 80vw;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name .photo {
    width: 20px;
    height: 20px;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name h1 {
    font-size: 15px;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide p {
    font-size: 12px;
  }
  #testimonials .container .testimonials_box {
    padding: 0 5%;
  }
  #testimonials .container .testimonials_box .testimonial {
    padding: 2rem 1rem;
  }
  #testimonials .container .testimonials_box .testimonial .client_name .photo {
    width: 20px;
    height: 20px;
  }
  #testimonials .container .testimonials_box .testimonial .client_name h1 {
    font-size: 15px;
  }
  #testimonials .container .testimonials_box .testimonial p {
    font-size: 12px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #testimonials .container {
    gap: 5rem;
  }
  #testimonials .container h1 {
    font-size: 32px;
  }
  #testimonials .container .testimonials_swiper {
    width: 70vw;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide {
    height: 200px;
    padding: 2rem 2rem;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide p {
    font-size: 14px;
  }
  #testimonials .container .testimonials_box {
    gap: 2rem;
    padding: 0 15%;
  }
  #testimonials .container .testimonials_box .testimonial {
    padding: 3rem 3rem 3rem 2rem;
    border-radius: 16px;
    gap: 2rem;
  }
  #testimonials .container .testimonials_box .testimonial .client_name {
    gap: 1rem;
  }
  #testimonials .container .testimonials_box .testimonial .client_name .photo {
    width: 28px;
    height: 28px;
  }
  #testimonials .container .testimonials_box .testimonial .client_name h1 {
    font-size: 20px;
  }
  #testimonials .container .testimonials_box .testimonial p {
    font-size: 15px;
  }
}
@media (min-width: 2560px) {
  #testimonials .container {
    gap: 8rem;
  }
  #testimonials .container h1 {
    font-size: 42px;
  }
  #testimonials .container .testimonials_swiper {
    width: 65vw;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide {
    padding: 2rem 2rem;
    height: 250px;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name .photo {
    width: 40px;
    height: 40px;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide .client_name h1 {
    font-size: 26px;
  }
  #testimonials .container .testimonials_swiper .swiper-wrapper .swiper-slide p {
    font-size: 18px;
  }
}
#differentials {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background-color: #1C2F4B;
  padding: 4rem 0;
}
@media (max-width: 1024px) {
  #differentials {
    padding: 4.5rem 0;
  }
}
#differentials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
#differentials .container .differentials_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  padding: 0 10%;
}
#differentials .container .differentials_box .differential {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
#differentials .container .differentials_box .differential img {
  width: auto;
  height: 26px;
}
#differentials .container .differentials_box .differential h1 {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
}
#differentials .container .line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
#differentials .container .payment_methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}
#differentials .container .payment_methods .payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}
#differentials .container .payment_methods .payment img {
  width: auto;
  height: 36px;
}
#differentials .container .payment_methods .payment h1 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 755px) {
  #differentials {
    padding: 4rem 0;
  }
  #differentials .container {
    gap: 4rem;
  }
  #differentials .container .differentials_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 3rem;
  }
  #differentials .container .differentials_box .differential {
    gap: 1.5rem;
  }
  #differentials .container .differentials_box .differential img {
    height: 26px;
  }
  #differentials .container .differentials_box .differential h1 {
    font-size: 24px;
  }
  #differentials .container .line {
    height: 1px;
  }
  #differentials .container .payment_methods {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #differentials .container .payment_methods .payment {
    width: 100%;
    justify-content: start;
    gap: 2rem;
    flex-direction: row;
  }
  #differentials .container .payment_methods .payment img {
    height: 32px;
  }
  #differentials .container .payment_methods .payment h1 {
    font-size: 14px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #differentials .container .differentials_box .differential img {
    height: 23px;
  }
  #differentials .container .differentials_box .differential h1 {
    font-size: 22px;
  }
  #differentials .container .payment_methods {
    gap: 1rem;
  }
  #differentials .container .payment_methods .payment img {
    height: 33px;
  }
  #differentials .container .payment_methods .payment h1 {
    font-size: 13px;
  }
}
@media (min-width: 2560px) {
  #differentials {
    padding: 7rem 0;
  }
  #differentials .container {
    gap: 6rem;
  }
  #differentials .container .differentials_box {
    gap: 2rem;
    padding: 0 10%;
  }
  #differentials .container .differentials_box .differential {
    gap: 2.5rem;
  }
  #differentials .container .differentials_box .differential img {
    height: 38px;
  }
  #differentials .container .differentials_box .differential h1 {
    font-size: 28px;
  }
  #differentials .container .line {
    width: 100%;
    height: 1px;
  }
  #differentials .container .payment_methods {
    gap: 2rem;
    width: 100%;
  }
  #differentials .container .payment_methods .payment {
    gap: 2.5rem;
    width: 100%;
  }
  #differentials .container .payment_methods .payment img {
    height: 48px;
  }
  #differentials .container .payment_methods .payment h1 {
    font-size: 24px;
  }
}
#frequent_questions {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  padding: 5rem 0;
  background-color: #1C2F4B;
}
@media (max-width: 1024px) {
  #frequent_questions {
    padding: 4.5rem 0;
  }
}
#frequent_questions .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
#frequent_questions .container .title h1 {
  color: #fff;
  font-weight: 500;
  font-size: 32px;
}
#frequent_questions .container .all_questions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
#frequent_questions .container .all_questions .question {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 1rem;
  cursor: pointer;
}
#frequent_questions .container .all_questions .question .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}
#frequent_questions .container .all_questions .question .title img {
  width: auto;
  height: 20px;
}
#frequent_questions .container .all_questions .question .title h1 {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}
#frequent_questions .container .all_questions .question[data-actived=true] .text {
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 1rem;
}
#frequent_questions .container .all_questions .question[data-actived=true] .text p {
  transform: translateX(0%);
}
#frequent_questions .container .all_questions .question[data-actived=true] button img {
  transform: rotateZ(180deg);
}
#frequent_questions .container .all_questions .question .text {
  width: 80%;
  transform-origin: left;
  overflow: hidden;
  height: 0;
}
#frequent_questions .container .all_questions .question .text p {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  transition: all 0.3s ease;
  transform: translateX(-100%);
}

@media (max-width: 755px) {
  #frequent_questions {
    padding: 5rem 0;
  }
  #frequent_questions .container {
    gap: 4rem;
  }
  #frequent_questions .container .title h1 {
    font-size: 26px;
  }
  #frequent_questions .container .all_questions {
    gap: 2rem;
  }
  #frequent_questions .container .all_questions .question {
    gap: 1rem;
  }
  #frequent_questions .container .all_questions .question .title {
    gap: 1rem;
  }
  #frequent_questions .container .all_questions .question .title img {
    height: 20px;
  }
  #frequent_questions .container .all_questions .question .title h1 {
    font-size: 14px;
  }
  #frequent_questions .container .all_questions .question .text {
    width: 100%;
  }
  #frequent_questions .container .all_questions .question .text p {
    font-size: 13px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #frequent_questions {
    padding: 5rem 0;
  }
  #frequent_questions .container .all_questions .question .text {
    width: 65%;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  #frequent_questions .container {
    gap: 5rem;
  }
  #frequent_questions .container .title h1 {
    font-size: 32px;
  }
  #frequent_questions .container .all_questions {
    gap: 3rem;
  }
  #frequent_questions .container .all_questions .question .title img {
    height: 22px;
  }
  #frequent_questions .container .all_questions .question .title h1 {
    font-size: 20px;
  }
  #frequent_questions .container .all_questions .question .text {
    width: 40%;
  }
}
@media (min-width: 2560px) {
  #frequent_questions {
    padding: 5rem 0;
  }
  #frequent_questions .container {
    gap: 6rem;
  }
  #frequent_questions .container .title h1 {
    font-size: 38px;
  }
  #frequent_questions .container .all_questions {
    gap: 3rem;
  }
  #frequent_questions .container .all_questions .question {
    gap: 2rem;
  }
  #frequent_questions .container .all_questions .question .title {
    gap: 1.5rem;
  }
  #frequent_questions .container .all_questions .question .title img {
    height: 26px;
  }
  #frequent_questions .container .all_questions .question .title h1 {
    font-size: 24px;
  }
  #frequent_questions .container .all_questions .question .text {
    width: 40%;
  }
  #frequent_questions .container .all_questions .question .text p {
    font-size: 20px;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  padding: 0 0 1rem 0;
  background-color: #1C2F4B;
}
@media (max-width: 1024px) {
  footer {
    padding: 4.5rem 0;
  }
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
footer .container img {
  width: auto;
  height: 32px;
}
footer .container h1 {
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 11px;
}

@media (max-width: 755px) {
  footer {
    padding: 0 0 0.8rem 0;
  }
  footer .container {
    gap: 3rem;
  }
  footer .container img {
    height: 32px;
  }
  footer .container h1 {
    font-size: 11px;
  }
}
@media (min-width: 756px) and (max-width: 1023px) {
  footer {
    padding: 0 0 0.8rem 0;
  }
  footer .container {
    gap: 3rem;
  }
  footer .container img {
    height: 32px;
  }
  footer .container h1 {
    font-size: 11px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  footer .container img {
    height: 32px;
  }
}
@media (min-width: 1440px) and (max-width: 1535px) {
  footer .container {
    gap: 4rem;
  }
  footer .container img {
    height: 40px;
  }
  footer .container h1 {
    font-size: 12px;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  footer .container {
    gap: 5rem;
  }
  footer .container img {
    height: 44px;
  }
  footer .container h1 {
    font-size: 13px;
  }
}
@media (min-width: 2560px) {
  footer .container {
    gap: 6rem;
  }
  footer .container img {
    height: 52px;
  }
  footer .container h1 {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */