 body {
     font: 400 15px Satisfy, sans-serif;
     line-height: 1.8;
     color: #818181;
     padding-top: 30px;
 }

 h2 {
     font-size: 24px;
     text-transform: uppercase;
     color: #303030;
     font-weight: 600;
     margin-bottom: 30px;
 }

 h4 {
     font-size: 19px;
     line-height: 1.375em;
     color: #303030;
     font-weight: 400;
     margin-bottom: 30px;
 }

 .container-fluid {
     padding: 60px 50px;
 }

 .logo-small {
     color: skyblue;
     font-size: 50px;
 }

 .logo {
     color: skyblue;
     font-size: 200px;
 }

 .thumbnail {
     padding: 0 0 15px 0;
     border: none;
     border-radius: 0;
 }

 .thumbnail img {
     width: 100%;
     height: 100%;
     margin-bottom: 10px;
 }

 .item h4 {
     font-size: 19px;
     line-height: 1.375em;
     font-weight: 400;
     font-style: italic;
     margin: 70px 0;
 }

 .item span {
     font-style: normal;
 }

 @media screen and (max-width: 768px) {
     .col-sm-4 {
         text-align: center;
         margin: 25px 0;
     }

     .btn-lg {
         width: 100%;
         margin-bottom: 35px;
     }
 }

 @media screen and (max-width: 480px) {
     .logo {
         font-size: 150px;
     }
 }

 p {
     text-align: left;
     font-size: 16px;
 }


 *:focus {
     outline: 0;
 }

 .container {
     margin: 10px 120px;
     background: white;
     border-radius: 4px;
 }


 .center {
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 3%;
     padding: 10px;
 }


 .clickme {
     background-color: white;
     color: black;
     border: 2px solid #4b6777;
     padding: 5px 10px;
     text-align: center;
     text-decoration: none;
     display: inline-block;
     font-size: 12px;
     margin: 4px 2px;
     transition-duration: 0.4s;
     cursor: pointer;

 }

 .clickme:hover {
     background-color: #4b6777;
     color: #f5beb4;
 }

 a {
     text-decoration: none;
 }

 #main {
     margin-top: 30px;
     width: 80%;
 }

     {
     box-sizing: border-box;
 }

 .column {
     float: left;
     width: 25%;
     padding: 2px;
     margin-left: 110px;
     text-align: center;
 }

 .row:after {
     content: "";
     display: table;
     clear: both;
 }

 /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
 @media screen and (max-width: 600px) {
     .column {
         width: 100%;
     }
 }

 .fa {
     padding: 10px;
     font-size: 20px;
     width: 40px;
     text-align: center;
     text-decoration: none;
     margin: 5px 2px;
     border-radius: 60%;
 }

 .fa:hover {
     opacity: 0.7;
 }

 .fa-instagram {
     background-color: deeppink;
     color: white;
 }

 .fa-linkedin {
     background-color: deeppink;
     color: white;
 }


 .fa-envelope {
     background-color: deeppink;
     color: white;
 }

 .centered {
     position: absolute;
     top: 18%;
     left: 50%;
     transform: translate(-50%, -50%);
     color: lightcoral;
     font-weight: 900;
     font-family: 'Questrial';
 }

 @media screen and (min-width: 601px) {
     div.centered {
         font-size: 40px;
     }
 }

 @media screen and (max-width: 600px) {
     div.centered {
         font-size: 18px;
     }
 }

 .img-container {
     float: left;
     width: 28%;
     height: auto;
     margin-left: 4%;
     margin-top: 3%;
 }

 .clearfix::after {
     content: "";
     clear: both;
     display: table;

 }


 .slideanim {
     visibility: hidden;
 }

 .slide {
     /* The name of the animation */
     animation-name: slide;
     -webkit-animation-name: slide;
     /* The duration of the animation */
     animation-duration: 1s;
     -webkit-animation-duration: 1s;
     /* Make the element visible */
     visibility: visible;
 }

 /* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
 @keyframes slide {
     0% {
         opacity: 0;
         transform: translateY(70%);
     }

     100% {
         opacity: 1;
         transform: translateY(0%);
     }
 }

 @-webkit-keyframes slide {
     0% {
         opacity: 0;
         -webkit-transform: translateY(70%);
     }

     100% {
         opacity: 1;
         -webkit-transform: translateY(0%);
     }
 }

 .c-nav-footer,
 .c-nav-mobile-small_list {
     margin: 0;
     padding: 0;
     list-style: none;
     margin: 0;
 }

 @media (min-width: 1024px) {

     .c-nav-footer li,
     .c-nav-mobile-small_list li {
         margin-bottom: 0.625rem;
     }
 }

 @media (max-width: 1023px) {

     .c-nav-footer li,
     .c-nav-mobile-small_list li {
         margin-bottom: 14px;
     }
 }


 .c-footer {
     background-color: darkturquoise;
     color: white;
     font-size: 20px;
     font-weight: 500;
 }

 .c-footer-wrap {
     position: relative;
 }

 .c-footer-wrap::before {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     content: "";
     background: #ffffff;
     z-index: 3;
     -webkit-transform: scale(1, 1);
     -ms-transform: scale(1, 1);
     transform: scale(1, 1);
     -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
     transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
     transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
     transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
     -webkit-transform-origin: right center;
     -ms-transform-origin: right center;
     transform-origin: right center;
 }

 .is-loaded .c-footer-wrap::before {
     -webkit-transform: scale(0, 1);
     -ms-transform: scale(0, 1);
     transform: scale(0, 1);
 }

 .is-changing-page .c-footer-wrap::before {
     -webkit-transform: scale(1, 1);
     -ms-transform: scale(1, 1);
     transform: scale(1, 1);
 }

 @media (min-width: 1024px) {
     .c-footer {
         padding: 40px 100px 40px;
     }
 }

 @media (max-width: 1023px) {
     .c-footer {
         padding: 0 0 40px 0;
     }

     .c-footer .o-container {
         padding: 0;
     }
 }

 @media (min-width: 1024px) {
     .c-nav .c-footer {
         padding-bottom: 0;
     }
 }


 @media (max-width: 1023px) {

     .c-footer_logo::before,
     .c-footer_logo::after {
         top: 50%;
         margin-top: -13px;
     }
 }

 .c-nav-footer_link,
 .c-nav-mobile-small_link {
     display: inline-block;
     text-transform: uppercase;
     color: #ffffff;
     letter-spacing: 2px;
     font-weight: 600;
 }

 @media (min-width: 1024px) {

     .c-nav-footer_link,
     .c-nav-mobile-small_link {
         font-size: 0.625rem;
     }
 }

 @media (max-width: 1023px) {

     .c-nav-footer_link,
     .c-nav-mobile-small_link {
         font-size: 13px;
     }
 }

 .c-nav-mobile-small_item {
     margin: 0 !important;
 }

 .c-copyright {
     margin: 0;
     font-weight: 600;
     letter-spacing: 2px;
 }

 .c-copyright a {
     text-transform: uppercase;
     letter-spacing: 2px;
     padding: 0;
 }

 @media (min-width: 1024px) {
     .c-copyright {
         color: darkslategray;
         font-size: 0.825rem;
     }
 }

 @media (max-width: 1023px) {
     .c-copyright {
         font-size: 10px;
         margin-top: 40px;
     }
 }

 .c-footer_social_list {
     display: block;
     margin: 0;
     padding: 0;
     list-style: none;
 }

 .c-footer_social_list:after {
     display: table;
     clear: both;
     content: "";
 }

 @media (min-width: 1024px) {
     .c-footer_social_list {
         margin-bottom: 1.875rem;
     }
 }

 @media (max-width: 1023px) {
     .c-footer_social_list {
         margin-bottom: 30px;
     }
 }

 .c-footer_social {
     text-align: center;
 }

 .c-footer_social_item {
     display: inline-block;
     margin: 0 11%;
 }

 .c-footer_social_item:first-child {
     margin-left: 0;
 }

 .c-footer_social_item:last-child {
     margin-right: 0;
 }


 #myBtn {
     display: none;
     z-index: 99;
     font-size: 13px;
     border: none;
     outline: none;
     background-color: white;
     color: lightcoral;
     cursor: pointer;
     padding: 10px;
     border-radius: 4px;
 }

 #myBtn:hover {
     background-color: #555;
 }


 .navbar {
     margin-bottom: 0;
     background-color: #fff;
     z-index: 9999;
     border: 0;
     font-size: 12px !important;
     line-height: 1.42857143 !important;
     letter-spacing: 4px;
     border-radius: 0;
     font-family: Montserrat, sans-serif;
 }

 .navbar li a,
 .navbar .navbar-brand {
     color: darkturquoise!important;
 }

 .navbar-nav li a:hover {
     background-color: deeppink!important;
     color: #fff !important;
 }

 .navbar-nav li.active a {
     color: #fff !important;
     background-color: darkseagreen !important;
 }

 .navbar-default .navbar-toggle {
     border-color: transparent;
     color: #fff !important;
 }

 .fade-in-text {
     display: inline-block;
     font-family: Satisfy, Helvetica, sans-serif;
     color: deeppink;
     animation: fadeIn linear 7s;
     -webkit-animation: fadeIn linear 7s;
     -moz-animation: fadeIn linear 7s;
     -o-animation: fadeIn linear 7s;
     -ms-animation: fadeIn linear 7s;
 }



@media screen and (min-width: 601px) {
  .fade-in-text {
    font-size: 65px;
  }
}

@media screen and (max-width: 600px) {
  .fade-in-text {
    font-size: 20px;
  }
}

 @keyframes fadeIn {
     0% {
         opacity: 0;
     }

     100% {
         opacity: 1;
     }
 }

 @-moz-keyframes fadeIn {
     0% {
         opacity: 0;
     }

     100% {
         opacity: 1;
     }
 }

 @-webkit-keyframes fadeIn {
     0% {
         opacity: 0;
     }

     100% {
         opacity: 1;
     }
 }

 @-o-keyframes fadeIn {
     0% {
         opacity: 0;
     }

     100% {
         opacity: 1;
     }
 }

 @-ms-keyframes fadeIn {
     0% {
         opacity: 0;
     }

     100% {
         opacity: 1;
     }
 }


 .div-block-1 {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 500px;
     display: -webkit-box;
     display: -webkit-flex;
     display: -ms-flexbox;
     display: flex;
     width: 75px;
     height: 175px;
     color: #fff;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -webkit-flex-direction: column;
     -ms-flex-direction: column;
     flex-direction: column;
     -webkit-box-pack: center;
     -webkit-justify-content: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-box-align: center;
     -webkit-align-items: center;
     -ms-flex-align: center;
     align-items: center;
     border-top: 2px solid #fff;
     border-right: 2px solid #fff;
     border-bottom: 2px solid #fff;
     background-color: #ef9787;
 }


 @media (max-width: 1024px) {
     .div-block-1 {
         left: 0;
         right: 0;
         bottom: 0;
         display: -webkit-box;
         display: -webkit-flex;
         display: -ms-flexbox;
         display: flex;
         width: 100%;
         height: 50px;
         color: #fff;
         padding-top: 10px;
         -webkit-box-orient: horizontal;
         -webkit-box-direction: normal;
         -webkit-flex-direction: row;
         -ms-flex-direction: row;
         flex-direction: row;
         -webkit-box-pack: center;
         -webkit-justify-content: center;
         -ms-flex-pack: center;
         justify-content: center;
         -webkit-box-align: start;
         -webkit-align-items: flex-start;
         -ms-flex-align: start;
         align-items: flex-start;
         border-bottom-right-radius: 0;
     }
 }

 a:hover {
     background-color: #fff;
     padding: 2px 4px;
     color: skyblue;
     font-weight: 500;
     z-index: 1;
 }

 a {
     transition: all 1s;
 }

 /* Keyframes */
 @-webkit-keyframes fill {
     0% {
         width: 0%;
         height: 1px;
     }

     50% {
         width: 100%;
         height: 1px;
     }

     100% {
         width: 100%;
         height: 100%;
         background: #333;
     }
 }

 /* Keyframes */
 @-webkit-keyframes circle {
     0% {
         width: 1px;
         top: 0;
         left: 0;
         bottom: 0;
         right: 0;
         margin: auto;
         height: 1px;
         z-index: -1;
         background: #eee;
         border-radius: 100%;
     }

     100% {
         background: #aaa;
         height: 5000%;
         width: 5000%;
         z-index: -1;
         top: 0;
         bottom: 0;
         left: 0;
         right: 0;
         margin: auto;
         border-radius: 0;
     }
 }

 label {
     margin: 0 40px 0 0;
     font-size: 26px;
     line-height: 70px;
     display: none;
     width: 26px;
     float: right;
 }


 .responsive {
     width: 100%;
     height: auto;
 }

 #content {
     width: 100%;
     background-color: white;
     box-sizing: border-box;
     display: flex;
 }
