@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
:root {
  --white: #FFFFFF;
  --mainBlue: #0D1982;
  --ctaBlue: #B2D2F3;
  --lightBlue: #F9FAFF;
  --mainBrown: #CE9615;
  --lightBrown: #F5EAD0;
  --footerBrown: #FFFBF0;
  --borderBrown: #EDB83E;
  --lighterBrown: #FFFBF0;
  --darkerGrey: #202020;
  --darkGrey: #47474A;
  --lightGrey: #FBFBFF;
  --lighterGrey: #F9FAFF;
  --circleBg: #F9FFFA;
}

:root {
  --white: #FFFFFF;
  --mainBlue: #0D1982;
  --ctaBlue: #B2D2F3;
  --lightBlue: #F9FAFF;
  --mainBrown: #CE9615;
  --lightBrown: #F5EAD0;
  --footerBrown: #FFFBF0;
  --borderBrown: #EDB83E;
  --lighterBrown: #FFFBF0;
  --darkerGrey: #202020;
  --darkGrey: #47474A;
  --lightGrey: #FBFBFF;
  --lighterGrey: #F9FAFF;
  --circleBg: #F9FFFA;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: #000;
}

nav, section, header, footer {
  padding: 0px 128px;
}
@media screen and (max-width: 768px) {
  nav, section, header, footer {
    padding: 0px 48px;
  }
}
@media screen and (max-width: 520px) {
  nav, section, header, footer {
    padding: 0px 24px;
  }
}
@media screen and (max-width: 376px) {
  nav, section, header, footer {
    padding: 24px;
  }
}

section, footer {
  padding-top: 72px;
}
@media screen and (max-width: 768px) {
  section, footer {
    padding-top: 40px;
  }
}

h1, h2, h3, h4, h5, h6, p {
  color: var(--mainBlue);
}

p {
  font-weight: 400;
}

h3 {
  font-size: 40px;
  font-weight: 600;
}

h4 {
  font-size: 32px;
  font-weight: 600;
}

p {
  font-size: 16px;
  color: var(--darkGrey);
  font-size: 16px;
  font-weight: 400;
}

.custom-alert-danger {
  margin: 10px 0;
  border-radius: 5px;
  font-size: 14px;
  padding: 15px;
  color: #842029;
  background: #f8d7da;
  border-color: #f5c2c7;
  width: 222px;
}

.custom-alert-success {
  margin: 10px 0;
  border-radius: 5px;
  font-size: 14px;
  padding: 15px;
  color: #0f5132;
  background: #d1e7dd;
  border-color: #badbcc;
  width: 222px;
}

nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: var(--white);
  height: 88px;
  position: fixed;
  z-index: 10;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 375px) {
  nav {
    width: 100%;
  }
}
nav .topFix {
  content: "";
  height: 4px;
  width: 100%;
  background-color: var(--mainBrown);
  position: absolute;
  top: 0;
  right: 0;
}
nav .navLogo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
nav .navLogo img {
  height: 48px;
}
nav .navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  nav .navLinks {
    display: none;
  }
}
nav .navLinks a {
  text-decoration: none;
}
nav .navLinks .serviceDrop {
  position: relative;
  cursor: pointer;
}
nav .navLinks .serviceDrop__container {
  position: absolute;
  border: 1px solid #000;
  padding: 8px;
  background-color: var(--white);
  border: 1px solid var(--mainBrown);
  width: 200px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 8px 24px -2px rgba(227, 227, 227, 0.6);
          box-shadow: 0px 8px 24px -2px rgba(227, 227, 227, 0.6);
  top: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%) !important;
          transform: translate(-50%, 0%) !important;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  display: none;
}
nav .navLinks .serviceDrop__container a {
  color: var(--mainBlue);
}
nav .navLinks .serviceDrop__container .item {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
nav .navLinks .serviceDrop__container .item:hover {
  background-color: var(--lightBrown);
}
nav .navLinks .serviceDrop:hover .serviceDrop__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav .navLinks .contactDrop {
  position: relative;
  cursor: pointer;
}
nav .navLinks .contactDrop__container {
  position: absolute;
  padding: 8px;
  background-color: var(--white);
  border: 1px solid var(--mainBrown);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 8px 24px -2px rgba(227, 227, 227, 0.6);
          box-shadow: 0px 8px 24px -2px rgba(227, 227, 227, 0.6);
  top: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%) !important;
          transform: translate(-50%, 0%) !important;
  width: 120px;
  display: none;
}
nav .navLinks .contactDrop__container a {
  color: var(--mainBlue);
}
nav .navLinks .contactDrop__container .item {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
nav .navLinks .contactDrop__container .item:hover {
  background-color: var(--lightBrown);
}
nav .navLinks .contactDrop:hover .contactDrop__container {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
nav .navLinks .navItem {
  font-size: 16px;
  font-weight: 400;
  color: var(--mainBlue);
}
nav .navLinks .navItem:hover {
  color: var(--mainBrown);
}
nav .navLinks .active {
  color: var(--mainBrown);
}
nav .navToggler {
  padding: 4px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
nav .navToggler__line {
  width: 20px;
  height: 2px;
  background-color: var(--mainBlue);
  position: relative;
}
nav .navToggler__line::before, nav .navToggler__line::after {
  width: 20px;
  height: 2px;
  background-color: var(--mainBlue);
  position: absolute;
  content: "";
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
nav .navToggler__line::after {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
@media screen and (min-width: 768px) {
  nav .navToggler {
    display: none;
  }
}
nav .navToggler.open {
  background: transparent;
}
nav .navToggler.open .navToggler__line {
  background-color: transparent;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
nav .navToggler.open .navToggler__line::before {
  -webkit-transform: rotate(45deg) translate(22px, -22px);
          transform: rotate(45deg) translate(22px, -22px);
}
nav .navToggler.open .navToggler__line::after {
  -webkit-transform: rotate(-45deg) translate(22px, 22px);
          transform: rotate(-45deg) translate(22px, 22px);
}

.navOverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9;
  background-color: var(--white);
  color: var(--mainBlue);
  padding: 24px;
  padding-top: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (min-width: 768px) {
  .navOverlay {
    display: none;
  }
}
.navOverlay__navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  padding-top: 80px;
}
.navOverlay__navLinks a {
  text-decoration: none;
}
.navOverlay__navLinks--serviceDrop, .navOverlay__navLinks--contactDrop {
  cursor: pointer;
}
.navOverlay__navLinks .serviceDrop-container, .navOverlay__navLinks .contactDrop-container {
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-animation: drop 400ms ease;
          animation: drop 400ms ease;
}
@-webkit-keyframes drop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes drop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
.navOverlay__navLinks .serviceDrop-container a, .navOverlay__navLinks .contactDrop-container a {
  color: var(--mainBlue);
}
.navOverlay__navLinks .serviceDrop-container .item, .navOverlay__navLinks .contactDrop-container .item {
  padding: 8px 8px;
  border-radius: 4px;
}
.navOverlay__navLinks .serviceDrop-container .item:hover, .navOverlay__navLinks .contactDrop-container .item:hover {
  color: var(--mainBrown);
}
.navOverlay__navLinks .serviceDrop-container.hide, .navOverlay__navLinks .hide.contactDrop-container {
  display: none;
}
.navOverlay__navLinks .contactDrop-container.hide {
  display: none;
}
.navOverlay__navLinks .navItem {
  font-size: 16px;
  font-weight: 400;
  color: var(--mainBlue);
}
.navOverlay__navLinks .navItem:hover {
  color: var(--mainBrown);
}
.navOverlay__navLinks .active {
  color: var(--mainBrown);
}

.navOverlay.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
@media screen and (min-width: 768px) {
  .navOverlay.open {
    display: none;
  }
}

.header {
  background-color: var(--lightBlue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 120px;
  padding-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding-top: 144px;
  }
}
.header__details {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .header__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__details--heading {
  margin-bottom: 32px;
}
.header__details--heading span {
  color: var(--mainBrown);
}
.header__details--cta {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 32px;
  background-color: var(--mainBlue);
  color: var(--white);
  border-radius: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
}
.header__details--cta svg {
  opacity: 0;
}
.header__details--cta svg path {
  fill: var(--white);
}
.header__details--cta:hover {
  gap: 24px;
}
.header__details--cta:hover svg {
  opacity: 1;
}
.header .imageSection {
  position: relative;
}
@media screen and (max-width: 375px) {
  .header .imageSection {
    width: 100%;
  }
}
.header .imageSection__image img {
  height: 450px;
}
@media screen and (max-width: 520px) {
  .header .imageSection__image img {
    height: 300px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 375px) {
  .header .imageSection__image img {
    height: 270px;
  }
}
@media screen and (max-width: 520px) {
  .header .imageSection__overlays {
    position: absolute;
    border: 1px solid #000;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    top: 0;
  }
}
@media screen and (max-width: 520px) and (max-width: 376px) {
  .header .imageSection__overlays {
    left: 40px;
  }
}
.header .imageSection__overlays--itemLeft {
  background-color: var(--white);
  border: 0.3px solid var(--borderBrown);
  border-radius: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: absolute;
  top: 100px;
  left: -60px;
  -webkit-animation: upDown 1200ms ease-in-out infinite alternate;
          animation: upDown 1200ms ease-in-out infinite alternate;
}
@media screen and (max-width: 375px) {
  .header .imageSection__overlays--itemLeft {
    left: -55px;
    top: 120px;
  }
}
@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
@keyframes upDown {
  0% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
.header .imageSection__overlays--itemLeft .text p {
  font-size: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header .imageSection__overlays--itemLeft .text .bold {
  font-size: 12px;
  font-weight: 700;
  color: var(--mainBlue);
}
.header .imageSection__overlays--itemLeft .cta {
  padding: 4px 8px;
  border-radius: 8px;
  background-color: var(--ctaBlue);
  color: var(--mainBlue);
  font-size: 8px;
}
.header .imageSection__overlays .down {
  background-color: rgba(255, 255, 255, 0.6);
  top: 350px;
}
@media screen and (max-width: 375px) {
  .header .imageSection__overlays .down {
    top: 320px;
  }
}
.header .imageSection__overlays--itemRight {
  background-color: var(--white);
  border: 0.3px solid var(--borderBrown);
  border-radius: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: absolute;
  top: 60px;
  left: 400px;
  -webkit-animation: upDown 1200ms ease infinite alternate;
          animation: upDown 1200ms ease infinite alternate;
}
@media screen and (max-width: 520px) {
  .header .imageSection__overlays--itemRight {
    left: 300px;
  }
}
@media screen and (max-width: 375px) {
  .header .imageSection__overlays--itemRight {
    left: 240px;
  }
}
@keyframes upDown {
  0% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
.header .imageSection__overlays--itemRight .text {
  text-align: center;
}
.header .imageSection__overlays--itemRight .text p {
  font-size: 12px;
}
.header .imageSection__overlays .downRight {
  top: 340px !important;
  left: 330px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 520px) {
  .header .imageSection__overlays .downRight {
    top: 340px !important;
    left: 280px;
  }
}
@media screen and (max-width: 375px) {
  .header .imageSection__overlays .downRight {
    top: 280px !important;
    left: 240px;
  }
}
.header .imageSection__overlays .downRight .text p span {
  font-weight: 700;
}
.header .imageSection__overlays .downRight .text .bold {
  font-weight: 600;
}
.header .imageSection__overlays .downRight .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: -20px;
}
.header .imageSection__overlays .downRight .images img {
  height: 36px;
}
@media screen and (max-width: 375px) {
  .header .imageSection__overlays .downRight .images img {
    height: 20px;
  }
}
.header .imageSection__overlays .downRight .images .add {
  padding: 8px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100%;
  background-color: var(--mainBrown);
}
.header .imageSection__overlays .downRight .images .add svg path {
  fill: var(--white);
}

.opportunities {
  text-align: center;
}
.opportunities h4 {
  color: var(--mainBrown);
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .opportunities h4 {
    margin: 0 auto;
    width: 500px;
  }
}
@media screen and (max-width: 520px) {
  .opportunities h4 {
    width: 240px;
  }
}
@media screen and (max-width: 375px) {
  .opportunities h4 {
    margin-bottom: 16px;
  }
}
.opportunities h4 span {
  font-weight: 400;
  color: var(--mainBlue);
}
.opportunities p {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .opportunities p {
    margin: 0 auto;
    width: 500px;
  }
}
@media screen and (max-width: 520px) {
  .opportunities p {
    width: 400px;
  }
}
@media screen and (max-width: 375px) {
  .opportunities p {
    width: 100%;
  }
}
.opportunities img {
  height: 660px;
}
@media screen and (max-width: 768px) {
  .opportunities img {
    height: 380px;
  }
}
@media screen and (max-width: 520px) {
  .opportunities img {
    height: 300px;
  }
}
@media screen and (max-width: 375px) {
  .opportunities img {
    width: 100%;
    height: auto;
  }
}

.services {
  background-color: var(--lightBlue);
}
@media screen and (max-width: 768px) {
  .services {
    margin-bottom: 32px;
  }
}
.services h4, .services p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.services__details {
  padding-top: 24px;
  padding-bottom: 72px;
  text-align: center;
  width: 1020px;
}
.services__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .services__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
}
.services__items--item {
  width: 360px;
  height: 300px;
  background-size: cover;
  border-radius: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .services__items--item {
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  .services__items--item {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .services__items--item {
    border-radius: 24px;
  }
}
.services__items--item .overlay {
  position: absolute;
  background-color: rgba(13, 25, 130, 0.38);
  width: 100%;
  height: 100%;
  top: 0;
  content: "";
  cursor: pointer;
}
.services__items--item .overlay:hover::after {
  top: 0%;
  border-radius: 0px;
}
.services__items--item .overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 100%;
  border-radius: 100%;
  position: absolute;
  background-color: rgba(13, 25, 130, 0.5);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.services__items--item p {
  color: var(--white);
  z-index: 10;
}
.services__items .counsel {
  background-image: url("../../assets/happy-black-spouses-thankful-family-counselor-after-successful-marital-therapy-session-shaking-hands-with-psychotherapist-grateful-reconciliation-sitting-c.png");
  position: relative;
}
.services__items .counsel::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--mainBlue);
  top: 100%;
}
.services__items .counsel:hover ~ .services__items .counsel::after {
  top: 0%;
}
.services__items .visa {
  width: 450px;
  height: 372px;
  padding: 0;
  background-image: url("../../assets/bored-woman-pink-pants-holding-flight-tickets-studio-shot-fashionable-girl-sitting-suitcase.png");
}
@media screen and (max-width: 768px) {
  .services__items .visa {
    width: 358px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  .services__items .visa {
    width: 100%;
  }
}
.services__items .visa .overlay:hover::after {
  top: 0%;
  border-radius: 0px;
}
.services__items .visa .overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 100%;
  border-radius: 100%;
  position: absolute;
  background-color: rgba(206, 151, 21, 0.5);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.services__items .application {
  background-image: url("../../assets/african-american-student-1.png");
}

.choice {
  background-color: var(--lightBlue);
  padding-bottom: 128px;
}
.choice h4 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 16px;
}
.choice h4 span {
  color: var(--mainBrown);
}
.choice p {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .choice p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}
.choice__introText, .testimonials__introText {
  width: 900px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .choice__introText, .testimonials__introText {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.choice__stats {
  width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .choice__stats {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  .choice__stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    width: 100%;
    margin: 0 auto;
  }
}
.choice__stats--num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.choice__stats--num p, .choice__stats--num h4 {
  margin: 0px;
}
.choice__stats--num p {
  text-align: center;
}
.choice__stats .mid {
  width: 260px;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  border: 1px dashed var(--mainBrown);
  background-color: var(--white);
}

.testimonials__container {
  position: relative;
  height: auto;
}
@media screen and (max-width: 520px) {
  .testimonials__container {
    height: 440px;
  }
}
@media screen and (max-width: 375px) {
  .testimonials__container {
    height: 420px;
  }
}
.testimonials__container--quoteIcon {
  background-color: var(--mainBrown);
  padding: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  top: 0%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  border: 8px solid #fff;
  border-radius: 100%;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .testimonials__container--quoteIcon {
    top: -20%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    margin-top: 64px;
    padding: 24px;
  }
}
@media screen and (max-width: 520px) {
  .testimonials__container--quoteIcon {
    margin-top: 72px;
  }
}
@media screen and (max-width: 375px) {
  .testimonials__container--quoteIcon {
    margin-top: 80px;
  }
}
.testimonials__container--quoteIcon svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.testimonials__container .comment {
  background-color: var(--white);
  -webkit-box-shadow: 0px 8px 24px -2px rgba(227, 227, 227, 0.6);
          box-shadow: 0px 8px 24px -2px rgba(227, 227, 227, 0.6);
  padding: 32px 40px;
  margin-bottom: 52px;
  padding-bottom: 16px;
  border-radius: 48px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 375px) {
  .testimonials__container .comment {
    padding: 16px 24px;
  }
}
.testimonials__container .comment p {
  width: 360px;
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  padding-bottom: 40px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .testimonials__container .comment p {
    width: 360px;
  }
}
@media screen and (max-width: 520px) {
  .testimonials__container .comment p {
    width: 260px;
  }
}
@media screen and (max-width: 375px) {
  .testimonials__container .comment p {
    width: 100%;
    padding-bottom: 24px;
    height: 216px;
    font-size: 14px;
    padding-bottom: 0px;
  }
}
.testimonials__container .comment h2 {
  text-align: center;
  padding-bottom: 16px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .testimonials__container .comment h2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-item-align: end;
        align-self: flex-end;
    font-size: 16px;
  }
}
.testimonials__container .comment img {
  height: 80px;
  position: absolute;
  bottom: -15%;
  border-radius: 100%;
  border: 8px solid #fff;
  -webkit-box-shadow: 0px 8px 24px -2px rgba(227, 227, 227, 0.6);
          box-shadow: 0px 8px 24px -2px rgba(227, 227, 227, 0.6);
}
@media screen and (max-width: 375px) {
  .testimonials__container .comment img {
    height: 70px;
    bottom: -12%;
  }
}
.testimonials .swiper-slide {
  height: 314px !important;
}
@media screen and (max-width: 375px) {
  .testimonials .swiper-slide {
    width: 100% !important;
    height: 324px !important;
  }
}
.testimonials .slide-container {
  width: 100%;
  padding: 40px 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: visible;
}
.testimonials .slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
@media screen and (max-width: 375px) {
  .testimonials .slide-content {
    margin: 0;
  }
}
.testimonials .swiper-wrapper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.testimonials .swiper-navBtn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--mainBrown);
  z-index: 10;
  background-color: var(--white);
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  .testimonials .swiper-navBtn {
    display: none;
  }
}
.testimonials .swiper-navBtn svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.testimonials .swiper-navBtn svg path {
  fill: var(--mainBrown);
}
.testimonials .swiper-navBtn:hover {
  background-color: var(--mainBrown);
}
.testimonials .swiper-navBtn:hover svg path {
  fill: var(--white);
}
.testimonials .swiper-navBtn.right svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.testimonials .swiper-navBtn.right svg path {
  fill: var(--mainBrown);
}
.testimonials .swiper-navBtn.right:hover {
  background-color: var(--mainBrown);
}
.testimonials .swiper-navBtn.right:hover svg path {
  fill: var(--white);
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  display: none;
}

.swiper-pagination-bullet {
  background-color: var(--borderBrown);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--mainBrown);
  width: 16px;
  height: 8px;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }
  .swiper-navBtn {
    display: none;
  }
}
.visa {
  padding-bottom: 80px;
}
@media screen and (max-width: 520px) {
  .visa {
    padding: 0;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.visa__background {
  height: 140px;
  background-image: url(../../assets/banner.png);
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .visa__background {
    background-position-x: 20%;
    height: 200px;
  }
}
.visa__background--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 80px;
}
@media screen and (max-width: 768px) {
  .visa__background--content {
    margin-right: 24px;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .visa__background--content {
    background-color: rgba(255, 251, 240, 0.2);
    padding: 16px;
  }
}
.visa__background--content h4 {
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .visa__background--content h4 {
    width: 270px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 520px) {
  .visa__background--content h4 {
    font-size: 24px;
  }
}
.visa__background--content h4 span {
  font-weight: 600;
}
.visa__background--content .cta {
  border: 1px solid var(--white);
  padding: 16px 32px;
  border-radius: 32px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
}
@media screen and (max-width: 768px) {
  .visa__background--content .cta {
    padding: 8px 24px;
  }
}
.visa__background--content .cta svg {
  opacity: 0;
}
.visa__background--content .cta svg path {
  fill: var(--mainBrown);
}
.visa__background--content .cta:hover {
  gap: 24px;
  background-color: var(--white);
  color: var(--mainBrown);
}
.visa__background--content .cta:hover svg {
  opacity: 1;
}

.footer {
  background-color: var(--footerBrown);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__newsletter {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .footer__newsletter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 48px;
  }
}
.footer__newsletter img {
  height: 48px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .footer__newsletter img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .footer__newsletter--subscribe {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__newsletter--subscribe p {
  color: var(--mainBrown);
  font-size: 16px;
  margin-bottom: 8px;
}
.footer__newsletter--subscribe .emailSub {
  background-color: var(--mainBlue);
  border-radius: 36px;
  overflow: hidden;
  height: 32px;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__newsletter--subscribe .emailSub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.footer__newsletter--subscribe .emailSub input[type=email] {
  background-color: var(--mainBlue);
  color: var(--white);
  padding: 8px;
  outline: none;
  border: none;
  height: 100%;
  border-radius: 36px;
}
.footer__newsletter--subscribe .emailSub input[type=email]:focus {
  background-color: var(--white);
  color: var(--mainBlue);
  border: 2px solid var(--mainBlue);
}
.footer__newsletter--subscribe .emailSub input[type=email]::-moz-selection {
  background-color: var(--mainBlue);
  color: var(--white);
}
.footer__newsletter--subscribe .emailSub input[type=email]::selection {
  background-color: var(--mainBlue);
  color: var(--white);
}
.footer__newsletter--subscribe .emailSub input[type=email]::-webkit-input-placeholder {
  color: var(--white);
}
.footer__newsletter--subscribe .emailSub input[type=email]::-moz-placeholder {
  color: var(--white);
}
.footer__newsletter--subscribe .emailSub input[type=email]:-ms-input-placeholder {
  color: var(--white);
}
.footer__newsletter--subscribe .emailSub input[type=email]::-ms-input-placeholder {
  color: var(--white);
}
.footer__newsletter--subscribe .emailSub input[type=email]::placeholder {
  color: var(--white);
}
.footer__newsletter--subscribe .emailSub button {
  border: none;
  background-color: transparent;
  width: 40px;
  height: 100%;
  cursor: pointer;
}
.footer__newsletter--subscribe .emailSub button svg path {
  fill: var(--white);
}
.footer__newsletter--subscribe .follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer__newsletter--subscribe .follow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.footer__newsletter--subscribe .follow p {
  color: var(--mainBlue);
  margin: 0;
}
.footer__newsletter--subscribe .follow__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .footer__newsletter--subscribe .follow__icons {
    gap: 16px;
  }
}
.footer__newsletter--subscribe .follow__icons .icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  color: var(--mainBrown);
}
.footer__newsletter--subscribe .follow__icons .icon:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  background-color: var(--mainBrown);
}
.footer__newsletter--subscribe .follow__icons .icon:hover svg path {
  fill: var(--white);
}
.footer__quickLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer__quickLinks {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-bottom: 48px;
  }
}
.footer__quickLinks--head, .footer__contactUs--head {
  color: var(--mainBlue);
  font-weight: 600;
  position: relative;
}
.footer__quickLinks--head::after, .footer__contactUs--head::after {
  width: 32px;
  height: 2px;
  position: absolute;
  content: "";
  background-color: var(--mainBlue);
  bottom: -5px;
  left: 0px;
}
.footer__quickLinks--links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer__quickLinks--links a {
  color: var(--mainBlue);
}
.footer__quickLinks--links a:hover {
  color: var(--mainBrown);
}
.footer__contactUs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer__contactUs {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-bottom: 48px;
  }
}
.footer__contactUs--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 520px) {
  .footer__contactUs--content svg {
    display: none;
  }
}
.footer__contactUs--content .locations, .footer__contactUs--content .phone, .footer__contactUs--content .mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.footer__contactUs--content .locations__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer__contactUs--content .locations__details--single, .footer__contactUs--content .phone__details--single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.footer__contactUs--content .locations__details--single .location, .footer__contactUs--content .phone__details--single .location {
  width: 64px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__contactUs--content .locations__details--single .location p, .footer__contactUs--content .phone__details--single .location p {
  font-weight: 600;
}
.footer__contactUs--content .locations__details--single .address, .footer__contactUs--content .phone__details--single .address {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .footer__contactUs--content .locations__details--single .address, .footer__contactUs--content .phone__details--single .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .footer__contactUs--content .locations__details--single .address p, .footer__contactUs--content .phone__details--single .address p {
    text-align: left;
  }
}
.footer__contactUs--content .phone__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 375px) {
  .footer__contactUs--content .phone__details--single .line {
    text-align: left;
    width: 100%;
  }
}

.chatContainer {
  position: fixed;
  z-index: 14;
  bottom: 30px;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media screen and (max-width: 375px) {
  .chatContainer {
    gap: 8px;
  }
}
.chatContainer__background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--lightBrown);
  background-color: rgba(206, 150, 21, 0.1);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid var(--mainBrown);
  gap: 8px;
  border-radius: 24px 24px 0px 24px;
  padding: 16px;
  -webkit-transform: translateY(500%);
          transform: translateY(500%);
}
.chatContainer__background .chatContent {
  padding: 16px;
  background-color: var(--mainBrown);
  width: 336px;
  border-radius: 24px 24px 0px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 375px) {
  .chatContainer__background .chatContent {
    width: 240px;
    border-radius: 16px 16px 0px 16px;
  }
}
.chatContainer__background .chatContent p {
  color: var(--white);
}
@media screen and (max-width: 375px) {
  .chatContainer__background .chatContent p {
    font-size: 12px;
  }
}
.chatContainer__background .chatContent p:nth-child(1) {
  font-weight: 600;
}
.chatContainer__background .chatContent__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white);
  border-radius: 16px;
  padding: 8px 16px;
  margin-top: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 375px) {
  .chatContainer__background .chatContent__btn {
    border-radius: 8px;
    padding: 8px;
    gap: 4px;
  }
  .chatContainer__background .chatContent__btn svg {
    height: 16px;
  }
}
.chatContainer__background .chatContent__btn::before {
  width: 100%;
  height: 100%;
  background-color: var(--mainBlue);
  position: absolute;
  z-index: 1;
  top: 0;
  left: -100%;
  content: "";
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
}
.chatContainer__background .chatContent__btn p {
  color: var(--mainBlue);
}
.chatContainer__background .chatContent__btn p, .chatContainer__background .chatContent__btn svg {
  z-index: 3;
}
.chatContainer__background .chatContent__btn:hover::before {
  left: 0%;
}
.chatContainer__background .chatContent__btn:hover p {
  color: var(--white) !important;
}
.chatContainer__chatButton {
  background-color: var(--white);
  width: 88px;
  height: 88px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 375px) {
  .chatContainer__chatButton {
    width: 56px;
    height: 56px;
  }
}
.chatContainer__chatButton .button {
  padding: 24px;
  background-color: var(--mainBlue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 100%;
}
@media screen and (max-width: 375px) {
  .chatContainer__chatButton .button {
    width: 48px;
    height: 48px;
    padding: 8px;
  }
  .chatContainer__chatButton .button svg {
    height: 16px;
  }
}