@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Barlow&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



:root {
  --theme-color: #74a5e0;
  --title-color: rgba(13,27,62,0.7);
}




body {
  /* Created with https://www.css-gradient.com */
  background: #fafafa;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  scroll-behavior: smooth;
}

h1 {
  color: #555;
}

.lead {
  color: #888;
}


.navbar { background-color: #fff!important; padding: 5px 320px; }

.wrapper {
  margin: 10vh;
}

.instr { margin: 10vh 20vh; border-top: 2px dotted #d6d6d6; }


.card {
  border: none;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  border-radius: 20px;
  min-height: 600px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .navbar { padding: 5px; }
  .wrapper, .instr { margin: 10vh 1vh; }
  .card {
    min-height: 600px;
  }
}
@media (max-width: 420px) {
  .navbar { padding: 5px; }
  .wrapper, .instr { margin: 10vh 1vh; }
  .card {
    min-height: 600px;
  }
}
.card.card-has-bg {
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: center center;
}
.card.card-has-bg:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.card.card-has-bg:hover {
  transform: scale(0.98);
  box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
  background-size: 130%;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.card.card-has-bg:hover .card-img-overlay {
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  /*background: #ffba21;
  background: linear-gradient(0deg, rgba(255, 186, 33, 0.5) 0%, #ffba21 100%);*/
  background: #fff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, #fff 100%);
}
.card .card-footer {
  background: none;
  border-top: none;
}
.card .card-footer .media img {
  border: solid 3px rgba(255, 255, 255, 0.3);
}
.card .card-title {
  font-weight: 800;
}
.card .card-meta {
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
}
.card .card-body {
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.card:hover {
  cursor: pointer;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.card:hover .card-body {
  margin-top: 30px;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.card .card-img-overlay {
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  /*background: #ffba21;
  background: linear-gradient(0deg, rgba(255, 186, 33, 0.3785889356) 0%, #ffba21 100%);*/
  background: #74a5e0;
  background: linear-gradient(0deg, rgba(116, 165, 224, 0.3785889356) 0%, #74a5e0 100%);
}


/*.content-text { font-size: 0.9rem!important; }*/




#menuToggle
{
  display: block;
  position: fixed;
  top: 50px;
  left: 96px; /*50px to 96px*/
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a i { margin-right: 10px; }

#menuToggle a:hover
{
  color: #74a5e0;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; 
  z-index: 2; 
  
  -webkit-touch-callout: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #888; /*cdcdcd*/
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.span-after:after {
    content: 'Menu';
    position: absolute;
    bottom: -29px;
    left: 0px;
    width: 100%;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
}


#menuToggle input:checked ~ .span-after:after { content: ''; }


#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  /*max-width: 400px;*/
  max-width: 260px;
  width: 100vw;
  max-height: 100vh;
  
  height: 100vh;
  margin: -77px 0 0 -96px; /*50px to 90*/
  
  /*margin: -100px 0 0 -50px;*/
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 19px;
}

#menu li label
{
  cursor: pointer;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}



header { position: fixed; top: 0; background: transparent;  z-index: 10; width: 100%; height: 74px; box-shadow: none!important; }
.logo { position: fixed; left: 20px; top: 30px; z-index: 10; }
header.shadow { box-shadow: none!important; }



#btnBack { display: block; position: fixed; top: 50px; right: 50px; z-index: 1; cursor: pointer; }

.li-active, .li-sub { padding: 0 0 0 12px!important; font-size: 16px!important; }
 .li-sub:last-child { padding-bottom: 5px; }
.li-active a { color: var(--theme-color)!important; }
.li-sub a { color: #555!important; }
.li-active a i { margin-right: 0px!important; }
.li-active:before { content: '\2022'; color: var(--theme-color); margin-right: 10px; font-weight: bold; }
 .li-sub:before { content: '\2022'; margin-right: 10px; font-weight: bold; }

@media (max-width: 768px) {
  header { background: #fff!important; border-bottom: 1px solid rgb(227, 232, 244); }

header.shadow {
  -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3)!important;
  -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3)!important;
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3)!important;
  border-bottom: none;
}

  #menuToggle { top: 20px; }
  #btnBack { top: 25px; right: 20px; }
  .logo { top: 4px; }
}
@media (max-width: 420px) {
  header { background: #fff; }
}







/* Preloader -------------------------------------------------------*/

.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: #00c9d0;
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader div {
    background-color: #74a5e0;
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}








/* Back to Top ------------------------- */


#backTop {
  display: inline-block;
  background-color: #74a5e0;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#backTop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#backTop:hover {
  cursor: pointer;
  background-color: #333;
}
#backTop:active {
  background-color: #555;
}
#backTop.show {
  opacity: 1;
  visibility: visible;
}



