@import url("./font.css"); 
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Variables Start */
:root {
  --Themecolor: #0081C2;
  --ThemeTextcolor: #353535;
  --duration: 180s;
}

/* Variables End */
/* Common Css Start */
html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: var(--ThemeTextcolor);
}

ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
}

button {
  border: 0px;
  background-color: transparent;
}

.btn {
  padding: 8px 16px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  font-weight: 600;
}


.main-header {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  color: var(--Themecolor);
  margin-bottom: 5px;
}

.section-header {
  font-size: 36px;
  line-height: 45px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

/* ========== Laptop (max-width: 1200px) ========== */
@media (max-width: 1200px) {
  .section-header {
    font-size: 34px;
    line-height: 44px;
  }
}

/* ========== Tablet (max-width: 1024px) ========== */
@media (max-width: 1024px) {
  .section-header {
    font-size: 30px;
    line-height: 40px;
  }

  .main-header {
    font-size: 18px;
  }
}

/* ========== Mobile (max-width: 767px) ========== */
@media (max-width: 767px) {
  .section-header {
    font-size: 26px;
    line-height: 34px;
  }


  .main-header {
    font-size: 16px;
  }
}

/* Common Css Start */
/* header css start */
.theme-header {
  background-color: #fff;
  padding: 10px 0px;
}

.theme-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
  animation: menu_sticky 0.6s ease-in-out;
  -webkit-animation: menu_sticky 0.6s ease-in-out;
}

/*================= Sticky Menu ===============*/

@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }

  50% {
    margin-top: -64px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }

  50% {
    margin-top: -64px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.theme-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-header .brand-logo {
  height: auto;
  display: inline-block;
}

.burger {
  position: relative;
  width: 22px;
  height: 14px;
  cursor: pointer;
  display: none;
}

.burger:focus {
  outline: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transition: all 0.2s, background 0s;
  background: #585858;
}

.burger span:nth-child(2) {
  top: 6px;
}

.burger span:last-child {
  top: 12px;
}

.burger.show-x span:first-child {
  transform: rotate(45deg);
}

.burger.show-x span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.show-x span:last-child {
  transform: rotate(-45deg);
}

.burger.show-x span:first-child,
.burger.show-x span:last-child {
  top: 8px;
}

.menu-main {
  display: flex;
  align-items: center;
}

.menu-main ul li {
  display: inline-block;
  margin: 0px 22px;
}

.menu-main ul li:first-child {
  margin-left: 0px;
}

.menu-main ul li .link-text {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.menu-main ul li .link-text::after {
  content: '';
  position: absolute;
  width: 0px;
  height: 3px;
  background-color: var(--Themecolor);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  left: 0;
  right: 0;
  bottom: -15px;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.menu-main ul li .link-text:hover:after,
.menu-main ul li .link-text:focus:after,
.menu-main ul li .link-text.active::after {
  opacity: 1;
  width: 100%;
  visibility: visible;
}

.menu-main ul li .link-text:hover,
.menu-main ul li .link-text:focus,
.menu-main ul li .link-text.active {
  color: var(--Themecolor);
}

@media screen and (max-width: 767px) {
  .theme-header ul.show {
    width: 100%;
  }

  .big-logo {
    object-fit: contain;
    height: 45px;
  }

  .menu-main {
    flex-flow: row-reverse;
  }
}

@media screen and (max-width: 1200px) {
  .theme-header ul {
    background-color: #fff;
    border-top: 1px solid #ddd;
    flex-direction: column;
    text-align: center;
    position: fixed;
    top: 70px;
    right: -60%;
    width: 0%;
    transition: all 0.4s ease-in;
    z-index: 100;
    height: 100%;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
  }

  .theme-header ul.show {
    right: 0;
    width: 100%;
  }

  .menu-main ul li {
    display: flex;
    margin: 0px;
    justify-content: center;
    padding: 15px;
    text-align: left;
  }

  .menu-main ul li .link-text {
    width: 100%;
  }

  .theme-header .burger {
    display: block;
  }

  .burger.show-x .bar:first-of-type {
    transform: translate(-50%, 50%) rotate(225deg);
  }

  .burger.show-x .bar:last-of-type {
    transform: translate(-50%, -150%) rotate(-225deg);
  }
}

@media screen and (min-width: 1201px) and (max-width: 1370px) {
  .theme-header .brand-logo {
    height: 42px;
  }

  .menu-main ul li {
    margin: 0px 12px;
  }

  .menu-main ul li .link-text {
    font-size: 15px;
  }

  .btn-demo {
    margin-left: 24px;
    font-size: 15px;
    padding: 5px 15px !important;
  }

}



/* header css end */
/* Main Section Css Start */

/* Banner Section Css Start */
/* ========== THEME BANNER STYLES ========== */
.theme-banner {
  position: relative;
  height: 85vh;
  background-image: url("../images/banner-img.png");
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.theme-banner::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(280deg,
      rgba(0, 129, 194, 0) 21%,
      rgba(0, 129, 194, 0.9) 62%,
      rgba(0, 129, 194, 0.9) 100%);
  right: 0;
  bottom: 0;
  z-index: 0;
}

.theme-banner .container {
  position: relative;
  z-index: 1;
}

.banner-text {
  max-width: 700px;
}

.banner-text .group-company {
  font-size: 26px;
  color: #fff;
  font-family: 'Vibrocentric', sans-serif;
  margin-bottom: 15px;
}

.banner-text h1 {
  font-size: 56px;
  line-height: 66px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.banner-text h1 span {
  font-family: 'Monotype Corsiva Regular', cursive;
  font-weight: 300;
  font-size: 58px;
}

.banner-text p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0px;
}

/* ===== Laptop (1200px and below) ===== */
@media (max-width: 1200px) {
  .banner-text h1 {
    font-size: 48px;
    line-height: 58px;
  }

  .banner-text h1 span {
    font-size: 50px;
  }

  .banner-text .group-company {
    font-size: 22px;
  }

  .banner-text p {
    font-size: 16px;
  }
}

/* ===== Tablet (768px – 1024px) ===== */
@media (max-width: 1024px) {
  .theme-banner {
    height: 70vh;
    padding: 60px 30px;
  }

  .banner-text h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .banner-text h1 span {
    font-size: 42px;
  }

  .banner-text .group-company {
    font-size: 20px;
  }

  .banner-text p {
    font-size: 15px;
  }
}

/* ===== Mobile (below 768px) ===== */
@media (max-width: 767px) {
  .theme-banner {
    height: auto;
    padding: 60px 20px 40px;
  }



  .banner-text h1 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 5px;
  }

  .banner-text h1 span {
    font-size: 34px;
  }

  .banner-text .group-company {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .banner-text p {
    font-size: 14px;
  }
}


/* Banner Section Css Start */

/* About Us Section Css Start */
.about-us {
  position: relative;
  padding: 90px 0px;
}


.section-data h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}


.section-data p {
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  text-align: justify;
  color: #333;
  margin-bottom: 0px;
}

.mission-vision-card {
  background: #000;
  padding: 25px;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  position: relative;
  margin: 10px 0px;
}

.mission-vision-card::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  background-image: url('../images/about-bg.png');
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.card-left {
  display: inline-block;
  margin-bottom: 5px;
}

.card-left img {
  height: 45px;
}

.card-right .card-left {
  position: relative;
  z-index: 1;
}

.card-right h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #00B5FF;
  margin-bottom: 2px;
}

.card-right p {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0px;
  text-align: left;
}

.about-us-img {
  width: 100%;
  text-align: center;
}

.about-us-img img {
  max-width: 100%;
  width: auto;
}

/* ========== Laptop (max-width: 1200px) ========== */
@media (max-width: 1200px) {

  .section-data p {
    font-size: 14px;
    line-height: 26px;
  }

  .card-right h3 {
    font-size: 18px;
  }

  .card-right p {
    font-size: 12px;
  }
}

/* ========== Tablet (max-width: 1024px) ========== */
@media (max-width: 1024px) {
  .about-us {
    padding: 70px 20px;
  }


  .section-data p {
    font-size: 14px;
    line-height: 24px;
  }

  .mission-vision-card {
    padding: 20px;
  }

  .card-left img {
    height: 40px;
  }

  .card-right h3 {
    font-size: 17px;
  }

  .card-right p {
    font-size: 12px;
    line-height: 22px;
  }

  .about-us-img {
    max-width: 300px;
    margin: 15px auto 0;
  }
}


/* ========== Mobile (max-width: 767px) ========== */
@media (max-width: 767px) {
  .about-us {
    padding: 50px 15px;
  }

  .section-data p {
    font-size: 13px;
    line-height: 22px;
    text-align: justify;
  }

  .mission-vision-card {
    padding: 18px;

  }

  .card-left img {
    height: 35px;
  }

  .card-right h3 {
    font-size: 16px;
  }

  .card-right p {
    font-size: 12px;
    line-height: 20px;
  }

  .about-us-img img {
    max-width: 100%;
    height: auto;
  }
}

/* About Us Section Css End */

/* Use Cases Section Css Start */
.service {
  position: relative;
  padding: 90px 0px;
  background-color: #fff;
}

.service .section-header {
  margin: 0px auto 30px;
}

.service-card {
  border: 1px solid #EAEAEA;
  padding: 20px 25px 25px 25px;
  overflow: auto;
  position: relative;
  height: 100%;
}


.service-card:before,
.service-card:after {
  content: '';
  position: absolute;
  border: 1px solid transparent;
  width: 0;
  height: 0;
}

.service-card:before {
  top: 0;
  left: 0;
}

.service-card:hover::before,
.service-card:hover::after {
  width: 100%;
  height: 100%;
}

.service-card:hover::before {
  border-top-color: var(--Themecolor);
  border-right-color: var(--Themecolor);
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -moz-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -ms-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.service-card::after {
  bottom: 0;
  right: 0;
}

.service-card:hover::after {
  border-bottom-color: var(--Themecolor);
  border-left-color: var(--Themecolor);
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

.service-card .count {
  font-family: 'Lexend';
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: -2%;
  background: linear-gradient(179.92deg, rgba(0, 129, 194, 1) 0.07%, rgba(0, 129, 194, 0) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.service-card:hover .count {
  background: linear-gradient(179.92deg, rgba(0, 129, 194, 1) 0.07%, rgba(0, 129, 194, 1) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #000;
  margin-bottom: 8px;
}

.service-card p,
.service-card li {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #333;
  margin-bottom: 8px;
  position: relative;
}

.service-card li {
  padding-left: 20px;
}

.service-card li:last-child {
  margin-bottom: 0px;
}

.service-card li::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 4px;
  width: 10px;
  height: 10px;
  border: solid 2px var(--Themecolor);
  border-radius: 50px;
}

@media (max-width: 1200px) {
  .service {
    padding: 70px 0;
  }

  .service-card .count {
    font-size: 40px;
    line-height: 40px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p,
  .service-card li {
    font-size: 13px;
    line-height: 16px;
  }
}

@media (max-width: 768px) {
  .service {
    padding: 60px 15px;
  }

  .service .section-header {
    margin-bottom: 20px;
    text-align: center;
  }

  .service-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .service-card .count {
    font-size: 35px;
  }

  .service-card h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .service {
    padding: 40px 10px;
  }

  .service-card {
    padding: 15px;
  }

  .service-card .count {
    font-size: 28px;
    line-height: 32px;
  }

  .service-card h3 {
    font-size: 15px;
    line-height: 20px;
  }

  .service-card p,
  .service-card li {
    font-size: 13px;
    line-height: 16px;
  }
}

/* Use Cases Section Css End */

/* Footer css Start */
.theme-footer {
  background: #F2F9FF;
  position: relative;
  padding: 90px 0px 0px 0px;
}

.theme-footer .small-info {
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  text-align: justify;
  color: #333;
}

.contact-info-list li {
  margin-bottom: 15px;
}

.contact-info-list li:last-child {
  margin-bottom: 0px;
}

.contact-info-list li a .contact-info-round {
  width: 35px;
  height: 35px;
  background: var(--Themecolor);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  display: flex;
  padding: 9px;
  margin-right: 15px;
}

.contact-info-list li a {
  display: flex; 
  color: #333;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.contact-info-list li a .small-title {
  color: var(--Themecolor);
  font-size: 16px;
  font-weight: 700;
}

.contact-info-list li .contact-info {
  flex: 1;
}

.footer-form {
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 5%);
  padding: 25px 45px 45px 45px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.footer-form .form-group {
  margin-bottom: 25px;
}

.footer-form .form-group:last-child {
  margin-bottom: 0px;
}

.footer-form .form-control {
  padding: 15px 0px;
  border: 0px;
  border-bottom: 1px solid rgba(99, 111, 140, 0.16);
  color: var(--ThemeTextcolor);
  resize: none;
  font-size: 15px;
  font-weight: 600;
}

.footer-form textarea.form-control {
  height: 82px;
  overflow: hidden;
}

.footer-form .form-control:focus {
  box-shadow: none;
  border-color: var(--Themecolor);
}

.footer-form .form-control::-webkit-input-placeholder {
  color: #636F8C;
}

.footer-form .form-control::-ms-input-placeholder {
  color: #636F8C;
}

.footer-form .form-control::placeholder {
  color: #636F8C;
}

.footer-form .request-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  border-radius: 50px;
  background-color: var(--Themecolor);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 15px 0px;
  margin-top: 20px;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.footer-form .request-btn svg g path {
  transition: all .5s;
}

.footer-form .request-btn:hover svg g path {
  fill: var(--Themecolor);
}

.footer-form .request-btn:hover {
  background-color: transparent;
  border: 1px solid var(--Themecolor);
  color: var(--Themecolor);
}


.bottom-footer {
  text-align: center;
  padding: 20px 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.03);
  margin-top: 70px;
}

.bottom-footer .info {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.bottom-footer .info span {
  color: var(--Themecolor);
}

/* Footer css End */

/* Responsive Css Start */
@media only screen and (max-width: 767px) {

  .contact-info-list li,
  .contact-info-list li:last-child {
    margin-bottom: 15px;
  }

  .theme-footer {
    padding: 40px 0px 0px 0px;
  }

  .theme-footer .small-info {
    font-size: 14px;
    line-height: 24px;
  }

  .contact-info-list li a .contact-info-round {
    width: 35px;
    height: 35px;
    padding: 8px;
  }

  .footer-form .form-control {
    padding: 15px 0px;
  }

  .footer-form {
    margin-top: 15px;
    padding: 25px;
  }

  .footer-form .form-control::-webkit-input-placeholder {
    font-size: 16px;
  }

  .footer-form .form-control::-ms-input-placeholder {
    font-size: 16px;
  }

  .footer-form .form-control::placeholder {
    font-size: 16px;
  }

  .footer-form textarea.form-control {
    height: 55px;
  }

  .footer-form .request-btn {
    font-size: 16px;
    padding: 15px 0px;
  }

  .bottom-footer {
    margin-top: 50px;
  }

  .contact-info-list li a {
    font-size: 14px;
    line-height: 20 px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1080px) {

  .contact-info-list li,
  .contact-info-list li:last-child {
    margin-bottom: 20px;
  }

  .contact-info-list li a .contact-info-round {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .footer-form {
    position: relative;
    z-index: 1;
  }
}

@media screen and (min-width: 1081px) and (max-width: 1370px) {


  .footer-form {
    position: relative;
    z-index: 1;
  }

  .contact-info-list li a .contact-info-round {
    width: 45px;
    height: 45px;
    padding: 12px;
  }

  .footer-form .form-control {
    padding: 20px 0px;
  }

  .footer-form textarea.form-control {
    height: 65px;
  }

  .footer-form .form-control::-webkit-input-placeholder {
    font-size: 15px;
  }

  .footer-form .form-control::-ms-input-placeholder {
    font-size: 15px;
  }

  .footer-form .form-control::placeholder {
    font-size: 15px;
  }

  .footer-form .request-btn {
    padding: 18px 0px;
    font-size: 16px;
  }
}

/* Responsive Css End */
/* Main Section Css End */
.marquee-wrapper {
  width: 100%;
  background-color: var(--Themecolor);
  white-space: nowrap;
  padding: 20px 0px;
      overflow: hidden;
}

.marquee {
  display: inline-block;
  animation: marquee-left var(--duration, 100s) linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
  /* pause on hover */
}

.marquee span {
  display: inline-block;
  font-size: 120px;
  line-height: 120px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-right: 100px;
  /* spacing between repeats */
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  /* outlined white text */
  text-transform: uppercase;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 1rem));
  }
}
.cookie-bar {
       position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
   
    box-shadow: 0px -5px 14px 0px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    z-index: 9999;
    opacity: 0; 
    transform: translateY(100%);
    transition: all 0.4s ease; 
   
  }
  .cookie-bar span{
     font-size: 14px;
    font-weight: 400;
     color: #000;
     flex: 1;
  }
  .cookie-bar span a{
    font-size: 14px;
    font-weight: 500;
    color: var(--Themecolor);
  }
  .cookie-bar.show {
    opacity: 1;
    transform: translateY(0);
  }

  .cookie-bar-content { 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .cookie-bar a {
    color: var(--Themecolor);
    text-decoration: underline;
  }

  .cookie-buttons {
    display: flex;
    gap: 10px;
  }

  .cookie-buttons button {
    border: none;
    padding: 8px 16px;
    border-radius: 0px;
    cursor: pointer;
    font-weight: 500;  
    font-size: 14px;
  }

  .cookie-buttons .accept {
    background: var(--Themecolor);
    color: #fff;
  }

  .cookie-buttons .deny {
    background: #333;
    color: #fff;
  }

  @media (max-width: 700px) {
    .cookie-bar-content {
      flex-direction: column;
      text-align: center;
    }
  }