* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #272727;
  font-family: Outfit, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  background-color: #F6F6F7;
}

h1 {
  font-size: 1.7rem;
  color: #07293a;
}
@media (min-width: 800px) {
  h1 {
    font-size: 2.3rem;
  }
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.1rem;
}

a {
  color: #167aad;
  text-decoration: inherit;
  transition: all 0.3s;
}
a:hover {
  text-decoration-line: underline;
}

ul {
  margin: 0 1rem;
}
ul li {
  list-style: square;
  list-style-position: inside;
}

section {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 2rem auto;
}
@media (min-width: 800px) {
  section {
    padding: 0 4rem;
  }
}
@media (min-width: 1200px) {
  section {
    padding: 0 10rem;
  }
}
section:not(:first-of-type) h1 {
  position: relative;
  margin-bottom: 1rem;
}
section:not(:first-of-type) h1::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 0px;
  bottom: 0px;
  left: -10px;
  background-image: url("../../assets/polkadot-bg.png");
  background-repeat: no-repeat;
  background-size: 134px auto;
  opacity: 0.3;
  z-index: -1;
}
section:not(:first-of-type) > div {
  margin: 1rem 0;
}
section:not(:first-of-type) > div p {
  margin: 0.4rem 0;
}
section:not(:first-of-type) > div p.subtitle {
  margin: 0;
  font-size: 1.2rem;
  color: #4A4A4A;
  font-weight: 600;
  -webkit-text-decoration: double;
          text-decoration: double;
}
section:not(:first-of-type) > div b {
  color: #07293a;
}

.custom_button_hover {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid #4f4f4f;
  border-radius: 4px;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 19px;
  color: black;
  z-index: 1;
  text-decoration: none;
  cursor: pointer;
}
.custom_button_hover:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.custom_button_hover:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #167aad;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.custom_button_hover:hover {
  color: #ffffff;
  border: 1px solid #167aad;
}
.custom_button_hover:hover:before {
  top: -35%;
  background-color: #167aad;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.custom_button_hover:hover:after {
  top: -45%;
  background-color: #167aad;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.flex {
  display: flex;
}

.certification_img {
  max-height: 50px;
  margin: 10px;
}

header {
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  position: sticky;
  top: 0;
  height: 4rem;
  background: #fff;
  box-shadow: 0px -5px 10px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
@media (min-width: 800px) {
  header {
    padding: 0 4rem;
  }
}
@media (min-width: 1200px) {
  header {
    padding: 0 10rem;
  }
}

footer {
  padding-left: 1rem;
  padding-right: 1rem;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 800px) {
  footer {
    padding: 0 4rem;
  }
}
@media (min-width: 1200px) {
  footer {
    padding: 0 10rem;
  }
}
footer p {
  color: #07293a;
  font-weight: 700;
}
footer ul {
  display: flex;
}
footer li {
  list-style: none;
}
footer a {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  text-align: center;
  line-height: 2rem;
  font-size: 1rem;
  margin: 0 4px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
}
@media (min-width: 800px) {
  footer a {
    margin: 0 10px;
  }
}
footer ul li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
  transition: 0.5s;
}
footer ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
}
footer ul li a:hover:before {
  top: 0;
}
footer ul li:nth-child(1) a:before {
  background: #3b5999;
}
footer ul li:nth-child(2) a:before {
  background: #55acee;
}
footer ul li:nth-child(3) a:before {
  background: #0077b5;
}
footer ul li:nth-child(4) a:before {
  background: #161b22;
}

.banner {
  margin: 32px 0;
}
@media (min-width: 800px) {
  .banner {
    margin: 64px 0;
  }
}
.banner__title {
  margin: 12px 0;
}
.banner__intro {
  font-size: 1.2rem;
}
.banner__subtitle {
  color: #979595;
}

.contact {
  display: flex;
  flex-direction: column;
}
@media (min-width: 800px) {
  .contact {
    flex-direction: row;
  }
}
.contact > div {
  width: 100%;
}
@media (min-width: 800px) {
  .contact > div {
    width: 50%;
  }
}
.contact__item {
  display: flex;
  margin: 0.2rem;
}
.contact__item > p {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__item > p i {
  color: #07293a;
  padding: 0 0.6rem;
}
.contact__item__detail p {
  background: re;
  margin: 0 !important;
}
.contact__connect input,
.contact__connect textarea {
  height: 100%;
  width: 100%;
  border: 1px solid lightgray;
  border-radius: 6px;
  outline: none;
  padding: 0.5rem;
  font-size: 1rem;
  margin: 0.4rem 0;
}
@media (min-width: 800px) {
  .contact__connect input,
  .contact__connect textarea {
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */