@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Karla", sans-serif;
}

html, body {
  scroll-behavior: smooth;
  background: #F3EFE5;
  position: relative;
  overflow-x: hidden;
}

h2.h2 {
  font-size: 80px;
  text-transform: uppercase;
  letter-spacing: -2%;
  line-height: 1em;
}
h2.h2 .blue {
  color: #293D59;
  display: inline-block;
  margin-top: 0.75rem;
}

p.p {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5em;
}

@media only screen and (max-width: 1550px) {
  h2.h2 {
    font-size: 65px;
  }
  p.p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 47px;
  }
  p.p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 37px;
  }
  p.p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 30px;
    line-height: 0.9em;
  }
  p.p {
    font-size: 12px;
  }
}
header {
  height: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: #F3EFE5;
}
header .logo {
  height: 100%;
}
header .logo a {
  height: 100%;
  color: #000;
  text-decoration: none;
}
header .logo a img {
  height: 100%;
}
header .right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 3.5rem;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3.5rem;
}
header nav a {
  color: #000;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .btn a {
  font-size: 18px;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #DA3332;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: rgba(41, 61, 89, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #DA3332;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header .logo {
    font-size: 1.5em;
  }
  header .right {
    gap: 1.5rem;
  }
  header nav {
    gap: 1.5rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
  header .btn a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  header {
    height: 5rem;
  }
  header .logo {
    font-size: 1.5em;
  }
  header nav {
    gap: 1.5rem;
    display: none;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
  header .btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 10%;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn.white a {
  background: #fff;
  color: #293D59;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #F3EFE5;
  border-radius: 100px;
  text-decoration: none;
  padding: 0.65em 1.5em;
  font-weight: 500;
  transition: 0.2s ease;
  background: #DA3332;
}
.btn:hover a {
  transform: scale(1.05);
}

footer {
  padding: 5rem 7.5%;
  background: #293D59;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 65%;
}
footer .footer__content .left .title {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 100px;
  margin-bottom: 1rem;
}
footer .footer__content .left .title img {
  height: 150px;
  border-radius: 15px;
}
footer .footer__content .left .title p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
  margin-top: 1rem;
}
footer .footer__content .left .socials {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
  padding-left: 35px;
}
footer .footer__content .left .socials a {
  height: 41px;
  width: 41px;
  background: #DA3332;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer__content .left .socials a svg {
  color: #fff;
  height: 25px;
  width: 25px;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right h3 {
  font-size: 40px;
  color: #fff;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #DA3332;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left {
    width: 60%;
  }
  footer .footer__content .left .title {
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer .footer__content .left .title img {
    height: 100px;
  }
  footer .footer__content .left .title p {
    font-size: 0.85em;
  }
  footer .footer__content .left .socials a {
    height: 35px;
    width: 35px;
  }
  footer .footer__content .left .socials a svg {
    height: 21px;
    width: 21px;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right h3 {
    font-size: 30px;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left .title {
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer .footer__content .left .title h2 {
    font-size: 2em;
  }
  footer .footer__content .left .title p {
    font-size: 0.7em;
  }
  footer .footer__content .left .socials {
    padding: 1rem 0 0 0;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer {
    padding: 3rem 7.5%;
  }
  footer .footer__content {
    flex-flow: column;
    row-gap: 3rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
  footer .footer__content .left .title img {
    height: 125px;
  }
  footer .footer__content .left .title p {
    font-size: 14px;
  }
  footer .footer__content .right h3 {
    font-size: 25px;
  }
  footer .footer__content .right a {
    font-size: 15px;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 0 1rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #000;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #000;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.contacts {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
}
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20vw;
  background: #293D59;
}
.contacts form p {
  font-size: 18px;
  margin-bottom: 50px;
  color: rgba(41, 61, 89, 0.6);
}
.contacts form .input__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.contacts form .input__row input {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  background: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  font-size: 20px;
  transition: 0.25s ease;
}
.contacts form .input__row input:focus {
  border-bottom: 2px solid #000;
  outline: none;
}
.contacts form textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  font-size: 18px;
  resize: none;
  background: none;
  transition: 0.25s ease;
}
.contacts form textarea:focus {
  border-bottom: 2px solid #000;
  outline: none;
}
.contacts form .btn a {
  font-size: 21px;
}
.contacts .details {
  padding: 40px;
  background: #DA3332;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 20px;
  width: 40vw;
  z-index: 2;
}
.contacts .details h3 {
  font-size: 45px;
  color: #fff;
  font-weight: 500;
}
.contacts .details .link {
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.contacts .details .link svg {
  height: 31px;
  width: 31px;
}
.contacts .details .link span {
  font-size: 27px;
}

@media only screen and (max-width: 1300px) {
  .contacts {
    padding: 3.5rem 10%;
  }
  .contacts form p {
    font-size: 16px;
  }
  .contacts form .btn a {
    font-size: 18px;
  }
  .contacts .details h3 {
    font-size: 30px;
  }
  .contacts .details .link svg {
    height: 23px;
    width: 23px;
  }
  .contacts .details .link span {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 700px) {
  .contacts::after {
    height: 150px;
  }
  .contacts form .h2 {
    margin-bottom: 10px;
  }
  .contacts form p {
    font-size: 13px;
  }
  .contacts form .input__row input {
    font-size: 13px;
  }
  .contacts form textarea {
    font-size: 13px;
  }
  .contacts form .btn a {
    font-size: 14px;
  }
  .contacts .details {
    padding: 30px;
  }
  .contacts .details h3 {
    font-size: 20px;
  }
  .contacts .details .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .link span {
    font-size: 15px;
  }
}
.benefits2 {
  padding: 5rem 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.benefits2 .h1 {
  color: #000;
  text-align: center;
}
.benefits2 .h2 {
  text-align: center;
}
.benefits2 .h2 span.blue {
  margin: 0;
}
.benefits2 .subheading {
  justify-content: center;
  margin-bottom: 0.5rem;
}
.benefits2 .subheading span {
  color: #000;
}
.benefits2 .heading__desc {
  font-size: 16px;
  text-align: center;
  line-height: 1.5em;
  max-width: 80%;
  margin: 0.5rem 0;
}
.benefits2 .benefits__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 1.5rem;
  width: 100%;
}
.benefits2 .benefits__content.four {
  grid-template-columns: repeat(4, 1fr);
}
.benefits2 .benefits__content.two {
  grid-template-columns: 1fr 1fr;
}
.benefits2 .benefits__content .item {
  padding: 1.5rem;
  background: #293D59;
  border-radius: 25px;
  transition: 0.25s ease;
}
.benefits2 .benefits__content .item:hover {
  transform: scale(1.025);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
}
.benefits2 .benefits__content .item .icon {
  height: 51px;
  width: 51px;
}
.benefits2 .benefits__content .item h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.benefits2 .benefits__content .item p {
  font-size: 0.9em;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem 0;
}
.benefits2 .benefits__content .item ul {
  padding-left: 20px;
  margin-top: 0.5rem;
}
.benefits2 .benefits__content .item ul li {
  font-size: 0.85em;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.25rem 0;
}
.benefits2 .benefits__content .item .btn {
  margin-top: 0.5rem;
}
.benefits2 .btn {
  margin-top: 3rem;
}
.benefits2 .btn a {
  font-size: 1.25em;
}

@media only screen and (max-width: 1500px) {
  .benefits2 .benefits__content .item .item__heading h3 {
    font-size: 1.25em;
  }
}
@media only screen and (max-width: 1300px) {
  .benefits2 .heading__desc {
    font-size: 14px;
  }
  .benefits2 .benefits__content.four {
    grid-template-columns: 1fr 1fr;
  }
  .benefits2 .benefits__content .item .item__heading {
    grid-template-columns: 45px 1fr;
  }
  .benefits2 .benefits__content .item .icon {
    height: 45px;
    width: 45px;
  }
  .benefits2 .benefits__content .item h3 {
    font-size: 1.35em;
  }
  .benefits2 .benefits__content .item p {
    font-size: 0.75em;
  }
  .benefits2 .benefits__content .item ul li {
    font-size: 0.75em;
  }
  .benefits2 .btn {
    margin-top: 2rem;
  }
  .benefits2 .btn a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 900px) {
  .benefits2 {
    padding: 3.5rem 10% 2.5rem;
  }
  .benefits2 .benefits__content {
    grid-template-columns: 1fr 1fr;
  }
  .benefits2 .benefits__content .item .item__heading {
    grid-template-columns: 39px 1fr;
  }
  .benefits2 .benefits__content .item .item__heading .icon {
    height: 39px;
    width: 39px;
  }
  .benefits2 .benefits__content .item h3 {
    font-size: 1.25em;
  }
  .benefits2 .btn a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 900px) {
  .benefits {
    padding: 3.5rem 10% 2.5rem;
  }
  .benefits .benefits__content {
    grid-template-columns: 1fr 1fr;
  }
  .benefits .benefits__content.two {
    grid-template-columns: 1fr;
  }
  .benefits .btn a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  .benefits2 {
    padding: 0 10% 2.5rem;
  }
  .benefits2 .heading__desc {
    font-size: 12px;
    max-width: 100%;
  }
  .benefits2 .benefits__content {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  .benefits2 .benefits__content.four {
    grid-template-columns: 1fr;
  }
  .benefits2 .benefits__content .item .item__heading {
    min-height: none;
  }
  .benefits2 .benefits__content .item .icon {
    height: 45px;
    width: 45px;
  }
  .benefits2 .benefits__content .item h3 {
    font-size: 1.2em;
  }
  .benefits2 .benefits__content .item p, .benefits2 .benefits__content .item ul li {
    font-size: 0.9em;
  }
  .benefits2 .btn {
    margin-top: 1.5rem;
  }
  .benefits2 .btn a {
    font-size: 0.9em;
  }
}
.gallery {
  padding: 3rem 10%;
}
.gallery .gallery__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}
.gallery .gallery__content .item {
  width: 100%;
  height: 20vw;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery .gallery__content .item:hover img {
  transform: scale(1.05);
  filter: brightness(75%);
}
.gallery .gallery__content .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.25s ease;
}

@media only screen and (max-width: 900px) {
  .gallery .gallery__content {
    grid-template-columns: 1fr 1fr;
  }
  .gallery .gallery__content .item {
    height: 40vw;
  }
}/*# sourceMappingURL=style.css.map */