@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --toastify-font-family: var(--font-yekan) !important;
  --toastify-text-color-success: #53bb1e !important;
  --toastify-color-success: #f6fff5 !important;
  --toastify-toast-width: 280px !important;
  --toastify-toast-bd-radius: 9px !important;
  --toastify-toast-min-height: 56px !important;
  --toastify-toast-top: 106px !important;
  --toastify-toast-right: 42px !important;
  --toastify-color-progress-bgo: 1 !important;
  --toastify-color-error: #fff4f4 !important;
  --toastify-text-color-error: #d21f3c !important;
  /* my Colors  */
  --color-primary: #2860e6;
  /* primary */
  --color-primary-light: #eaf2ff;
  /* primaryDark */
  --color-theme: #f5f5f5;
  /* themeColor */
  --color-text: #202020;
  /* text */
  --color-title: #2c2c2c;
  /* title */
  --color-icon: #25324b;
  --color-des: #616161;
  /* des */
  --color-white: #fff;
  /* white */
  --color-black: #000000;
  /* black */
}

body.dark {
  /* my Colors  */
  --color-primary: #1a45ac;
  /* primary */
  --color-primary-light: #1a2d5c;
  /* primaryDark */
  --color-primary-text: #404040;
  /* primaryText */
  --color-theme: #003647;
  /* themeColor */
  --color-text: #ebebeb;
  /* text */
  --color-title: #f5f5f5;
  /* title */
  --color-icon: #ffffff;
  --color-des: #383838;
  /* des */
  --color-white: #0d1e48;
  /* white */
  --color-black: #000000;
  /* black */
}

html.scroll-remove {
  overflow: hidden;
  padding-right: 25px;
}

html {
  scroll-behavior: smooth;
}

html * {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

html.modal {
  overflow: hidden !important;
  padding-right: 17px !important;
}

@media (max-width: 800px) {
  html.modal {
    overflow: hidden !important;
    padding-right: 0 !important;
  }
}

body {
  direction: rtl;
  font-family: var(--font-peyda);
  background-color: #f9f9f9;
  font-weight: 500;
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: visible;
}

body.dark {
  background-color: #061741;
}

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

.glass::before {
  content: "";
  position: absolute;
  top: 0;
  right: 120%;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0.3) 120%);
  transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -moz-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  -o-transform: skewX(25deg);
}

.glass:hover::before {
  right: -125%;
}

@layer utilities {
  .text-balance {
    text-wrap: balance;
  }

  .d-flex {
    @apply flex;
  }

  .full-center {
    @apply flex items-center justify-center;
  }

  .center-end {
    @apply flex items-center justify-end;
  }

  .center-start {
    @apply flex items-center justify-start;
  }

  .center-between {
    @apply flex items-center justify-between;
  }

  .center-around {
    @apply flex items-center justify-around;
  }

  .center {
    @apply flex items-center;
  }

  .wrap {
    @apply flex flex-wrap;
  }

  .column {
    @apply flex flex-col;
  }

  .row {
    @apply flex flex-row;
  }

  .icon-button {
    @apply rounded-full min-w-9 min-h-9 items-center justify-center;
  }

  .icon-button:hover {
    background-color: rgba(0, 0, 0, 0.04);
  }

  .transition-medium {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }

  .container {
    max-width: 1319px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .min-h-myScreen {
    min-height: calc(100vh - 67px);
  }

  .bg-transparent {
    background-color: transparent;
  }

  .word-spacing-normal {
    word-spacing: 0.3em;
  }
}

button {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

/* width */
.none-scroll::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
.none-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* Handle */
.none-scroll::-webkit-scrollbar-thumb {
  background: #b9bec5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* Handle on hover */
.none-scroll::-webkit-scrollbar-thumb:hover {
  background: #767d85;
}

/* width */
.light-scroll::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  background-color: #d8e4ff;
}

/* Track */
.light-scroll::-webkit-scrollbar-track {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

/* Handle */
.light-scroll::-webkit-scrollbar-thumb {
  background: #2860e6;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

/* Handle on hover */
.light-scroll::-webkit-scrollbar-thumb:hover {
  background: #767d85;
}

/* Handle */
body.dark .light-scroll::-webkit-scrollbar-thumb {
  background: #2860e6 !important;
}

/* Handle on hover */
body.dark .light-scroll::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  background-color: #152c64;
}

/* animations  */

/* .fade-in {
  opacity: 0;
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}

.fade-in[data-animation="active"] {
  animation: bottom-top-animation 1s ease-in-out forwards;
  -webkit-animation: bottom-top-animation 1s ease-in-out forwards;
} */

.animation-scale,
.animation-scale-delay-05,
.animation-scale-delay-07,
.animation-scale-delay-1 {
  transform: translateY(30px) scale(0);
  -webkit-transform: translateY(30px) scale(0);
  -moz-transform: translateY(30px) scale(0);
  -ms-transform: translateY(30px) scale(0);
  -o-transform: translateY(30px) scale(0);
}

.animation-scale[data-animation="active"] {
  animation: scale-animation 0.5s ease-in-out 0s both running;
  -webkit-animation: scale-animation 0.5s ease-in-out 0s both running;
}

.animation-scale-delay-05[data-animation="active"] {
  animation: scale-animation 0.5s ease-in-out 0.2s both running;
  -webkit-animation: scale-animation 0.5s ease-in-out 0.2s both running;
}

.animation-scale-delay-07[data-animation="active"] {
  animation: scale-animation 0.5s ease-in-out 0.5s both running;
  -webkit-animation: scale-animation 0.5s ease-in-out 0.5s both running;
}

.animation-scale-delay-1[data-animation="active"] {
  animation: scale-animation 0.5s ease-in-out 0.7s both running;
  -webkit-animation: scale-animation 0.5s ease-in-out 0.7s both running;
}

@keyframes scale-animation {
  to {
    transform: translateY(0px) scale(1);
    -webkit-transform: translateY(0px) scale(1);
    -moz-transform: translateY(0px) scale(1);
    -ms-transform: translateY(0px) scale(1);
    -o-transform: translateY(0px) scale(1);
    opacity: 1;
  }
}

@keyframes bottom-top-animation {
  to {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    opacity: 1;
  }
}

.progress-top {
  height: 7px !important;
  background-color: transparent !important;
}

.progress-top .progress-bar {
  background-color: #161616 !important;
  border-top-left-radius: 20px !important;
  border-bottom-left-radius: 20px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.progress-top .progress-bar>div {
  display: none;
}

.Toastify__toast--success .toastify-progress {
  height: 7px !important;
  background-color: #72c846 !important;
  border-radius: 5px 0px 0px 5px !important;
  -webkit-border-radius: 5px 0px 0px 5px !important;
  -moz-border-radius: 5px 0px 0px 5px !important;
  -ms-border-radius: 5px 0px 0px 5px !important;
  -o-border-radius: 5px 0px 0px 5px !important;
  opacity: 1 !important;
}

.Toastify__toast--error .toastify-progress {
  height: 7px !important;
  background-color: #d21f3c !important;
  border-radius: 5px 0px 0px 5px !important;
  -webkit-border-radius: 5px 0px 0px 5px !important;
  -moz-border-radius: 5px 0px 0px 5px !important;
  -ms-border-radius: 5px 0px 0px 5px !important;
  -o-border-radius: 5px 0px 0px 5px !important;
  opacity: 1 !important;
}

.toast_card {
  font-size: 15px !important;
}

.Toastify__toast--success .Toastify__close-button {
  color: var(--toastify-text-color-success) !important;
}

.Toastify__toast--error .Toastify__close-button {
  color: var(--toastify-text-color-error) !important;
}

/* // date picker  */

.custom-date-picker .rmdp-container {
  width: 100%;
}

.custom-date-picker .ep-arrow {
  display: none;
}

.custom-date-picker .rmdp-wrapper {
  box-shadow: -8px 7px 100px 0px #00000014;
  background-color: #fff;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
  overflow: hidden;
  box-sizing: border-box;
}

.custom-date-picker .rmdp-header-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px 6px;
  color: #fff;
}

.custom-date-picker .rmdp-header-values span {
  border: 1px solid #cbcbcb;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  height: 35px;
  padding: 0px 20px;
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.custom-date-picker .rmdp-header-values span:hover {
  background-color: #0d0d0d;
  color: #f5f5f5;
}

.custom-date-picker .rmdp-header {
  padding: 9px 6px !important;
}

.custom-date-picker .rmdp-week-day {
  color: #858585;
}

.custom-date-picker .rmdp-week .sd {
  color: #2e2e2e;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.custom-date-picker .rmdp-today span {
  background-color: transparent !important;
  color: #2e2e2e !important;
}

.custom-date-picker .rmdp-week .sd:hover {
  background-color: #2b2b2b !important;
  color: #fff !important;
  box-shadow: none !important;
}

.custom-date-picker .rmdp-selected .sd {
  background-color: #1c1c1c !important;
  color: #fff !important;
  box-shadow: none !important;
}

.custom-date-picker .rmdp-ym span {
  color: #2e2e2e;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.custom-date-picker .rmdp-ym span:hover {
  background-color: #2b2b2b !important;
  color: #fff !important;
  box-shadow: none !important;
}

.custom-date-picker .rmdp-selected span {
  background-color: #1c1c1c !important;
  color: #fff !important;
  box-shadow: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.skeleton {
  background-color: #1c1c1c;
  background: linear-gradient(90deg, transparent, #1c1c1c75 100%, transparent);
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: shine 1s ease infinite;
  -webkit-animation: shine 1s ease infinite;
}

.skeleton-light {
  background-color: #fff;
  background: linear-gradient(90deg, transparent, #ffffff94, transparent);
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: shine 1s ease infinite;
  -webkit-animation: shine 1s ease infinite;
}

.skeleton-themColor {
  background-color: #e4e4e4;
  background: linear-gradient(90deg, transparent, #e4e4e4, transparent);
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: shine 1s ease infinite;
  -webkit-animation: shine 1s ease infinite;
}

@keyframes shine {
  to {
    background-position: right -40px top 0;
  }
}

@media (max-width: 560px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 382px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* compony list  */

.marque-compony-list-circle {
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
  color: #fff;
  box-shadow: 0px 1px 12px 5px #2860e666;
  width: 80px;
}

.marque-compony-list-arrow {
  left: 50%;
  transform: translateX(-50%) translateY(88%);
  border-radius: 3px;
  color: #fff;
  width: 3px;
  height: 133px;
}

.compony-list .left-bg {
  background: linear-gradient(269deg, #ffffff, transparent);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.compony-list .right-bg {
  background: linear-gradient(90deg, #ffffff, transparent);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

body.dark .compony-list .left-bg {
  background: linear-gradient(269deg, #061741, transparent);
}

body.dark .compony-list .right-bg {
  background: linear-gradient(90deg, #061741, transparent);
}

/* columns services  */

.colums-services .card {
  border: 1px solid #dfdfdf7e;
  padding: 16px 15px;
  min-height: 150px;
  /* background: #ffffff8e; */
  position: relative;
  cursor: pointer;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  /* grid-row: span 3 / span 3; */
  /* width: 23.5%; */
}

.colums-services .card.card-row-large {
  width: 206%;
}

.colums-services .card img {
  display: none;
}

@media (min-width: 1024px) {
  .colums-services .card.height-small {
    min-height: 160px;
  }
}

@media (min-width: 768px) {
  .colums-services .card.large-card {
    /* width: 23.5%; */
    min-height: 420px;
  }

  .colums-services .card img {
    display: block;
  }

  .colums-services .card .des {
    display: block;
  }

  .colums-services .card {
    min-height: 200px;
  }

  .mt-240px {
    margin-top: 240px !important;
  }

  .card-margin-in-large {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  /* .card {
    min-width: 70vw;
  } */
}

.colums-services .card:hover {
  box-shadow: 0px 7px 20px 0px rgba(13, 31, 66, 0.07);
  background: #fff;
}

.colums-services .card .des {
  color: #444;
  font-weight: 400;
  font-size: 14px;
}

.colums-services .card .shape-bottom-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

.colums-services .card .shape-bottom-center {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.mt-240px {
  margin-top: 240px !important;
}

body.dark .colums-services .card {
  border: 1px solid #dfdfdf1a;
}

body.dark .colums-services .card .des {
  color: #d6d6d6 !important;
}

body.dark .colums-services .card:hover {
  box-shadow: 0px 7px 20px 0px #0a1d4d;
  background: #071d53;
}

.card-margin-in-large {
  margin-top: 20px;
}

/* Marquee Slider  */
.marquee {
  position: relative;
  display: flex;
  overflow-x: hidden;
  user-select: none;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  min-width: 100%;
  animation: 35s linear infinite reverse scroll;
  /* margin: 0 -10px; */
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(calc(-100% - 5px));
    -webkit-transform: translateX(calc(-100% - 5px));
    -moz-transform: translateX(calc(-100% - 5px));
    -ms-transform: translateX(calc(-100% - 5px));
    -o-transform: translateX(calc(-100% - 5px));
  }

  to {
    transform: translateX(0);
  }
}

.mainBlog h2,
.mainBlog h2 *,
.mainBlog h3,
.mainBlog h3 *,
.mainBlog h4,
.mainBlog h4 *,
.mainBlog h5,
.mainBlog h5 *,
.mainBlog h6,
.mainBlog h6 * {
  font-size: 21px;
  color: #323232;
  margin: 6px 0px 4px 0px;
  font-weight: bold;
}

.mainBlog p,
.mainBlog p *,
.mainBlog,
.mainBlog * {
  font-size: 14px;
  color: #383838;
  font-weight: 500;
  line-height: 1.9em;
  text-align: justify;
}

.mainBlog b,
.mainBlog b *,
.mainBlog strong,
.mainBlog strong * {
  font-weight: 900;
  color: #1c1c1c;
}

.mainBlog a,
.mainBlog a * {
  font-size: 14px;
  color: #0540a5;
  font-weight: 700;
  line-height: 1.7em;
  text-align: justify;
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  text-decoration: none;
}

.mainBlog a:hover,
.mainBlog a:hover * {
  opacity: 0.9;
}

.mainBlog img,
.mainBlog input[type="img"] {
  width: 100% !important;
  max-width: 100% !important;
  margin: 10px auto 10px auto !important;
  height: auto !important;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 15px;
}


.mainBlog ol {
  list-style: decimal !important;
  padding: 0px 30px;
}

.mainBlog ul {
  list-style: disc !important;
  padding: 0px 30px;
}

.mainBlog iframe {
  width: 100%;
  height: auto;
  min-width: 100%;
  aspect-ratio: 1 / 0.57;
}

.mainBlog table {
  max-width: 100%;
  overflow: auto;
  margin-top: 10px;
  width: 100%;
}

.mainBlog table thead td,
.mainBlog table thead th {
  min-width: fit-content;
  border: 1px solid #c5c5c5;
  padding: 6px 20px;
}

.mainBlog table thead td,
.mainBlog table thead td *,
.mainBlog table thead th,
.mainBlog table thead th * {
  font-weight: 700;
}

.mainBlog table tbody td {
  min-width: fit-content;
  border: 1px solid #c5c5c5;
  padding: 6px 20px;
}

.mainBlog table td * {
  min-width: fit-content;
}

body.dark .mainBlog h2,
body.dark .mainBlog h2 *,
body.dark .mainBlog h3,
body.dark .mainBlog h3 *,
body.dark .mainBlog h4,
body.dark .mainBlog h4 *,
body.dark .mainBlog h5,
body.dark .mainBlog h5 *,
body.dark .mainBlog h6,
body.dark .mainBlog h6 * {
  font-size: 21px;
  color: #d5d5d5;
  margin: 6px 0px 4px 0px;
  font-weight: bold;
}

body.dark .mainBlog p,
body.dark .mainBlog p *,
body.dark .mainBlog,
body.dark .mainBlog * {
  font-size: 14px;
  color: #d5d5d5;
  font-weight: 500;
  line-height: 1.9em;
  text-align: justify;
}

body.dark .mainBlog b,
body.dark .mainBlog b *,
body.dark .mainBlog strong,
body.dark .mainBlog strong * {
  font-weight: 900;
  color: #fff;
}

body.dark .mainBlog a,
body.dark .mainBlog a * {
  font-size: 14px;
  color: #2172ff;
  font-weight: 500;
  line-height: 1.7em;
  text-align: justify;
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  text-decoration: none;
}

.mainContent h2,
.mainContent h2 *,
.mainContent h3,
.mainContent h3 *,
.mainContent h4,
.mainContent h4 *,
.mainContent h5,
.mainContent h5 *,
.mainContent h6,
.mainContent h6 * {
  font-size: 21px;
  color: #323232;
  margin: 6px 0px 4px 0px;
  font-weight: bold;
}

.mainContent p,
.mainContent p *,
.mainContent,
.mainContent * {
  font-size: 14px;
  color: #383838;
  font-weight: 500;
  line-height: 1.9em;
  text-align: justify;
}

.mainContent b,
.mainContent b *,
.mainContent strong,
.mainContent strong * {
  font-weight: 900;
  color: #1c1c1c;
}

.mainContent a,
.mainContent a * {
  font-size: 14px;
  color: #0540a5;
  font-weight: 500;
  line-height: 1.7em;
  text-align: justify;
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  text-decoration: none;
}

.mainContent a:hover,
.mainContent a:hover * {
  opacity: 0.9;
}

.mainContent img,
.mainContent input[type="img"] {
  border-radius: 10px;
  float: left;
  margin: 15px 20px 15px 0px;
  vertical-align: middle;
  height: auto;
  max-width: 100%;
}

.mainContent ul {
  list-style: auto !important;
  padding: 0px 30px;
}

.mainContent iframe {
  width: 100%;
  height: auto;
  min-width: 100%;
  aspect-ratio: 1 / 0.57;
}

body.dark .mainContent h2,
body.dark .mainContent h2 *,
body.dark .mainContent h3,
body.dark .mainContent h3 *,
body.dark .mainContent h4,
body.dark .mainContent h4 *,
body.dark .mainContent h5,
body.dark .mainContent h5 *,
body.dark .mainContent h6,
body.dark .mainContent h6 * {
  font-size: 21px;
  color: #d5d5d5;
  margin: 6px 0px 4px 0px;
  font-weight: bold;
}

body.dark .mainContent p,
body.dark .mainContent p *,
body.dark .mainContent,
body.dark .mainContent * {
  font-size: 14px;
  color: #d5d5d5;
  font-weight: 500;
  line-height: 1.9em;
  text-align: justify;
}

body.dark .mainContent b,
body.dark .mainContent b *,
body.dark .mainContent strong,
body.dark .mainContent strong * {
  font-weight: 900;
  color: #fff;
}

body.dark .mainContent a,
body.dark .mainContent a * {
  font-size: 14px;
  color: #2172ff;
  font-weight: 500;
  line-height: 1.7em;
  text-align: justify;
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  text-decoration: none;
}

.mainContent blockquote {
  font-size: 30px;
  width: 100%;
  margin: 20px 0;
  padding: 25px 25px;
  border-right: 5px solid #1e83ff;
  background: #ececec;
}

.mainContent blockquote p {
  font-weight: 500;
  text-align: justify;
  line-height: 22px;
  margin-bottom: 16px;
  color: #000000 !important;
  font-size: 17px !important;
  margin-bottom: 0 !important;
  display: block;
  font-weight: 500;
}

.mainContent blockquote a {
  font-weight: 500;
  text-align: justify;
  line-height: 22px;
  margin-bottom: 16px;
  font-size: 15px !important;
  margin-bottom: 0 !important;
  font-weight: 500;
  margin-right: 6px;
}

.video-section iframe {
  width: 100% !important;
}

/* modules css  */

.animationFloat {
  animation: animationFloat 15s ease infinite;
  -webkit-animation: animationFloat 15s ease infinite;
}

.animationFloatDelay {
  animation: animationFloat 15s ease infinite;
  -webkit-animation: animationFloat 15s ease infinite;
  animation-delay: 6s;
}

@keyframes animationFloat {
  0% {
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    opacity: 1;
  }

  50% {
    transform: translate(50%, 10%);
    -webkit-transform: translate(50%, 10%);
    -moz-transform: translate(50%, 10%);
    -ms-transform: translate(50%, 10%);
    -o-transform: translate(50%, 10%);

    opacity: 1;
  }

  100% {
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    opacity: 1;
  }
}