@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

:root {
  --primary-color: #42A5F5;
  --text-color: #4B535E;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#app {
  font-family: 'Roboto', sans-serif;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  overflow: hidden;
}

.header {
  margin-top: 16px;
}

.present-slide {
  max-width: 1100px;
  width: 100%;
  height: 630px;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .present-slide {
    height: 670px;
  }
}

.present-slide__image {
  margin-left: -16rem;
  position: absolute;
  right: calc(-64px + (0 - -64) * ((100vw - 300px) / (1600 - 300)));
  bottom: calc(-98px + (0 - -98) * ((100vw - 300px) / (1600 - 300)));
  width: 70vw;
  min-width: 500px;
  max-width: 700px;
  z-index: -1;
}

.present-slide__desc {
  color: var(--primary-color);
  max-width: 283px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.25px;
}

.present-slide__heading {
  color: var(--primary-color);
  font-size: calc(32px + (56 - 32) * ((100vw - 300px) / (1600 - 300)));
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 663px;
}

.carousel-slide {
  background-image: url(/images/bg.png);
  background-size: cover;
  background-position: top;
  position: relative;
  max-height: 760px;
  border-radius: 8px;
  padding-top: 80px;
  padding-left: calc(16px + (48 - 16) * ((100vw - 300px) / (1600 - 300)));
  padding-right: calc(16px + (48 - 16) * ((100vw - 300px) / (1600 - 300)));
  margin-bottom: 32px;
  margin-top: -64px;
  overflow: hidden;
  min-height: 700px;
  height: calc(780px + (600 - 780) * ((100vw - 300px) / (1600 - 300))) !important;
}
@media screen and (max-width: 360px) {
  .carousel-slide {
    margin-left: -32px;
    margin-right: -32px;
  }
}

.carousel-slide__heading {
  color: #fff;
  max-width: 530px;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 32px;
  margin-top: 0;
}
.carousel-slide__desc {
  color: #fff;
  max-width: 530px;
  line-height: 24px;
  margin-bottom: 32px;
}

.carousel__images {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.carousel__images img {
  margin-left: -24px;
}

.dots {
  display: flex;
}

.dots__dot {
  background-color: #ffffff;
  height: 8px;
  width: 8px;
  border-radius: 8px;
  opacity: .5;
}

.dots__dot:not(:last-of-type) {
  margin-right: 10px;
}

.dots__dot--active {
  opacity: 1;
}
