:root {
  --white: #fff;
  --black: #000;
  --cyan-blue: #84a4bb;
  --dark-grey: #3b3b3b;
  --blueDC: #bbbddc;
  --light-grey: #eeeeee;
  --orange-gradient: linear-gradient(90deg, rgba(255, 222, 89, 1) 0%, rgba(255, 146, 77, 1) 100%);
}

:is(h1, h2, h3, h4, h5, h6, p) {
  margin: 0px;
  height: fit-content;
  text-align: left;
}

* {
  box-sizing: border-box;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

img {
  user-select: none;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
}

body {
  min-height: 100vh;
  text-align: left;
  scroll-behavior: smooth;
  color: var(--black);
  background-color: var(--white);
  font-family: "Comfortaa", sans-serif;
}

.row {
  padding: 0;
  margin: 0;
}

h1 {
  color: var(--black);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 135.2%;
}

h2 {
  color: var(--black);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h3 {
  color: var(--black);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h4 {
  color: var(--black);
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.72px;
}

p {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.hover_demo:hover {
  transform: scale(1.07);
}

.wcl-container {
    width: 100%;
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 30px;
}

@media only screen and (max-width: 768px) {
    .wcl-container {
        padding: 0 15px;
    }
}

.wcl-container--xl {
    max-width: 1536px;
}

.wcl-container--xxl {
    max-width: 1576px;
}

.wcl-block {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 55px 15px;
    width: 100%;
    border-radius: 20px;
    background-color: var(--blueDC);
    box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 1280px) {
    .wcl-block {
        padding: 40px 10px;
    }
}

.wcl-block--yellow {
    background: var(--orange-gradient);
}

.wcl-block::before {
    content: "";
    position: absolute;
    z-index: -1;
    display: inline-block;
    border-radius: 20px;
    background-color: rgba(154, 155, 198, 0.48);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    margin: auto;
    transition: all 1s;
}

.wcl-block:hover::before {
    height: 100%;
}

.wcl-page-details {
    background-color: var(--light-grey);
}

.wcl-page-details .wcl-container {
    padding: 0 15px 25px;
}

.wcl-page-details .wcl-container * {
    font-size: 12px;
    line-height: 1.5;
    color: var(--black);
}