@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,700;9..40,800;9..40,900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans";
}

.container {
  max-width: 1400px;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in;
}
a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/*/ THEME STYLING /*/
.theme-wrapper {
  padding: 75px 0;
}

.theme-header {
  background-color: #0F335C;
  padding: 16px 0;
}
.theme-header__top {
  background-color: #1491C9;
  height: 20px;
}
.theme-header-language {
  display: flex;
  list-style-type: none;
  padding: 0;
  flex-direction: row-reverse;
}
.theme-header-language li a {
  color: #1491C9;
  border-bottom: 4px solid transparent;
  font-weight: 700;
  margin: 0 4px;
}
.theme-header-language li a.current_language {
  color: #ffffff;
  border-color: #1491C9;
}
.theme-header-language li a:hover {
  color: #ffffff;
}

.theme-hero {
  height: 500px;
}
.theme-hero-image {
  height: 100%;
}
.theme-hero-image img {
  height: 100%;
}

.theme-content {
  background-color: #F4FBFD;
  color: #053D81;
}
.theme-content-wrapper-title {
  margin-bottom: 32px;
  font-size: 46px;
}
.theme-content-wrapper-content {
  font-size: 20px;
}
.theme-content-image {
  position: relative;
  height: 100%;
  bottom: -150px;
}
.theme-content-image img {
  height: 100%;
}

.theme-collection-list-title {
  margin-bottom: 32px;
  color: #055CA1;
  font-size: 36px;
}
.theme-collection-list-card {
  cursor: pointer;
}
.theme-collection-list-card-image {
  background-color: #F4FBFD;
}
.theme-collection-list-card-wrapper {
  background-color: #1491C9;
  padding: 20px 48px;
}
.theme-collection-list-card-wrapper-title {
  color: #ffffff;
  font-weight: 500;
  font-size: 32px;
}
.theme-collection-list-card-wrapper-cat {
  color: #ffffff;
  font-weight: 400;
  font-size: 24px;
}
.theme-collection-list-modal {
  display: none;
}

.theme-modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(15, 51, 92, 0.6509803922);
  transition: 0.2s ease-in;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.theme-modal.modal-open {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.theme-modal .theme-collection-list-modal {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 100px;
  bottom: 100px;
  right: 100px;
  left: 100px;
  background-color: #ffffff;
  z-index: 150;
  border-bottom: 40px solid #1491C9;
  padding: 0 60px 0 0;
}
.theme-modal .theme-collection-list-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 200;
  border: 1px solid #000;
  color: #000;
  border-radius: 999px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-modal .theme-collection-list-modal-image {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #F4FBFD;
}
.theme-modal .theme-collection-list-modal-image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-modal .theme-collection-list-modal-wrapper {
  width: 55%;
}
.theme-modal .theme-collection-list-modal-wrapper-title {
  font-size: 46px;
  color: #053D81;
}
.theme-modal .theme-collection-list-modal-wrapper-cat {
  font-size: 24px;
  color: #1491C9;
  margin-bottom: 32px;
}
.theme-modal .theme-collection-list-modal-wrapper-content {
  font-size: 20px;
  color: #053D81;
  margin-bottom: 40px;
}
.theme-modal .theme-collection-list-modal-wrapper-list {
  -moz-columns: 2;
       columns: 2;
  font-size: 18px;
}
.theme-modal .theme-collection-list-modal-wrapper-list-item {
  display: flex;
}
.theme-modal .theme-collection-list-modal-wrapper-list-item span {
  width: 65%;
  display: block;
}
.theme-modal .theme-collection-list-modal-wrapper-list-item span:first-of-type {
  width: 35%;
  color: #055CA1;
  font-weight: 600;
}

.theme-traits-title {
  margin-bottom: 32px;
  font-size: 36px;
  color: #055CA1;
}
.theme-traits-wrapper {
  display: flex;
  justify-content: space-between;
}
.theme-traits-wrapper-card {
  background-color: #EFF8FC;
  width: 18%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-traits-wrapper-card-image {
  margin-bottom: 20px;
  max-width: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-traits-wrapper-card-wrapper-title {
  font-size: 20px;
  color: #055CA1;
  text-align: center;
}

.theme-features {
  position: relative;
}
.theme-features::after {
  content: "";
  background-color: #F4FBFD;
  position: absolute;
  top: 75px;
  right: 0;
  bottom: 75px;
  width: 50%;
  z-index: -1;
}
.theme-features-wrapper {
  background-color: #F4FBFD;
  padding: 60px;
}
.theme-features-wrapper-title {
  color: #053D81;
  font-size: 46px;
}
.theme-features-wrapper-subtitle {
  color: #1491C9;
  font-size: 24px;
}
.theme-features-wrapper-content {
  color: #055CA1;
  font-size: 20px;
}

.theme-footer {
  background-color: #0F335C;
  margin-top: 200px;
  position: relative;
}
.theme-footer-backtotop {
  position: absolute;
  top: 50%;
  right: 8%;
  background-color: #1491C9;
  color: #ffffff;
  border-radius: 999px;
  padding: 5px 11px;
}
.theme-footer-backtotop:hover {
  transform: translate(0, -5px);
  color: #ffffff;
}
.theme-footer::after {
  content: "";
  background-image: url("../img/jackfrost-footer-image.svg");
  background-repeat: no-repeat;
  position: absolute;
  height: 200px;
  top: -182px;
  left: 0;
  right: 0;
}
.theme-footer .header-logo-link {
  display: block;
  margin-bottom: 32px;
}
.theme-footer-title {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 24px;
}
.theme-footer-content {
  color: #ffffff;
  font-size: 20px;
}
.theme-footer-menu ul {
  list-style-type: none;
  padding: 0;
  font-size: 20px;
}
.theme-footer-menu ul li a {
  color: #ffffff;
}
.theme-footer-menu ul li a:hover {
  color: #1491C9;
}
.theme-footer__bottom {
  background-color: #1491C9;
  padding: 24px 0;
  color: #ffffff;
  font-size: 16px;
}
.theme-footer__bottom-left a {
  color: #ffffff;
}
.theme-footer__bottom-left a:hover {
  color: #0F335C;
}
.theme-footer__bottom-right a {
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .theme-modal .theme-collection-list-modal {
    top: 50px;
    bottom: 50px;
    right: 50px;
    left: 50px;
    padding: 0 30px 0 0;
  }
  .theme-modal .theme-collection-list-modal-wrapper-title {
    font-size: 36px;
  }
  .theme-modal .theme-collection-list-modal-wrapper-content {
    font-size: 18px;
  }
  .theme-modal .theme-collection-list-modal-wrapper-list {
    font-size: 16px;
  }
  .theme-footer-content {
    font-size: 18px;
  }
  .theme-footer-menu ul {
    font-size: 18px;
  }
  .theme-footer__bottom {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .theme-content-image {
    display: none;
  }
  .theme-modal .theme-collection-list-modal {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    flex-direction: column;
    overflow: scroll;
  }
  .theme-modal .theme-collection-list-modal-image {
    width: 100%;
    height: 50%;
  }
  .theme-modal .theme-collection-list-modal-image img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .theme-modal .theme-collection-list-modal-wrapper {
    width: 100%;
    padding: 0 15px 30px 15px;
  }
  .theme-traits-wrapper {
    flex-wrap: wrap;
  }
  .theme-traits-wrapper-card {
    width: 31%;
    margin: 8px 5px;
  }
  .theme-footer__bottom {
    font-size: 16px;
  }
}
@media screen and (max-width: 568px) {
  .theme-hero {
    height: 200px;
  }
  .theme-content-wrapper-title {
    font-size: 36px;
  }
  .theme-modal .theme-collection-list-modal-wrapper {
    padding: 30px 15px;
  }
  .theme-modal .theme-collection-list-modal-wrapper-list {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-traits-wrapper-card {
    width: 46%;
    padding: 16px 5px;
  }
  .theme-features {
    background-color: #F4FBFD;
  }
  .theme-features-wrapper {
    padding: 0;
  }
  .theme-features-wrapper-title {
    font-size: 36px;
  }
}/*# sourceMappingURL=style.css.map */