@font-face {
  font-display: swap;
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 500;
  src: url('../assets/LibreFranklin-Regular.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Libre Franklin';
  font-style: italic;
  font-weight: 500;
  src: url('../assets/LibreFranklin-Italic.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/LibreFranklin-Bold.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Libre Franklin';
  font-style: italic;
  font-weight: 700;
  src: url('../assets/LibreFranklin-BoldItalic.ttf') format('truetype');
}

/* PT Serif */
@font-face {
  font-display: swap;
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 500;
  src: url('../assets/PTSerif-Regular.ttf' ) format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 500;
  src: url('../assets/PTSerif-Italic.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/PTSerif-Bold.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 700;
  src: url('../assets/PTSerif-BoldItalic.ttf') format('truetype');
}

body {
  margin: 0;
}

.landing-page {
  display: flex;
  min-height: -webkit-fill-available;
  min-height: 100vh;
}

.page-dimensions {
  min-height: 740px;
  vertical-align: top;
}

.left-side {
  background: #2f3e8b;
  width: 40%;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-flow: column;
}

.right-side {
  width: 59%;
  display: inline-block;
  position: relative;
}

.logo-container {
  width: 100%;
  text-align: center;
  margin-top: 80px;
}

.logo-container span{
  position: absolute;
  top: -1000px;
}

.description-container {
  margin: auto 0;
  padding: 0 68px;
  text-align: center;
}

.description-text {
  font-family: Libre Franklin;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

.social-container {
  text-align: center;
  width: 100%;
  bottom: 80px;
  margin-bottom: 80px;
}

.social-text {
  font-family: PT Serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  opacity: 0.5;
  margin-bottom: 16px;
}

.social-link {
  margin-left: 20px;
  margin-right: 20px;
}

.location-container {
  margin: 80px 40px 0 117px;
}

.title-container {
  margin-bottom: 80px;
}

.title-text {
  font-family: PT Serif;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 120%;
  color: #0A1D35;
  margin: 0;
}

.continent-row {
  position: relative;
  border-bottom: 1px solid rgba(16, 20, 25, 0.1);
}

.continent-row:first-of-type {
  border-top: 1px solid rgba(16, 20, 25, 0.1);
}

.continent-name {
  font-family: PT Serif;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 120%;
  color: #0A1D35;
  margin: 0;
  padding: 16px 0;
  position: relative;
  cursor: pointer;
}

.active .continent-name {
  color: #2D5593;
}

.content-countries {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.content-countries-list {
  margin-top: 16px;
  padding: 0;
  margin-bottom: 24px;
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}

.active .content-countries {
  max-height: 715px;
  overflow: hidden;
}

.accordion-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.minus-img {
  display: none;
}

.active .minus-img {
  display: inherit;
}

.active .plus-img {
  display: none;
}

.country-name {
  list-style-type: none;
}

.store-link {
  display: inline-block;
  text-decoration: unset;
  color: #0A1D35;
  font-family: Libre Franklin;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.02em;
  padding: 5px 0;
}

@media only screen and (min-width: 641px) and (max-width: 1007px) {
  .content-countries-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}

@media only screen and (max-width: 640px) {

  .landing-page {
    display: block;
  }

  .left-side {
    width: 100%;
    flex-grow: unset;
  }

  .right-side {
    width: 100%;
  }

  .page-dimensions {
    min-height: unset;
    height: auto;
  }

  .description-container {
    display: none;
  }

  .social-container {
    display: none;
  }

  .logo-container {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .logo-img {
    width: 103px;
    height: 126px;
  }

  .location-container {
    margin: 16px 0 0;
  }

  .title-container {
    margin-bottom: 16px;
  }

  .title-text {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    padding: 0 16px;
  }

  .continent-name {
    padding: 14px 16px;
    font-size: 16px;
    line-height: 21px;
  }

  .accordion-img {
    right: 16px;
  }

  .store-link {
    font-size: 14px;
    line-height: 120%;
    padding: 10px 0 10px 16px;
  }

  .content-countries-list {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

.hidden-title{
  opacity: 0;
  position: absolute;
}