/*
mobile first
Author: Matytsyn Kostiantyn (Jamper)
E-mail: matytsyn.artit@gmail.com
Site: https://jamper.online
*/
body {
  background: #f4f4f4;
}
.desktop {
  display: none;
}
.header-container {
  background: #fcfcf7;
  box-shadow: 0px -10px 82px rgba(94, 67, 27, 0.1);
}
.header-container .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 23px;
}
@media (min-width: 992px) {
  .header-container .header {
    height: 104px;
    padding: 0;
  }
}
.header-container .header .logo {
  width: 100%;
}
.header-container .header .logo img {
  width: 92px;
}
@media (min-width: 992px) {
  .header-container .header .logo {
    width: inherit;
  }
  .header-container .header .logo img {
    width: 116px;
  }
}
.header-container .header .menu-container {
  display: none;
}
@media (min-width: 992px) {
  .header-container .header .menu-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
  .header-container .header .menu-container a:hover,
  .header-container .header .menu-container a.active,
  .header-container .header .menu-container a:focus {
    color: #eb5757;
    text-decoration: none;
  }
}
.header-container .header .top-menu.open {
  display: block;
  background: #f4f4f4;
  position: absolute;
  top: 80px;
  width: 100%;
  z-index: 999;
  padding: 21px 0;
  margin-left: 0;
  margin-right: 0;
  left: 0;
}
.header-container .header .top-menu.open a {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 10px;
}
.header-container .header .top-menu.open a:hover,
.header-container .header .top-menu.open a.active {
  text-decoration: none;
  color: #eb5757;
}
.header-container .header .mobile-menu {
  content: url('/wp-content/themes/artit/assets/images/icons/menu.svg');
  cursor: pointer;
}
.header-container .header .mobile-menu.open {
  content: url('/wp-content/themes/artit/assets/images/icons/close.svg');
}
@media (min-width: 992px) {
  .header-container .header .mobile-menu {
    display: none;
  }
}
.footer-container {
  background: #000000;
}
.footer-container .footer {
  padding-top: 22px;
  padding-bottom: 21px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 992px) {
  .footer-container .footer {
    flex-wrap: nowrap;
    padding-top: 90px;
    padding-bottom: 80px;
  }
}
.footer-container .footer .logo {
  margin-bottom: 10px;
}
.footer-container .footer .logo img {
  width: 92px;
}
@media (min-width: 992px) {
  .footer-container .footer .logo img {
    width: 116px;
  }
}
.footer-container .footer .menu-container {
  width: 100%;
  text-align: center;
  margin: 0;
}
@media (min-width: 992px) {
  .footer-container .footer .menu-container {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
}
@media (min-width: 992px) {
  .footer-container .footer .menu-container .menu {
    text-align: left;
    width: 100%;
  }
}
.footer-container .footer .menu-container .menu a {
  color: #ffffff;
  font-size: 14px;
  line-height: 17px;
  font-family: 'Montserrat';
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.footer-container .footer .menu-container .menu a:hover,
.footer-container .footer .menu-container .menu a.active {
  text-decoration: none;
  color: #769c91;
}
.footer-container .footer .menu-container .menu a.email-link {
  display: none;
}
@media (min-width: 992px) {
  .footer-container .footer .menu-container .menu a.email-link {
    color: #eb5757;
  }
}
@media (min-width: 992px) {
  .footer-container .footer .menu-container .menu a {
    display: inline-block !important;
    width: 32%;
    font-size: 16px;
    line-height: 19.5px;
  }
}
.footer-container .footer .menu-container .email-link {
  color: #eb5757;
  margin-bottom: 15px;
  display: block;
}
@media (min-width: 992px) {
  .footer-container .footer .menu-container .email-link {
    display: none;
  }
}
.footer-container .footer .menu-container .copyrights {
  color: #818181;
  width: 130px;
  margin: auto;
}
@media (min-width: 992px) {
  .footer-container .footer .menu-container .copyrights {
    white-space: nowrap;
    font-size: 16px;
    line-height: 19.5px;
    margin-bottom: 10px;
  }
}
a,
p,
.content {
  font-size: 16px;
  line-height: 22.08px;
  font-family: 'Hind Madurai';
  color: #818181;
}
@media (min-width: 992px) {
  a,
  p,
  .content {
    font-size: 20px;
    line-height: 28px;
  }
}
p,
.content {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  p,
  .content {
    margin-bottom: 40px;
  }
}
.btn {
  color: #eb5757;
  border: 2px solid #eb5757;
  font-size: 16px;
  line-height: 19.5px;
  font-weight: 500;
  font-family: 'Montserrat';
  padding: 13px 20px;
  border-radius: 23px;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
  display: inline-block;
}
.btn:hover {
  color: #eb5757;
  box-shadow: 1px 3px 3px rgba(235, 87, 87, 0.21) !important;
}
.btn:focus {
  color: #769c91;
  border-color: #769c91;
}
@media (min-width: 992px) {
  .btn {
    margin-left: 8.33333333%;
    left: 15px;
  }
}
.main {
  padding-top: 36px;
  background: #ffffff;
}
.main h1,
.main .title {
  font-size: 24px;
  line-height: 29.26px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .main h1,
  .main .title {
    font-size: 64px;
    line-height: 73px;
    margin-bottom: 70px;
  }
}
.main h1,
.main .title,
.main h2,
.main h3,
.main h4,
.main h5,
.main h6 {
  font-weight: 500;
  font-family: 'Montserrat';
}
.main h1 span,
.main .title span,
.main h2 span,
.main h3 span,
.main h4 span,
.main h5 span,
.main h6 span {
  color: #eb5757;
}
.main h2 {
  font-size: 20px;
  line-height: 113.9%;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .main h2 {
    font-size: 48px;
    line-height: 54.67px;
    margin-bottom: 40px;
  }
}
.main h3 {
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .home .main-slide,
  .page-template-page-contact .main-slide,
  .page-template-page-services .main-slide {
    background: url('/wp-content/themes/artit/assets/images/table.svg');
    background-size: 50% auto;
    background-repeat: no-repeat;
    background-position: right bottom;
    padding-bottom: 100px;
    background-position-y: 210px;
  }
  .home .main-slide .content p,
  .page-template-page-contact .main-slide .content p,
  .page-template-page-services .main-slide .content p {
    font-size: 20px;
    line-height: 28px;
  }
}
.home .main-slide::after,
.page-template-page-contact .main-slide::after,
.page-template-page-services .main-slide::after {
  background: url('/wp-content/themes/artit/assets/images/table.svg');
  background-size: 180px auto;
  background-position: right bottom;
  background-repeat: no-repeat;
  padding-bottom: 180px;
  display: block;
  width: 100%;
  text-align: right;
  height: 180px;
  margin-bottom: -36px;
  margin-top: -70px;
}
@media (min-width: 992px) {
  .home .main-slide::after,
  .page-template-page-contact .main-slide::after,
  .page-template-page-services .main-slide::after {
    display: none;
  }
}
.home .services,
.page-template-page-contact .services,
.page-template-page-services .services {
  background: #f4f4f4;
}
.home .services .infographics,
.page-template-page-contact .services .infographics,
.page-template-page-services .services .infographics {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .home .services .infographics,
  .page-template-page-contact .services .infographics,
  .page-template-page-services .services .infographics {
    display: flex;
    flex-wrap: wrap;
  }
}
.home .services .infographics .item,
.page-template-page-contact .services .infographics .item,
.page-template-page-services .services .infographics .item {
  display: flex;
  counter-increment: section;
  padding-left: 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .home .services .infographics .item,
  .page-template-page-contact .services .infographics .item,
  .page-template-page-services .services .infographics .item {
    padding-left: initial;
  }
}
.home .services .infographics .item::before,
.page-template-page-contact .services .infographics .item::before,
.page-template-page-services .services .infographics .item::before {
  margin-left: 15px;
  content: "0" counter(section);
  border-radius: 50%;
  border: 2px solid #eb5757;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 36px;
  font-family: 'Montserrat';
  font-weight: 500;
  margin-right: 30px;
  margin-left: 0;
}
@media (min-width: 992px) {
  .home .services .infographics .item::before,
  .page-template-page-contact .services .infographics .item::before,
  .page-template-page-services .services .infographics .item::before {
    margin-right: 26px;
  }
}
@media (min-width: 992px) {
  .home .services .infographics .item,
  .page-template-page-contact .services .infographics .item,
  .page-template-page-services .services .infographics .item {
    padding-left: 0;
  }
}
.home .services .infographics .item header,
.page-template-page-contact .services .infographics .item header,
.page-template-page-services .services .infographics .item header {
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  font-family: 'Montserrat';
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .home .services .infographics .item header,
  .page-template-page-contact .services .infographics .item header,
  .page-template-page-services .services .infographics .item header {
    font-size: 32px;
    line-height: 36px;
    margin-right: 15px;
  }
}
@media (min-width: 992px) {
  .home .services .infographics .item p,
  .page-template-page-contact .services .infographics .item p,
  .page-template-page-services .services .infographics .item p {
    font-size: 16px;
    line-height: 24px;
  }
}
.home .why-choose-us .infographics .item,
.page-template-page-contact .why-choose-us .infographics .item,
.page-template-page-services .why-choose-us .infographics .item {
  padding-left: 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .home .why-choose-us .infographics .item,
  .page-template-page-contact .why-choose-us .infographics .item,
  .page-template-page-services .why-choose-us .infographics .item {
    padding-left: initial;
  }
}
.home .why-choose-us .infographics .item aside,
.page-template-page-contact .why-choose-us .infographics .item aside,
.page-template-page-services .why-choose-us .infographics .item aside {
  display: flex;
  align-items: center;
}
.home .why-choose-us .infographics .item aside img,
.page-template-page-contact .why-choose-us .infographics .item aside img,
.page-template-page-services .why-choose-us .infographics .item aside img {
  margin-right: 24px;
  width: 56px;
  height: 56px;
}
@media (min-width: 992px) {
  .home .why-choose-us .infographics .item,
  .page-template-page-contact .why-choose-us .infographics .item,
  .page-template-page-services .why-choose-us .infographics .item {
    padding-left: 0;
  }
}
.home .text-container,
.page-template-page-contact .text-container,
.page-template-page-services .text-container {
  padding-top: 16px;
  padding-bottom: 14px;
}
.home .business-performance,
.page-template-page-contact .business-performance,
.page-template-page-services .business-performance {
  background: #f4f4f4;
}
.home .business-performance .data,
.page-template-page-contact .business-performance .data,
.page-template-page-services .business-performance .data {
  background: url('/wp-content/themes/artit/assets/images/byke.svg');
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 78px;
}
.home .business-performance .data h2,
.page-template-page-contact .business-performance .data h2,
.page-template-page-services .business-performance .data h2 {
  padding-bottom: 240px;
}
.page-template-page-about .main-slide {
  background: url('/wp-content/themes/artit/assets/images/welcome.svg');
  background-repeat: no-repeat;
  background-position: center 120px;
  padding-bottom: 230px;
}
.page-template-page-about .small-text * {
  font-size: 14px;
  line-height: 21px;
}
.page-template-page-about .small-text * strong {
  font-family: 'Hind Madurai';
  font-weight: 500;
  color: #000000;
}
.page-template-page-about .small-text * a {
  color: #eb5757;
}
.page-template-page-services .main-slide {
  background: url('/wp-content/themes/artit/assets/images/calendar.svg');
  background-repeat: no-repeat;
  background-position: right 250px;
  padding-bottom: 228px;
}
.page-template-page-services .main-slide::after {
  display: none;
}
.page-template-page-services .services .infographics .item {
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.page-template-page-services .services .infographics .item::before {
  content: none;
}
.page-template-page-services .services .infographics .item aside {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.page-template-page-services .services .infographics .item aside span {
  font-size: 40px;
  line-height: 36px;
  font-family: 'Montserrat';
  font-weight: 500;
  color: #eb5757;
  width: 25%;
  align-items: center;
}
.page-template-page-services .services .infographics .item aside h3 {
  margin: 0;
}
.page-template-page-services .services .infographics .item .data {
  margin-bottom: 10px;
}
.page-template-page-services .services .infographics .item .data p {
  font-size: 14px;
  line-height: 21px;
}
.page-template-page-services .services .infographics .item .list {
  color: #818181;
}
.page-template-page-services .services .infographics .item .list header,
.page-template-page-services .services .infographics .item .list h3 {
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 24px;
}
.page-template-page-services .services .infographics .item .list ul,
.page-template-page-services .services .infographics .item .list ol {
  padding-left: 15px;
  list-style-image: url('/wp-content/themes/artit/assets/images/ellipse.svg');
}
@media (min-width: 992px) {
  .page-template-page-services .services .infographics .item {
    padding-left: 0;
  }
}
.contact-us .data::after {
  background: url('/wp-content/themes/artit/assets/images/sitting.svg');
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: bottom;
  content: '';
  display: block;
  width: 100%;
  height: 125px;
  margin-bottom: -20px;
  margin-top: -30px;
  position: relative;
  z-index: 9999;
}
.contact-us .data p {
  margin-bottom: 22px;
}
.contact-us .data p a {
  color: #eb5757;
}
@media (min-width: 992px) {
  .home .main {
    padding-top: 153px;
  }
  .page-template-page-about .main {
    padding-top: 70px;
  }
  .page-template-page-about .main .main-slide {
    background: none;
    padding-bottom: 10px;
  }
  .page-template-page-about .main .main-slide br {
    float: left;
    display: none;
  }
  .page-template-page-about .main .main-slide span {
    margin-left: 15px;
  }
  .page-template-page-about .main .small-text {
    float: none;
  }
  .page-template-page-about .main .small-text br:last-of-type {
    float: left;
    display: none;
  }
  .page-template-page-about .main .small-text a {
    margin-left: 5px;
  }
  .page-template-page-about .main .small-text p {
    font-size: 16px;
    line-height: 22px;
  }
  .page-template-page-about .main .container:last-of-type {
    padding-bottom: 20px;
    background: url('/wp-content/themes/artit/assets/images/welcome.svg');
    background-size: 600px auto;
    background-position: right bottom;
    background-repeat: no-repeat;
  }
  .page-template-page-services .main .main-slide {
    padding-top: 150px;
    background-size: 550px auto;
    background-position: right bottom;
    padding-bottom: 300px;
  }
  .page-template-page-services .main .main-slide .content {
    float: none;
  }
  .page-template-page-services .main .infographics {
    margin-top: 20px !important;
  }
  .page-template-page-services .main .infographics .item {
    flex-wrap: nowrap;
    align-items: end;
    margin-bottom: 100px;
    counter-increment: section;
  }
  .page-template-page-services .main .infographics .item::before {
    content: '0' counter(section);
    display: block;
    align-self: start;
    text-align: center;
    font-size: 48px;
    line-height: 36px;
    color: #eb5757;
    border: 0;
  }
  .page-template-page-services .main .infographics .item span {
    display: none;
  }
  .page-template-page-services .main .infographics .item .data {
    margin-bottom: 0;
    display: block;
  }
  .page-template-page-services .main .infographics .item .data.mobile {
    display: none;
  }
  .page-template-page-services .main .infographics .item .data p {
    margin: 0;
  }
  .page-template-page-services .main .infographics .item aside {
    flex-wrap: wrap;
    width: 50%;
    margin-bottom: 0;
  }
  .page-template-page-services .main .infographics .item aside h3 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 40px;
  }
  .page-template-page-services .main .infographics .item aside .data {
    width: 70%;
  }
  .page-template-page-services .main .infographics .item aside .data p {
    font-size: 16px;
    line-height: 24px;
  }
  .page-template-page-services .main .infographics .item .list p,
  .page-template-page-services .main .infographics .item .list li {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .services,
  .why-choose-us {
    padding-top: 58px !important;
    padding-bottom: 80px !important;
  }
  .services .infographics,
  .why-choose-us .infographics {
    margin-top: 60px !important;
  }
  .why-choose-us .description p {
    margin-bottom: 10px;
  }
  .why-choose-us .infographics .item aside {
    flex-wrap: wrap;
  }
  .why-choose-us .infographics .item aside img {
    width: 110px !important;
    height: 110px !important;
  }
  .why-choose-us .infographics .item aside h3 {
    width: 100%;
    font-size: 32px;
    line-height: 36px;
  }
  .business-performance {
    padding-top: 135px !important;
    padding-bottom: 80px !important;
  }
  .business-performance .container {
    background-image: url('/wp-content/themes/artit/assets/images/byke.svg') !important;
    background-size: 500px auto !important;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    padding-bottom: 50px;
  }
  .business-performance .data {
    background: transparent !important;
  }
  .business-performance .data h2 {
    padding-bottom: 0px !important;
  }
  .business-performance .btn {
    clear: both;
  }
  .contact-us {
    padding-top: 120px !important;
    padding-bottom: 166px !important;
  }
  .contact-us .data h2,
  .contact-us .data article {
    float: none;
  }
  .contact-us .data::after {
    background-size: 600px auto !important;
    min-height: 395px !important;
    margin-bottom: -220px !important;
  }
}


/* Privacy policy */

.privacy-policy .content p, .privacy-policy .content li, .privacy-policy .content a {
    color: #818181;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    font-family: "HindMadurai", sans-serif;
}
.privacy-policy .content p {
    margin: 0 0 21px;
}
.privacy-policy .content h4 {
    color: #000;
    font-size: 16px !important;
    line-height: 1.4;
    font-weight: 500;
}
.privacy-policy .services, .privacy-policy .why-choose-us, .privacy-policy .business-performance, .privacy-policy .contact-us {
    display: none;
}
@media (max-width: 766px) {
	.privacy-policy .content p, .privacy-policy .content li, .privacy-policy .content a {

		font-size: 14px;
	}
}
.cookie-banner {
    position: fixed;
    z-index: 9999;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 20px;
    border-radius: 10px;
    background-color: #f4f4f4;
    width: 100%;
    -webkit-box-shadow: 4px -4px 16px 0px rgba(57, 57, 57, 0.1411764706);
    box-shadow: 4px -4px 16px 0px rgba(57, 57, 57, 0.1411764706);
}
.cookie-banner.hide {
    display: none;
}
.cookie-banner__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    gap: 24px;
}
@media (max-width: 766px) {
    .cookie-banner__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
}
.cookie-banner__content {
    margin-bottom: auto;
    padding: 20px 0 10px;
    min-height: 91px;
}
@media (max-width: 766px) {
    .cookie-banner__content {
        min-height: auto;
        padding: 20px 0 0 0;
    }
}
.cookie-banner__title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}
@media (max-width: 766px) {
    .cookie-banner__title {
        margin-bottom: 10px;
    }
}
.cookie-banner__info {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}
@media (max-width: 766px) {
    .cookie-banner__info span {
        display: block;
        margin-top: 10px;
    }
}
.cookie-banner__info a {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
    text-decoration: underline;
    font-family: "Montserrat", sans-serif;
    color: #000;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}
@media (max-width: 766px) {
    .cookie-banner__info a {
        display: block;
        margin-top: 2px;
    }
}
@media (hover: hover) {
    .cookie-banner__info a:hover {
        color: #eb5757;
    }
}
.cookie-banner__btns {
    padding: 24px 0;
    margin: auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
@media (max-width: 766px) {
    .cookie-banner__btns {
        padding: 0 0 10px 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }
}
.cookie-banner .button-cookie {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    border: 2px solid #eb5757;
    border-radius: 23px;
    padding: 13px 18px;
    background-color: #f4f4f4;
    color: #eb5757;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
@media (max-width: 766px) {
    .cookie-banner .button-cookie {
        width: 100%;
    }
}
@media (hover: hover) {
    .cookie-banner .button-cookie:hover {
        -webkit-box-shadow: 0px 3px 3.3px 0px rgba(235, 87, 87, 0.4901960784);
        box-shadow: 0px 3px 3.3px 0px rgba(235, 87, 87, 0.4901960784);
    }
}
.cookie-banner .button-cookie:focus {
    -webkit-box-shadow: 0px 0px 0px 1px #eb5757;
    box-shadow: 0px 0px 0px 1px #eb5757;
}
.cookie-banner .button-cookie:active {
    border-color: #ad3737;
    color: #ad3737;
    -webkit-box-shadow:
        0px 5px 4px 0px rgba(235, 87, 87, 0.231372549) inset,
        0px -5px 4px 0px rgba(235, 87, 87, 0.231372549) inset;
    box-shadow:
        0px 5px 4px 0px rgba(235, 87, 87, 0.231372549) inset,
        0px -5px 4px 0px rgba(235, 87, 87, 0.231372549) inset;
}
.cookie-banner .button-cookie:disabled,
.cookie-banner .button-cookie.disabled {
    color: #969696;
    border-color: #969696;
    cursor: default;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cookie-banner .button-cookie-light {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    border: 2px solid #e5a3a3;
    border-radius: 23px;
    padding: 13px 18px;
    background-color: #f4f4f4;
    color: #e5a3a3;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
@media (max-width: 766px) {
    .cookie-banner .button-cookie-light {
        width: 100%;
    }
}
@media (hover: hover) {
    .cookie-banner .button-cookie-light:hover {
        -webkit-box-shadow: 0px 3px 3.3px 0px rgba(235, 87, 87, 0.231372549);
        box-shadow: 0px 3px 3.3px 0px rgba(235, 87, 87, 0.231372549);
    }
}
.cookie-banner .button-cookie-light:focus {
    -webkit-box-shadow: 0px 0px 0px 1px #e5a3a3;
    box-shadow: 0px 0px 0px 1px #e5a3a3;
}
.cookie-banner .button-cookie-light:active {
    border-color: #b38686;
    color: #b38686;
    -webkit-box-shadow:
        0px 5px 4px 0px rgba(235, 87, 87, 0.231372549) inset,
        0px -5px 4px 0px rgba(235, 87, 87, 0.231372549) inset;
    box-shadow:
        0px 5px 4px 0px rgba(235, 87, 87, 0.231372549) inset,
        0px -5px 4px 0px rgba(235, 87, 87, 0.231372549) inset;
}
.cookie-banner .button-cookie-light:disabled,
.cookie-banner .button-cookie-light.disabled {
    color: #969696;
    border-color: #969696;
    cursor: default;
    -webkit-box-shadow: none;
    box-shadow: none;
}
