html {
  font-size: 14px;
  color: #000;
}

b {
  font-weight: 600;
}

a {
  color: #000;
  outline-style: none;
}

/* Headings */

.h-primary {
  font-size: 4em;
  font-weight: 900;
  line-height: 1.156;
}

.h-secondary {
  font-size: 3em;
  font-weight: 900;
  line-height: 1.156;
}

.h-tertiary {
  font-size: 2em;
  font-weight: 900;
  line-height: 1.25;
}

.h-alternate {
  font-size: 2.4em;
  font-weight: 900;
  line-height: 1.25;
}

.h-small {
  font-size: 1.5em;
  font-weight: 900;
  line-height: 1.25;
}

.h-big {
  font-size: 7.75em;
  font-weight: 900;
  line-height: 1.26;
}

/* paragraphs */

.para-prim-light {
  font-size: 1.375em;
  font-weight: 400;
  line-height: 1.63;
}

.para-prim-reg {
  font-size: 1.375em;
  font-weight: 400;
  line-height: 1.5;
}

.para-sec-reg {
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.5;
}

.para-sec-light {
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.5;
}

.para-ter {
  font-size: 0.875em;
  line-height: 1.5;
}

.white {
  color: #fff !important;
}

.black {
  color: #000 !important;
}

.p-clr {
  color: #fc024d !important;
}

.no-border {
  border: none !important;
}

.line-height-0 {
  line-height: normal !important;
}

.width100 {
  width: 100%;
}

.height100 {
  height: 100%;
}

.center {
  text-align: center;
}

.image-dimension {
  width: 100%;
  height: auto;
}

.flex-center-h {
  justify-content: center;
}

.flex-center-v {
  align-items: center;
}

.flex-center-all {
  justify-content: center;
  align-items: center;
}

.max1170 {
  max-width: 90%;
  margin: auto;
}

.section-tile {
  margin-bottom: 120px;
}

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

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

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.hide {
  display: none !important;
}

.show {
  display: block;
}

.hidden-mob {
  display: block;
}

.hidden-web {
  display: none;
}

/* General Button */

.btn-normal {
  background: #fc024d;
  border-radius: 28px;
  padding: 10px 20px;
  color: #ffffff;
  cursor: pointer;
}

.btn-normal:hover {
  background: rgba(252, 2, 77, 0.8);
}

.btn-normal a,
.btn-normal a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Button Arrow */

.btn-arrow {
  margin-top: 30px;
  display: flex;
  align-items: center;
  /* border-left: 1px solid #FC024D; */
  transition: all 300ms ease-in-out;
  position: relative;
}

.btn-arrow a {
  padding: 10px;
  padding-left: 10px;
  transition: all 300ms ease-in-out;
}

.btn-arrow:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  background-color: #fc024d;
  width: 1px;
  transform-origin: center;
  transition: all 300ms ease-in-out;
}

.btn-arrow:before {
  content: " ";
  position: absolute;
  top: 17px;
  left: 0px;
  height: auto;
  background-color: #fc024d;
  transition: all 300ms ease-in-out;
  transform: scale(0);
  transform-origin: left;
  display: inline-block;
  font-size: 16px;
  height: 1px;
  width: 16px;
}

.btn-arrow > span:before {
  content: "\02C6";
  position: absolute;
  transform: rotate(90deg);
  font-size: 25px;
  top: 5px;
  left: 5px;
  color: #fc024d;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms linear;
  /* transition-delay: 200ms; */
}

.btn-arrow > span {
  margin-right: 5px;
  transition: all 300ms;
}

.btn-arrow:hover > span {
  margin-right: 10px;
}

.btn-arrow:hover:after {
  transform: scale(0);
}

.btn-arrow:hover a {
  padding-left: 10px;
  margin-left: 10px;
}

.btn-arrow:hover > span:before {
  opacity: 1;
  visibility: visible;
}

.btn-arrow:hover:before {
  transform: scale(1);
  opacity: 1;
}

/* Header */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

header section {
  height: 100%;
}

header.full {
  display: none;
}

header.nav-up {
  top: -60px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

header .logo-container {
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  flex: 2;
}

header .logo-container img {
  width: 50%;
}

.header-menu {
  position: relative;
  left: 0;
  top: 0;
  padding: 0;
  display: block;
}

.main-menu {
  display: block;
  list-style-type: none;
  font-weight: 400;
}

.main-menu li {
  display: inline-block;
  padding: 0 20px;
  text-align: center;
}

.main-menu li a {
  font-size: 14px;
  color: #3b3b3b;
}

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

.btn-p {
  padding: 22px 20px;
  color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  transition: all 500ms ease-in-out;
  display: flex;
  align-items: center;
}

.header-action {
  /* margin-right: 24px; */
}

.btn-p .part2 {
  display: flex;
  align-items: center;
  height: 100%;
}

.btn-p .arrow {
  display: flex;
  margin-left: 5px;
  align-items: center;
}

.btn-p .arrow:before {
  content: "\2192";
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: absolute;
  top: calc(50% - 8px);
  transition: transform 500ms ease-in-out;
  transform: scale(0);
  transform-origin: left;
  color: #ffffff;
}

.btn-p:hover .arrow:before {
  transform: scale(1);
}

.btn-p:after {
  background: #fc024d;
  position: absolute;
  top: 0;
  left: 0%;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 500ms ease-in-out;
}

.btn-p:before {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  transition: all 500ms ease-in-out;
  left: 0;
  z-index: -1;
}

.btn-p:hover {
  color: #3b3b3b;
}

.btn-p:hover:after {
  left: 27%;
  width: 80%;
}

.btn-p:hover:before {
  width: 100%;
  /* background: #FC024D; */
}

footer {
  position: relative;
  z-index: 3;
  padding: 100px 0;
  background-color: #000000;
  margin-top: 200px;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-menu .single-col {
  display: inline-block;
  vertical-align: top;
  margin-right: 5.3vw;
  float: left;
}

.footer-menu .row-heading {
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.86;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  margin: 0 0 20px;
}

.footer-menu ul li a {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  display: block;
  margin-bottom: 9px;
  /* transition: all 300ms ease-in-out; */
  opacity: 0.7;
}

.footer-menu ul li a:hover {
  color: #6f7c95;
}

.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-social .social-media {
  flex-grow: 1;
}

.footer-social .social-media ul {
  text-align: right;
}

. -social .social-media ul li {
  margin-left: 20px;
  margin-bottom: 50px;
}

.footer-social .social-media ul li,
.footer-social .social-media ul li a {
  display: inline-block;
  vertical-align: middle;
  height: 40px;
  width: 40px;
}

.footer-social .social-media li a img {
  width: 100%;
  height: auto;
}

.copyright {
  font-size: 14px;
  color: #ffffff;
  text-align: right;
  opacity: 0.7;
}

.accept-cookie {
  position: sticky;
  z-index: 10000;
  width: 100%;
  bottom: 0;
  top: auto;
  box-shadow: 0 -1px 3px #eaf0f6;
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.accept-cookie-inner {
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.cookie-content p {
  font-family: Inter;
}

.cookie-link {
  font-family: Inter;
  color: #fc024d;
}

.button-continer {
  margin-top: 20px;
  margin-bottom: 10px;
  float: right;
}

.cookie-button {
  font-family: Inter;
  font-size: 12px;
  font-weight: 800;
}

@media (min-width: 1400px) {
  .max1170 {
    max-width: 1366px;
    margin: auto;
  }
}

@media (min-width: 1500px) {
  /* Headings */
  html {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  /* Headings */
  html {
    font-size: 12px;
  }
  .hidden-mob {
    display: none;
  }
  .hidden-web {
    display: block;
  }
  .btn-p:after,
  .btn-p:before {
    display: none;
  }
  .h-primary,
  .h-secondary,
  .h-tertiary,
  .h-alternate {
    margin-bottom: 10px;
  }
  header {
    height: 46px;
    padding: 0px;
    position: fixed;
  }
  header.full {
    opacity: 0;
  }
  header.nav-up {
    top: -46px;
  }
  .header-container {
    padding: 0px 20px;
    max-width: 100%;
    /* width: 97%; */
  }
  header .logo-container {
    position: relative;
    width: 58%;
    flex: none;
  }
  header .logo-container .logo-img {
    text-align: right;
  }
  header .logo-container img {
    width: 36%;
  }
  #nav-icon3 {
    width: 24px;
    height: 18px;
    position: absolute;
    top: 10px;
    left: 0;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 300ms ease-in-out;
    -moz-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
    cursor: pointer;
    z-index: 10;
  }
  #nav-icon3 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fc024d;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  #nav-icon3 span:nth-child(1) {
    top: 0px;
  }
  #nav-icon3 span:nth-child(2),
  #nav-icon3 span:nth-child(3) {
    top: 7px;
    left: 5px;
  }
  #nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  #nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 4px;
  }
  #nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 4px;
  }
  .main-menu {
    position: fixed;
    left: -100%;
    top: 46px;
    transform: translateX(0);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transition: all 500ms ease-in-out;
    overflow-y: auto;
    z-index: 9;
    padding-top: 35px;
  }
  .main-menu li {
    display: block;
    padding: 0 30px 30px 30px;
    margin-top: 9px;
    text-align: center;
  }
  .main-menu.open {
    transform: translateX(100%);
  }
  .header-action {
    margin-right: 0;
    width: 40%;
    display: flex;
    justify-content: flex-end;
  }
  .btn-p .arrow {
    display: none;
  }
  .btn-p:hover {
    color: #fff;
  }
  .header-action a {
    font-size: 9px;
    padding: 7px 10px;
    color: #ffffff;
    background: #fc024d;
  }
  .header-action a span {
    padding: 0;
    background: transparent;
    color: #fff;
  }
  .header-btn:after {
    background: transparent;
  }
  footer {
    padding: 50px 0;
  }
  .footer-container {
    display: flex;
    flex-direction: column;
  }
  .footer-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-menu .single-col {
    flex: 0 50%;
    margin-right: 0;
    margin-bottom: 50px;
  }
  .footer-social {
    text-align: center;
  }
  .footer-social .social-media ul {
    text-align: center;
  }
  .footer-social ul li:first-child {
    margin-left: 0;
  }
  .copyright {
    text-align: center;
  }
  .cookie-content {
    font-size: 12px;
  }
  .cookie-button {
    font-size: 11px;
  }
}

@media (max-width: 375px) {
  .header-container {
    width: auto;
  }
}
