@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500');

@font-face {
  font-family: logo;
  src: url(./fonts/blade.woff) format('woff');
}

::selection {
  background: rgba(31, 140, 235, 0.2);
}

h1, h2, h3, h4, p, a {
 color: #4a4a4a;
 font-family: 'Montserrat';
}

/* nav and header */

.mobile-nav {
  display: none;
}

nav {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  text-align: center;
}

.nav-inner {
  width: 70%;
  display: inline-block;
}

nav .logo {
  float: left;
  color: white;
  font-family: logo;
  font-size: 50px;
  border-top: 3px solid #48a8ff;
  border-bottom: 3px solid #48a8ff;
  line-height: 109%;
}

nav ul {
  float: right;
  margin-top: 12px;
}

nav li {
  display: inline-block;
  margin-right: 40px;
  text-align: center;
}

nav li.contact-link {
  margin-right: 0px;
}

nav a, nav a:hover, nav a:active, nav a:visited {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: color .4s;
}

nav a:hover {
  color: rgba(255, 255, 255, 0.6)
}

nav li.mobile-menu {
  display: none;
  margin-right: 0px;
}

.mobile-menu a:hover, .mobile-menu a:active {
  color: white;
}

.mobile-menu i {
  font-size: 35px;
}

@media only screen and (max-width: 1300px) {
  .nav-inner {
    width: 85%;
  }
}

@media only screen and (max-width: 800px) {
  .nav-inner {
    width: 75%;
  }

  nav li {
    display: none;
  }

  nav li.mobile-menu {
    display: block;
  }
}

@media only screen and (max-width: 420px) {
  nav {
    top: 20px;
  }

  nav .logo {
    font-size: 40px;
    border-top: 3px solid #48a8ff;
    border-bottom: 3px solid #48a8ff;
    line-height: 110%;
  }
  .mobile-menu i {
    font-size: 28px;
  }
}

@media only screen and (max-height: 600px) {
  nav {
    top: 20px;
  }

  nav .logo {
    font-size: 40px;
    border-top: 3px solid #48a8ff;
    border-bottom: 3px solid #48a8ff;
    line-height: 110%;
  }
  .mobile-menu i {
    font-size: 28px;
  }
}

header {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  /*background: #4a4a4a;*/
  background: url(http://res.cloudinary.com/isaacabrahamson/image/upload/w_1920,h_1080/header_fxhhdf.jpg) no-repeat center center fixed;
  background-size: cover;
  background-attachment: scroll;
}

.overlay-header {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

header .content {
  flex-flow: column;
  width: 48%;
  text-align: center;
  justify-content: center;
}

.flex {
  display: flex;
}

h1 {
  font-family: 'Montserrat';
  font-weight: 300;
  color: white;
  font-size: 57px;
  text-align: center;
}

h1 span {
  font-weight: 300;
}

.info-buttons {
  display: inline-block;
}

@media only screen and (max-width: 1675px) {
  header .content {
    width: 55%;
  }
}

@media only screen and (max-width: 1460px) {
  header .content {
    width: 65%;
  }
}

@media only screen and (max-width: 1240px) {
  header .content {
    width: 82%;
  }
}

@media only screen and (max-width: 1000px) {
  header .content {
    width: 85%;
  }

  h1 {
    font-size: 47px;
  }
}

@media only screen and (max-width: 780px) {
  h1 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 520px) {
  h1 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 450px) {
  h1 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 390px) {
  header {
    background-position: 42%;
  }

  header .content {
    width: 70%;
  }
}

@media only screen and (max-height: 400px) {
  header .content {
    width: 60%;
  }

  h1 {
    font-size: 30px;
  }
}



hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
  width: 60%;
}


/* buttons */

.btn, .btn:hover, .btn:active, .btn:visited {
    display: inline-block;
    height: 50px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 50px;
    border: 0;
    border-radius: 3px;
    -webkit-transition: background-color 0.3s ease,color 0.3s ease;
    transition: background-color 0.3s ease,color 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.2px;
    margin-top: 60px;
}

.btn-blue:link, .btn-blue:hover, .btn-blue:active, .btn-blue:visited {
    color: #FFFFFF;
    background-color: #0084FB;
    box-shadow: 0 2px 12px 0 rgba(38,48,56,0.15);
}

.btn-blue:hover {
  background-color: rgba(0,132,251,0.75);
}

.btn-white:link, .btn-white:hover, .btn-white:active, .btn-white:visited {
    color: #1f8ceb;
    background-color: white;
    box-shadow: 0 2px 12px 0 rgba(38,48,56,0.15);
}

.btn-white:hover {
  background-color: rgba(255,255,255,0.85);
}

.btn-portfolio {
  background-color: transparent;
  color: white;
  margin-left: 15px;
}

.btn-portfolio:hover {
  background-color: transparent;
  color: white;
}

.btn-portfolio i {
  position: relative;
  left: 6px;
  transition: left 0.3s ease,color 0.3s ease;
}

.btn-portfolio:hover i {
  left: 12px;
}

@media only screen and (max-width: 600px) {
  .btn, .btn:hover, .btn:active, .btn:visited {
    height: 42px;
    padding: 0 18px;
    font-size: 16px;
    line-height: 42px;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 390px) {
  .btn, .btn:hover, .btn:active, .btn:visited {
    margin-top: 40px;
  }
  .btn-portfolio {
    margin-top: 20px!important;
  }
}

@media only screen and (max-height: 600px) {
  .btn, .btn:hover, .btn:active, .btn:visited {
    margin-top: 40px;
  }
}

@media only screen and (max-height: 500px) {
  .btn, .btn:hover, .btn:active, .btn:visited {
    height: 42px;
    padding: 0 18px;
    font-size: 16px;
    line-height: 42px;
    margin-top: 20px;
  }
}




@media only screen and (max-width: 1300px) {
  .hidden-mobile {
    display: none;
  }
}



/* about */
#about {
  margin-top: 120px;
}

#about .container-fluid {
  width: 68%;
  text-align: center;
}

#about i {
  color: #1f8ceb;
  font-size: 120px;
  text-align: center;
}

#about h3 {
  text-align: center;
  font-weight: 400;
}

#about p, #about .drone-link {
  color: #4a4a4a;
  font-weight: 200;
  text-align: left;
  font-size: 17px;
}

#about .col-lg-4 {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}

.drone-link, .drone-link:hover, .drone-link:active, .drone-link:visited {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  text-decoration: none;
  transition: border-bottom 1s;
}

.drone-link:hover {
  border-bottom: 1px solid #1f8ceb;
}

#about .btn {
  margin-top: 80px;
  margin-bottom: 100px;
}

@media only screen and (max-width: 1500px) {
  #about .container-fluid {
    width: 80%;
  }
}

@media only screen and (max-width: 1199px) {
  #about p {
    font-size: 17px;
    display: inline-block;
    width: 50%;
    margin-bottom: 80px;
  }

  #about .btn {
    margin-top: 40px;
    margin-bottom: 100px;
  }

  #about p, #about .drone-link {
    font-size: 20px;
  }
}

@media only screen and (max-width: 800px) {
  #about p {
    width: 70%;
  }
}

@media only screen and (max-width: 560px) {
  #about .container-fluid {
    width: 100%;
  }
}

@media only screen and (max-width: 460px) {
  #about p {
    width: 90%;
  }
}

@media only screen and (max-width: 410px) {
  #about p {
    width: 95%;
  }

  #about p, #about .drone-link {
    font-size: 17px;
  }
}


/* portfolio */

h2 {
  font-weight: 200;
  font-size: 36px;
  text-align: center;
  margin-top: 120px;
}

h2 span {
  color: #1f8ceb;
}

#portfolio .container-fluid {
  margin-top: 120px;
  width: 80%;
}

@media only screen and (max-width: 1450px) {
  #portfolio .container-fluid {
    width: 95%;
  }
}

@media only screen and (max-width: 1199px) {
  #portfolio .container-fluid {
    width: 80%;
  }

  #portfolio .hidden-md {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  #portfolio .container-fluid {
    width: 95%;
  }
}

#portfolio {
  text-align: center;
}

.full-portfolio {
  text-align: center;
  margin-top: 20px;
}

#portfolio p {
  color: #4a4a4a;
  font-weight: 200;
  font-size: 20px;
  display: block;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 1450px) {
  #portfolio p {
    width: 80%;
  }
}

@media only screen and (max-width: 1199px) {
  #portfolio p {
    width: 50%;
  }
}

@media only screen and (max-width: 900px) {
  #portfolio p {
    width: 70%;
  }
}

@media only screen and (max-width: 635px) {
  #portfolio p {
    width: 80%;
  }
}

#portfolio .btn {
  margin-top: 30px;
}

#portfolio .row {
  margin-bottom: 5%;
}

.row-top {
  height: 500px;
}

.row-middle {
  height: 600px;
}

.row-full {
  height: 400px;
}

.row-bottom {
  height: 600px;
}

.col-img {
  height: 100%;
}

.col-left {
  padding-right: 2.5%;
}

.col-right {
  padding-left: 2.5%;
}

.img-box {
  height: 100%;
  background-size: cover!important;
  background-position: center!important;
  background-repeat: no-repeat!important;
  box-shadow:0 1px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .row-top {
    height: 450px;
  }

  .row-bottom {
    height: 450px;
  }

  .col-left {
    padding-left: 15px;
    padding-right: 15px;
  }

  .col-right {
    padding-left: 15px;
    padding-right: 15px;
  }

  #portfolio .row {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .row-top {
    height: 380px;
  }

  .row-bottom {
    height: 380px;
  }
}

@media only screen and (max-width: 400px) {
  .row-top {
    height: 350px;
  }

  .row-bottom {
    height: 350px;
  }
}

@media only screen and (max-width: 800px) {
  h2 {
    font-size: 30px;
  }
}




#contact {
  margin-top: 100px;
  background: url(http://res.cloudinary.com/isaacabrahamson/image/upload/v1495899473/bg_nkmoas.jpg);
  background-position: 50% 100%;
}

.overlay {
  background: rgba(31, 140, 235, 0.7);
  height: 100%;
  padding-top: 80px;
  text-align: center;
}

#contact h2 {
  margin-top: 0;
  color: white;
}

#contact h2 span {
  color: white;
  font-weight: 400;
}

#contact .text-container {
  margin-top: 10px;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  text-align: left;
  padding-right: 25%;
  padding-left: 25%;
}

#contact .text-container p {
  color: white;
  font-weight: 200;
  font-size: 20px;
}

.icon-container {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 420px;
}

.row-icon {
  display: inline-block;
  float: left;
  clear: left;
}

.row-icon * {
  display: inline-block;
  color: white;
  font-size: 25px;
}

.row-icon i {
  margin-right: 20px;
}

@media only screen and (max-width: 800px) {
  #contact .text-container p {
    text-align: left;
  }

  #contact .text-container p:first-child {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 590px) {
  #contact .text-container {
    width: 100%;
    text-align: center;
    padding-right: 20%;
    padding-left: 20%;
  }

  .icon-container {
    margin-bottom: 350px;
  }
}

@media only screen and (max-width: 490px) {
  #contact .text-container {
    width: 100%;
    text-align: center;
    padding-right: 15%;
    padding-left: 15%;
  }
}

@media only screen and (max-width: 650px) {
  .row-icon * {
    color: white;
    font-size: 20px;
  }
}

@media only screen and (max-width: 420px) {
  #contact .text-container p {
    font-size: 17px;
  }

  .row-icon * {
    color: white;
    font-size: 17px;
  }

  .icon-container {
    margin-bottom: 280px;
  }
}

@media only screen and (max-width: 320px) {
  .row-icon * {
    color: white;
    font-size: 15px;
  }
}







#weatherWeek {
  /*justify-content: center;*/
  padding: 2em;
  margin: 0 auto;
  color: white;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  background-color: currentColor;
  margin-top: 80px;
}

.weatherDate, .weatherDesc {
  color: #4a4a4a;
  font-weight: 400;
  font-size: 20px;
}

.weatherIcon {
  position: relative;
  display: inline-block;
  width: 12em;
  height: 10em;
  font-size: 1em; /* control icon size here */
}

.weatherSafety i {
  margin-right: 6px;
}

.weatherSafety .good {
  color: #79d80b;
}

.weatherSafety .bad {
  color: #f44336;
}

.weatherSafety .okay {
  color: #ffc107;
}

.weatherSafety .okay i {
  margin-right: 8px;
}

@media only screen and (max-width: 480px) {
  #weather {
    display: none;
  }
}

/* footer */

hr.bottom {
  margin-top: 80px;
}

footer {
  margin-top: 60px;
  margin-bottom: 60px;
}

footer p {
  font-size: 12px;
  color: #888;
  line-height: 1.8;
}

footer .first-col p {
  line-height: 1!important;
}

footer a, footer a:hover, footer a:active, footer a:visited {
  color: #888!important;
  text-decoration: underline!important;
  font-size: 12px;
}

@media only screen and (max-width: 991px) {
  footer .col-md-2 li {
    display: inline-block;
  }
}

@media only screen and (max-width: 500px) {
  footer .middle-col {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}






.cloud {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 3.6875em;
  height: 3.6875em;
  margin: -1.84375em;
  background: currentColor;
  border-radius: 50%;
  box-shadow:
    -2.1875em 0.6875em 0 -0.6875em,
    2.0625em 0.9375em 0 -0.9375em,
    0 0 0 0.375em #4a4a4a,
    -2.1875em 0.6875em 0 -0.3125em #4a4a4a,
    2.0625em 0.9375em 0 -0.5625em #4a4a4a;
}
.cloud:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -0.5em;
  display: block;
  width: 4.5625em;
  height: 1em;
  background: currentColor;
  box-shadow: 0 0.4375em 0 -0.0625em #4a4a4a;
}
.cloud:nth-child(2) {
  z-index: 0;
  background: #1f8ceb;
  box-shadow:
    -2.1875em 0.6875em 0 -0.6875em #1f8ceb,
    2.0625em 0.9375em 0 -0.9375em #1f8ceb,
    0 0 0 0.375em #1f8ceb,
    -2.1875em 0.6875em 0 -0.3125em #1f8ceb,
    2.0625em 0.9375em 0 -0.5625em #1f8ceb;
  opacity: 0.3;
  transform: scale(0.5) translate(6em, -3em);
  animation: cloud 4s linear infinite;
}
.cloud:nth-child(2):after { background: #1f8ceb; }

.sun {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5em;
  height: 2.5em;
  margin: -1.25em;
  background: none;
  border-radius: 50%;
  box-shadow: 0 0 0 0.375em #4a4a4a;
  animation: spin 12s infinite linear;
}
.rays {
  position: absolute;
  top: -2em;
  left: 50%;
  display: block;
  width: 0.375em;
  height: 1.125em;
  margin-left: -0.1875em;
  background: #4a4a4a;
  border-radius: 0.25em;
  box-shadow: 0 5.375em #4a4a4a;
}
.rays:before,
.rays:after {
  content: '';
  position: absolute;
  top: 0em;
  left: 0em;
  display: block;
  width: 0.375em;
  height: 1.125em;
  transform: rotate(60deg);
  transform-origin: 50% 3.25em;
  background: #4a4a4a;
  border-radius: 0.25em;
  box-shadow: 0 5.375em #4a4a4a;
}
.rays:before {
  transform: rotate(120deg);
}
.cloud + .sun {
  margin: -2em 1em;
}

.rain,
.lightning,
.snow {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 3.75em;
  height: 3.75em;
  margin: 0.375em 0 0 -2em;
  background: currentColor;
}

.rain:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 1.125em;
  height: 1.125em;
  margin: -1em 0 0 -0.25em;
  background: #1f8ceb;
  border-radius: 100% 0 60% 50% / 60% 0 100% 50%;
  box-shadow:
    0.625em 0.875em 0 -0.125em rgba(255,255,255,0.2),
    -0.875em 1.125em 0 -0.125em rgba(255,255,255,0.2),
    -1.375em -0.125em 0 rgba(255,255,255,0.2);
  transform: rotate(-28deg);
  animation: rain 3s linear infinite;
}

.bolt {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.25em 0 0 -0.125em;
  color: #4a4a4a;
  opacity: 0.3;
  animation: lightning 2s linear infinite;
}
.bolt:nth-child(2) {
  width: 0.5em;
  height: 0.25em;
  margin: -1.75em 0 0 -1.875em;
  transform: translate(2.5em, 2.25em);
  opacity: 0.2;
  animation: lightning 1.5s linear infinite;
}
.bolt:before,
.bolt:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  margin: -1.625em 0 0 -1.0125em;
  border-top: 1.25em solid transparent;
  border-right: 0.75em solid;
  border-bottom: 0.75em solid;
  border-left: 0.5em solid transparent;
  transform: skewX(-10deg);
}
.bolt:after {
  margin: -0.25em 0 0 -0.25em;
  border-top: 0.75em solid;
  border-right: 0.5em solid transparent;
  border-bottom: 1.25em solid transparent;
  border-left: 0.75em solid;
  transform: skewX(-10deg);
}
.bolt:nth-child(2):before {
  margin: -0.75em 0 0 -0.5em;
  border-top: 0.625em solid transparent;
  border-right: 0.375em solid;
  border-bottom: 0.375em solid;
  border-left: 0.25em solid transparent;
}
.bolt:nth-child(2):after {
  margin: -0.125em 0 0 -0.125em;
  border-top: 0.375em solid;
  border-right: 0.25em solid transparent;
  border-bottom: 0.625em solid transparent;
  border-left: 0.375em solid;
}

.flake:before,
.flake:after {
  content: '\2744';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1.025em 0 0 -1.0125em;
  color: #1f8ceb;
  list-height: 1em;
  opacity: 0.2;
  animation: spin 8s linear infinite reverse;
}
.flake:after {
  margin: 0.125em 0 0 -1em;
  font-size: 1.5em;
  opacity: 0.4;
  animation: spin 14s linear infinite;
}
.flake:nth-child(2):before {
  margin: -0.5em 0 0 0.25em;
  font-size: 1.25em;
  opacity: 0.2;
  animation: spin 10s linear infinite;
}
.flake:nth-child(2):after {
  margin: 0.375em 0 0 0.125em;
  font-size: 2em;
  opacity: 0.4;
  animation: spin 16s linear infinite reverse;
}


/* Animations */

@keyframes spin {
  100% { transform: rotate(360deg); }
}

@keyframes cloud {
  0% { opacity: 0; }
  50% { opacity: 0.3; }
  100% {
    opacity: 0;
    transform: scale(0.5) translate(-200%, -3em);
  }
}

@keyframes rain {
  0% {
    background: #1f8ceb;
    box-shadow:
      0.625em 0.875em 0 -0.125em rgba(255,255,255,0.2),
      -0.875em 1.125em 0 -0.125em rgba(255,255,255,0.2),
      -1.375em -0.125em 0 #1f8ceb;
  }
  25% {
    box-shadow:
      0.625em 0.875em 0 -0.125em rgba(255,255,255,0.2),
      -0.875em 1.125em 0 -0.125em #1f8ceb,
      -1.375em -0.125em 0 rgba(255,255,255,0.2);
  }
  50% {
    background: rgba(255,255,255,0.3);
    box-shadow:
      0.625em 0.875em 0 -0.125em #1f8ceb,
      -0.875em 1.125em 0 -0.125em rgba(255,255,255,0.2),
      -1.375em -0.125em 0 rgba(255,255,255,0.2);
  }
  100% {
    box-shadow:
      0.625em 0.875em 0 -0.125em rgba(255,255,255,0.2),
      -0.875em 1.125em 0 -0.125em rgba(255,255,255,0.2),
      -1.375em -0.125em 0 #1f8ceb;
  }
}

@keyframes lightning {
  45% {
    color: #4a4a4a;
    background: #4a4a4a;
    opacity: 0.2;
  }
  50% {
    color: #1f8ceb;
    background: #1f8ceb;
    opacity: 1;
  }
  55% {
    color: #4a4a4a;
    background: #4a4a4a;
    opacity: 0.2;
  }
}

.col-5 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-5 {
    width: 20%;
    float: left;
}

@media (max-width: 1200px) {
  .col-5 {
    width: 33.3%;
    float: left;
  }

  .col-5:nth-child(4), .col-5:nth-child(5) {
    margin-top: 80px;
    width: 50%;
    float: left;
  }

  .col-5:nth-child(4) {
    padding-left: 15%;
  }

  .col-5:nth-child(5) {
    padding-right: 15%;
  }
}

@media (max-width: 750px) {
  .col-5 {
    width: 50%;
    float: left;
    padding-left: 15px!important;
    padding-right: 15px!important;
  }

  .col-5:nth-child(3), .col-5:nth-child(4), .col-5:nth-child(5) {
    margin-top: 80px;
    width: 50%;
    float: left;
  }

  .col-5:nth-child(5) {
    display: none;
  }
}

main.noscroll {
  z-index: 100;
  position: fixed;
  overflow: hidden;
}

#mobile-dropdown {
  display: block;
  z-index: 200;
  overflow: hidden;
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: -100vh;
  background: white;
  transition: top 150ms ease-in-out;
  text-align: center;
}

#mobile-dropdown .logo {
  float: left;
  color: #4a4a4a;
  font-family: logo;
  font-size: 50px;
  border-top: 3px solid #48a8ff;
  border-bottom: 3px solid #48a8ff;
  line-height: 109%;
}

#mobile-dropdown .exit {
  float: right;
  color: #4a4a4a;
  font-size: 45px;
  height: 100%;
}

.dropdown-row {
  padding-top: 40px;
  width: 70%;
  display: inline-block;
  height: 20%;
}

.dropdown-links {
  display: inline-block;
  width: 80%;
  height: 80%;
}

.dropdown-links ul {
  width: 100%;
  height: 80%;
}

.dropdown-links li {
  width: 100%;
  height: 33.3%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-links li:nth-child(2) {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.dropdown-links a {
  color: #1f8ceb;
  font-size: 30px;
  text-decoration: none;
}

@media only screen and (max-width: 1300px) {
  .dropdown-row {
    width: 85%;
  }
}

@media only screen and (max-width: 800px) {
  .dropdown-row {
    width: 75%;
  }
}

@media only screen and (max-width: 420px) {
  .dropdown-row {
    padding-top: 20px;
  }

  #mobile-dropdown .logo {
    font-size: 40px;
    line-height: 110%;
  }
  #mobile-dropdown .exit {
    font-size: 37px;
  }
}

@media only screen and (max-height: 600px) {
  .dropdown-row {
    padding-top: 20px;
  }

  .dropdown-row .logo {
    font-size: 40px;
    line-height: 110%;
  }
  .dropdown-row i {
    font-size: 37px;
  }
}

@media only screen and (max-height: 500px) {
  .dropdown-links ul {
    width: 100%;
    padding-top: 40px;
    height: 90%;
  }

  .dropdown-links a {
    font-size: 24px;
  }
}
