:root {
  --main-white-color: #fff;
  --main-black-color: #000;
  --main-color-1: #3b1b3b;
  --main-color-2: #bda9d0;
  --main-font-color: #5d4758;
}

@font-face {
  font-family: "Avenir Next Demi";
  src: url("../fonts/AvenirNext-DemiBold.woff2") format("woff2"),
    url("../fonts/AvenirNext-DemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/AvenirNext-Bold.woff2") format("woff2"),
    url("../fonts/AvenirNext-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/AvenirNext-Regular.woff2") format("woff2"),
    url("../fonts/AvenirNext-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/AvenirNext-Italic.woff2") format("woff2"),
    url("../fonts/AvenirNext-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next Condensed Demi";
  src: url("../fonts/AvenirNextCondensed-DemiBold.woff2") format("woff2"),
    url("../fonts/AvenirNextCondensed-DemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/*---------------------------------*/
/* Start General */
/*---------------------------------*/
body {
  color: var(--main-font-color);
  font-family: "Avenir Next";
  font-weight: normal;
  font-size: 1.2rem;
  /* background: var(--main-blue-color); */
}

.btn,
.btn:focus,
.btn:active:focus {
  outline: none;
  box-shadow: none;
}

.space-10 {
  height: 10px;
}

.space-15 {
  height: 15px;
}

.space-20 {
  height: 20px;
}

.space-30 {
  height: 30px;
}

.space-50 {
  height: 50px;
}

.btn-section {
  padding: 40px 0;
  text-align: center;
}

.main-btn {
  background: linear-gradient(
    -90deg,
    rgba(188, 141, 189, 1) 0%,
    rgba(59, 27, 59, 1) 100%
  );
  font-family: "Avenir Next Condensed Demi";
  font-weight: 600;
  color: var(--main-white-color) !important;
  font-size: 30px;
  padding: 8px 21px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
}

/*---------------------------------*/
/* End General */
/*---------------------------------*/

header {
  background: var(--main-color-1);
}

header .logo {
  max-width: 250px;
  padding: 15px 0;
  margin: 0 auto;
}

.slide-img {
  position: relative;
}

.slide-img .after {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.slide-img img {
  width: 100%;
}

.with_sup {
  position: relative;
}

.with_sup .sup {
  position: absolute;
  top: 0;
  right: -10px;
  font-size: 10px;
  user-select: none;
}

.slide-right {
  position: relative;
  z-index: 1;
}

.slide-right:after {
  content: "";
  /* left: 0;
top:0;
bottom: 0; */
  inset: 0;
  /* width: 100%; */
  position: absolute;
  z-index: -1;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 49%); */
  background: linear-gradient(
    90deg,
    rgba(57, 34, 49, 1) 7%,
    rgba(0, 0, 0, 0) 49%
  );
}

.slide-right .num {
  font-size: 35px;
  color: var(--main-white-color);
  font-weight: 600;
  display: inline-block;
  margin: 0 auto;
}

.slide-right .clock {
  width: 150px;
}

.slide-right {
  padding: 40px 0;
  background: var(--main-color-2);
}

/*-------------------------*/

/*------------------------*/

.slide_to_bright {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 20px;
  background: var(--main-white-color);
  border: 0;
  outline: none;
  user-select: none;
  pointer-events: none;
}

.slide_to_bright::-webkit-slider-thumb {
  background: #dedfde;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 25px;
  height: 25px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border-radius: 50%;
}

.slide-right .text {
  text-transform: uppercase;
  font-size: 24px;
  color: var(--main-white-color);
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 15px;
  width: 250px;
}

.slide-right .logo_two {
  width: 280px;
}

.logo-section {
  padding: 30px 0;
  background: var(--main-color-1);
}

.logo-section img {
  width: 250px;
}

.list-section {
  background: url("../img/bg.jpg") no-repeat center/cover;
  padding: 80px 0;
}

.list-section ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.list-section ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

.list-section ul li h4 {
  color: var(--main-white-color);
  font-family: "Avenir Next Demi";
  font-weight: 600;
  font-size: 32px;
}

.list-section ul li h4 sup {
  font-size: 12px;
}

.list-section ul li h5 {
  font-weight: normal;
  font-style: italic;
  color: var(--main-white-color);
}

.list-section ul li > div {
  margin-top: 20px;
}

.list-section ul li img {
  width: 45px;
  margin-right: 15px;
}

.section-title {
  background: var(--main-color-2);
  padding: 20px 0;
}

.section-title h3 {
  margin: 0;
  text-align: center;
}

.list-with-icon {
  padding: 50px 0;
}

.list-with-icon ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.list-with-icon ul li {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.list-with-icon ul li:last-child {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
}

.list-with-icon ul li .icon {
  flex: 0 0 90px;
  max-width: 90px;
  margin-inline-end: 15px;
}

.list-with-icon ul li p {
  margin: 0;
}

.note p {
  font-size: 12px;
}

.note p strong {
  font-size: 14px;
}

.note h6 {
  font-size: 14px;
  font-weight: 400;
}

.note ol {
  padding-left: 15px;
}

.note ol li {
  font-size: 12px;
}

footer p {
  color: var(--main-black-color);
  font-size: 12px;
  margin: 0;
}

@media (max-width: 768px) {
  .list-section ul li h4 {
    font-size: 23px;
  }
}

@media (max-width: 480px) {
  .slide-right .clock {
    margin: 10px;
    width: 100px;
  }

  .slide-right .text {
    margin: 10px auto;
  }

  .list-section ul li {
    margin-bottom: 10px;
  }

  .list-section {
    padding: 40px 0;
  }

  .list-section .box {
    margin-top: 60px;
  }

  .list-section ul li h4 {
    text-shadow: 0 0 10px rgb(0 0 0 / 50%);
  }
  .list-with-icon ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lang-btn {
  background: #bda9d0;
  padding: 10px 20px;
  border: 2px solid black;
  font-weight: bold;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.lang-btn:hover {
  background: #cbc5d1;
  color: var(--main-color-1);
}

/* privacy page style */
.privacy-title {
  color: var(--main-color-1);
  font-weight: bold;
}
.privacy-p {
  color: black;
}
/* end privacy page style */
#popup-privacy {
  color: white;
  background: hwb(290deg 29.93% 42.52%);
  width: 100%;
  min-height: 240px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  display: none;
  padding: 10px 30px;
  z-index: 55555;
}
.popup-container {
  direction: ltr;
  text-align: left;
}

.privacy-btns .close-pop-up {
  font-size: 1rem;
  padding: 5px 10px;
  background: white;
  border-radius: 6px;
  outline: none;
  border: 1px solid grey;
  font-weight: bold;
  width: 120px;
}

.popup-container a {
  color: white;
  font-weight: bold;
  transition: 0.5s;
}
.popup-container a:hover {
  color: rgb(145, 145, 145);
}
.priv-hover {
  color: var(--main-color-1);
}
.lang-img {
  width: 40px;
}
