* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: #333;
  line-height: 1.5;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*background: linear-gradient(to top left, #28b487, #7dd56f);*/
}

.show-modal {
  font-size: 2rem;
  font-weight: 500;
  padding: 1.75rem 3.5rem;
  margin: 1rem 1rem;
  border: none;
  background-color: #fff;
  color: #444;
  border-radius: 10rem;
  cursor: pointer;
}

.close-modal {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  font-size: 5rem;
  color: #333;
  cursor: pointer;
  border: none;
  background: none;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

p {
  font-size: 1.4rem;
}

/* -------------------------- */
/* CLASSES TO MAKE MODAL WORK */
.hidden {
  display: none;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;

  background-color: white;
  padding: 6rem;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 9999999999999999999;
}

.modal h1 {
  padding-bottom: 1rem;
}

.modal ul li,
.modal ul a {
  width: auto;
  display: block;
  text-indent: 0px;
  color: inherit;
  font-weight: normal;
  margin: 0;padding: 0;
}
.modal ul a{
  color: #03A9F4;
}
.modal ul li{
margin: 10px 0;
 }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 5;
}

ul {
  list-style: circle;
  /* Remove list bullets */
  padding: 0;
  margin: 0;
}

li {
  padding-left: 5px;
  margin-left: 20px;
}

/*sosial buttons*/
.middle {
  padding-top: 30px;
  width: 100%;
  text-align: left;
}

.btn {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #f1f1f1;
  margin: 5px;
  border-radius: 30%;
  box-shadow: 0 5px 15px -5px #00000070;
  color: #3498db;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.btn i {
  line-height: 30px;
  font-size: 20px;
  transition: 0.2s linear;
}

.btn:hover i {
  transform: scale(1.3);
  color: #f1f1f1;
}

.btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: #3498db;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}

.btn:hover::before {
  animation: aaa 0.7s 1;
  top: -10%;
  left: -10%;
}

@keyframes aaa {
  0% {
    left: -110%;
    top: 90%;
  }

  50% {
    left: 10%;
    top: -30%;
  }

  100% {
    top: -10%;
    left: -10%;
  }
}

@media only screen and (max-width:750px) {
  .destkop {
    display: none;

  }
}

/*mobile menu*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700);

@keyframes checked-anim {
  50% {
    width: 3000px;
    height: 3000px;
  }

  100% {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

@keyframes not-checked-anim {
  0% {
    width: 3000px;
    height: 3000px;
  }
}

li,
a {
  margin: 75px 0 -55px 0;
  color: #03A9F4;
  font: 14pt "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  text-transform: none;
  list-style: none;
  outline: 0;
  display: none;
}

li {
  width: 230px;
  text-indent: 56px;
}

a:focus {
  display: block;
  color: #333;
  background-color: #eee;
  transition: all .5s;
}

aside {
  position: absolute;
  color: white;
  top: 35%;
  right: 10%;
  text-align: right;
}

h1 {
  line-height: 0;
  font-size: 4vw;
  font-weight: 700;
}

h3 {
  float: right;
  line-height: .3;
  font-size: 2.5vw;
  font-weight: lighter;
}

h4 {
  float: left;
  margin-left: -2%;
  font-size: 1.5vw;
  font-weight: lighter;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #03A9F4;
  font-family: 'Roboto', sans-serif;
  overflow: hidden;
}

#trigger,
#burger,
#burger:before,
#burger:after {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #03A9F4;
  width: 30px;
  height: 5px;
  transition: .2s ease;
  cursor: pointer;
  z-index: 1;
}

#trigger {
  height: 25px;
  background: none;
}

#burger:before {
  content: " ";
  top: 10px;
  left: 0;
}

#burger:after {
  content: " ";
  top: 20px;
  left: 0;
}

#menu-toggle:checked+#trigger+#burger {
  top: 35px;
  transform: rotate(180deg);
  transition: transform .2s ease;
}

#menu-toggle:checked+#trigger+#burger:before {
  width: 20px;
  top: -2px;
  left: 18px;
  transform: rotate(45deg) translateX(-5px);
  transition: transform .2s ease;
}

#menu-toggle:checked+#trigger+#burger:after {
  width: 20px;
  top: 2px;
  left: 18px;
  transform: rotate(-45deg) translateX(-5px);
  transition: transform .2s ease;
}

#menu {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 110px;
  height: 110px;
  background-color: #fff;
  border-bottom-right-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
  animation: not-checked-anim .2s both;
  transition: .2s;
}

#menu-toggle:checked+#trigger+#burger+#menu {
  animation: checked-anim 1s ease both;
}

#menu-toggle:checked+#trigger~#menu>li,
a {
  display: block;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  display: none;
}



@media(max-width:750px) {

  .modal {
    padding: 2rem;
    overflow: scroll;
    max-height: 90vh;
  }

  .modal h1 {
    line-height: normal;
  }

  .mobile-menu li {
    text-indent: 0;
    padding-left: 20px;
  }


}