@font-face {
  font-family: "SamsungSharpSans";
  src: url("../fonts/SamsungSharpSans-Regular.ttf");
}
@font-face {
  font-family: "SamsungSharpSans-Bold";
  src: url("../fonts/SamsungSharpSans-Bold.ttf");
}
@font-face {
  font-family: "SamsungOne";
  src: url("../fonts/SamsungOne-400.ttf");
}
@font-face {
  font-family: "SamsungOne-Bold";
  src: url("../fonts/SamsungOne-700.ttf");
}
body {
  font-family: "SamsungSharpSans";
}

h1, h2, h3 {
  font-family: "SamsungSharpSans-Bold";
  font-weight: normal;
}

.cta {
  background: #2138e3;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 24px;
  line-height: 16px;
  letter-spacing: 1px;
  min-height: 48px;
  min-width: 148px;
  text-align: center;
  border-radius: 40px;
  border-width: 2px;
  font-family: "SamsungOne-Bold";
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  font-size: 1.15em;
}
.cta:hover {
  background: #192baf;
}

#cookie-consent {
  display: none;
  font-family: "SamsungOne";
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 24px;
  text-align: start;
  font-size: 16px;
  min-height: 120px;
  background-color: #363636;
  color: white;
  box-shadow: 0 6px 6px 2px;
}
#cookie-consent .description {
  font-size: 14px;
  line-height: 18px;
}
#cookie-consent .link-btn {
  display: inline-block;
  min-width: 148px;
  max-width: 100%;
  min-height: 40px;
  padding: 8px 24px;
  border-radius: 40px;
  text-align: center;
  border-width: 2px;
  border-style: solid;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  background-color: #fff;
  border-color: #000;
  border-width: 1px;
  line-height: 22px;
  color: #000;
  font-family: "SamsungOne-Bold";
}
#cookie-consent a {
  text-decoration: none;
  color: #2189ff;
}
#cookie-consent .font-weight-bold {
  font-family: "SamsungOne-Bold";
}

header {
  padding: 20px 0;
}
header p {
  font-family: "SamsungSharpSans-Bold";
  font-size: 1.5em;
  margin: 0;
  transform: translateY(2px);
}

.container {
  max-width: 1440px;
  padding: 0;
}

.banner {
  background: #2138E3;
  color: #ffffff;
  display: flex;
  justify-content: space-around;
  height: 400px;
  overflow: hidden;
}
.banner .text {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 120px 50px 50px;
}
.banner .text h1 {
  font-size: 3.5em;
}
.banner .text p {
  font-size: 2em;
}
.banner .banner-image {
  border-radius: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
  transform: scale(1.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner img {
  object-fit: cover;
  object-position: center center;
  height: 80%;
  width: 100%;
}

.main-content {
  margin: 80px;
  text-align: center;
}
.main-content h2 {
  font-size: 35px;
  margin-bottom: 20px;
}
.main-content p {
  font-size: 25px;
  margin-bottom: 20px;
}
.main-content b {
  font-family: "SamsungSharpSans-Bold";
  font-size: 30px;
}

.form {
  text-align: center;
}

footer {
  font-family: "SamsungOne";
  padding: 50px 0 0 0;
}
footer .copyright-box {
  padding: 0 35px 0;
  display: flex;
  align-items: center;
  font-size: 12px;
  border-bottom: 1px solid #DDD;
  border-top: 1px solid #DDD;
  height: 70px;
}
footer .copyright-box p {
  margin: 0;
}
footer #footer-others {
  padding: 0 25px 0;
  border-bottom: 1px solid #DDD;
  font-size: 12px;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  height: 70px;
}
footer #footer-others a {
  color: initial;
  text-decoration: none;
  text-transform: uppercase;
}
footer #footer-others a:hover {
  color: #1428A0;
}

.social-icon .social-icon--wrapper {
  margin: 20px 15px 0px;
  display: flex;
}

.stay-loop {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: "SamsungOne-Bold";
}

.social-media-icon-holder {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

.social-media-icons.linkedin {
  width: 24px;
  height: 24px;
}
.social-media-icons.youtube {
  width: 20px;
  height: 14px;
}
.social-media-icons.samsung {
  width: 11px;
  height: 18px;
}

@media (max-width: 1200px) {
  .banner {
    height: 280px;
  }
  .banner .text {
    flex: 0 0 70%;
    padding: 40px 80px 40px 40px;
  }
  .banner .text h1 {
    font-size: 2.3em;
  }
  .banner .text p {
    font-size: 1.5em;
  }
}
@media (max-width: 600px) {
  header {
    padding: 10px 20px;
  }
  header .navbar-brand svg {
    width: 100px;
  }
  header p {
    font-size: 1.2em;
  }
  .banner {
    height: 700px;
    flex-direction: column;
    justify-content: center;
  }
  .banner .text {
    flex: 0 0;
    padding: 40px 20px 120px 20px;
    justify-content: start;
  }
  .banner .text h1 {
    font-size: 2.5em;
  }
  .banner .text p {
    font-size: 1.4em;
  }
  .banner .banner-image {
    align-items: start;
  }
  .banner .banner-image img {
    height: 100%;
    width: auto;
  }
  .main-content {
    margin: 40px 20px;
  }
  .main-content p {
    font-size: 20px;
  }
  .form img {
    width: 100%;
  }
  footer .copyright-box {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer #footer-others {
    height: auto;
    padding: 0;
  }
  footer .agreements {
    padding: 20px 35px;
    border-bottom: 1px solid #DDD;
  }
  footer .agreements .row {
    justify-content: start;
  }
  footer .stay-in-the-loop-container {
    padding: 20px 35px;
  }
  footer .stay-in-the-loop-container .social-icon--wrapper {
    margin: 0;
  }
}

/*# sourceMappingURL=style.css.map */
