:root {
  --color-medium-blue: #053075;
  --color-blue: #0254c9;
  --color-sky-blue: #0185e2;
  --color-black: #232323;
  --color-light-blue: #c3fbfc;
  --color-dark-blue: #01133f;
  --color-while: #ffffff;
  --color-orange: #eb5339;
  --color-text: #434343;
  --color-black: #000000;
}

* {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

:not(footer) p,
li,
.card .content {
  color: var(--color-text);
  font-size: 18px;
  line-height: 28px;
}

body {
  margin: 0;
  padding: 0;
}

.body-overflow-hidden {
  overflow: hidden;
  position: relative;
}

.content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.button {
  background: var(--color-sky-blue);
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--color-while);
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
}

img {
  width: 100%;
}

.text-left,
.text-left p {
  text-align: left !important;
}

.text-center,
.text-center p {
  text-align: center !important;
}

h3 {
  font-size: 50px;
  margin-bottom: 10px;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column-reverse;
  text-align: center;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.accordion-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.accordion-wrapper > div {
  flex: 50%;
}

.flex-row {
  flex-direction: row;
}

/* Animations */
.gravity {
  animation: gravity 2s infinite linear alternate;
}

.gravity-reverse {
  animation: gravity 2s infinite linear alternate-reverse;
}

.disco {
  animation: disco 3s infinite linear alternate;
}

.slide-left {
  animation: slide_left 1s;
}

.slide-right {
  animation: slide_right 1s;
}

.scroll-animation {
  visibility: hidden;
}

@keyframes gravity {
  from {
    transform: translateY(-10px);
  }

  to {
    transform: translateY(10px);
  }
}

@keyframes disco {
  from {
    filter: hue-rotate(0deg);
  }

  to {
    filter: hue-rotate(360deg);
  }
}

@keyframes slide_left {
  from {
    transform: translateX(-500px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slide_right {
  from {
    transform: translateX(500px);
  }

  to {
    transform: translateX(0);
  }
}

/* Common section and card styles */
section {
  margin: 150px 0;
}

section h2 {
  font-size: 50px;
  margin-bottom: 0px;
}

section p,
section h2 {
  text-align: center;
}

section .content-wrapper {
  display: flex;
  margin: 50px;
  justify-content: center;
  align-items: inherit;
  flex-wrap: wrap;
  word-wrap: break-word;
}

section.youtube-content .content-wrapper {
  flex-wrap: unset;
}

section .content-wrapper > div {
  flex: 50%;
}

section .content-wrapper .media {
  padding: 20px;
}

.card {
  padding: 50px 20px 20px 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.5);
  margin: 30px 20px;
  width: 250px;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  transition: 0.5s;
}

.card:hover .step {
  transform: translate(-50%, -75%);
}

.card:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 255, 0.5);
}

.card .step {
  font-size: 40px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  color: #fff;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.card .step::before {
  content: "";
  width: 45px;
  height: 45px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(#3353f0, #07e3fa);
  z-index: -1;
}

.card .step::after {
  content: "";
  width: 60px;
  height: 60px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(#07e3fa, #3353f0);
  z-index: -2;
}

.card .icon {
  font-size: 30px;
  width: 70px;
  line-height: 60px;
  text-align: center;
  height: 70px;
  color: #fff;
  margin: 10px auto;
  border: 5px solid #fff;
  outline: 5px solid var(--color-blue);
  background: linear-gradient(90deg, var(--color-blue), var(--color-sky-blue));
  border-radius: 50%;
  transition: 0.1s;
}

.icon-card {
  padding-top: 20px;
}

.card:hover .icon {
  border: 0px solid #fff;
  outline: 0px solid var(--color-blue);
  width: 75px;
  line-height: 70px;
  height: 75px;
  font-size: 35px;
}

.icon-card .content {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

.icon-card:hover {
  transform: translateY(-10px);
}

@media screen and (max-width: 920px) {
  section h2,
  h3 {
    font-size: 40px;
    margin-bottom: 0px;
  }
  /* to make card center position in mobile device  */
  section .content-wrapper {
    align-items: center;
  }
  section .content-wrapper.flex-column-reverse {
    flex-direction: column-reverse !important;
  }
}

.change-bullet ul {
  list-style-type: none;
}

.change-bullet ul p {
  margin: 0;
  margin-left: 10px;
  text-align: left;
}

.change-bullet ul li i {
  color: #01133f;
  font-size: 23px;
}

.change-bullet ul li {
  display: flex;
  align-items: start;
  margin: 20px 0;
}


input[type="radio"] {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  border: 2px solid #555;
  border-radius: 50%;
}

input[type="radio"]::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  left: 50%;
  top: 50%;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: var(--color-sky-blue);
}

input[type="radio"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

input[type="radio"]:checked {
  border: 2px solid var(--color-sky-blue);
}


.red {
  color: red;
}
.hint {
  font-size: 15px;
}
label {
  cursor: pointer;
}
h3 {
  margin-top: 0;
}
.content > div {
  color: var(--color-sky-blue);
}
.content-wrapper {
  align-items: center;
}