/* Fonts */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTedw.ttf) format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1s.ttf) format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1s.ttf) format('truetype');
}

@font-face {
  font-family: 'Cormorant';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/cormorant/v11/H4clBXOCl9bbnla_nHIa6A.ttf) format('truetype');
}

body {
  font-family: 'Poppins', sans-serif;
  color: #000 !important;
  box-sizing: content-box;
}

/* Setting box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove inside paddings*/
ul[class],
ol[class] {
  padding: 0;
}

/* Remove outside margins */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Default body values */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Style the ul and ol that are in a class*/
ul[class],
ol[class] {
  list-style: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

/* Links not in a class default value */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Making the work with images easier */
img {
  max-width: 100%;
  display: block;
}

/* Adding a marin-top to the articles */
article>*+* {
  margin-top: 1em;
}

/* Inherit the inputs font*/
input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
}

/* Removes the animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Banner */
.banner-container {
  position: relative;
}

.banner-container .sp-container {
  margin: auto;
  position: absolute;
  left: 0;
  bottom: 22px;
  right: 0;
}

@media screen and (max-width: 640px) {
  .banner-container .sp-container {
    display: none;
  }
}

.banner-container .sp-container .anchor-header img {
  margin: 0 auto;
}

.banner-container .banner-img {
  background: url('../images/banner.png') no-repeat;
  background-position: 50% 50%;
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 255px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .banner-container .banner-img {
    height: 220px;
  }
}

.banner-container .banner-img .banner-text {
  position: absolute;
  top: calc(50% - 48px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 28px;
  line-height: 41px;
  text-align: center;
  color: #FFFFFF;
  width: 700px;
}

@media screen and (max-width: 940px) {
  .banner-container .banner-img .banner-text {
    font-size: 20px;
    line-height: normal;
    width: 320px;
  }
}

.banner-container .banner-img .banner-text .banner-info {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #FFFFFF;
  padding-top: 65px;
  padding-bottom: 20px;
}

.banner-container .banner-img .banner-text .banner-sub-info {
  font-weight: bold;
  font-size: 14px;
  line-height: 15px;
  color: #FFFFFF;
  width: 320px;
  text-align: center;
  margin: 0 auto;
}

/* Anchors style */
.anchor-rel-blck {
  position: relative;
  padding: 21px 0 0px 0;
}

.anchor-rel-blck .anchor-wrap {
  position: absolute;
  left: calc(50% - 48px);
  width: 91px;
  top: -104px;
  height: 91px;
  border: solid 1px rgba(255, 255, 255, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 rgb(255 255 12.75%);
}

.anchor-rel-blck .anchor-wrap .anchor {
  width: 55px;
  height: 55px;
  border: solid 1px rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  animation: pulse 2s infinite;
  transition: all 0.3s ease-in;
  background: url('../images/mouse.png') no-repeat center;
}

.anchor-wrap.back-top .anchor {
  width: 55px;
  height: 55px;
  border: solid 1px rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  animation: pulse 2s infinite;
  transition: all 0.3s ease-in;
  background: url('../images/arrow.png') no-repeat center;
}

.anchor-rel-blck .anchor-wrap .anchor:hover,
.anchor-wrap.back-top .anchor:hover {
  border-color: #15b2e4;
  transition: all 0.3s ease-in;
}

.anchor-rel-blck .overlay {
  display: block;
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: absolute;
  top: -45px;
}

.anchor-rel-blck .overlay::before {
  content: '';
  position: absolute;
  border-radius: 100%;
  height: 113px;
  width: 108px;
  left: calc(50% - 56.5px);
  box-shadow: 0px 0px 0px 10000px #fff;
  top: -76px;
}

.anchor-wrap {
  position: absolute;
  left: calc(50% - 41px);
  top: 10px;
  width: 82px;
  height: 82px;
  border: solid 1px rgba(255, 255, 255, 0.1);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
  background: transparent;
}

.anchor-bg {
  width: 102px;
  height: 102px;
  position: absolute;
  left: calc(50% - 51px);
  background-color: #31383e;
  border-radius: 50px;
  top: -51px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.footer-relative {
  position: relative;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}