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

:root {
  --color-raspberry-purple: #b3446c;
  --color-puce: #d48893;
  --color-mosque: #f08080;
  --color-misty-rose: #ead7d7;
  --color-error: #e74c3c;
  --color-black: #131515;
  --color-white: #ffffff;
  --color-light-brown: #c6b7b7;
}

body {
  font-family: "Roboto", sans-serif;
}

h1 {
  padding: 1.5em 0;
  font-family: "Courgette", cursive;
  letter-spacing: 1px;
  font-size: 70px;
  text-align: center;
}

h2 {
  font-family: "Courgette", cursive;
  letter-spacing: 1px;
  font-size: 50px;
  letter-spacing: 1px;
  text-align: center;
  padding-bottom: 0.5em;
}

h3 {
  font-family: "Courgette", cursive;
  letter-spacing: 1px;
  font-size: 30px;
  letter-spacing: 1px;
  text-align: center;
  padding-bottom: 0.5em;
  color: var(--color-raspberry-purple);
}

h4 {
  font-family: "Courgette", cursive;
  letter-spacing: 1px;
  font-size: 20px;
  color: var(--color-raspberry-purple);
}

/* PARALLAX PHOTOS START */

.parallax {
  min-height: 800px;
  width: 100%;
  position: relative;
  text-align: center;
  background: var(--color-misty-rose);
}

.parallax-text {
  position: relative;
  color: var(--color-white);
  z-index: 101;
}

.parallax-text.first {
  font-family: "Courgette", cursive;
  letter-spacing: 1px;
  font-size: 50px;
  position: absolute;
  top: 200px;
  left: 20%;
}

.parallax-text.second {
  font-family: "Courgette", cursive;
  letter-spacing: 1px;
  position: absolute;
  top: 500px;
  left: 50%;
}

.parallax-text.first p {
  font-size: 50px;
}

.parallax-text.second p {
  font-size: 80px;
}

/* ABOUT US STARTS */

.section1,
.section4 {
  background: var(--color-misty-rose) !important;
}

.about-us {
  padding-bottom: 10em;
}

.about-us .frame {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  background: var(--color-light-brown);
  display: flex;
  flex-direction: column;
  position: relative;
}

.about-us .frame::before {
  position: absolute;
  content: "";
  width: 4em;
  height: 4em;
  bottom: -15px;
  right: -15px;
}

.about-us .frame::after {
  position: absolute;
  content: "";
  width: 4em;
  height: 4em;
  top: -15px;
  left: -15px;
}

.about-us .frame::before {
  border-bottom: 3px solid var(--color-black);
  border-right: 3px solid var(--color-black);
}

.about-us .frame::after {
  border-top: 3px solid var(--color-black);
  border-left: 3px solid var(--color-black);
}

.about-us .frame p {
  padding-top: 1em;
  text-align: left;
}

.about-us .frame {
  border: 3px solid var(--color-black);
}

/* ABOUT US ENDS */

/* SERVICES STARTS */

.section2 {
  -webkit-clip-path: polygon(
    0 calc(0% + 60px),
    100% 0,
    100% 100%,
    0 calc(100% - 60px)
  );
  clip-path: polygon(0 calc(0% + 60px), 100% 0, 100% 100%, 0 calc(100% - 60px));
  margin: -60px 0;
}

.services {
  padding: 9em 0;
  background-color: var(--color-puce);
}

.box-item {
  margin: 2rem 0;
}

.card {
  height: 28rem;
  width: 18rem;
  background: var(--color-misty-rose);
  padding: 15px;
  border-radius: 20px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
}

.card:hover {
  box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.card-img {
  border-radius: 20px 20px 0 0;
  border: 1px solid rgb(145, 143, 143);
  background-size: cover;
  color: var(--color-misty-rose);
  height: 180px;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
}

.card-img.beverage {
  background-image: url("../images/bootstrap-cards/cocktail.jpg");
}

.card-img.chocolate {
  background-image: url("../images/bootstrap-cards/chocolate.jpg");
}

.card-img.cheese {
  background-image: url("../images/bootstrap-cards/cheese.jpg");
}

.card-img.fruit {
  background-image: url("../images/bootstrap-cards/fruit.jpg");
}

.card-img.veg {
  background-image: url("../images/bootstrap-cards/veg.jpg");
}

.card-img.firework {
  background-image: url("../images/bootstrap-cards/firework.jpg");
}

.card-top {
  height: 40%;
}

.card-body {
  height: 60%;
  padding: 25px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card-text {
  padding-bottom: 10px;
}

.card-icon-cont {
  border: 3px solid black;
  border-radius: 50%;
  background: var(--color-white);
}

.card-icon {
  margin: 0.8em;
  height: 2em;
}

.card-title {
  color: var(--color-white);
  font-family: "Courgette", cursive;
  font-size: 30px;
}

.card-btn {
  width: 10rem;
  padding: 12px 27px;
  font-size: 16px;
  letter-spacing: 1px;
  color: #999999;
  background: var(--color-white);
  border: 2px solid #999999;
  cursor: pointer;
  transition: ease-out 0.5s;
  -webkit-transition: ease-out 0.5s;
  -moz-transition: ease-out 0.5s;
  font-family: "Courgette", cursive;
  z-index: 100000;
}

.card-btn:hover {
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.no-hover .card-btn {
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

/* SERVICES ENDS */

/* SECTION 3 STARTS */

.section3 {
  background: var(--color-misty-rose);
  min-height: 400px;
  -webkit-clip-path: polygon(0 0, 100% calc(0% + 60px), 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% calc(0% + 60px), 100% 100%, 0 100%);
  margin-top: -60px;
}

/* SECTION 3 ENDS */

/* COUNTERS START */

.counters {
  background: var(--color-misty-rose);
  margin-right: auto;
  margin-left: auto;
  padding: 10em 0 7em;
}

.counter {
  text-align: center;
  padding: 10px 0 25px;
  margin: 0 -15px;
  position: relative;
  z-index: 0;
}

.counter:before,
.counter:after {
  content: "";
  height: 100%;
  width: 200px;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-clip-path: polygon(100% 0, 100% 75%, 50% 100%, 0% 75%, 0 0);
  clip-path: polygon(100% 0, 100% 75%, 50% 100%, 0% 75%, 0 0);
}

.counter:after {
  background: #bfafa6;
  height: 80%;
  width: 100%;
  transform: translateX(0) translateY(-50%);
  left: 0;
  top: 50%;
  z-index: -1;
  -webkit-clip-path: none;
  clip-path: none;
}

.counter .counter-content {
  background: var(--color-white);
  width: 170px;
  height: 170px;
  padding: 15px 30px 0;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.counter .counter-content:before {
  content: "";
  background: linear-gradient(45deg, #666 49%, transparent 50%);
  height: 21px;
  width: 24px;
  position: absolute;
  right: -23%;
  top: -6%;
  z-index: -1;
}

.counter .counter-icon img {
  height: 4vh;
  transition: all 0.3s;
}

.counter .counter-content:hover .counter-icon img {
  transform: rotateX(360deg);
}

.counter .counter-value {
  font-size: 35px;
  font-weight: 500;
  margin: 0 0 5px;
  display: block;
  color: var(--color-raspberry-purple);
}

.counter h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0 0 2px 0;
}

.counter.one:before {
  background: linear-gradient(45deg, #b76e79, #b58c92);
}

.counter.two:before {
  background: linear-gradient(45deg, #d48893, #d5aeb4);
}

.counter.three:before {
  background: linear-gradient(45deg, #f1a3ad, #eec0c7);
}

.counter.four:before {
  background: linear-gradient(45deg, #ffdae5, #fce7ee);
}

/* COUNTERS END */

/* TESTIMONIAL STARTS */

.testim {
  min-height: 850px;
  width: 100%;
  position: relative;
  background: url("../images/testimonials/testim.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.testim-overlay {
  min-height: 850px;
  background: rgba(0, 0, 0, 0.7);
}

.testim-heading {
  text-align: center;
  padding-top: 6em;
}

.testim-heading img {
  width: 200px;
  padding: 30px 0 150px 0;
}

.testim-heading div {
  font-family: "Courgette", cursive;
  letter-spacing: 2px;
  color: var(--color-white);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: var(--color-white);
  cursor: pointer;
  font-size: 2em;
  top: 65%;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 5px;
  z-index: 100;
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  color: var(--color-mosque);
}

.testim .arrow.left {
  left: 70px;
}

.testim .arrow.right {
  right: 70px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: -19px;
  display: block;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: var(--color-mosque);
  border-color: var(--color-raspberry-purple);
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale 0.5s ease-in-out forwards;
  -moz-animation: testim-scale 0.5s ease-in-out forwards;
  -ms-animation: testim-scale 0.5s ease-in-out forwards;
  -o-animation: testim-scale 0.5s ease-in-out forwards;
  animation: testim-scale 0.5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont > div.inactive {
  opacity: 1;
}

.testim .cont > div.active {
  position: relative;
  opacity: 1;
}

.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h4 {
  color: var(--color-mosque);
  font-size: 1.4em;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 1.15em;
  color: var(--color-white);
  width: 70%;
  margin: auto;
  letter-spacing: 2px;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show 0.5s ease-in-out forwards;
  -moz-animation: testim-show 0.5s ease-in-out forwards;
  -ms-animation: testim-show 0.5s ease-in-out forwards;
  -o-animation: testim-show 0.5s ease-in-out forwards;
  animation: testim-show 0.5s ease-in-out forwards;
}

.testim .cont div.active h4 {
  -webkit-animation: testim-content-in 0.4s ease-in-out forwards;
  -moz-animation: testim-content-in 0.4s ease-in-out forwards;
  -ms-animation: testim-content-in 0.4s ease-in-out forwards;
  -o-animation: testim-content-in 0.4s ease-in-out forwards;
  animation: testim-content-in 0.4s ease-in-out forwards;
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in 0.5s ease-in-out forwards;
  -moz-animation: testim-content-in 0.5s ease-in-out forwards;
  -ms-animation: testim-content-in 0.5s ease-in-out forwards;
  -o-animation: testim-content-in 0.5s ease-in-out forwards;
  animation: testim-content-in 0.5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide 0.5s ease-in-out forwards;
  -moz-animation: testim-hide 0.5s ease-in-out forwards;
  -ms-animation: testim-hide 0.5s ease-in-out forwards;
  -o-animation: testim-hide 0.5s ease-in-out forwards;
  animation: testim-hide 0.5s ease-in-out forwards;
}

.testim .cont div.inactive h4 {
  -webkit-animation: testim-content-out 0.4s ease-in-out forwards;
  -moz-animation: testim-content-out 0.4s ease-in-out forwards;
  -ms-animation: testim-content-out 0.4s ease-in-out forwards;
  -o-animation: testim-content-out 0.4s ease-in-out forwards;
  animation: testim-content-out 0.4s ease-in-out forwards;
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out 0.5s ease-in-out forwards;
  -moz-animation: testim-content-out 0.5s ease-in-out forwards;
  -ms-animation: testim-content-out 0.5s ease-in-out forwards;
  -o-animation: testim-content-out 0.5s ease-in-out forwards;
  animation: testim-content-out 0.5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }
  35% {
    -webkit-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }
  70% {
    -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-moz-keyframes testim-scale {
  0% {
    -moz-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }
  35% {
    -moz-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }
  70% {
    -moz-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }
  100% {
    -moz-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-ms-keyframes testim-scale {
  0% {
    -ms-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }
  35% {
    -ms-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }
  70% {
    -ms-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }
  100% {
    -ms-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-o-keyframes testim-scale {
  0% {
    -o-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
  }
  35% {
    -o-box-shadow: 0px 0px 10px 5px #eee;
    box-shadow: 0px 0px 10px 5px #eee;
  }
  70% {
    -o-box-shadow: 0px 0px 10px 5px #ea830e;
    box-shadow: 0px 0px 10px 5px #ea830e;
  }
  100% {
    -o-box-shadow: 0px 0px 0px 0px #ea830e;
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@keyframes testim-scale {
  0% {
    box-shadow: 0px 0px 0px 0px #eee;
  }
  35% {
    box-shadow: 0px 0px 10px 5px #eee;
  }
  70% {
    box-shadow: 0px 0px 10px 5px #ea830e;
  }
  100% {
    box-shadow: 0px 0px 0px 0px #ea830e;
  }
}

@-webkit-keyframes testim-content-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-moz-keyframes testim-content-in {
  from {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes testim-content-in {
  from {
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes testim-content-in {
  from {
    opacity: 0;
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes testim-content-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes testim-content-out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-moz-keyframes testim-content-out {
  from {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-ms-keyframes testim-content-out {
  from {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-o-keyframes testim-content-out {
  from {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes testim-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@-webkit-keyframes testim-show {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes testim-show {
  from {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }
  to {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-ms-keyframes testim-show {
  from {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }
  to {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes testim-show {
  from {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }
  to {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes testim-show {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes testim-hide {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

/* TESTIMONIAL ENDS */
/* WORKED WITH STARTS */

.section4 {
  padding: 50px 20px;
}

.section4 img {
  padding: 15px;
}

/* WORKED WITH ENDS */

/* COOKIE CONSENT STARTS */

.cookie-banner.cookie-fade {
  opacity: 0;
  animation-fill-mode: none;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner {
  opacity: 0;
  animation: initial-hide 3s ease-out 2s forwards;
  z-index: 200;
  background: var(--color-misty-rose);
  color: var(--color-black);
  padding: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border: 3px solid var(--color-raspberry-purple);
  border-radius: 10px;
}

.cookie-banner p {
  padding-top: 10px;
}

.cookie-banner img {
  height: 40px;
  width: 40px;
  margin-left: 5px;
}

.cookie-banner div:nth-of-type(2) {
  display: flex;
}

.cookie-banner .row div:last-of-type {
  white-space: nowrap;
}

.cookie-link {
  text-decoration: none;
  color: var(--color-misty-rose);
  background: var(--color-black);
  cursor: pointer;
  padding: 0 32px;
  margin: 10px;
  border-radius: 5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  box-shadow:
    0 0 5px black,
    0 0 5px black;
}

.cookie-link:hover {
  border-radius: 5px;
  color: var(--color-black);
  background: var(--color-misty-rose);
  box-shadow:
    0 0 5px #b3446c,
    0 0 5px #b3446c;
}

.cookie-button {
  color: var(--color-black);
  background: var(--color-misty-rose);
  padding: 0 12px;
  cursor: pointer;
  box-shadow:
    0 0 5px rgb(0, 0, 0),
    0 0 5px rgb(0, 0, 0);
  border-radius: 5px;
  white-space: nowrap;
  border: none;
  margin: 10px;
}

.cookie-button:hover {
  border-radius: 5px;
  color: var(--color-black);
  background: var(--color-misty-rose);
  box-shadow:
    0 0 5px #b3446c,
    0 0 5px #b3446c;
}

@keyframes initial-hide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* COOKIE CONSENT ENDS */

/* MEDIA QUERIES */

@media all and (max-width: 1400px) {
  .about-us .frame {
    width: 80%;
  }
}

@media all and (max-width: 1300px) {
  .parallax-text.first {
    left: 20%;
  }
  .parallax-text.second {
    top: 450px;
    left: 40%;
  }
  .parallax-text.first p {
    font-size: 50px;
  }
  .parallax-text.second p {
    font-size: 80px;
  }
}

@media all and (max-width: 1200px) {
  h1 {
    font-size: 60px;
  }
  .parallax-text.second {
    left: 30%;
  }
  .about-us .frame p {
    text-align: center;
  }
  .about-us img {
    margin-top: 2em;
  }
}

@media all and (max-width: 968px) {
  .parallax-text.second {
    left: 20%;
  }
  .parallax-text.first p {
    font-size: 40px;
  }
  .parallax-text.second p {
    font-size: 60px;
    top: 350px;
  }
  .cookie-banner {
    flex-direction: column;
  }
  .counter {
    margin-bottom: 40px;
  }
  .counter .counter-icon img {
    height: 3vh;
  }
  .counter .counter-value {
    font-size: 25px;
    margin: 5px 0;
  }
  .about-us img {
    margin-top: 1em;
  }
}

@media screen and (max-width: 768px) {
  .testim {
    min-height: 900px;
  }
  .testim-overlay {
    min-height: 900px;
  }
  .testim .arrow.left {
    left: 25px;
  }
  .testim .arrow.right {
    right: 25px;
  }
  .testim .cont div p {
    font-size: 1em;
    width: 60%;
  }
  h1 {
    font-size: 30px;
  }
  h2,
  h3 {
    padding: 0.5em 0;
  }
  .about-us .frame {
    width: 90%;
  }
}

@media all and (max-width: 500px) {
  .testim {
    min-height: 950px;
  }
  .testim-overlay {
    min-height: 950px;
  }
  .testim .arrow {
    font-size: 1.5em;
  }
  .testim .cont div p {
    line-height: 25px;
  }
  .testim .dots {
    bottom: 20px;
  }
  .large {
    font-size: 5vw;
  }
  .parallax-text.second {
    left: 10%;
  }
  .parallax-text.first p {
    font-size: 30px;
  }
  .parallax-text.second p {
    font-size: 45px;
  }
}
