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

html, body {
  scroll-behavior: smooth;
}

h2.h2 {
  font-size: 80px;
  color: #1E3B3D;
  font-weight: 500;
  text-transform: capitalize;
}

@media only screen and (max-width: 1550px) {
  h2.h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 37px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 32px;
  }
}
.cross {
  height: 250px;
  width: 250px;
  position: absolute;
}
.cross img {
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 900px) {
  .cross {
    height: 175px;
    width: 175px;
  }
}
header {
  min-height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5%;
  background: #1E3B3D;
}
header .logo {
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img {
  height: 65px;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 20px;
}
header nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  border: 2px solid transparent;
  padding: 12px 30px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1em;
  transition: 0.25s ease;
}
header nav a.active {
  border: 2px solid #fff;
}
header nav a:hover {
  color: #FBDA71;
  border: 2px solid #FBDA71;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #FBDA71;
  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: 601;
  background: #1E3B3D;
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #FBDA71;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #FBDA71;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header nav {
    gap: 0px;
  }
  header nav a {
    font-size: 13px;
    padding: 10px 25px;
  }
  header nav a::after {
    bottom: -3px;
  }
  header .btn a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1300px) {
  header .logo img {
    height: 50px;
  }
  header nav {
    display: none;
  }
  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 {
  color: #fff;
  border: 2px solid #fff;
}
.btn.white:hover a {
  outline: 1px solid #fff;
}
.btn.green a {
  background: #1E3B3D;
  color: #fff;
  border: 2px solid #1E3B3D;
}
.btn.green:hover a {
  outline: 1px solid #1E3B3D;
}
.btn a {
  font-size: 1em;
  border: 2px solid #FBDA71;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #FBDA71;
  border-radius: 100px;
  text-decoration: none;
  padding: 0.75em 2em;
  font-weight: 600;
  transition: 0.2s ease;
}
.btn:hover a {
  outline: 1px solid #FBDA71;
}

footer {
  padding: 5rem 7.5%;
  background: #181818;
}
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: 40%;
}
footer .footer__content .left img {
  height: 100px;
}
footer .footer__content .left p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .left p a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
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: #FBDA71;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
}
#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: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.hero {
  padding: 5rem 10% 15rem;
  background: #1E3B3D;
  position: relative;
  overflow: hidden;
}
.hero .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.hero .content h3 {
  background: rgba(255, 255, 255, 0.1);
  color: #A8C8B1;
  padding: 7px 20px;
  border-radius: 100px;
  font-weight: 500;
}
.hero .content h1 {
  font-size: 110px;
  text-transform: capitalize;
  line-height: 1.1em;
  font-weight: 500;
  margin: 30px 0 10px;
  color: #A8C8B1;
}
.hero .content h1 .gold {
  color: #FBDA71;
}
.hero .content p {
  text-align: center;
  font-size: 23px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 55vw;
  line-height: 1.45em;
}
.hero .content .buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}
.hero .content .buttons .btn a {
  font-size: 20px;
}
.hero .reviews1 {
  position: absolute;
  bottom: 50px;
  left: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.hero .reviews1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -125%);
  height: 120px;
  width: 3px;
  background: #fff;
  background: linear-gradient(181deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.hero .reviews1 img {
  height: 100px;
}
.hero .reviews1 h3 {
  font-size: 45px;
  color: #fff;
  margin-top: 10px;
}
.hero .reviews1 span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.hero .socials {
  position: absolute;
  right: 5vw;
  bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.hero .socials .item {
  height: 61px;
  width: 61px;
  background: #FBDA71;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 1px solid transparent;
  transition: 0.25s ease;
}
.hero .socials .item:hover {
  outline: 1px solid #FBDA71;
}
.hero .socials .item svg {
  height: 31px;
  width: 31px;
  color: #1E3B3D;
  stroke-width: 2.25;
}
.hero .cross.cross1 {
  top: 0;
  left: 0;
  transform: translateX(-20%);
}
.hero .cross.cross2 {
  top: 25%;
  right: 10%;
  transform: translateX(0%);
}

.services {
  padding: 5rem 10%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  background: rgba(198, 214, 177, 0.6);
  position: relative;
}
.services .title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 2;
}
.services .title .left .btn a {
  font-size: 20px;
}
.services .title .right {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-flow: column;
}
.services .title .right p {
  margin-top: 15px;
  font-size: 18px;
  color: rgba(30, 59, 61, 0.7);
}
.services .services__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.services .services__content .item {
  padding: 35px;
  background: #C6D6B1;
  border-radius: 20px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  transition: 0.25s ease;
}
.services .services__content .item * {
  transition: 0.25s ease;
}
.services .services__content .item:hover {
  background: #1E3B3D;
}
.services .services__content .item:hover .icon.icon1 {
  background: url("../../img/icons/icon1-light.svg");
  background-size: cover;
}
.services .services__content .item:hover .icon.icon2 {
  background: url("../../img/icons/icon2-light.svg");
  background-size: cover;
}
.services .services__content .item:hover .icon.icon3 {
  background: url("../../img/icons/icon3-light.svg");
  background-size: cover;
}
.services .services__content .item:hover h3 {
  color: #C6D6B1;
}
.services .services__content .item:hover p {
  color: rgba(198, 214, 177, 0.8);
}
.services .services__content .item:hover .btn a {
  background: #FBDA71;
  color: #1E3B3D;
  border: 2px solid #FBDA71;
}
.services .services__content .item:hover .btn:hover a {
  outline: 1px solid #FBDA71;
}
.services .services__content .item .icon {
  height: 61px;
  width: 61px;
}
.services .services__content .item .icon.icon1 {
  background: url("../../img/icons/icon1.svg");
  background-size: cover;
}
.services .services__content .item .icon.icon2 {
  background: url("../../img/icons/icon2.svg");
  background-size: cover;
}
.services .services__content .item .icon.icon3 {
  background: url("../../img/icons/icon3.svg");
  background-size: cover;
}
.services .services__content .item h3 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #1E3B3D;
}
.services .services__content .item p {
  font-size: 16px;
  line-height: 1.5em;
  margin: 5px 0;
  color: rgba(30, 59, 61, 0.8);
}
.services .services__content .item .btn {
  margin-top: 25px;
}
.services .services__content .item .btn a {
  font-size: 16px;
}
.services .cross.cross1 {
  bottom: 0;
  left: 0;
  transform: translateX(-20%);
}
.services .cross.cross2 {
  top: 5%;
  right: 0%;
  transform: translateX(0%);
}

.pricing {
  background: rgba(218, 226, 203, 0.5);
  padding: 5rem 10%;
}
.pricing .title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}
.pricing .title .left .btn a {
  font-size: 20px;
}
.pricing .title .right {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-flow: column;
}
.pricing .title .right p {
  margin-top: 15px;
  font-size: 18px;
  color: rgba(30, 59, 61, 0.7);
}
.pricing .pricing__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 35px;
}
.pricing .pricing__content .item {
  padding: 30px;
  border-radius: 20px;
  background: #C6D6B1;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.pricing .pricing__content .item h3 {
  font-size: 30px;
  font-weight: 500;
  color: #1E3B3D;
}
.pricing .pricing__content .item span {
  font-size: 16px;
  color: rgba(30, 59, 61, 0.8);
  font-weight: 500;
}
.pricing .pricing__content .item ul {
  margin-top: 10px;
  padding-left: 15px;
}
.pricing .pricing__content .item ul li {
  font-size: 15px;
  color: rgba(30, 59, 61, 0.8);
  margin-bottom: 5px;
}
.pricing .pricing__content .item h4 {
  margin-top: 15px;
  color: #EDF1E5;
  font-weight: 600;
  font-size: 18px;
  background: #1E3B3D;
  padding: 10px 20px;
  border-radius: 100px;
}

.about {
  padding: 0 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  background: rgba(198, 214, 177, 0.6);
  position: relative;
  overflow: hidden;
}
.about .images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 75px;
  position: relative;
  overflow: hidden;
}
.about .images .column {
  width: 100%;
  position: relative;
}
.about .images .column.column1 #about-img-1, .about .images .column.column1 #about-img-2, .about .images .column.column1 #about-img-3 {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.about .images .column.column1 #about-img-1 {
  transform: translateY(-160%);
}
.about .images .column.column1 #about-img-3 {
  transform: translateY(60%);
}
.about .images .column.column2 #about-img-4, .about .images .column.column2 #about-img-5 {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.about .images .column.column2 #about-img-4 {
  transform: translateY(-105%);
}
.about .images .column.column2 #about-img-5 {
  transform: translateY(5%);
}
.about .images .column img {
  width: 100%;
}
.about .text {
  padding: 5rem 0;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 10px;
}
.about .text .h2 {
  margin-bottom: 10px;
}
.about .text p {
  font-size: 20px;
  line-height: 1.5em;
  color: rgba(30, 59, 61, 0.8);
}
.about .text p b {
  color: #1E3B3D;
}
.about .cross.cross1 {
  top: 0;
  left: 50%;
  transform: translate(-20%, -20%);
}
.about .cross.cross2 {
  bottom: 5%;
  right: 0%;
  transform: translateY(25%);
}

.contacts {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  background: #1E3B3D;
}
.contacts h2.h2 {
  text-align: start;
  color: #fff;
  text-transform: inherit;
  font-weight: 400;
}
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20vw;
  background: #EDF1E5;
}
.contacts form p {
  font-size: 20px;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5em;
}
.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(255, 255, 255, 0.5);
  font-size: 20px;
  transition: 0.25s ease;
  color: #fff;
}
.contacts form .input__row input:focus {
  border-bottom: 2px solid #fff;
  outline: none;
}
.contacts form textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 18px;
  resize: none;
  background: none;
  color: #fff;
  transition: 0.25s ease;
}
.contacts form textarea:focus {
  border-bottom: 2px solid #fff;
  outline: none;
}
.contacts form .btn {
  margin-top: 20px;
}
.contacts form .btn a {
  font-size: 21px;
  background: #FBDA71;
  color: #1E3B3D;
}
.contacts .details {
  padding: 40px;
  background: #C6D6B1;
  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: #1E3B3D;
  font-weight: 500;
}
.contacts .details .link {
  color: #1E3B3D;
  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;
}
.contacts .details .link span strong {
  font-weight: 600;
}

@media only screen and (max-width: 1550px) {
  .hero .content h1 {
    font-size: 90px;
  }
  .hero .content p {
    font-size: 21px;
  }
  .services .title .left .btn a {
    font-size: 18px;
  }
  .services .title .right p {
    font-size: 16px;
  }
  .services .services__content .item .icon {
    height: 51px;
    width: 51px;
  }
  .services .services__content .item h3 {
    font-size: 25px;
  }
  .services .services__content .item p {
    font-size: 15px;
  }
  .services .services__content .item .btn a {
    font-size: 15px;
  }
  .pricing .title .left .btn a {
    font-size: 18px;
  }
  .pricing .title .right p {
    font-size: 16px;
  }
  .pricing .pricing__content .item h3 {
    font-size: 25px;
  }
  .pricing .pricing__content .item span {
    font-size: 15px;
  }
  .pricing .pricing__content .item ul li {
    font-size: 14px;
  }
  .pricing .pricing__content .item h4 {
    font-size: 16px;
  }
  .about .images {
    gap: 40px;
  }
  .about .text p {
    font-size: 18px;
  }
  .contacts {
    gap: 20px;
  }
  .contacts form {
    min-width: 45vw;
  }
}
@media only screen and (max-width: 1300px) {
  .hero {
    padding: 3.5rem 10% 12rem;
  }
  .hero .content h3 {
    font-size: 16px;
  }
  .hero .content h1 {
    font-size: 70px;
  }
  .hero .content p {
    font-size: 18px;
    max-width: 65vw;
  }
  .hero .content .buttons .btn a {
    font-size: 17px;
  }
  .hero .reviews1 {
    bottom: 25px;
  }
  .hero .reviews1::after {
    height: 90px;
  }
  .hero .reviews1 img {
    height: 70px;
  }
  .hero .reviews1 h3 {
    font-size: 35px;
  }
  .hero .reviews1 span {
    font-size: 14px;
  }
  .hero .socials {
    bottom: 25px;
  }
  .hero .socials .item {
    height: 51px;
    width: 51px;
  }
  .hero .socials .item svg {
    height: 25px;
    width: 25px;
  }
  .services {
    padding: 3.5rem 7.5%;
  }
  .services .title {
    grid-template-columns: 1fr;
  }
  .services .title .left {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .services .title .left .btn a {
    font-size: 17px;
  }
  .services .title .right p {
    font-size: 16px;
    margin-top: 10px;
  }
  .services .services__content {
    gap: 10px;
  }
  .services .services__content .item {
    padding: 25px;
  }
  .services .services__content .item .icon {
    height: 45px;
    width: 45px;
  }
  .services .services__content .item h3 {
    font-size: 22px;
  }
  .services .services__content .item p {
    font-size: 14px;
  }
  .services .services__content .item .btn a {
    font-size: 14px;
  }
  .pricing .title {
    grid-template-columns: 1fr;
  }
  .pricing .title .left {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .pricing .title .left .btn a {
    font-size: 17px;
  }
  .pricing .title .right p {
    font-size: 16px;
    margin-top: 10px;
  }
  .pricing .pricing__content {
    grid-template-columns: 1fr 1fr;
  }
  .pricing .pricing__content .item h3 {
    font-size: 22px;
  }
  .pricing .pricing__content .item h4 {
    font-size: 15px;
  }
  .about {
    gap: 50px;
  }
  .about .text {
    padding: 2.5rem 0;
  }
  .about .text p {
    font-size: 15px;
  }
  .contacts {
    padding: 3.5rem 10%;
    gap: 25px;
  }
  .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) {
  .hero {
    padding: 2.5rem 10% 12.5rem;
  }
  .hero .content h1 {
    font-size: 60px;
  }
  .hero .content p {
    font-size: 16px;
    max-width: 75vw;
  }
  .hero .content .buttons {
    margin-top: 25px;
  }
  .hero .content .buttons .btn a {
    font-size: 16px;
  }
  .hero .reviews1::after {
    content: none;
  }
  .hero .reviews1 img {
    height: 65px;
  }
  .hero .reviews1 h3 {
    font-size: 30px;
  }
  .hero .reviews1 span {
    font-size: 13px;
  }
  .services .title .left .btn a {
    font-size: 15px;
  }
  .services .title .right p {
    font-size: 14px;
  }
  .services .services__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing .title .left .btn a {
    font-size: 15px;
  }
  .pricing .title .right p {
    font-size: 14px;
  }
  .pricing .pricing__content {
    gap: 10px;
  }
  .pricing .pricing__content .item {
    padding: 20px;
  }
  .pricing .pricing__content .item h3 {
    font-size: 20px;
  }
  .pricing .pricing__content .item span {
    font-size: 14px;
  }
  .pricing .pricing__content .item ul li {
    font-size: 13px;
  }
  .pricing .pricing__content .item h4 {
    font-size: 14px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about .images {
    height: 500px;
    order: 2;
  }
  .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) {
  .hero .content h3 {
    font-size: 14px;
  }
  .hero .content h1 {
    font-size: 34px;
    text-align: center;
  }
  .hero .content h1 br {
    display: none;
  }
  .hero .content p {
    font-size: 13px;
    max-width: 100%;
  }
  .hero .content .buttons {
    gap: 10px;
  }
  .hero .content .buttons .btn a {
    font-size: 13px;
  }
  .hero .cross.cross2 {
    top: inherit;
    bottom: 0%;
    right: 0%;
    transform: translateX(25%);
  }
  .hero .reviews1 img {
    height: 55px;
  }
  .hero .reviews1 h3 {
    font-size: 25px;
  }
  .hero .reviews1 span {
    font-size: 12px;
  }
  .hero .socials {
    gap: 10px;
  }
  .hero .socials .item {
    height: 51px;
    width: 51px;
  }
  .services .title {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .services .title .left {
    flex-flow: column;
    align-items: start;
    gap: 5px;
  }
  .services .title .left .btn a {
    font-size: 14px;
  }
  .services .title .right {
    justify-content: start;
  }
  .services .title .right p {
    font-size: 13px;
    margin-top: 5px;
  }
  .services .services__content .item .icon {
    height: 41px;
    width: 41px;
  }
  .services .services__content .item h3 {
    font-size: 20px;
  }
  .services .services__content .item p {
    font-size: 13px;
  }
  .services .services__content .item .btn a {
    font-size: 13px;
  }
  .pricing .title {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .pricing .title .left {
    flex-flow: column;
    align-items: start;
    gap: 5px;
  }
  .pricing .title .left .btn a {
    font-size: 14px;
  }
  .pricing .title .right {
    justify-content: start;
  }
  .pricing .title .right p {
    font-size: 13px;
    margin-top: 5px;
  }
  .pricing .pricing__content {
    grid-template-columns: 1fr;
  }
  .about {
    gap: 10px;
  }
  .about .text p {
    font-size: 13px;
  }
  .contacts::after {
    height: 150px;
  }
  .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;
  }
}/*# sourceMappingURL=style.css.map */