/* FONTS */
@font-face {
  font-family: "Roboto";
  src: url("assets/font/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/font/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/font/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Rockwell";
  src: url("assets/font/Rockwell-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Rockwell";
  src: url("assets/font/Rockwell-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/*      */
/* MAIN */
/*      */
:root {
  --primary-color: #006eab;
  --secondary-color: #e18800;
  --gray-color: #9d9d9c;
}

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

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  margin: 0;
  color: black;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 20px;
}

#overlay {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 999;
}

#overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
.title {
  font-family: "Rockwell", serif;
  font-weight: 400;
}

.has-xl-font-size {
  font-size: 60px !important;
}

.has-l-font-size {
  font-size: 40px !important;
}

.has-m-font-size {
  font-size: 26px !important;
}

#logo {
  max-width: 240px;
  margin-top: 20px;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

.cta-button {
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 6em 3em 3em 0;
  justify-content: center;
  align-items: center;
  padding: 0.5em 3em;
  font-weight: 500;
  text-decoration: none;
  /* transition: all 0.45s; */
  transition: background-color 0.45s ease, color 0.45s ease, border 0.45s ease, border-radius 0.45s ease;
  display: flex;
}

.cta-button:hover {
  background-color: #fff;
  outline-offset: 0px;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 0 3em 3em 6em;
  outline: 3px #fff;
}

.group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-block: 140px;
}

.bold {
  font-weight: bold;
}

.mask1 {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 1360 570" preserveAspectRatio="none" xml:space="preserve"><path fill="white" d="M0 352.625V60C0 26.863 26.863 0 60 0h320.905c32.165 0 58.241 26.076 58.241 58.241v4.27a6.009 6.009 0 1 0 12.017 0v-4.27C451.163 26.075 477.239 0 509.405 0H1300c33.14 0 60 26.863 60 60v450c0 33.137-26.86 60-60 60H706.037c-32.632 0-59.086-26.453-59.086-59.085v-3.417a7.01 7.01 0 0 0-7.01-7.01 7.01 7.01 0 0 0-7.01 7.01v3.417c0 32.632-26.454 59.085-59.086 59.085H61.508C27.538 570 0 542.462 0 508.492v-24.488c0-32.577 26.41-58.987 58.987-58.987H70.91a6.703 6.703 0 0 0 0-13.405H58.987C26.409 411.612 0 385.202 0 352.625Z" /></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 1360 570" preserveAspectRatio="none" xml:space="preserve"><path fill="white" d="M0 352.625V60C0 26.863 26.863 0 60 0h320.905c32.165 0 58.241 26.076 58.241 58.241v4.27a6.009 6.009 0 1 0 12.017 0v-4.27C451.163 26.075 477.239 0 509.405 0H1300c33.14 0 60 26.863 60 60v450c0 33.137-26.86 60-60 60H706.037c-32.632 0-59.086-26.453-59.086-59.085v-3.417a7.01 7.01 0 0 0-7.01-7.01 7.01 7.01 0 0 0-7.01 7.01v3.417c0 32.632-26.454 59.085-59.086 59.085H61.508C27.538 570 0 542.462 0 508.492v-24.488c0-32.577 26.41-58.987 58.987-58.987H70.91a6.703 6.703 0 0 0 0-13.405H58.987C26.409 411.612 0 385.202 0 352.625Z" /></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hero {
  background: url(assets/svg/bg1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  min-height: 530px;
  width: 100%;
  color: white;
  justify-content: center;
  align-items: center;

}

.yellow {
  color: #FDF450
}

.prel {
  position: relative;
  left: 145px;
  top: -20px;
}

.flex-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

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

.image-box img {
  width: 100%;
}

.t_content {

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.t_content h5 {
  font-weight: normal;
  margin: 0;
}

.t_content h2 {
  margin: 10px 0 20px;
  font-size: 28px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 18px;
  max-width: 480px;
}

.step img {
  width: 50px;
  height: 50px;
  margin-top: -10px;
}

.step .title {
  font-size: 23px;
  margin-bottom: 7px;
}