@font-face {
  font-family: "nunito-regular";
  src: url("../fonts/Nunito-Regular.ttf");
}
@font-face {
  font-family: "nunito-bold";
  src: url("../fonts/Nunito-Bold.ttf");
}
/*===========  Responsive ==================*/
html {
  scroll-behavior: smooth;
}

* {
  font-size: 16px;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  transition: all 2s ease;
}
@media (max-width: 992px) {
  * {
    font-size: 14px;
  }
}

body {
  font-family: "nunito-regular", sans-serif;
  font-size: 1.6rem;
  transition: all 2s ease;
}
body.dark {
  background-color: #171717;
}
body.dark h1, body.dark h2, body.dark h3, body.dark h4, body.dark h5 {
  color: rgba(255, 255, 255, 0.8);
}
body.dark p, body.dark li {
  color: rgba(255, 255, 255, 0.8) !important;
}
body.dark .navigation {
  background-color: #252525;
}
body.dark .navigation a {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .navigation__hamburger span {
  background: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
}
body.dark .menu {
  background-color: #252525;
}
body.dark .menu a {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .services__items-item {
  background-color: #252525;
}
body.dark .logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #171717);
}
body.dark .logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #171717);
}
body.dark .tools, body.dark .about, body.dark .contact__right {
  background-color: #252525;
}
body.dark .form-label {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .form-input, body.dark .form-textarea {
  background-color: #171717;
}
body.dark #cookies-popup, body.dark #privacy-popup {
  background-color: #171717;
}
body.dark #cc-main .cm {
  background-color: #171717 !important;
}

.btn {
  display: inline-block;
  padding: 1rem 3.2rem;
  border-radius: 5rem;
  font-family: "nunito-regular", sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .btn {
    padding: 1rem 2.2rem;
  }
}
.btn-blue {
  background: linear-gradient(191deg, rgb(0, 91, 255) 0%, rgb(0, 55, 153) 100%);
  color: #ffffff;
}
.btn-blue:hover {
  background: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
}
.btn-yellow {
  background: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  color: #000000;
}

.icon {
  width: 5rem;
}

a {
  text-decoration: none;
}

p {
  color: #565656;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  p {
    margin-bottom: 0.5rem;
  }
}

ul {
  list-style-type: none;
}

li {
  color: #565656;
}

h1, h2, h3, h4, h5 {
  font-family: "nunito-bold", sans-serif;
  text-transform: capitalize;
}
h1 span, h2 span, h3 span, h4 span, h5 span {
  text-transform: uppercase;
  font-size: 1.6rem;
  background: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  font-size: 3.2rem;
  line-height: 3.2rem;
}
@media (max-width: 567px) {
  h1 {
    font-size: 2rem;
    line-height: 2rem;
  }
}

h2 {
  font-size: 2.4rem;
  line-height: 2.4rem;
}
@media (max-width: 567px) {
  h2 {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}

h3 {
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: uppercase;
}

h4 {
  font-size: 1rem;
}

.container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3.2rem;
}
@media (max-width: 1200px) {
  .container {
    width: 96%;
    margin: 0 2%;
  }
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

section {
  padding: 10rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

.divider {
  background: rgb(242, 184, 7);
  background: -moz-linear-gradient(122deg, rgb(242, 184, 7) 0%, rgb(242, 203, 5) 21%, rgb(45, 62, 115) 50%, rgb(24, 50, 130) 75%, rgb(20, 43, 115) 100%);
  background: -webkit-linear-gradient(122deg, rgb(242, 184, 7) 0%, rgb(242, 203, 5) 21%, rgb(45, 62, 115) 50%, rgb(24, 50, 130) 75%, rgb(20, 43, 115) 100%);
  background: linear-gradient(122deg, rgb(242, 184, 7) 0%, rgb(242, 203, 5) 21%, rgb(45, 62, 115) 50%, rgb(24, 50, 130) 75%, rgb(20, 43, 115) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f2b807",endColorstr="#142b73",GradientType=1);
  height: 0.5rem;
}

/*===========  Page Loader ==================*/
#preloader {
  height: 100svh;
  width: 100%;
  position: fixed;
  z-index: 99999999;
  background-color: #ffffff;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader .loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#preloader .loader img {
  width: 200px;
  margin-bottom: 30px;
}
#preloader #ld4 {
  position: relative;
  display: flex;
  width: 10%;
  justify-content: space-between;
}
@media (max-width: 567px) {
  #preloader #ld4 {
    width: 30%;
  }
}
#preloader #ld4 div {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #142B73;
}
@media (max-width: 567px) {
  #preloader #ld4 div {
    height: 10px;
    width: 10px;
  }
}
#preloader #ld4 div:nth-child(1) {
  animation: ld4 3s linear infinite 0s;
}
#preloader #ld4 div:nth-child(2) {
  animation: ld4 3s linear infinite 0.15s;
}
#preloader #ld4 div:nth-child(3) {
  animation: ld4 3s linear infinite 0.3s;
}
#preloader #ld4 div:nth-child(4) {
  animation: ld4 3s linear infinite 0.45s;
}
@keyframes ld4 {
  0% {
    opacity: 0;
    transform: scale(0.3);
    background: #171717;
  }
  25% {
    opacity: 1;
    transform: scale(1.8);
    background: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  }
  50% {
    opacity: 0;
    transform: scale(0.3);
    background: #F2CB05;
  }
  75% {
    opacity: 1;
    transform: scale(1.8);
    background: #142B73;
  }
  100% {
    opacity: 0;
  }

}

/*===========  Header ==================*/
.navigation {
  position: relative;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  height: 5rem;
  z-index: 9999;
}
.navigation__logo img {
  margin-bottom: -5px;
  width: 8rem;
}
@media (max-width: 567px) {
  .navigation {
    height: 5rem;
  }
}
.navigation .divider {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.navigation .container {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .navigation .container {
    flex-direction: row;
  }
}
@media (max-width: 567px) {
  .navigation__nav {
    display: none;
  }
}
@media (max-width: 567px) {
  .navigation__button {
    display: none;
  }
}
.navigation__nav ul {
  display: flex;
  gap: 3.2rem;
  justify-content: center;
  align-items: center;
}
.navigation__nav ul li {
  display: inline-block;
  padding-bottom: 0.1rem; /* defines the space between text and underline */
  cursor: pointer;
}
.navigation__nav-link {
  color: #565656;
  position: relative;
}
.navigation__nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  transition: width 0.35s ease-out;
  cursor: pointer;
}
.navigation__nav-link:hover::before {
  width: 100%;
}
.navigation__nav-link.active {
  font-weight: bold;
}
.navigation__nav-link.active::before {
  width: 100%;
}
.navigation__hamburger {
  display: none;
  width: 32px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media (max-width: 567px) {
  .navigation__hamburger {
    display: flex;
  }
}
.navigation__hamburger span {
  width: 100%;
  height: 5px;
  background-color: #142B73;
  transform-origin: left;
  transition: all 2s ease;
}
.navigation__hamburger.active span:first-child {
  background-color: #142B73;
  transform: rotate(40deg);
}
.navigation__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navigation__hamburger.active span:last-child {
  background-color: #142B73;
  transform: rotate(-40deg);
}

/*===========  mobile menu ==================*/
.menu {
  background-color: #ffffff;
  position: fixed;
  height: 100svh;
  width: 50%;
  transform: translateX(-100%);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 2s ease;
  padding-left: 2rem;
  z-index: 9999;
}
.menu.active {
  transform: translateX(0%);
}
.menu__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 8rem 0;
  gap: 1rem;
}
.menu__links a {
  color: #565656;
}
.menu__links a.active {
  color: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  font-weight: bold;
}

/*===========  Hero ==================*/
.header {
  margin-top: 5rem;
  position: relative;
}
@media (max-width: 768px) {
  .header {
    margin-top: 4rem;
  }
}
.header::before {
  content: "";
  position: absolute;
  background: rgb(20, 43, 115);
  background: -moz-linear-gradient(90deg, rgba(20, 43, 115, 0.9) 0%, rgba(20, 43, 115, 0.9) 35%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(20, 43, 115, 0.9) 0%, rgba(20, 43, 115, 0.9) 35%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, rgba(20, 43, 115, 0.9) 0%, rgba(20, 43, 115, 0.9) 35%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#142b73",endColorstr="#000000",GradientType=1);
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 999;
  height: 600px;
  align-self: center;
}
.hero .container {
  z-index: 2;
}
@media (max-width: 992px) {
  .hero {
    height: 600px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 350px;
  }
}
.hero__left {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 992px) {
  .hero__left {
    flex: 5;
  }
}
.hero__right {
  flex: 2;
}
.hero__heading {
  color: #ffffff;
}
.hero__paragraph {
  color: #ffffff;
}
.hero__button a:hover {
  background-color: #F2CB05;
}

.slideshow {
  list-style-type: none;
  height: 600px;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .slideshow {
    height: 350px;
  }
}

/** SLIDESHOW **/
.slideshow,
.slideshow:after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  z-index: 0;
}

.slideshow li span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  color: transparent;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  animation: imageAnimation 15s linear infinite 0s;
  height: 600px;
}
@media (max-width: 768px) {
  .slideshow li span {
    height: 350px;
  }
}

.slideshow li:nth-child(1) span {
  background-image: url("../images/hero-background-1.webp");
}

.slideshow li:nth-child(2) span {
  background-image: url("../images/hero-background-2.webp");
  animation-delay: 6s;
}

.slideshow li:nth-child(3) span {
  background-image: url("../images/hero-background-3.webp");
  animation-delay: 12s;
}

@keyframes imageAnimation {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.no-cssanimations .cb-slideshow li span {
  opacity: 1;
}

/*===========  Services ==================*/
.services .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.services__heading {
  margin-bottom: 3.2rem;
}
@media (max-width: 567px) {
  .services__heading {
    margin-bottom: 1rem;
  }
}
.services__items {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  gap: 1rem;
}
@media (max-width: 992px) {
  .services__items {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.services__items-item {
  background-color: #f5f5f5;
  padding: 2.4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 1rem;
  text-align: center;
  flex: 1;
  transition: all 0.5s ease-out;
  text-transform: uppercase;
}
.services__items-item:hover {
  transition: all 0.5s ease-in;
  background-color: #F2CB05;
  color: #ffffff;
  transform: scale(1.05) !important;
}
.services__items-item:hover p {
  color: #000000;
}
.services__items-item img {
  width: 5rem;
}
@media (max-width: 992px) {
  .services__items-item {
    justify-content: start;
  }
}
@media (max-width: 768px) {
  .services__items-item {
    width: 50%;
  }
}
@media (max-width: 567px) {
  .services__items-item {
    width: 100%;
  }
}

/*===========  Logos ==================*/
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logos {
  overflow: hidden;
  padding: 3rem 0 0;
  white-space: nowrap;
  position: relative;
}
.logos__container {
  margin-top: 10rem;
  text-align: center;
}
.logos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15rem;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  z-index: 2;
}
.logos::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 15rem;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.logos:hover .logos__slide {
  animation-play-state: paused;
}
.logos__slide {
  animation: 20s slide infinite linear;
  display: inline-block;
}
.logos__slide img {
  height: 50px;
  margin: 0 1rem;
}
@media (max-width: 768px) {
  .logos__slide img {
    height: 40px;
  }
}

/*===========  banner ==================*/
.banner {
  padding: 5rem 0rem;
  background-image: url("../images/banner-background.webp");
  background-size: cover;
  background-position: center center;
}
.banner .container {
  align-items: center;
}
@media (max-width: 567px) {
  .banner {
    padding: 2.5rem 0;
  }
}
.banner__left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  color: #fff;
}
@media (max-width: 567px) {
  .banner__heading {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
.banner__right {
  flex: 1;
}

/*===========  solutions ==================*/
.solutions .container {
  display: flex;
  align-items: center;
}
.solutions__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .solutions__left {
    order: 2;
  }
}
.solutions__right {
  flex: 1;
}
.solutions__right img {
  width: 100%;
}
.solutions__heading {
  color: #142B73;
  margin-bottom: 0.5rem;
}
.solutions__heading span {
  color: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  text-transform: uppercase;
  font-size: 1.6rem;
}

/*===========  tools ==================*/
.tools {
  background-color: #f5f5f5;
}
.tools .container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .tools .container {
    gap: 0.5rem;
  }
}
.tools__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tools__right {
  flex: 1;
}
.tools__heading {
  color: #142B73;
  width: 100%;
  margin-bottom: -2.4rem;
}
@media (max-width: 768px) {
  .tools__heading {
    margin-bottom: 0;
  }
}
.tools__heading span {
  color: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  text-transform: uppercase;
  font-size: 1.6rem;
}

/*===========  Value ==================*/
.value .container {
  display: flex;
}
@media (max-width: 992px) {
  .value .container {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
  }
}
.value__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.value__item img {
  width: 100%;
}
@media (max-width: 992px) {
  .value__item {
    width: 48%;
    flex: none;
  }
  .value__item:first-child {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .value__item {
    width: 100%;
  }
}
.value__heading {
  color: #142B73;
}
.value__heading span {
  text-transform: uppercase;
  font-size: 1.6rem;
  background: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*===========  About ==================*/
.about {
  background-color: #f5f5f5;
}
.about__subheading {
  margin-bottom: 0;
  background: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-transform: uppercase;
}
.about h3 {
  color: #142B73;
}
.about__left {
  flex: 1;
}
.about__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.about__items {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.about__items-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  text-transform: uppercase;
}

/*===========  contact ==================*/
.contact .container {
  border-radius: 1rem;
  overflow: hidden;
  gap: 0;
}
.contact h3 {
  color: #ffffff;
}
.contact__left {
  background-color: #142B73;
  padding: 4.8rem 2.4rem;
  display: flex;
  flex: 2;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 567px) {
  .contact__left {
    padding: 3.2rem 1rem;
  }
}
@media (max-width: 768px) {
  .contact__left {
    flex-direction: row;
    flex: 1;
    align-items: center;
  }
}
@media (max-width: 567px) {
  .contact__left {
    flex-direction: column;
    align-items: start;
  }
}
.contact__left-item {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  flex-direction: column;
}
.contact__left-item img {
  width: 3.4rem;
}
.contact__left-item p {
  color: #fff;
  margin-bottom: 0;
}
.contact__right {
  background-color: #f5f5f5;
  flex: 5;
  display: flex;
  flex-direction: column;
  padding: 2.4rem 2.4rem;
}
@media (max-width: 567px) {
  .contact__right {
    padding: 3.2rem 1rem;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-label {
  color: #565656;
  margin-bottom: 0.5rem;
}
.form-input {
  height: 2.4rem;
  border-radius: 5rem;
  border: none;
  padding: 0.5rem 1rem;
  color: #aaa;
}
.form-textarea {
  border-radius: 1rem;
  border: none;
  padding: 1rem;
  color: #aaa;
}

/*===========  Privacy Popup ==================*/
#privacy-popup {
  position: fixed;
  left: 0;
  top: 80px;
  width: 100%;
  background-color: #ffffff;
  z-index: 999;
  display: none;
  margin: 0;
}
#privacy-popup .close {
  position: absolute;
  right: 80px;
  top: 20px;
  font-size: 2.4rem;
  color: #2D3E73;
}
#privacy-popup .close:hover {
  cursor: pointer;
}
#privacy-popup iframe {
  width: 100%;
  height: 100vh;
}

#cookies-popup {
  position: fixed;
  left: 0;
  top: 80px;
  width: 100%;
  background-color: #ffffff;
  z-index: 999;
  display: none;
  margin: 0;
}
@media (max-width: 992px) {
  #cookies-popup {
    margin: 0;
    top: 70px;
  }
}
@media (max-width: 768px) {
  #cookies-popup {
    margin: 0;
    top: 50px;
  }
}
#cookies-popup .close {
  position: absolute;
  right: 80px;
  top: 20px;
  font-size: 2.4rem;
  color: #2D3E73;
}
@media (max-width: 768px) {
  #cookies-popup .close {
    right: 20px;
  }
}
#cookies-popup .close:hover {
  cursor: pointer;
}
#cookies-popup iframe {
  width: 100%;
  height: 100vh;
}

.visible {
  display: block !important;
}

/*===========  footer ==================*/
.footer {
  background-image: url("../images/footer-background.webp");
  padding: 2rem 0 0 0;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}
@media (max-width: 567px) {
  .footer__top {
    flex-direction: column;
    align-items: start;
    gap: 1.6rem;
  }
}
.footer hr {
  color: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
}
.footer__center {
  display: flex;
  justify-content: space-around;
  margin-bottom: 4.8rem;
}
@media (max-width: 567px) {
  .footer__center {
    flex-direction: column;
    align-items: start;
    gap: 1.6rem;
  }
}
.footer__center-item {
  flex: 1;
}
.footer__center-item ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__center h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.footer__center img {
  width: 8rem;
}
.footer__center a {
  color: #f5f5f5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__center a p {
  color: #ffffff;
  margin-bottom: 0;
}
.footer__center a img {
  width: 1rem;
}
.footer .privacy-btn:hover, .footer .cookie-btn:hover {
  cursor: pointer;
}

.copyright {
  background-color: #142B73;
  text-align: center;
}
.copyright p {
  color: #ffffff;
  padding: 1rem 0;
  font-size: 0.8rem;
}

/*===========  Privacy page ==================*/
.privacy, .cookies {
  width: 100%;
}
.privacy h1, .privacy h2, .privacy h3, .privacy h4, .privacy h5, .cookies h1, .cookies h2, .cookies h3, .cookies h4, .cookies h5 {
  color: #142B73;
  margin-top: 3rem;
}

.cookies h1, .cookies h2, .cookies h3, .cookies h4, .cookies h5 {
  color: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  margin-top: 3rem;
}
.cookies .container {
  flex-direction: column;
  gap: 0.5rem;
}

#cc-main {
  z-index: 9999 !important;
}

/*===========  Message Sent Page ==================*/
.message {
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.message .container {
  justify-content: center;
  align-items: center;
}
.message__item {
  width: 40%;
  background-color: rgba(45, 62, 115, 0.1);
  padding: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}
@media (max-width: 992px) {
  .message__item {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .message__item {
    width: 70%;
  }
}
@media (max-width: 567px) {
  .message__item {
    width: 98%;
  }
}
.message__item img {
  width: 5rem;
}
.message__item p {
  color: linear-gradient(183deg, rgb(242, 184, 7) 0%, rgb(178, 149, 0));
  font-weight: 500;
}

/*======= Dark Mode toggle =======*/
.toggle {
  width: 30px;
  height: 60px;
  position: fixed;
  right: 5px;
  top: 50%;
  z-index: 9999;
  background-color: #142B73;
  border-radius: 50px;
  padding: 5px 2px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
}
.toggle svg {
  fill: #ffffff;
  z-index: 2;
  padding: 2px 0;
}
.toggle .background-highlight {
  background: #F2CB05;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 5rem;
  left: 0;
  top: 0;
  z-index: 1;
  scale: 1.1;
}

body.dark .toggle {
  background-color: #F2CB05;
}
body.dark .background-highlight {
  background: #142B73;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 5rem;
  left: 0;
  top: 0;
  z-index: 1;
  transform: translateY(100%);
}/*# sourceMappingURL=styles.css.map */