/* Loading the web font */
:root {
  --mainColor: #6cbdde;
  --text: #ffffff;
  --input-color: #ffffff;
  --valid-input-color: #ffffff;
}

@font-face {
  font-family: "Almarai";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../index/font-400.woff2) format("woff2");
}

@font-face {
  font-family: "Almarai";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../index/font-700.woff2) format("woff2");
}


@font-face {
  font-family: "Instrument Sans";
  src: url("../index/InstrumentSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("../index/InstrumentSans-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

:root {
  --bs-blue: #014b7a;
  --bs-MetallicGold: #003757;
  --bs-purple: #4a2f82;
  --bs-green: #006235;
  --bs-teal: #556238;
  --bs-neon-orange: #ff6201;
  --bs-primary: #0d77b7;
  --bs-secondary: #7b8991;
  --bs-special: #0086da;
}

#sticky-wrapper {
  height: 100% !important;
}

.sticky {
  position: sticky;
  top: 0;
  width: 306px;
  z-index: inherit;
}

.article-content h3 {
  font-size: 1.2em;
}

.article-content a {
  color: var(--bs-primary);
}

.container {
  box-sizing: border-box;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .offset-lg-1 {
    margin-right: 8.33333333%;
  }
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.m-0 {
  margin: 0 !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.me-4 {
  margin-left: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-2 {
  margin-right: 0.5rem !important;
}

.ms-3 {
  margin-right: 1rem !important;
}

.ms-auto {
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-5 {
  padding-right: 3rem !important;
}



.btn-more {
  display: inline-block;
  background: var(--bs-primary);
  padding: 0.6em 3em;
  font-size: 1.1em;
  line-height: 1;
  font-weight: 400;
  font-family: "Almarai", sans-serif;
  color: #fff;
  border-radius: 2em;
  margin-top: 1em;
}

.btn-more:hover {
  background-color: var(--bs-special);
}

/*! * Header Main-menu */
header {
  position: relative;
  background: #fff;
  border-bottom: solid 1px #d4d5d6;
}

.site-logo svg {
  display: block;
  width: 9.2rem;
  height: 7.36rem;
  fill: var(--bs-primary);
}

.main-menu {
  overflow: auto;
  border-top: solid 1px #d4d5d6;
  border-bottom: solid 1px #d4d5d6;
}

.main-menu>ul>li:hover>a,
.main-menu>ul>li>a:hover {
  background: var(--bs-primary);
  color: #fff;
}

.main-menu>ul>li.color-blue-navy>a:hover,
.main-menu>ul>li.color-blue-navy:hover>a {
  background: var(--bs-blue);
  color: #fff;
}

.main-menu>ul>li.color-greenl>a:hover,
.main-menu>ul>li.color-greenl:hover>a {
  background: var(--bs-teal);
  color: #fff;
}

.main-menu>ul>li.color-green2>a:hover,
.main-menu>ul>li.color-green2:hover>a {
  background: var(--bs-green);
  color: #fff;
}

.main-menu>ul>li.color-violet>a:hover,
.main-menu>ul>li.color-violet:hover>a {
  background: var(--bs-purple);
  color: #fff;
}

.main-menu>ul>li.color-neon-orange>a:hover,
.main-menu>ul>li.color-neon-orange:hover>a {
  background: var(--bs-neon-orange);
  color: #fff;
}

.main-menu>ul>li.color-MetallicGold>a:hover,
.main-menu>ul>li.color-MetallicGold:hover>a {
  background: var(--bs-MetallicGold);
  color: #fff;
}

.main-menu ul {
  list-style: none;
  font-size: 1em;
  font-family: "Almarai", sans-serif;
  font-weight: 700;
}

.main-menu a {
  display: block;
  line-height: 2.45;
  color: #404041;
  padding: 0 1rem;
  white-space: nowrap;
}

.main-menu a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .main-menu>ul {
    position: relative;
  }

  .main-menu>ul>li.active.has-child {
    margin-bottom: 32px;
  }

  .main-menu>ul>li.active a {
    position: relative;
  }

  .main-menu>ul>li.active a:after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 3px;
    margin-top: -3px;
    background: var(--bs-primary);
    z-index: 40;
  }

  .main-menu>ul>li.active.color-MetallicGold a:after {
    background: var(--bs-MetallicGold);
  }
}

@media (min-width: 768) {
  /*
*/
}

@media (min-width: 992px) {
  header {
    margin-bottom: 7rem;
  }

  .main-menu {
    overflow: visible;
  }

  .main-menu li {
    position: relative;
  }

  .main-menu>ul {
    position: relative;
  }

  .main-menu>ul>li>a {
    padding: 0 0.6rem;
    position: relative;
  }

  .main-menu>ul>li.has-child>a {
    padding: 0 0.5rem 0 1.4rem;
  }

  .main-menu li.has-child>a:after,
  .main-menu li.has-child>a:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--bs-primary);
    transform: rotate(45deg);
    left: 0.5rem;
    top: 50%;
    margin-top: -2px;
    z-index: 10;
    transition: all 0.5s ease;
  }

  .main-menu li.has-child>a:before {
    z-index: 20;
    background: #fff;
    margin-top: -4.5px;
  }

  .main-menu li.has-child.color-blue-navy>a:after {
    background: var(--bs-blue);
  }

  .main-menu li.has-child.color-greenl>a:after {
    background: var(--bs-teal);
  }

  .main-menu li.has-child.color-green2>a:after {
    background: var(--bs-green);
  }

  .main-menu li.has-child.color-violet>a:after {
    background: var(--bs-purple);
  }

  .main-menu li.has-child.color-MetallicGold>a:after {
    background: var(--bs-MetallicGold);
  }

  .main-menu ul li.has-child:hover>a:after {
    background: #fff;
  }

  .main-menu ul li.has-child:hover>a:before {
    background: var(--bs-primary);
  }

  .main-menu li.has-child.color-blue-navy:hover>a:before {
    background: var(--bs-blue);
  }

  .main-menu li.has-child.color-greenl:hover>a:before {
    background: var(--bs-teal);
  }

  .main-menu li.has-child.color-green2:hover>a:before {
    background: var(--bs-green);
  }

  .main-menu li.has-child.color-violet:hover>a:before {
    background: var(--bs-purple);
  }

  .main-menu li.has-child.color-MetallicGold:hover>a:before {
    background: var(--bs-MetallicGold);
  }

  .main-menu li.active {
    z-index: 80;
  }

  .main-menu li:hover {
    z-index: 90;
  }

  .main-menu>ul>li.active:after,
  .main-menu>ul>li:hover:after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 6px;
    background: var(--bs-primary);
    z-index: 40;
  }

  .main-menu>ul>li.color-blue-navy:hover:after {
    background: var(--bs-blue);
  }

  .main-menu>ul>li.color-greenl:hover:after {
    background: var(--bs-teal);
  }

  .main-menu>ul>li.color-green2:hover:after {
    background: var(--bs-green);
  }

  .main-menu>ul>li.color-violet:hover:after {
    background: var(--bs-purple);
  }

  .main-menu>ul>li.color-neon-orange:hover:after {
    background: var(--bs-neon-orange);
  }

  .main-menu>ul>li.color-MetallicGold.active:after,
  .main-menu>ul>li.color-MetallicGold:hover:after {
    background: var(--bs-MetallicGold);
  }
}

@media (min-width: 1200px) {
  .site-logo svg {
    margin-bottom: -1.5rem;
  }
}

@media (min-width: 1400px) {
  .main-menu>ul>li>a {
    padding: 0 0.9rem;
    font-size: 1em;
  }

  .main-menu>ul>li.has-child>a {
    padding: 0 0.7rem 0 1.5rem;
  }
}

.toggle-mode-checkbox {
  display: none;
}

.toggle-mode-checkbox:checked {}

.toggle-mode-checkbox:checked+.toggle-mode-label {
  background: #4c5270;
}

.toggle-mode-checkbox:checked+.toggle-mode-label .toggle-mode-label-background {
  left: -30px;
  width: 1px;
  height: 1px;
}

.toggle-mode-checkbox:checked+.toggle-mode-label .toggle-mode-label-background:before {
  width: 1px;
  height: 1px;
  top: -4px;
}

.toggle-mode-checkbox:checked+.toggle-mode-label .toggle-mode-label-background:after {
  width: 1px;
  height: 1px;
  left: -7px;
  top: 4px;
}

.toggle-mode-checkbox:checked+.toggle-mode-label:before {
  background: #fff;
  animation-name: switch;
  animation-duration: 350ms;
  animation-fill-mode: forwards;
}

.toggle-mode-checkbox:checked+.toggle-mode-label:after {
  transition-delay: 350ms;
  opacity: 1;
}

.toggle-mode-label {
  width: 50px;
  height: 25px;
  background: var(--bs-primary);
  border-radius: 25px;
  display: flex;
  position: relative;
  transition: all 350ms ease-in;
}

.toggle-mode-label-background {
  width: 4px;
  height: 2px;
  border-radius: 1px;
  position: relative;
  background: #fff;
  left: -13px;
  top: 12px;
  transition: all 150ms ease-in;
}

.toggle-mode-label-background:before {
  content: "";
  position: absolute;
  top: -2px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  left: -5px;
  transition: all 150ms ease-in;
}

.toggle-mode-label-background:after {
  content: "";
  position: absolute;
  top: 2px;
  width: 10px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  left: -2px;
  transition: all 150ms ease-in;
}

.toggle-mode-label:before {
  /*animation-name: reverse;
  animation-duration: 350ms;
  animation-fill-mode: forwards;
  transition: all 350ms ease-in;*/
  content: "";
  width: 21px;
  height: 21px;
  top: 2px;
  left: 2px;
  position: absolute;
  border-radius: 21px;
  background: #fff;
}

.toggle-mode-label:after {
  transition-delay: 0ms;
  transition: all 250ms ease-in;
  position: absolute;
  content: "";
  box-shadow: rgba(0, 0, 0, 0.1) -2px 0 0 2px, rgba(0, 0, 0, 0.1) -5px 6px 0 1px;
  left: 35px;
  top: 8px;
  width: 1px;
  height: 1px;
  background: transparent;
  border-radius: 2px;
  opacity: 0;
}

@keyframes switch {
  0% {
    left: 2px;
  }

  60% {
    left: 2px;
    width: 33px;
  }

  100% {
    left: 27px;
    width: 21px;
  }
}

/* //Trendy Slider */
@keyframes fadeIn {
  0% {
    display: block;
    opacity: 0;
  }

  60% {
    opacity: 40%;
  }

  100% {
    opacity: 100%;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 100%;
  }

  60% {
    opacity: 40%;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

.header-trendy {
  background: #e7e7e8;
}

.header-trendy h2 {
  background: #fff;
  position: relative;
  overflow: hidden;
  font-size: 0.95em;
  padding: 0.65em 0;
  margin: 0;
}

.header-trendy h2:after {
  content: "";
  background: var(--bs-primary);
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  /*animation-name: slideRight;
  animation-duration: 7000ms;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;*/
}

.header-trendy h2 span {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: #fff;
  padding: 0 0.65em;
  /*animation-name: slideLeft;
  animation-duration: 7000ms;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;*/
}

.header-trendy li {
  display: none;
  background: transparent;
  animation-name: fadeOut;
  animation-duration: 350ms;
  animation-fill-mode: forwards;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 170px;
  overflow: hidden;
}

.header-trendy li.active {
  display: block;
  animation-name: fadeIn;
  animation-duration: 350ms;
  animation-fill-mode: forwards;
}

.header-trendy a {
  color: var(--bs-primary);
  font-family: "Almarai", sans-serif;
  font-size: 0.9em;
  line-height: 2.8em;
  padding: 0 1em;
  font-weight: 400;
  background: transparent;
}

.header-trendy a:hover {
  color: var(--bs-special);
}

/* //Header Social */
.header-socials {
  padding: 0 0.6rem;
  margin-bottom: -1px;
}

.header-socials a {
  padding: 3px;
  margin-left: 2px;
  width: 25px;
  height: 28px;
  line-height: 27px;
  box-sizing: border-box;
  color: #8a939a;
  border-radius: 15px;
  text-align: center;
}

.header-socials a:last-child {
  margin-left: 0;
}

.header-socials a svg {
  width: 18px;
  height: 18px;
  fill: #8a939a;
  transition: all 0.5s ease;
}

.header-socials a:hover svg {
  fill: var(--bs-primary);
}

@media (min-width: 992px) {
  .header-trendy li {
    max-width: 220px;
  }
}

/* //Header Search */
.header-tools {
  position: relative;
  display: block !important;
}

.search-open {
  display: block;
  width: 28px;
  height: 28px;
  text-align: center;
  border: solid 1px #c9ccd0;
}

.search-open svg {
  width: 15px;
  height: 28px;
  fill: #8a939a;
}

.search-form {
  display: none;
  position: absolute;
  background: #f1f3f5;
  width: 100%;
  height: 100%;
  z-index: 100;
  left: 0;
  top: 0;
  animation-name: fadeOut;
  animation-duration: 350ms;
  animation-fill-mode: forwards;
}

.search-txt {
  line-height: 2.4em;
  padding: 0;
  border: 0;
  margin: 0;
  background: transparent;
  color: #404041;
}

.search-btn {
  margin: 0 0.5em;
  line-height: 2.4em;
  width: 4em;
  color: #fff;
  background: var(--bs-primary);
  text-align: center;
}

.search-btn:hover {
  background: var(--bs-special);
}

.search-btn svg {
  width: 0.9em;
  height: 0.9em;
  fill: #fff;
}

.search-close {
  line-height: 2.4em;
  width: 2.4em;
  text-align: center;
}

.search-close svg {
  width: 0.9em;
  height: 0.9em;
  stroke: var(--bs-secondary);
}

.search-close:hover svg {
  stroke: var(--bs-primary);
}

/*! * Section */

.section-title {
  font-size: 1.4em;
  line-height: 1;
  color: #404041;
  position: relative;
  margin-top: 0;
  padding-right: 14px;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: var(--bs-primary);
}

.section-title::after {
  margin-top: 1px;
  background-color: var(--bs-secondary);
}

.color-MetallicGold .section-title::before {
  background-color: var(--bs-MetallicGold);
}

/*! * News Lists */
.article-overlay {
  position: relative;
  overflow: hidden;
}

article.article-overlay .post-img:before {
  position: relative;
  content: "";
  display: block;
  padding-bottom: 57.3%;
  left: 0;
  top: 0;
}

.article-bg2 {
  background: #fff;
}

.article-wrap .post-img {
  margin-bottom: 1em;
}

.article-wrap .post-img {
  margin-bottom: 1em;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.meta-alt {
  font-size: 0.9em;
  margin-top: -1em;
  min-height: 2em;
  direction: rtl;
  text-align: right;
  padding-left: 2em;
}

.post-img>a {
  display: block;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

article.article-overlay .post-img>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-img img {
  display: block;
  width: 100%;
  height: auto;
}

.article-wrap .post-img img {
  margin-bottom: 1em;
}

.article-overlay .post-img>a:before,
.article-overlay .post-img>a:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 20;
  width: 100%;
  left: 0;
  bottom: -10%;
  height: 60%;
  background: linear-gradient(0deg, rgba(12, 23, 36, 0.8), rgba(12, 23, 36, 0));
  transition: all 0.5s ease;
}

.article-overlay .post-img>a:after {
  bottom: -60%;
  background: linear-gradient(0deg, rgba(0, 53, 102, 0.8), rgba(0, 53, 102, 0));
}

.article-overlay:hover .post-img>a:after {
  bottom: 0;
}

header+.container .article-overlay .post-img>a:after {
  bottom: 0;
}

.post-details {
  padding-top: 1.2rem;
}

.article-verticale .post-img {
  position: relative;
}

.article-verticale .post-img:before {
  display: block;
  content: "";
  position: relative;
  padding-bottom: 57.3%;
}

.article-bg2 .post-img:before {
  display: none;
}

.article-verticale .post-img a {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.article-verticale .post-img a img {
  display: block;
  min-width: 100%;
  height: 100%;
  width: auto;
}

.article-overlay .post-details {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 30;
  padding: 1.2rem;
  transition: all 0.5s ease;
}

.article-overlay:hover .post-details {
  padding-bottom: 1rem;
}

.post-details h3 {
  margin: 0;
  line-height: 1.4em;
  font-size: 1.1em;
}

.post-details h3 a {
  display: inline-block;
  color: #322f2f;
}

.post-details h3 a:hover {
  color: var(--bs-primary);
}

.article-overlay .post-details h3 a {
  color: #fff;
}

.article-overlay .post-details h3 a:before {
  content: "";
  display: inline-block;
  margin-left: 8px;
  background-image: url(../index/sprite.svg#whitedots);
  width: 6px;
  height: 14.5px;
}

.article-bg2:after {
  content: "";
  display: block;
  clear: both;
}

.article-bg2 .post-img {
  float: right;
  width: 32%;
  max-width: 150px;
  position: relative;
}

.article-bg2 .post-img>a {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
}

.article-bg2 .post-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.article-bg2 .post-details {
  padding-top: 0;
  padding-right: 1.2rem;
  float: right;
  width: 67%;
  box-sizing: border-box;
  padding-bottom: 0;
}

.meta-above {
  border-bottom: solid 1px #939598;
}

.meta-tags {}

.meta-tags a {
  display: inline-block;
  padding: 0 1em;
  border-radius: 1.3em;
  margin-left: 0.4em;
  line-height: 2.4em;
  font-size: 0.9em;
  background: #dcdee1;
  color: #231f20;
}

.meta-tags a:hover {
  color: var(--bs-primary);
}

.articlecontentt {
  border-bottom: solid 6px #939598;
}

.section-related .post-img,
.section-related .post-img img {
  margin: 0;
}

/*
.post-section-title:before {
content: '';
display: inline-block;
margin-left: 8px;
background-image: url(../images/sprite.svg#sectiondots);
width: 6px;
height: 14.5px;
}
*/
.article-bg2 .post-details>a {
  display: block;
  line-height: 1;
  margin-bottom: 0.3em;
  font-size: 0.8em;
  font-weight: bold;
  color: var(--bs-primary);
}

.article-bg2 .post-details>a:hover {
  color: var(--bs-special);
}

@media (min-width: 768px) {
  .article-wrap .post-img {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  .article-bg2 .post-details {
    padding-right: 0.7rem;
  }
}

@media (min-width: 1200px) {
  .post-details h3 {
    font-size: 1em;
  }

  .article-bg2 .post-details h3 {
    line-height: 1.6;
    font-weight: normal;
    font-size: 0.9em;
  }
}

/*! * Side boxes */
.sidebox {
  background: #fff;
  padding: 1rem 1rem 0.2rem;
}

.article .sidebox {
  border: solid 1px #a2aab0;
}

.sidebox-title {
  display: inline-block;
  font-size: 1.4em;
  line-height: 1;
  padding-bottom: 0.5rem;
  color: #404041;
  position: relative;
  margin-top: 0;
  margin-bottom: 1rem;
}

.sidebox-title:before {
  content: "";
  display: inline-block;
  margin-left: 8px;
  background-image: url(../index/sprite.svg#coloreddots);
  width: 6px;
  height: 14.5px;
}

/*
.sidebox-title:after {
content: '';
height: 3px;
position: absolute;
right: 0;
bottom: 0;
width: 100%;
width: calc(100% + 1rem);
margin-right: -1rem;
background: #EDEFF1;
}
*/
.article .sidebox-title:after {
  background: #fff;
}

/*! * sidebox News list * */
.list-news article {
  padding-bottom: 0.9rem;
  padding-top: 0.8rem;
  border-top: solid 1px #cecfd0;
}

.list-news article h3 {
  margin: 0;
  line-height: 1.4;
  font-size: 1.3em;
}

.list-news article:last-child {
  margin-bottom: 0.2rem;
}

.list-news article a {
  color: #202021;
}

.list-news article a:hover {
  color: var(--bs-special);
}

.list-news article.article-overlay {
  padding: 0;
}

.list-news article.article-overlay .post-details {
  height: 100%;
}

.list-news article.article-overlay .post-title {
  position: absolute;
  bottom: 1em;
}

.list-news article.article-overlay .post-category {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1.6em;
  font-size: 0.9em;
  padding: 0 1em;
  background-color: var(--bs-primary);
  color: #fff;
}

.list-news article.article-overlay .post-category:hover {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .list-news article h3 {
    font-size: 0.9em;
    line-height: 1.3em;
    display: block;
  }
}

/*! * Footer * */
footer {
  font-family: "Almarai", sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.4;
}

footer .footer-top-line {
  color: var(--bs-secondary);
}

footer .footer-boxes {
  background: var(--bs-primary);
  color: #fff;
}

footer .footer-boxes a {
  color: #fff;
}

footer .footer-boxes a:hover {
  color: var(--bs-special);
}

footer a svg {
  fill: #fff;
}

footer a:hover svg {
  fill: var(--bs-special);
}

footer svg {
  fill: #fff;
}

.footer-logo svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 130px;
  margin: 0 auto;
  max-width: 130px;
}

.footer-socials {
  text-align: center;
}

.footer-socials a {
  display: inline-block;
  padding: 3px;
  margin-left: 6px;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 36px;
  height: 36px;
  line-height: 42px;
  box-sizing: border-box;
  background: #959da3;
  border-radius: 20px;
  text-align: center;
}

.footer-socials a svg {
  width: 22px;
  height: 30px;
  fill: #fff;
  transition: all 0.5s ease;
  display: block;
  margin: 0 auto;
}

.footer-socials a:hover {
  background-color: var(--bs-secondary);
}

.footer-socials a:hover svg {
  fill: #fff;
}

.footer-socials a.footer-socials-big {
  padding: 0;
  background: transparent;
  border-radius: 0;
  width: 36px;
}

.footer-socials a.footer-socials-big svg {
  width: 36px;
  height: 36px;
  fill: #959da3;
}

.footer-socials a.footer-socials-big:hover {
  background-color: transparent;
}

.footer-socials a.footer-socials-big:hover svg {
  fill: var(--bs-secondary);
}

.footer-socials a:last-child {
  margin-left: 0;
}

.footer_links {
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 2em;
  font-weight: 600;
}

.footer-rights {
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9em;
}

.mobile-apps-links>* {
  width: 190px;
  max-width: 33.333%;
  line-height: 3em;
  padding: 0 calc(var(--bs-gutter-x) * 0.5);
}

.mobile-apps-links svg {
  width: 100%;
  height: 3em;
  fill: #939ca3;
}

.mobile-apps-links a:hover svg {
  fill: var(--bs-secondary);
}

@media (min-width: 992px) {
  footer .br-md {
    border-right: solid 1px #fff;
  }

  .footer-socials {
    text-align: left;
  }
}

footer .sib-form {
  padding: 0;
  font-family: "Almarai", sans-serif;
  color: #231f20;
  margin-top: -10px;
  margin-bottom: -10px;
}

footer #sib-form {
  text-align: center;
}

footer .sib-form-block h4 {
  margin: 0 0 4px;
}

footer .sib-form-block button {
  display: block;
  width: 100%;
  background: var(--bs-primary);
  color: #fff;
  font-family: "Almarai", sans-serif;
  font-weight: 700;
  font-size: 1em;
}

footer #sib-container {
  padding: 15px;
}

footer .sib-form .entry__error {
  background-color: #fdf4f4;
  color: #be3a3a;
  line-height: 1.6em;
}

/*! * Article page */
.article h1 {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 1em;
}

.meta-date {
  font-size: 0.9em;
  line-height: 2em;
  margin-bottom: 0.4em;
  color: #686a71;
  font-weight: 300;
  text-align: start;
}

.meta-blow {
  font-size: 0.9em;
  line-height: 2em;
  margin-top: 0.4em;
  color: #686a71;
  font-weight: 300;
}

.article-content {
  font-size: 1.1em;
  line-height: 2.3em;
  text-align: justify;
}

h3 {
  color: var(--bs-primary);
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.article-content:after {
  content: "";
  display: block;
  clear: both;
}

.meta-share {
  position: relative;
}

.meta-share a {
  display: inline-block;
  padding: 1.4em;
  line-height: 1em;
  font-size: 0.4em;
  background: #dcdee1;
  height: 18px;
  width: 18px;
  text-align: center;
  margin-right: 4px;
  border-radius: 50%;
}

.meta-share a:hover {
  background: var(--bs-primary);
}

.meta-share a svg {
  fill: #404041;
  width: 18px;
  height: 18px;
}

.meta-share a:hover svg {
  fill: #fff;
}

.social-msg {
  position: absolute;
  right: 0;
  top: 110%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 0.8em;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 2em;
  border-radius: 3px;
  text-align: right;
  box-shadow: 0 1px 3px rgb(0, 0, 0, 0.2);
  display: none;
}

@media (min-width: 768px) {
  .meta-date {
    margin-top: -2em;
    text-align: end;
  }
}

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

.sib-form {
  background-attachment: fixed;
  font-size: 16px;
  font-family: Roboto, sans-serif;
  padding: 32px 12px 32px;
  margin: 0;
}

#sib-container {
  background: #fff;
  margin: 0 auto;
  padding: 17px;
  display: inline-block;
  width: 100%;
}

#sib-form {
  text-align: left;
}

.entry__error {
  display: none;
  margin-top: 6px;
  margin-bottom: 6px;
  background: rgba(0, 0, 0, 0);
}

.sib-form-block {
  padding: 0 16px;
  word-wrap: break-word;
  outline: none;
}

.sib-form-block__button {
  display: inline-block;
  padding: 8px 18px;
  border: none;
  overflow-wrap: break-word;
  max-width: 100%;
  cursor: pointer;
}

.sib-form-block__button-with-loader {
  min-height: 40px;
  line-height: 23px;
}

.form__label-row {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.input {
  width: calc(100% - 1rem);
}

.input--hidden {
  display: none !important;
}

input::-webkit-input-placeholder {
  color: #bfcad8;
}

input::-moz-placeholder {
  color: #bfcad8;
}

input:-ms-input-placeholder {
  color: #bfcad8;
}

input:-moz-placeholder {
  color: #bfcad8;
}

.form__entry {
  position: static;
  margin-left: 0;
  padding-left: 0;
}

@media screen and (max-width: 500px) {
  #sib-container {
    padding: 32px 9px 32px;
  }
}

@media screen and (max-width: 400px) {
  #sib-container {
    padding: 32px 0px 32px;
  }
}

.sib-hide-loader-icon {
  display: none;
}

.sib-form ::-webkit-input-placeholder {
  color: #c0ccda;
  opacity: 1;
}

.sib-form ::-moz-placeholder {
  color: #c0ccda;
  opacity: 1;
}

.sib-form :-ms-input-placeholder {
  color: #c0ccda;
  opacity: 1;
}

.sib-form ::-ms-input-placeholder {
  color: #c0ccda;
  opacity: 1;
}

.sib-form .form__entry {
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

.sib-form .entry__field {
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
  border: 1px solid #c0ccda;
  border-radius: 3px;
  display: -webkit-inline-flex;
  display: inline-flex;
  margin: 0.25rem 0;
  max-width: 100%;
}

.sib-form .entry__field:focus-within {
  box-shadow: 0 0 0 2px #c9e1f4;
}

.sib-form .input {
  background: none;
  border: 0;
  font: inherit;
  margin: 0;
}

.sib-form .input:first-child {
  padding-left: 0.5rem;
}

.sib-form .input:last-child {
  padding-right: 0.5rem;
}

.sib-form .input {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  color: inherit;
  outline: 0;
}

.sib-form .input:not(textarea) {
  height: calc(2.5rem - 2px);
}

.sib-form .input {
  box-shadow: none;
  min-width: 1px;
  padding: 0;
}

.sib-form .entry__error {
  max-width: 40em;
}

.sib-form .entry__error {
  display: block;
}

.sib-form .entry__error {
  display: none;
  color: #ff4949;
  font-size: 0.87055056rem;
  line-height: 1rem;
}

.sib-form ::-ms-reveal {
  display: none;
}

.sib-form ::-webkit-inner-spin-button,
.sib-form ::-webkit-search-decoration {
  display: none;
}

.sib-form .clickable__icon {
  height: 1.5rem;
  vertical-align: bottom;
  width: 1.5rem;
}

.sib-form .clickable__icon:not(.sib-icon_standalone) {
  margin-right: calc(0.7002rem - 1px);
}

.sib-form .progress-indicator__icon {
  -webkit-animation: indicator-spin 1.3s cubic-bezier(0.46, 0.35, 0.39, 0.85) infinite;
  animation: indicator-spin 1.3s cubic-bezier(0.46, 0.35, 0.39, 0.85) infinite;
}

@-webkit-keyframes indicator-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes indicator-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.brand-name-image {
  position: absolute;
  top: 49%;
  width: 15%;
  left: 42.5%;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}

.brand-name-image.brand-name-image2 {
  top: 42%;
  left: unset;
  right: 25%;
  color: #000;
  font-size: 26px;
  width: 20%;
}

@media screen and (max-width: 1079px) {
  .brand-name-image {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 670px) {
  .brand-name-image {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 517px) {
  .brand-name-image {
    font-size: 10px !important;
  }
}

@media screen and (max-width: 380px) {
  .brand-name-image {
    font-size: 8px !important;
  }
}


.red-box {
  box-sizing: border-box;
  background-color: red;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

.important-text {
  font-size: 24px;
  font-weight: 700;
}

#comments_form.mycomment {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  margin: 20px 0 0;
  font-size: 16px;
}

#comments_form .mycomment-img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}

#comments_form .mycomment-info {
  width: 100%;
  max-width: 100%;
}

#comments_form .textbox {
  color: #1d2129;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  border: none;
  margin-bottom: 10px;
  outline: 0;
}

#comments_form .mycomment-info__inner {
  background-color: #f2f3f5;
  border-radius: 18px;
  line-height: 16px;
  margin-top: 0;
  padding: 0.75rem 12px 1rem;
  position: relative;
}

#comments_form .error {
  position: relative;
  margin-top: -10px;
  color: red;
  font-size: 13px;
  padding-left: 5px;
  display: none;
}

.fb--container .fwn {
  font-weight: 400;
}

.fb--container input {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.fb--container a {
  color: #365899;
  cursor: pointer;
  text-decoration: none;
}

.fb--container img {
  border: 0;
}

.fb--container abbr {
  border-bottom: none;
  text-decoration: none;
}

.fb--container .clearfix::after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.fb--container .clearfix {
  zoom: 1;
}

.fb--container ::-webkit-input-placeholder {
  color: #90949c;
}

.fb--container :focus::-webkit-input-placeholder {
  color: #bec2c9;
}

.fb--container ._2vq9 .livetimestamp,
.fb--container ._2vq9 .uiLinkSubtle,
.fb--container .fcg,
.fb--container a.uiLinkSubtle {
  color: #90949c;
}

.fb--container ._42ft {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

.fb--container ._42ft:hover {
  text-decoration: none;
}

.fb--container ._ohe {
  float: right;
}

.fb--container ._ohf,
.fb--container .rfloat {
  float: right;
}

.fb--container .fsm {
  font-size: 12px;
}

.fb--container ._2vq9 a {
  color: #4267b2;
}

.fb--container ._517h {
  background-color: #f6f7f9;
  border-color: #ced0d4;
  color: #4b4f56;
}

.fb--container ._517h:hover {
  background-color: #e9ebee;
}

.fb--container ._517h:active {
  background-color: #dddfe2;
  border-color: #bec2c9;
}

.fb--container ._42ef {
  overflow: hidden;
}

.fb--container ._8s {
  margin-left: 8px;
}

.fb--container ._6b {
  vertical-align: middle;
  display: inline-block;
  word-wrap: normal;
  border: 1px solid;
  border-radius: 2px;
  box-sizing: content-box;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  padding: 0 8px;
  position: relative;
  text-align: center;
  text-shadow: none;
  line-height: 22px;
}

.fb--container ._5mdd,
.fb--container._2pi8 {
  word-wrap: break-word;
}

.fb--container ._6b::before {
  content: "";
  display: inline-block;
  height: 20px;
  vertical-align: middle;
}

.fb--container ._4qba {
  font-style: normal;
}

.fb--container ._3-8m {
  margin-bottom: 4px;
  margin-top: 4px;
}

.fb--container ._3-8y {
  margin-top: 12px;
}

.fb--container ._3-8_ {
  margin-right: 4px;
}

.fb--container._2pi8 {
  padding-left: 8px;
  padding-right: 8px;
  font-size: 14px;
  line-height: 1.358;
  word-break: break-word;
}

.fb--container ._2pis {
  padding-left: 8px;
  margin-left: 56px;
}

.fb--container ._55pe {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap;
}

.fb--container._5lm5 {
  margin-top: 12px;
  border-top: 1px solid #e9ebee;
}

.fb--container._5lm5 ._42ef {
  font-size: 11px;
  color: #365899;
  cursor: pointer;
  padding-bottom: 8px;
  padding-top: 8px;
  font-weight: 700;
}

.fb--container ._44ri {
  border-left: 1px dotted #d3d6db;
}

.fb--container ._2vq9 {
  font-size: 12px;
  line-height: 1.358;
  padding-top: 2px;
}

.fb--container ._491z {
  border-bottom: 1px solid #e9ebee;
  line-height: 25px;
  margin-bottom: 24px;
  padding: 8px 0;
}

.fb--container ._pup {
  color: #4b4f56;
}

.fb--container ._1ci {
  height: 48px;
  width: 48px;
}

.sr-only {
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.red-box {
  box-sizing: border-box;
  width: 100%;
  border-radius: 5px;
  padding: 20px;
  color: #fff;
  text-align: center;
  background-color: red;
}

.important-text {
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
}




#cd-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  direction: ltr;
  font-family: sans-serif;
  font-family: "Instrument Sans";
}

.cd-unit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 5px;
}

.cd-digits {
  display: flex;
}

.cd-box {
  box-sizing: border-box;
  min-width: 35px;
  margin: 0 2px;
  border-radius: 8px;
  padding: 15px 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  background: #fff;
}

.cd-label {
  position: absolute;
  bottom: -25px;
  margin-top: 5px;
  color: #333;
  font-weight: bold;
  font-size: 0.6em;
  text-transform: uppercase;
}

.cd-separator {
  border-radius: 8px;
  color: black;
  font-weight: bold;
  font-size: 1.5em;
}

@media (max-width: 550px) {
  .cd-box {
    font-size: 18px;
  }

  .cd-separator {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .cd-box {
    min-width: initial;
    padding: 10px 13px;
    font-size: 16px;
  }
}

@media (max-width: 450px) {
  .cd-box {
    min-width: initial;
    padding: 8px 10px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .cd-box {
    min-width: initial;
    padding: 6px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .cd-box {
    margin: 0 1.5px;
  }
}

.form-footer {
  box-sizing: border-box;
  padding: 22px 37px 10px 37px;
  width: 100%;
  background: #005C9C;
  border-radius: 0 0 15px 15px;
  background-image: url("../index/noise.webp");
  background-size: cover;
}


.form-footer img {
  width: 100%;
  margin: 0 auto 40px;
}

.form-footer .uniqp {
  margin-bottom: 25px;
  color: #ffffff;
  font-family: "Instrument Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.form-footer .pp {
  color: #fff;
  font-family: "Instrument Sans";
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  margin: 0;
}

.brand-name-image {
  position: absolute;
  top: 49%;
  left: 42.5%;
  width: 15%;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
}

.brand-name-image.brand-name-image2 {
  top: 46%;
  left: unset;
  right: 10%;
  color: #0a0a0a;
  font-size: 26px;
  width: 20%;
}

@media screen and (max-width: 1079px) {
  .brand-name-image {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 670px) {
  .brand-name-image {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 517px) {
  .brand-name-image {
    font-size: 10px !important;
  }
}

@media screen and (max-width: 380px) {
  .brand-name-image {
    font-size: 8px !important;
  }
}

.fb--container .fwn {
  font-weight: 400;
}

.fb--container input {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.fb--container a {
  color: #365899;
  text-decoration: none;
  cursor: pointer;
}

.fb--container img {
  border: 0;
}

.fb--container abbr {
  border-bottom: none;
  text-decoration: none;
}

.fb--container .clearfix::after {
  content: ".";
  visibility: hidden;
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
}

.fb--container .clearfix {
  zoom: 1;
}

.fb--container ::-webkit-input-placeholder {
  color: #90949c;
}

.fb--container :focus::-webkit-input-placeholder {
  color: #bec2c9;
}

.fb--container ._2vq9 .livetimestamp,
.fb--container ._2vq9 .uiLinkSubtle,
.fb--container .fcg,
.fb--container a.uiLinkSubtle {
  color: #90949c;
}

.fb--container ._42ft {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.fb--container ._42ft:hover {
  text-decoration: none;
}

.fb--container ._ohe {
  float: right;
}

.fb--container ._ohf,
.fb--container .rfloat {
  float: right;
}

.fb--container .fsm {
  font-size: 12px;
}

.fb--container ._2vq9 a {
  color: #4267b2;
}

.fb--container ._517h {
  border-color: #ced0d4;
  color: #4b4f56;
  background-color: #f6f7f9;
}

.fb--container ._517h:hover {
  background-color: #e9ebee;
}

.fb--container ._517h:active {
  border-color: #bec2c9;
  background-color: #dddfe2;
}

.fb--container ._42ef {
  overflow: hidden;
}

.fb--container ._8s {
  margin-right: 8px;
}

.fb--container ._6b {
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  border: 1px solid;
  border-radius: 2px;
  padding: 0 8px;
  vertical-align: middle;
  font-weight: 700;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  text-shadow: none;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
}

.fb--container ._5mdd,
.fb--container._2pi8 {
  word-wrap: break-word;
}

.fb--container ._6b::before {
  content: "";
  display: inline-block;
  height: 20px;
  vertical-align: middle;
}

.fb--container ._4qba {
  font-style: normal;
}

.fb--container ._3-8m {
  margin-top: 4px;
  margin-bottom: 4px;
}

.fb--container ._3-8y {
  margin-top: 12px;
}

.fb--container ._3-8_ {
  margin-right: 4px;
}

.fb--container._2pi8 {
  padding-right: 8px;
  padding-left: 8px;
  font-size: 14px;
  line-height: 1.358;
  word-break: break-word;
}

.fb--container ._2pis {
  margin-left: 56px;
  padding-left: 8px;
}

.fb--container ._55pe {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fb--container._5lm5 {
  margin-top: 12px;
  border-top: 1px solid #e9ebee;
}

.fb--container._5lm5 ._42ef {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #365899;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
}

.fb--container ._44ri {
  border-left: 1px dotted #d3d6db;
}

.fb--container ._2vq9 {
  padding-top: 2px;
  font-size: 12px;
  line-height: 1.358;
}

.fb--container ._491z {
  margin-bottom: 24px;
  border-bottom: 1px solid #e9ebee;
  padding: 8px 0;
  line-height: 25px;
}

.fb--container ._pup {
  color: #4b4f56;
}

.fb--container ._1ci {
  width: 48px;
  height: 48px;
}

#comments_form.mycomment {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  margin: 20px 0 0;
  font-size: 16px;
}

#comments_form .mycomment-img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 50%;
}

#comments_form .mycomment-info {
  width: 100%;
  max-width: 100%;
}

#comments_form .textbox {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  border: none;
  outline: 0;
  color: #1d2129;
  font-size: 14px;
}

#comments_form .mycomment-info__inner {
  position: relative;
  margin-top: 0;
  border-radius: 18px;
  padding: 0.75rem 12px 1rem;
  line-height: 16px;
  background-color: #f2f3f5;
}

#comments_form .error {
  position: relative;
  display: none;
  margin-top: -10px;
  padding-left: 5px;
  color: red;
  font-size: 13px;
}

#Send-Us-Message {
  max-width: 560px;
  margin: 0 auto;
  border: none;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  background: #2f3032;
}

#Send-Us-Message {
  max-width: 560px;
  margin: 0 auto;
  border: none;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  background: #2f3032;
}

#Send-Us-Message input {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 16px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  padding: 12px 15px;
  box-shadow: none;
  font-family: Arial;
  font-size: 16px;
  line-height: 1;
  background: 0 0;
}

#Send-Us-Message input:focus {
  border: none;
  border-bottom: 1px solid #ae1213;
  outline: 0;
}

#Send-Us-Message button {
  position: relative;
  width: 100%;
  margin: 20px 0;
  border: 1px solid var(--mainColor);
  border-radius: 4px;
  padding: 14px;
  box-shadow: 3px 3px 6px #00000030;
  overflow: hidden;
  color: #fff;
  color: var(--text);
  font-family: Arial;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: 0 0;
  cursor: pointer;
}

#Send-Us-Message button:hover {
  background: 0 0;
  background: #0a6aaf;
}

#Send-Us-Message button:disabled,
#Send-Us-Message button:disabled::before,
#Send-Us-Message button:disabled:hover,
#Send-Us-Message button:disabled:hover::before,
#Send-Us-Message form:invalid button,
#Send-Us-Message form:invalid button::before,
#Send-Us-Message form:invalid button:hover,
#Send-Us-Message form:invalid button:hover::before {
  box-shadow: none;
  opacity: 0.8;
  color: #fff;
  background: #5a5a5a;
  transition: none;
  transform: none;
  cursor: not-allowed;
}

footer p a {
  color: inherit !important;
}

#Send-Us-Message {
  width: 100%;
  max-width: 504px;
  margin: 0 auto;
  margin-bottom: 30px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 19px 0 rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
  background: #fff;
}

#Send-Us-Message h3 {
  margin: 0 0 20px 0;
  padding: 0 15px;
  color: #000000;
  font-family: "Instrument Sans";
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  line-height: 24px;
  text-align: center;
}

#Send-Us-Message h3 span {
  color: #ae1213;
  font-family: "Instrument Sans";
  font-weight: 600;
  font-style: italic;
}

#Send-Us-Message .form-photo {
  box-sizing: border-box;
  max-width: 452px;
  padding: 0 15px;
}

#Send-Us-Message .form-photo img {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

#Send-Us-Message h2 {
  margin: 0 0 10px 0;
  padding: 0 10px;
  color: #000;
  font-family: "Instrument Sans";
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}

#Send-Us-Message input {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 7px;
  padding: 12px 15px;
  box-shadow: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  font-family: Arial;
  font-family: "Instrument Sans" !important;
  font-size: 16px;
  line-height: 1;
  background: 0 0;
}

#Send-Us-Message input:focus {
  border: 1px solid #ae1213;
  outline: 0;
}

#Send-Us-Message button {
  position: relative;
  padding: 14px;
  overflow: hidden;
  color: #fff;
  /*transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;*/
  background: 0 0;
  color: var(--text);
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  font-family: Arial;
  letter-spacing: 1px;
  box-shadow: 3px 3px 6px #00000030;
  margin: 20px 0;
  background: #005C9C;
  font-family: "Instrument Sans" !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  line-height: 29px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
}