@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Poppins:wght@200;400;700;900&family=Roboto:wght@400;700;900&display=swap");
/*--------------------------------------------------*/
html {
  font-size: 100%;
  box-sizing: border-box;
}

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

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  width: 100%;
  background-color: #ffffe7;
  scroll-behavior: smooth;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

a,
a:visited,
a:link {
  text-decoration: none;
  color: #5d576b;
}

ul,
li {
  list-style: none;
}

.container, main > #delegating span {
  width: 100%;
  max-width: 1200px;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.container-80 {
  width: 80%;
  max-width: 1200px;
  padding: 0 1.25rem;
  margin: 0 auto;
}

section:not(:last-of-type) {
  padding: 50px 0;
}

.card {
  display: block;
  padding: 1px;
  border: 1px solid beige;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
}

.button {
  appearance: button;
  backface-visibility: hidden;
  background-color: #ffa552;
  border-radius: 6px;
  border-width: 0;
  box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset, rgba(50, 50, 93, 0.1) 0 2px 5px 0, rgba(0, 0, 0, 0.07) 0 1px 1px 0;
  box-sizing: border-box;
  color: #5d576b;
  cursor: pointer;
  font-size: 100%;
  height: 44px;
  line-height: 1.15;
  margin: 12px 0 0;
  outline: none;
  overflow: hidden;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-transform: none;
  transform: translateZ(0);
  transition: all 0.2s, box-shadow 0.08s ease-in;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: max-content;
  transition: all 0.5s ease-in-out;
}
.button:hover {
  background-color: white;
}

header {
  width: 100%;
  min-height: 4.375rem;
  z-index: 99;
  position: relative;
  padding: 0 10px;
  padding-right: 0;
  text-transform: uppercase;
  display: flex;
}
header .brand {
  min-width: 2.5rem;
  max-width: 3.75rem;
  width: 100%;
  margin-right: auto;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  display: grid;
  place-items: center;
}
header .contacts {
  margin-left: 3.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 10pt;
  text-transform: lowercase;
}
@media (min-width: 0) {
  header .contacts {
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  header .contacts {
    margin: auto 0.625rem;
  }
}
header .nav {
  display: flex;
}
header .nav .active {
  text-decoration: underline;
  text-decoration-color: #ffa552;
  text-decoration-thickness: 3px;
}
@media (min-width: 0) {
  header .nav {
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    background-color: #ffffe7;
    padding-bottom: 0.625rem;
    padding-left: 10px;
    transition: transform 300ms ease-in-out;
    flex-direction: column;
  }
  header .nav .navLinks {
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
  }
  header .nav .socMed {
    font-size: 16pt;
  }
}
@media (min-width: 768px) {
  header .nav {
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  header .nav .navLinks {
    display: flex;
    border-bottom: none;
    box-shadow: none;
    gap: 0.625rem;
    padding-right: 0.625rem;
    font-weight: 700;
    font-size: 10pt;
  }
  header .nav .navLinks li {
    transition: all 0.3ms ease-in-out;
  }
  header .nav .navLinks li:hover {
    text-decoration: underline;
    text-decoration-color: #ffa552;
    text-decoration-thickness: 3px;
  }
  header .nav .socMed {
    background: #ffa552;
    min-width: 90px;
    width: 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
    font-size: 20pt;
    padding: 0.3125rem;
    place-items: center;
    line-height: 1.2;
  }
  header .nav .socMed a:hover {
    color: #ffffe7;
  }
}
@media (min-width: 900px) {
  header .nav .navLinks {
    font-size: 12pt;
  }
}
header .burger {
  display: grid;
  place-items: center;
  cursor: pointer;
}
@media (min-width: 0) {
  header .burger {
    padding-right: 0.625rem;
  }
  header .burger span {
    position: relative;
  }
  header .burger span, header .burger span::before, header .burger span::after {
    width: 40px;
    height: 5px;
    background-color: #5d576b;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
  }
  header .burger span::before, header .burger span::after {
    content: "";
    position: absolute;
  }
  header .burger span::before {
    top: 10px;
  }
  header .burger span::after {
    top: -10px;
  }
  header .burger .close {
    background-color: transparent;
  }
  header .burger .close::before, header .burger .close::after {
    content: "";
    position: absolute;
    width: 30px;
  }
  header .burger .close::before {
    top: 0px;
    transform: rotate(45deg);
  }
  header .burger .close::after {
    top: 0px;
    transform: rotate(-45deg);
  }
}
@media (min-width: 768px) {
  header .burger {
    display: none;
  }
}

main > #hero {
  width: 100%;
  max-height: calc(100vh - 60px);
  min-width: 320px;
  overflow: hidden;
  text-align: center;
  margin-top: 0;
  padding-top: 0 !important;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
main > #hero > * {
  grid-area: 1/1;
}
main > #hero #heroVid {
  width: 100%;
  opacity: 60%;
}
main > #hero .heroInfo {
  backdrop-filter: blur(10px);
  border-radius: 0.625rem;
  color: hsl(0, 2%, 33%);
}
@media (min-width: 900px) {
  main > #hero .heroInfo h1 {
    font-size: 5rem;
  }
  main > #hero .heroInfo h3 {
    font-size: 2rem;
  }
}
main > #hero .heroInfo .button {
  font-weight: 600;
}
@media (min-width: 768px) {
  main > #hero .heroInfo {
    padding: 3.125rem 1.25rem;
  }
}

main > #testimonials {
  position: relative;
  width: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  background: url("/assets/images/testiBG.jpg");
  background-repeat: no-repeat;
  background-position: center;
  justify-content: center;
  background-size: cover;
  isolation: isolate;
}
main > #testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: hsla(36, 89%, 45%, 0.219);
  z-index: -1;
}
main > #testimonials h1 {
  font-size: 2.5rem;
  margin-block: 1.25rem 3.125rem;
}
main > #testimonials .testimonials {
  width: 100%;
  padding: 1.875rem;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 3.125rem;
  row-gap: 6.25rem;
}
main > #testimonials .testimonials .testimonial {
  width: 18.75rem;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  border-radius: 15px;
  display: flex;
  flex-flow: column;
  align-items: center;
}
main > #testimonials .testimonials .testimonial .testiImage {
  width: 100px;
  margin-top: -50px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  outline: 2px solid #ffa552;
  object-fit: fill;
  display: grid;
  place-items: center;
}
main > #testimonials .testimonials .testimonial h4 {
  margin-top: 0.3125rem;
}
main > #testimonials .testimonials .testimonial .stars {
  color: #ffa552;
}
main > #testimonials .testimonials .testimonial .message {
  position: relative;
  font-size: 12pt;
  padding: 0.625rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
main > #testimonials .testimonials .testimonial .message::before, main > #testimonials .testimonials .testimonial .message::after {
  font-size: 40pt;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  color: #ffa552;
  line-height: 5px;
}
main > #testimonials .testimonials .testimonial .message::before {
  content: "“";
  top: 0;
  left: 0.3125rem;
}
main > #testimonials .testimonials .testimonial .message::after {
  content: "„";
  bottom: 0;
  left: 0;
}

main > #delegating {
  display: flex;
  flex-direction: column;
}
main > #delegating .title {
  position: relative;
  width: 100%;
  height: 12.5rem;
  background-color: #ffa552;
  background: url("/assets/images/delegate_baner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  isolation: isolate;
  padding: 0 0.3125rem;
  display: grid;
  place-items: center;
}
main > #delegating .title::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: hsla(36, 89%, 45%, 0.39);
  z-index: -1;
}
main > #delegating span:is(.intro, .benifits) {
  margin-top: 3.125rem;
}
main > #delegating span:is(.benifits) {
  list-style: unset;
}

main > #about {
  display: flex;
  flex-direction: column;
}
main > #about .title {
  position: relative;
  width: 100%;
  height: 12.5rem;
  background-color: #ffa552;
  background: url("/assets/images/aboutBanner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  isolation: isolate;
  padding: 0 0.3125rem;
  display: grid;
  place-items: center;
}
main > #about .title::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: hsla(36, 89%, 45%, 0.39);
  z-index: -1;
}
main > #about .content {
  margin-top: 1.875rem;
}
main > #about .content > * {
  flex-basis: 50%;
}
main > #about .content .aboutPic {
  width: 18.75rem;
  margin: 1.25rem;
  margin-top: 0;
  text-align: center;
  float: left;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
main > #about .content span {
  text-align: justify;
}
main > #about .content span p:not(:last-of-type) {
  margin-bottom: 0.625rem;
}

main > #meetUs .meetToni {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  gap: 0.625rem;
}
main > #meetUs .meetToni .meetImg {
  padding: 1rem;
  height: max-content;
  width: max-content;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
@media (min-width: 768px) {
  main > #meetUs .meetToni {
    text-align: center;
    justify-content: center;
    gap: 0.625rem;
  }
  main > #meetUs .meetToni > * {
    flex-basis: 49%;
  }
  main > #meetUs .meetToni .message > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.625rem;
    overflow-x: auto;
    max-height: 350px;
  }
}
@media (min-width: 768px) and (min-width: 900px) {
  main > #meetUs .meetToni .message > div {
    max-height: 500px;
  }
}
@media (min-width: 768px) {
  main > #meetUs .meetToni .message > div h1 {
    margin-top: 1rem;
  }
  main > #meetUs .meetToni .message > div h3 {
    font-family: "Kaushan Script";
  }
  main > #meetUs .meetToni .message > div p {
    margin-top: 1rem;
  }
  main > #meetUs .meetToni .message > div .button {
    font-weight: 600;
    margin-bottom: 3rem;
  }
}

main > #reason {
  width: 100%;
}
main > #reason .reason {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main > #reason .reason h1 {
  text-align: center;
}
main > #reason .reason .reasonItems {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
main > #reason .reason .reasonItems .item {
  width: 160px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 0) {
  main > #reason .reason .reasonItems .item {
    flex-basis: 45%;
  }
}
@media (min-width: 768px) {
  main > #reason .reason .reasonItems .item {
    flex-basis: 30%;
  }
}
@media (min-width: 900px) {
  main > #reason .reason .reasonItems .item {
    flex-basis: 24%;
  }
}
main > #reason .reason .reasonItems .item .imge {
  width: 6.25rem;
}
main > #reason .reason .reasonItems .item h3 {
  font-size: 1rem;
  text-align: center;
}
main > #reason .reason .reasonItems .item p {
  text-align: center;
}

main > #delegate {
  width: 100%;
}
main > #delegate .delegate {
  padding: 1.875rem 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
main > #delegate .delegate > * {
  grid-area: 1/1;
}
@media (min-width: 0) {
  main > #delegate .delegate .runner {
    display: none;
  }
}
@media (min-width: 768px) {
  main > #delegate .delegate .runner {
    display: block;
    background-color: #5d576b;
    height: 300px;
  }
}
main > #delegate .delegate .wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
}
@media (min-width: 768px) {
  main > #delegate .delegate .wrapper > * {
    flex-basis: 47%;
  }
}
main > #delegate .delegate .wrapper .deligateImg {
  width: 21.875rem;
  max-width: 25rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  padding: 1rem;
  backdrop-filter: blur(80px);
}
main > #delegate .delegate .wrapper .delegateTitle {
  max-width: 31.25rem;
}
main > #delegate .delegate .wrapper .delegateTitle span * {
  color: #ffa552;
}

main > #services {
  width: 100%;
  display: flex;
  text-align: center;
}
main > #services .services {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main > #services .services h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}
main > #services .services .serviceWrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-evenly;
}
main > #services .services .serviceWrapper .service {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  /*
  // @include mobile {
  //   flex-basis: 90%;
  // }
  // @include tablet {
  //   flex-basis: 48%;
  // }

  .img {
    width: 3.125rem;
    height: 100%;
    margin-right: 10px;
    // outline: 1px dashed red;
    object-position: left center;
    img {
      height: 100%;
      object-position: 70% 0;
    }
  }
  .info {
    text-transform: capitalize;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    h3 {
      font-size: 1rem;
    }
    p {
      font-size: 0.625rem;
      text-align: left;
    }
  }
  */
}
main > #services .services .serviceWrapper .service .info {
  padding: 5px;
}
main > #services .services .serviceWrapper .service .info h3 {
  font-size: 12pt;
}
main > #services .services .serviceWrapper .service .info p {
  font-size: 10pt;
}

main > #newsletter {
  width: 100%;
  background-color: #5d576b;
}
main > #newsletter .newsletter {
  background-color: #ffa552;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main > #newsletter .newsletter::after {
  content: "";
  border-bottom: solid 2px gray;
  width: 90%;
  margin-top: 1.25rem;
}
main > #newsletter .newsletter h1 {
  font-size: 16pt;
}
main > #newsletter .newsletter label {
  border-radius: 10px;
  border: 1px solid #ffa552;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: auto;
  display: flex;
}
main > #newsletter .newsletter label input,
main > #newsletter .newsletter label button {
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
}
main > #newsletter .newsletter label input {
  width: clamp(220px, 100%, 400px);
  outline: none;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  padding-left: 10px;
}
main > #newsletter .newsletter label button {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
main > #newsletter .newsletter label button:hover {
  background-color: #333232;
  color: white;
}

main {
  width: 100%;
  margin: 0 auto;
}

footer {
  width: 100%;
  background-color: #ffa552;
  margin-bottom: 0;
}
footer .footer {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
footer .footer > * {
  flex-grow: 1;
  width: clamp(300px, 100%, 500px);
  flex-basis: 28%;
  display: block;
}
footer .footer .brand {
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
}
footer .footer .brand a > img {
  width: 100px;
}
footer .footer .brand h3 {
  width: 300px;
}
footer .footer .quicklinks {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
}
footer .footer .quicklinks li {
  list-style: none;
}
footer .footer .quicklinks li:hover {
  text-decoration: underline;
  text-decoration-color: #ffffe7;
  text-decoration-thickness: 3px;
}
footer .footer .social {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: flex-start;
}
footer .footer .social ul {
  width: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3125rem;
}
footer .footer .social ul h3 {
  display: inline-block;
  flex-basis: 100%;
}
footer .footer .social ul a {
  font-size: 20pt;
  flex-basis: 30%;
  flex-grow: 1;
  display: grid;
  place-items: center;
}
footer .footer .social ul a:hover {
  color: #ffffe7;
}
footer .social-2 {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .social-2 ul {
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}
footer .social-2 ul h3 {
  display: inline-block;
  flex-basis: 100%;
}
footer .social-2 ul a {
  font-size: 30pt;
  flex-grow: 1;
  display: grid;
  place-items: center;
}
footer .social-2 ul a:hover {
  color: #ffffe7;
}
