/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;

  --primary: #f6821d;
  --primary-light: #fa9842;
  --secondary: #a8ce3a;
  --secondary-light: #bfe64e;
  --medium: #fac89c;
  --dark: #292929;
  --light: #fff;

}


body {
  background-color: var(--light);
  font-family: 'Poppins', sans-serif;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb {

  margin-bottom: 20px;
  padding: 20px 10px;
  background-color: #F7F7F7;
  font-weight: 500;

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-light);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--primary) transparent var(--primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-color: var(--light);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

.header .logo img {
  height: 90px;
  margin-right: 6px;
  transition: all 0.5s;
}

.header.header-scrolled {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header.header-scrolled .logo img {
  height: 70px;
  margin-right: 6px;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--medium);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primary);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--secondary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--secondary-light);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: var(--primary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--primary);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--dark);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: url('../img/slider/banner-site.jpg') top right no-repeat;
  background-size: cover;
}

.hero h1 {
  color: var(--primary);
  margin: 0 0 10px 0;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 900;
  text-shadow: 2px 2px #ffffff;
}

.hero h3 {
  color: var(--dark);
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  font-weight: 600;

}

.hero .logo {
  width: 80%;
}

.hero .btn-get-started {
  margin-top: 10px;
  line-height: 0;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.5s;
  color: var(--light);
  background: var(--secondary);
  box-shadow: 0px 5px 30px rgba(30, 31, 43, 0.4);
}

.hero .btn-get-started span {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  background: var(--secondary-light);
}

.hero .btn-get-started:hover i {
  transform: translateY(3px);
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
    text-align: start;
  }

}

@media (max-width: 991px) {
  .hero {
    height: 60vh;
    padding: 120px 0 60px 0;
  }

  .hero h3 {
    color: var(--light);
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    text-align: center;
  }

  .hero h1 {
    color: var(--light);
    margin: 0 0 10px 0;
    font-size: 3rem;
    line-height: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px #545454;
  }

  .hero h1 span {
    font-size: 2.4rem;
  }

  .hero h3 {
    color: var(--light);
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  padding: 80px 0;
}

#about .about-content {
  padding-top: 40px;
}

#about .about-content h2 {
  color: var(--dark);
  font-weight: 700;
}

#about p {
  font-size: 1.2rem;
}

#about .about-content video {
  width: 70%;
  margin-left: 15%;
  float: center;
}

#about .about-img {
  position: relative;
  margin: 30px 30px 30px 30px;
}

#about .about-img video {
  width: 100%;
  border: 8px solid var(--light);
  transition: 0.5s;
}

#about .about-img video:hover {
  width: 100%;
  transform: scale(1.03);
}

#about .about-img::before {
  position: absolute;
  left: -31px;
  top: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: var(--secondary-light);
  transition: 0.5s;
}

#about .about-img::after {
  position: absolute;
  right: -31px;
  bottom: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: var(--secondary-light);
  transition: 0.5s;
}

@media (max-width: 768px) {
  #about .about-content img {
    width: 90%;
    margin-left: 5%;
    float: center;
  }
}

#about .btn-get-started {
  margin-top: 20px;
  line-height: 0;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.5s;
  color: var(--light);
  background: var(--primary);
  box-shadow: 0px 5px 30px rgba(30, 31, 43, 0.4);
}

#about .btn-get-started span {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
}

#about .btn-get-started i {
  margin-left: 5px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: 0.3s;
}

#about .btn-get-started:hover {
  background: var(--primary-light);
}

#about .btn-get-started:hover i {
  transform: translateY(3px);
}

/*--------------------------------------------------------------
# SERVICE
--------------------------------------------------------------*/
#service {
  background: var(--primary);
  padding: 100px 0;
  color: var(--light);
}

#service .title h2 {
  color: var(--light);
  font-weight: 700;
  margin: 0;
}

#service .title p {
  font-size: 1.2rem;
  margin-top: 0;
}

.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--medium), transparent 85%);
  padding: 50px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--primary);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--medium), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: var(--light);
}

.services .service-item p {
  line-height: 24px;
  font-size: 1rem;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--light);
  border-color: var(--light);
}

.services .service-item:hover .icon {
  background: var(--primary);
}

.services .service-item:hover .icon i {
  color: var(--light);
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--secondary), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--primary);
}

/*--------------------------------------------------------------
# products
--------------------------------------------------------------*/
#products {
    width: 100%;
    padding: 80px 0;
}

#products h2 {
    color: var(--dark);
    font-weight: 700;
    margin: 0;
}

#products img {
    margin: 0;
}

#products .service {
    transition: 0.5s;
}

#products .service:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
#testimonials {
  padding: 100px 0;
  background-color: var(--primary);
}

#testimonials .title h2 {
  color: var(--light);
  font-weight: 700;
  margin-bottom: 5px;
}

#testimonials .title p {
  color: var(--light);
  font-size: 1.2rem;
  line-height: 1.4rem;
}


.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--dark);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--secondary);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-light);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--light);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
#faq {
  width: 100%;
  padding: 100px 0px 100px 0px;
  background-color: #fffbf8;
}

.faq .content h3 {
  font-weight: 400;
  font-size: 2rem;
}

.faq .content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 1.2rem;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 15px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--dark);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  width: 100%;
  padding: 80px 0;
}

.contact h2 {
  color: var(--dark);
  font-weight: 700;
  margin: 0;
}

.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5ms;
}

.contact .info-item:hover {
  transform: translateY(-10px);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--primary);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--primary), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .map .card {
  background-color: var(--light);
  height: 100%;
  padding: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border: none;
}

.contact .php-email-form {
  background-color: var(--light);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .nav-link {
  color: var(--primary);
  cursor:pointer;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--light);
  border-color: color-mix(in srgb, var(--dark), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--light);
  background: var(--primary);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--primary), transparent 20%);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--primary);
  padding: 50px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
}

.footer .footer-info .logo img {
  max-height: 100px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
  margin: 0;
}

.footer .footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer .footer-contact a:hover {
  color: var(--light);
}

.copy {
  background-color: var(--primary);
  opacity: 80%;
  color: var(--light);
}

/*--------------------------------------------------------------
  # cookies
--------------------------------------------------------------*/

.cookieConsentContainer {
  z-index: 999;
  width: 350px;
  min-height: 20px;
  box-sizing: border-box;
  padding: 30px 30px 30px 30px;
  background: var(--light);
  overflow: hidden;
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: none
}

.cookieConsentContainer .cookieTitle a {
  font-family: OpenSans, arial, sans-serif;
  color: var(--dark);
  font-size: 22px;
  line-height: 20px;
  display: block
}

.cookieConsentContainer .cookieDesc p {
  margin: 0;
  padding: 0;
  font-family: OpenSans, arial, sans-serif;
  color: var(--dark);
  font-size: 13px;
  line-height: 20px;
  display: block;
  margin-top: 10px
}

.cookieConsentContainer .cookieDesc a {
  font-family: OpenSans, arial, sans-serif;
  color: var(--primary);
  text-decoration: underline
}

.cookieConsentContainer .cookieButton a {
  display: inline-block;
  font-family: OpenSans, arial, sans-serif;
  color: var(--light);
  font-size: 14px;
  font-weight: 700;
  margin-top: 14px;
  background: var(--dark);
  box-sizing: border-box;
  padding: 15px 24px;
  text-align: center;
  transition: background .3s;
  border: 1px solid var(--dark);
}

.cookieConsentContainer .cookieButton a:hover {
  cursor: pointer;
  background: var(--secondary-dark);
  color: var(--dark);
  border: 1px solid var(--dark);
}

@media (max-width:980px) {
  .cookieConsentContainer {
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important
  }

}
