@font-face {
  font-family: 'Century Gothic';
  src: url('CenturyGothic.eot');
  src: local('Century Gothic'), local('CenturyGothic'),
    url('../fonts/CenturyGothic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/CenturyGothic.woff2') format('woff2'),
    url('../fonts/CenturyGothic.woff') format('woff'),
    url('../fonts/CenturyGothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Lato', sans-serif;
  background: #E5E5E5;
  color: #4164AE;
  font-size: 16px;
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Century Gothic';
  font-style: normal;
  font-weight: 700;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin: 0;
  font-size: 16px;
}



/* HEADER */
.page-header-wrapper {
  display: flex;
  align-items: center;
  width: 100vw;
  min-height: 72px;
  margin: 0;
  padding: 0 5px;
  background: linear-gradient(91.46deg, #4164AE 20.76%, #47B6FF 80.67%);
  backdrop-filter: blur(20px);
}

.page-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 12%;
  margin: 0 5px;
  background: #FFF;
  border: 5px solid #FFF;
  border-radius: 5rem;
}

.head-title {
  flex: 1;
  width: 72%;
  font: 700 9px/11px 'Century Gothic';
  color: #FFFFFF;
}

.dmenus {
  display: none;
}

.hamburger {
  background: #FFFFFF;
  border-radius: 10px;
  width: 40px;
  height: 32px;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu>li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #47B6FF;
  position: absolute;
  height: 1px;
  width: 24px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

.mybtn {
  padding: 4px 10px;
  color: #4164AE;
  background: linear-gradient(98.69deg, #A6D6EB 54.58%, #FFFFFF 100%);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .menu-button-container {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 0;
    margin-top: 72px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(252, 254, 255, 0.95);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }

  #menu-toggle~.menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  #menu-toggle:checked~.menu li {
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu>li {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
  }

  .menu li a {
    text-decoration: none;
    font-family: 'Century Gothic';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;

    color: #485F60;
  }

  .menu>li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}


/* MAIN */
main {
  padding: 15px;
}

/* FORM */
::-webkit-input-placeholder,
input::-webkit-input-placeholder,
.form-control::placeholder {
  font: 400 11px/13px 'Roboto';
  font-style: italic;
  color: #959595;
}

/* UTIL */
.text-center {
  text-align: center;
}

.clred {
  color: #FD0000;
}

.img-fluid {
  max-width: 100%;
}


@media(min-width:769px) {
  .page-header {
    padding: 5px;
  }

  .logo img {
    width: 72px;
  }


}

@media (min-width:1024px) {
  .page-header-wrapper {
    background: url(../img/dsk-bg-header.png) no-repeat top left;
    background-size: cover;
    align-items: flex-start;
    min-height: calc(100vw * 0.23);
  }

  .page-header {
    position: sticky;
    position: -webkit-sticky;
    top: 15px;
  }

  .hamburger {
    display: none;
  }

  .dmenus {
    display: flex;
  }

  .dmenus ul {
    display: flex;
    align-items: center;
  }

  .dmenus ul {
    list-style-type: none;
  }

  .dmenus li a {
    margin: 10px;
    text-decoration: none;
    color: #FFF;
    text-transform: uppercase;
  }

  .head-title {
    font-size: 14px;
    line-height: 20px;
  }

  main {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    margin-top: calc(100vw * -0.08);
  }


  footer {
    background: url(../img/dsk-bg-footer.png) no-repeat bottom left;
    background-size: cover;
  }
}