/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

/* Quicksand */
@font-face {
  font-family: 'Quicksand';
  src: url('/fontsDIRHOMCALg/quicksand-variablefontDIRHOMCALg.woff2')
    format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: #0e0d12;
}
.headerDIRHOMCALg {
  background: #0e0d12;
  border-bottom: 1px solid #201f27;
}

.headerDIRHOMCALg__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 30px;
}

.headerDIRHOMCALg__logo img {
  height: 42px;
}

.headerDIRHOMCALg__nav {
  flex: 1;
}

.headerDIRHOMCALg__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.headerDIRHOMCALg__list a {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.headerDIRHOMCALg__burger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.headerDIRHOMCALg__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

.headerDIRHOMCALg__burger span:nth-child(1) {
  top: 0;
}

.headerDIRHOMCALg__burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.headerDIRHOMCALg__burger span:nth-child(3) {
  bottom: 0;
}

.headerDIRHOMCALg__burger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.headerDIRHOMCALg__burger.active span:nth-child(2) {
  opacity: 0;
}

.headerDIRHOMCALg__burger.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.headerDIRHOMCALg__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1000;
}

@media (max-width: 992px) {
  .headerDIRHOMCALg__burger {
    display: block;
  }

  .headerDIRHOMCALg__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #0e0d12;
    padding: 80px 20px;
    transition: 0.3s;
    z-index: 1001;
  }

  .headerDIRHOMCALg__nav.active {
    left: 0;
  }

  .headerDIRHOMCALg__overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .headerDIRHOMCALg__list {
    flex-direction: column;
    gap: 20px;
  }
}

.heroDIRHOMCALg {
  padding: 10px 0;
}

.heroDIRHOMCALg {
  position: relative;
  overflow: hidden;
}

/* флаг */
.heroDIRHOMCALg__flag {
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);

  width: 180px;
  height: 98px;
  pointer-events: none;
}

.heroDIRHOMCALg__flagmb {
  display: none;
}

@media (max-width: 1224px) {
  .heroDIRHOMCALg__flag {
    display: none;
  }

  .heroDIRHOMCALg__flagmb {
    display: block;
    position: static;
    width: 60px;
    height: 33px;
    top: 0;
    left: 0;
  }

  .wrapp-flagDIRHOMCALg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}

.heroDIRHOMCALg__inner {
  position: relative;
  z-index: 1;
}

.heroDIRHOMCALg__inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.heroDIRHOMCALg__top {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.heroDIRHOMCALg__title {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.heroDIRHOMCALg__text {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 400;
  max-width: 760px;
  margin: auto;
  margin-bottom: 20px;
}

.heroDIRHOMCALg__list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.heroDIRHOMCALg__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 5px;
  background: rgba(55, 55, 85, 0.5);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.heroDIRHOMCALg__list img {
  width: 15px;
  height: 15px;
}

@media (max-width: 992px) {
  .heroDIRHOMCALg__title {
    font-size: 28px;
  }

  .heroDIRHOMCALg__list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .heroDIRHOMCALg__title {
    font-size: 15px;
    margin-bottom: 5px;
    text-align: left;
  }

  .heroDIRHOMCALg__top {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .heroDIRHOMCALg__text {
    display: none;
    font-size: 11px;
  }

  .heroDIRHOMCALg__list {
    align-items: center;
    flex-wrap: nowrap;
  }

  .heroDIRHOMCALg__list li {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 10px;
    background: #201f27;
  }
}
.cardsDIRHOMCALg {
  padding: 0px 0 50px;
}

.cardsDIRHOMCALg__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.cardDIRHOMCALg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  border-radius: 20px;
  border: 1px solid #4482df;
  background: radial-gradient(
    79.31% 79.31% at 50.14% 20.69%,
    #1e1e57 0%,
    #0b0e1f 100%
  );
  text-align: center;
  width: 100%;
  flex: 0 0 366px;
}

.cardDIRHOMCALg__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 100px;
  background: #f90;
  box-shadow: 0 0 16.1px 0 rgba(255, 153, 0, 0.4);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  width: max-content;
  color: #070915;
}

.cardDIRHOMCALg__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 10px;
  height: 70px;
}

.cardDIRHOMCALg__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cardDIRHOMCALg__title {
  display: block;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  min-height: 56px;
  border-radius: 10px;
  background: #262661;
  padding: 10px;
  margin-bottom: 10px;
}

.cardDIRHOMCALg__stats {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  gap: 10px;
}

.cardDIRHOMCALg__stats li {
  display: flex;
  gap: 7px;
  align-items: center;
}

.cardDIRHOMCALg__stats img {
  width: 16px;
  height: 16px;
}

.cardDIRHOMCALg__stats strong {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.cardDIRHOMCALg__stats span {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  opacity: 0.7;
}

.cardDIRHOMCALg__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 100px;
  border: 6px solid #39396d;
  background: linear-gradient(
    90deg,
    #63b3ff 0%,
    #9bd9e2 32.18%,
    #9bd9e2 59.15%,
    #56afff 100%
  );
  box-shadow: 0 3px 10px 0 rgba(130, 201, 236, 0.2);
  color: #070915;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.cardDIRHOMCALg__btn img {
  height: 28px;
  width: 28px;
}

.cardDIRHOMCALg__payments {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  min-height: 40px;
}

.cardDIRHOMCALg__payments img {
  height: 26px;
}

.cardDIRHOMCALg__bottom {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 400;
  min-height: 40px;
}

@media (max-width: 600px) {
  .cardDIRHOMCALg {
    max-width: 100%;
  }
}

.howDIRHOMCALg {
  padding: 80px 0;
}

.howDIRHOMCALg__top {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 20px;
}

.howDIRHOMCALg__title {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.howDIRHOMCALg__desc {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 20px;
}

.howDIRHOMCALg__subtitle {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
}

.howDIRHOMCALg__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.howDIRHOMCALg__list li {
  border-radius: 20px;
  border: 1px solid #40407c;
  background: #0a0d1e;
  padding: 20px;
  text-align: center;
}

.howDIRHOMCALg__list h4 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.howDIRHOMCALg__list p {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.howDIRHOMCALg__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.howDIRHOMCALg__bottom div {
  border-radius: 20px;
  border: 1px solid #40407c;
  background: #0a0d1e;
  padding: 20px;
  text-align: center;
}

.howDIRHOMCALg__bottom h4 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.howDIRHOMCALg__bottom p {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .howDIRHOMCALg__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .howDIRHOMCALg__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .howDIRHOMCALg__list {
    grid-template-columns: 1fr;
  }

  .howDIRHOMCALg__title {
    font-size: 26px;
  }
}

.responsibleDIRHOMCALg {
  padding: 80px 0;
}

.responsibleDIRHOMCALg__title {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.responsibleDIRHOMCALg__desc {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  max-width: 900px;
  margin: 0 auto 30px;
}

.responsibleDIRHOMCALg__subtitle {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.responsibleDIRHOMCALg__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.responsibleDIRHOMCALg__list li {
  margin-bottom: 15px;
}

.responsibleDIRHOMCALg__list strong {
  display: block;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.responsibleDIRHOMCALg__list p {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
}

.responsibleDIRHOMCALg__message {
  border-radius: 20px;
  background: #0a0d1e;
  padding: 20px;
  margin-bottom: 30px;
}

.responsibleDIRHOMCALg__message h4 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.responsibleDIRHOMCALg__message p {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
}

.responsibleDIRHOMCALg__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;

  background: #1e63d6;
  color: #fff;

  padding: 14px 26px;
  border-radius: 30px;

  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;

  text-decoration: none;
  margin: 0 auto;
}

.responsibleDIRHOMCALg__btn img {
  width: 18px;
  height: 18px;
}

.responsibleDIRHOMCALg__btn {
  display: flex;
  width: fit-content;
}

@media (max-width: 600px) {
  .responsibleDIRHOMCALg__title {
    font-size: 26px;
  }
}
/* =========================
   FOOTER 
========================= */

.footerDIRHOMCALg {
  padding: 60px 0 30px;
  color: #cfd3dc;
  font-family: 'Quicksand', sans-serif;
}

.containerDIRHOMCALg {
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footerDIRHOMCALg p {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

.footerDIRHOMCALg p:nth-of-type(2) {
  color: #fff;
  line-height: 1.8;
}
.ageDIRHOMCALg {
  width: 50px;
  height: 50px;
  background: url('/imagesDIRHOMCALg/twenty-one-plusDIRHOMCALg.webp')
    center/contain no-repeat;
}

.regulationsDIRHOMCALg a {
  display: flex;
  align-items: center;
  gap: 25px;
  text-decoration: none;
  color: #fff;
}

.regulationsDIRHOMCALg img {
  max-width: 120px;
}

.regulationsDIRHOMCALg p {
  font-size: 15px;
  font-weight: 600;
}

.linkDIRHOMCALg {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.linkDIRHOMCALg a {
  color: #cfd3dc;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s;
}

.linkDIRHOMCALg a:hover {
  color: #fff;
}

.footerDIRHOMCALg__copy {
  opacity: 0.6;
  font-size: 12px;
}

@media (max-width: 768px) {
  .regulationsDIRHOMCALg a {
    flex-direction: column;
    text-align: center;
  }

  .linkDIRHOMCALg {
    flex-direction: column;
    gap: 10px;
  }
}

.aboutDIRHOMCALg {
  padding: 80px 0;
}

.aboutDIRHOMCALg__title {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.aboutDIRHOMCALg__desc {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin: 0 auto 20px;
}

.aboutDIRHOMCALg__mission {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
}

.aboutDIRHOMCALg__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.aboutDIRHOMCALg__list li {
  border-radius: 20px;
  border: 1px solid #40407c;
  background: #0a0d1e;
  padding: 25px;

  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.aboutDIRHOMCALg__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.aboutDIRHOMCALg__card {
  border-radius: 20px;
  border: 1px solid #40407c;
  background: #0a0d1e;
  padding: 25px;
}

.aboutDIRHOMCALg__card h3,
.aboutDIRHOMCALg__card h2 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.aboutDIRHOMCALg__card p {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}

.aboutDIRHOMCALg__card strong {
  font-weight: 700;
}

.aboutDIRHOMCALg__card ul {
  padding-left: 20px;
}

.aboutDIRHOMCALg__card li {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .aboutDIRHOMCALg__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutDIRHOMCALg__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .aboutDIRHOMCALg__list {
    grid-template-columns: 1fr;
  }

  .aboutDIRHOMCALg__title {
    font-size: 26px;
  }
}
.contactDIRHOMCALg {
  padding: 80px 0;
  background: #070b1b;
}

.contactDIRHOMCALg__title {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contactDIRHOMCALg__desc {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.85;
}

.contactDIRHOMCALg__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contactDIRHOMCALg__form input,
.contactDIRHOMCALg__form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px;

  border-radius: 12px;
  border: 1px solid transparent;
  background: #2a3346;

  color: #fff;
  font-family: 'Quicksand', sans-serif;

  transition: all 0.2s ease;
}

.contactDIRHOMCALg__form input::placeholder,
.contactDIRHOMCALg__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contactDIRHOMCALg__form input:focus,
.contactDIRHOMCALg__form textarea:focus {
  outline: none;
  border: 1px solid #3b82f6;
  background: #2f3a52;
}

.contactDIRHOMCALg__form textarea {
  height: 130px;
  resize: none;
}

.contactDIRHOMCALg__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.contactDIRHOMCALg__check input {
  display: none;
}

.contactDIRHOMCALg__check span {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contactDIRHOMCALg__check span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;

  width: 18px;
  height: 18px;

  border-radius: 6px;
  border: 1px solid #40407c;
  background: #0a0d1e;

  transition: all 0.2s ease;
}

.contactDIRHOMCALg__check span::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 7px;

  width: 6px;
  height: 10px;

  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.contactDIRHOMCALg__check input:checked + span::before {
  background: #1e63d6;
  border-color: #1e63d6;
}

.contactDIRHOMCALg__check input:checked + span::after {
  opacity: 1;
}

.contactDIRHOMCALg__check span:hover::before {
  border-color: #5b6cff;
}

.contactDIRHOMCALg__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  padding: 15px;

  background: linear-gradient(90deg, #1e63d6, #3b82f6);
  border-radius: 30px;
  color: #fff;

  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  border: none;

  cursor: pointer;
  transition: all 0.25s ease;
}

.contactDIRHOMCALg__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 99, 214, 0.4);
}

.contactDIRHOMCALg__btn img {
  width: 18px;
}

.contactDIRHOMCALg__info {
  border-radius: 20px;
  border-radius: 20px;
  background: #0a0d1e;
  height: max-content;
  padding: 25px;
}

.contactDIRHOMCALg__info h2 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 15px;
}

.contactDIRHOMCALg__info p {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.popupDIRHOMCALg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);

  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popupDIRHOMCALg.active {
  display: flex;
}

.popupDIRHOMCALg__content {
  background: #0a0d1e;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  text-align: center;
  position: relative;

  border: 1px solid #40407c;
}

.popupDIRHOMCALg__close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.popupDIRHOMCALg__content h2 {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}

.popupDIRHOMCALg__content p {
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.popupDIRHOMCALg__btn {
  background: linear-gradient(90deg, #1e63d6, #3b82f6);
  border-radius: 30px;
  padding: 14px 30px;
  color: #fff;
  border: none;

  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;

  cursor: pointer;
}

.popupDIRHOMCALg__btn img {
  width: 25px;
  height: 25px;
}

@media (max-width: 768px) {
  .contactDIRHOMCALg {
    padding: 60px 0;
  }

  .contactDIRHOMCALg__grid {
    grid-template-columns: 1fr;
  }

  .contactDIRHOMCALg__title {
    font-size: 26px;
  }

  .contactDIRHOMCALg__desc {
    font-size: 14px;
  }
}

.contactDIRHOMCALg__info a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.contactDIRHOMCALg__info a:hover {
  text-decoration: underline;
}

.terms {
  padding: 70px 0;
  word-wrap: break-word;
}

.terms h1 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.terms h2 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.terms p {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.terms a {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.terms ul {
  list-style: disc;
  margin-bottom: 20px;
}

.terms ul li {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  list-style-type: disc;
  margin-left: 20px;
}
