/*
Theme Name: LOGOPEDOS
Author: Radim Stolina
Author URI: http://www.radimstolina.net
*/

@-ms-viewport { width: device-width; }
@viewport { width: device-width; }
@-o-viewport { width: device-width; }
@-webkit-viewport { width: device-width; }

:root {
  --white: #fff;
  --black: #000;
  --main: #625b5a;
  --blue: #69c9ca;
  --gray: #8a8c8e;
  --beige: #faf7f2;
  --oxford-white: #e9eae5;
  --offwhite: #fffdf9;
  --line: #e7e7e7;
  --blob-1: #ffd7c7;
  --blob-2: #fff1b8;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
	height: 100%;
  
  margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
}
body {
  background-color: var(--beige);
  font-family: 'PP Neue Montreal Book', sans-serif;
  font-optical-sizing: auto;
  font-size: 17px;
  color: var(--main);
  letter-spacing: .6px;	
}
body.fixed {
  overflow: hidden;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  content: '';
  clear: both;
  height: 0;
}
a, a img, a:hover img, a:visited img {
	outline: none;
	border: none;
}
a img {
	-moz-transform: translate(0,0) scale(1.0);
}

/* Transitions */
a {
	-webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-weight: normal;
  line-height: 120%;  
}
h1 {
  font-size: 60px;
  margin-top: 0;
  margin-bottom: 0;
}
h2 {
  font-size: 48px;
  margin-top: 0;
}
h3 {
  font-size: 36px;
  margin-top: 0;
}
h4 {
  font-size: 30px;
}
h5 {
  font-size: 18px;
}
h1 span, h2 span, h3 span, h4 span {
  font-family: 'Playfair Display', serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: italic;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
strong {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-weight: normal;
}
p {
  line-height: 150%;
}
p a {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  color: var(--blue);
  border-bottom: 2px transparent solid;
}
p a:hover {
  border-color: var(--blue);
}

/* Layout */
header, section, footer {
  width: 100%;
}
.wrapper {
  margin-left: 6vw;
  margin-right: 6vw;
  padding-top: 100px;
  padding-bottom: 100px;
}
.white {
  background-color: var(--white);
}
.beige {
  background-color: var(--beige);
}
.offwhite {
  background-color: var(--offwhite);
}
.rounded {
  -webkit-border-bottom-left-radius: 50px;
  -webkit-border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.sticked {
  position: sticky;
  bottom: 0;
  z-index: -1;
}
.centered [class*="col-"] {
  text-align: center !important;
  -moz-text-align-last: center !important;
  text-align-last: center !important;
}
.modular {
  margin-left: -4.16666666%;
  margin-right: -4.16666666%;
  margin-top: -25px;
  margin-bottom: -25px; 
}
.modular [class*="col-"] {
  padding-left: 4.16666666%;
  padding-right: 4.16666666%;
  padding-top: 25px;
  padding-bottom: 25px;
}
.card {
  margin-top: -50px;
  margin-bottom: -50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.card .grid {
  background-color: var(--oxford-white);
  padding: 20px;
  -webkit-border-radius: 45px;
  border-radius: 45px;
  overflow: hidden;  
}
.card .text {
  padding: 30px 80px;
}
.stamp {
  background-color: var(--blue);
  width: 128px;
  height: 128px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  -webkit-border-radius: 64px;
  border-radius: 64px;
}
.flex-img{
  -webkit-border-radius: 25px;
  border-radius: 25px;  
}
.btn {
  background-color: var(--blue);
  width: max-content;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 35px;
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 50px;
  overflow: hidden;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; 
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(105,201,202,.4);
}

/* Header */
header {
  border-bottom: 1px rgba(255,255,255,.2) solid;
  position: fixed;
  z-index: 1;
  -webkit-transition: background-color .5s ease, transform .5s ease;
  transition: background-color .5s ease, transform .5s ease;
}
header.sticky {
  background-color: var(--white);
}
header.is-hidden {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
header .wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
header .logo {
  justify-self: start;
  display: inline-block;
  position: relative;
  z-index: 2;
}
header .logo svg {
  width: auto;
  height: 36px;
  display: block;
}
header .btn {
  justify-self: end;
  margin-top: 0;
  position: relative;
  z-index: 2;
}
nav {
  justify-self: center;
}
nav ul {
  display: flex;
}
nav ul li {
  margin-left: 20px;
  margin-right: 20px;
}
nav ul li a {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
nav ul li a:hover {
  color: var(--blue);
}
header.sticky nav ul li a,
header.default nav ul li a {
  color: var(--main);
}
header.sticky nav ul li a:hover, header.sticky nav ul li a.active,
header.default nav ul li a:hover, header.default nav ul li a.active {
  color: var(--blue);
}
path.gray, path.blue {
  fill: var(--white);
  -webkit-transition: fill .5s ease;
  transition: fill .5s ease;
}
header.sticky path.gray, header.positive path.gray {
  fill: var(--gray);
}
header.sticky path.blue, header.positive path.blue {
  fill: var(--blue);
}

/* Navicon */
#navicon {
  width: 26px;
  height: 28px;
  position: absolute;
  left: 190px;
  top: 29px;
  cursor: pointer;
  display: none;
  z-index: 2;
}
#navicon:before, #navicon:after, #navicon div {
  background-color: var(--white);
  content: '';
  display: block;
  height: 3px;
  margin: 5px 0;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
#navicon.act:before {
  -webkit-transform: translateY(8px) rotate(135deg);
  -moz-transform: translateY(8px) rotate(135deg);
  transform: translateY(8px) rotate(135deg);
}
#navicon.act:after {
  width: 26px;
  -webkit-transform: translateY(-8px) rotate(-135deg);
  -moz-transform: translateY(-8px) rotate(-135deg);
  transform: translateY(-8px) rotate(-135deg);
}
#navicon.act div {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
#navicon div {
  width: 26px;
}
header.sticky #navicon:before, header.sticky #navicon:after, header.sticky #navicon div, header.positive #navicon:before, header.positive #navicon:after, header.positive #navicon div {
  background-color: var(--main);
}

/* Hero + Banner */
#hero, #banner {
  background-color: var(--beige) !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  height: 100svh;
  color: var(--white);
}
@media (hover: none) and (pointer: coarse) {
  #hero, #banner {
    background-attachment: scroll !important;
  }
}
#hero .wrapper, #banner .wrapper {
  height: 100%;
  display: flex;
  align-items: end;
  padding-top: 90px;
  padding-bottom: 90px;
}
#hero .wrapper .grid, #banner .wrapper .grid {
  width: 100%;
}
#hero p, #banner p {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 20px;
}
#banner {
  height: 66.666666svh;
}
#banner .grid [class*="col-"] {
  text-align: center !important;
  -moz-text-align-last: center !important;
  text-align-last: center !important;
}
.scrolldown {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  color: var(--white);
}
.scrolldown:hover {
  color: var(--blue);
}
.scrolldown span {
  background-color: var(--blue);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  font-size: 20px;
  color: var(--white);
  -webkit-border-radius: 25px;
  border-radius: 25px;
}
.scrolldown span i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 60% 55%;
  transform-origin: 60% 55%;
}

/* Welcome */
.container-scroll {
  height: 350vh;
  position: relative;
}
.section-sticky {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;  
  overflow: hidden;
}
.content {
  width: 100%;
  max-width: 480px;
  text-align: center;
  position: absolute;
  z-index: 7;
}
.content .btn {
  margin-left: auto;
  margin-right: auto;
}
.visual {
  width: 100%;
  height: 100vh;
  position: relative;
}
.layer {
  position: absolute;
  overflow: hidden;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  box-shadow:
    0 30px 70px rgba(0,0,0,.14);
  will-change: transform;
}
.layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.layer-1 {
  width: 380px;
  height: 520px;
  bottom: 21%;
  right: 8%;
  z-index: 4;
}
.layer-2 {
  width: 280px;
  height: 320px;
  bottom: 1%;
  right: -2%;
  z-index: 2;
}
.layer-3 {
  width: 280px;
  height: 350px;
  left: 8%;
  bottom: 49%;
  z-index: 1;
}
.layer-4 {
  width: 340px;
  height: 340px;
  left: -2%;
  bottom: -3%;  
  z-index: 5;
}
.layer-5 {
  width: 460px;
  height: 320px;
  left: 13%;
  bottom: 19%;  
  z-index: 3;
}
.layer-6 {
  width: 300px;
  height: 400px;
  right: 21%;
  bottom: -7%;
  z-index: 6;
}
.blob {
  position: absolute;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.blob-1 {
  background-color: var(--blob-1);
  width: 280px;
  height: 280px;
  right: 10%;
  top: 35%;
}
.blob-2 {
  background-color: var(--blob-2);
  width: 240px;
  height: 240px;
  left: 15%;
  top: 40%;
}
.partners {
  margin-top: 75px;
  margin-bottom: -25px;
}
.partners [class*="col-"] {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 4.16666666%;
  padding-right: 4.16666666%;
}
.partners img {
  max-width: 100%;
  max-height: 48px;
  display: block;
}
#welcome .partners {
  margin-top: -100px;
}

/* Reveals */
#about {
  background: url(images/about-bg.jpg);
}
#education {
  background: url(images/education-bg.jpg);
}
.reveal {
  background-color: var(--oxford-white) !important;
  background-size: cover !important;
  background-position: center 5% !important;
  background-repeat: no-repeat !important;
}
.reveal .wrapper {
  padding-top: 150px;
  padding-bottom: 150px;
}

/* Content */
section ul, .popup ul {
  overflow: visible;
}
section ul li, .popup ul li {
  display: flex;
  line-height: 150%;
  margin-top: 11px;
  margin-bottom: 11px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 50px;
  position: relative;
  overflow: hidden;  
}
section ul li:before, .popup ul li:before {
  content: '';
  background: url(images/plus.svg) center center no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
}
iframe {
  width: 100%;
  height: 50vh;
  border: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}
table th, table td {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  vertical-align: top;
  line-height: 24px;
  padding: 10px 15px;
  text-align: left;
  border: 2px var(--beige) solid;
}
table th {
  font-weight: normal;
}
table td {
  min-width: 33.333333%;
}
.member {
  display: flex;
  justify-content: space-between;
}
.meta {
  padding-right: 10px;  
}
.meta h4 {
  margin-top: 25px; 
  margin-bottom: -10px; 
}
.more {
  display: inline-block;
  margin-top: 25px;
}
.more img {
  width: 50px;
  height: auto;
  display: block;
  -webkit-transition: transform .5s ease;
  transition: transform .5s ease;
}
.more:hover img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.date {
  background-color: var(--blue);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 17px;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  -webkit-border-radius: 25px;
  border-radius: 25px;
}
.date span {
  margin-top: -5px;
}

/* Popup */
.popup {
  background: var(--beige);
  width: auto;
  max-width: 992px;
  margin: 20px auto;
  padding: 50px;
  position: relative;
  -webkit-border-radius: 25px;
  border-radius: 25px;
}

/* Magnific Popup */
.mfp-close {
  position: fixed;
  font-size: 0;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;  
}
.mfp-close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);  
}
.mfp-close:after {
  content: '\f00d';
  font-family: 'Font Awesome 5 Pro';
  font-size: 30px;
  font-weight: 300;  
}

/* Gallery */
#gallery .wrapper {
  margin-left: 15vw;
  margin-right: 15vw;
}
.gallery {
  margin-left: -30px;
  margin-right: -30px; 
}
.gallery [class*="col-"] {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.gallery [class*="col-"]:nth-child(even) img {
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
}
.gallery [class*="col-"]:nth-child(odd) img {
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}

/* Footer */
footer {
  background-color: var(--white);
  font-size: 14px;
  color: var(--gray);
}
footer .wrapper {
  padding-top: 0;
  padding-bottom: 75px;
}
footer .grid [class*="col-"] {
  padding: 50px;
}
footer .grid [class*="col-"]:nth-child(2) {
  border-left: 1px var(--line) solid;
}
footer h3, footer h5 {
  font-family: 'PP Neue Montreal Book', sans-serif;
  color: var(--black);
}
footer h3 {
  margin-top: 15px;
}
footer ul li {
  line-height: 36px;
}
footer ul li a {
  font-size: 16px;
  color: var(--gray);
}
footer ul li a:hover {
  color: var(--black);
}
.copyright {
  border-top: 1px var(--line) solid;
  text-align: center;
}
.copyright .logo {
  display: inline-block;
  margin: 50px auto;
}
.copyright .logo img {
  width: auto;
  height: 40px;
  display: block;
}
.copyright span {
  display: block;
}
.copyright span a {
  color: var(--black);
}


/* Responsive styles */
@media only screen and (max-width: 1599px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 24px;
  }  
  nav ul li {
    margin-left: 14px;
    margin-right: 14px;
  }
  #hero .wrapper {
    padding-top: calc(90px / 4 * 3);
    padding-bottom: calc(90px / 4 * 3);
  }
  #hero h1 {
    font-size: 48px;
  }
  .layer-1 {
    width: calc(380px / 4 * 3);
    height: calc(520px / 4 * 3);
  }
  .layer-2 {
    width: calc(280px / 4 * 3);
    height: calc(320px / 4 * 3);
  }
  .layer-3 {
    width: calc(280px / 4 * 3);
    height: calc(350px / 4 * 3);
  }
  .layer-4 {
    width: calc(340px / 4 * 3);
    height: calc(340px / 4 * 3);
  }
  .layer-5 {
    width: calc(460px / 4 * 3);
    height: calc(320px / 4 * 3);
  }
  .layer-6 {
    width: calc(300px / 4 * 3);
    height: calc(400px / 4 * 3);
  }
}
@media only screen and (max-width: 1199px) {
  header .wrapper {
    display: block;
    position: relative;
  }
  header .btn {
    position: absolute;
    right: 0;
    top: 18px;
  }
  header nav {
    background-color: var(--white);
    width: 100%;
    height: 100%;
    padding: 0 12vw;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    -webkit-transition: top .5s ease-in-out;
    -moz-transition: top .5s ease-in-out;
    transition: top .5s ease-in-out;
  }
  header nav.mobile {
    top: 0;
  }
  header nav ul {
    display: block;
    opacity: 0;
  }
  header nav ul li {
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
  }
  header nav ul li a {
    font-family: 'Playfair Display', serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: italic;
    font-size: 30px;
    color: var(--main);
    text-transform: lowercase;
    letter-spacing: initial;
  }  
  #navicon {
    display: block;
  }  
  #hero .wrapper {
    padding-top: calc(90px / 3 * 2);
    padding-bottom: calc(90px / 3 * 2);
  }
  .layer-1 {
    width: calc(380px / 3 * 2);
    height: calc(520px / 3 * 2);
  }
  .layer-2 {
    width: calc(280px / 3 * 2);
    height: calc(320px / 3 * 2);
  }
  .layer-3 {
    width: calc(280px / 3 * 2);
    height: calc(350px / 3 * 2);
  }
  .layer-4 {
    width: calc(340px / 3 * 2);
    height: calc(340px / 3 * 2);
  }
  .layer-5 {
    width: calc(460px / 3 * 2);
    height: calc(320px / 3 * 2);
  }
  .layer-6 {
    width: calc(300px / 3 * 2);
    height: calc(400px / 3 * 2);
  }
  .card .text {
    padding: 30px 55px;
  }
  table td {
    min-width: 42%;
  }
  .popup {
    margin: 20px;
  }  
}
@media only screen and (max-width: 991px) {
  #hero h1 {
    font-size: 36px;
  }
  .layer-1 {
    width: calc(380px / 2);
    height: calc(520px / 2);
  }
  .layer-2 {
    width: calc(280px / 2);
    height: calc(320px / 2);
  }
  .layer-3 {
    width: calc(280px / 2);
    height: calc(350px / 2);
  }
  .layer-4 {
    width: calc(340px / 2);
    height: calc(340px / 2);
  }
  .layer-5 {
    width: calc(460px / 2);
    height: calc(320px / 2);
  }
  .layer-6 {
    width: calc(300px / 2);
    height: calc(400px / 2);
  }
  .card .text {
    padding: 37px 25px 30px;
  }
  footer .wrapper {
    padding-top: 50px;
  }
  footer .grid [class*="col-"] {
    padding: 0;
  }
  footer .grid [class*="col-"]:nth-child(1) {
    text-align: center !important;
    -moz-text-align-last: center !important;
    text-align-last: center !important;
  }
  footer .grid [class*="col-"]:nth-child(2) {
    border-left: none;
  }
  .copyright{
    margin-top: 50px;
  }  
}
@media only screen and (max-width: 767px) {
  .wrapper {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .layer-1 {
    right: calc(8% - 10vw);
  }
  .layer-2 {
    right: calc(-2% - 10vw);
  }
  .layer-3 {
    left: calc(8% - 10vw);
  }
  .layer-4 {
    left: calc(-2% - 10vw);
  }
  .layer-5 {
    left: calc(13% - 10vw);
  }
  .layer-6 {
    right: calc(21% - 10vw);
  }
  .reveal {
    background-position: 25% 0 !important;
  }
  table td {
    min-width: 33.333333%;
  }  
}
@media only screen and (max-width: 575px) {
  .btn {
    padding: 0 30px; 
  }
  .layer-1 {
    right: calc(8% - 20vw);
  }
  .layer-2 {
    right: calc(-2% - 20vw);
  }
  .layer-3 {
    left: calc(8% - 20vw);
  }
  .layer-4 {
    left: calc(-2% - 20vw);
  }
  .layer-5 {
    left: calc(13% - 20vw);
  }
  .layer-6 {
    right: calc(21% - 20vw);
  }
  footer .grid [class*="col-"] {
    text-align: center !important;
    -moz-text-align-last: center !important;
    text-align-last: center !important;
  }  
}
@media only screen and (max-width: 479px) {
  .brand {
    display: none;
  }
  #navicon {
    left: 80px;
  }
  .layer-1 {
    right: calc(8% - 30vw);
  }
  .layer-2 {
    right: calc(-2% - 30vw);
  }
  .layer-3 {
    left: calc(8% - 30vw);
  }
  .layer-4 {
    left: calc(-2% - 30vw);
  }
  .layer-5 {
    left: calc(13% - 30vw);
  }
  .layer-6 {
    right: calc(21% - 30vw);
  }  
}