
/*
------------------------------------------
      GENERAL
-------------------------------------------
*/
body {
   background-color: #253654;
   font-family: "Noto Serif JP", serif;
   color: #272727;
   font-size: 16px;
   font-weight: 500;
}

a {
   color: #0052bd;
}

a:hover {
   color: #006CFA;
   text-decoration: none;
}

h1 {
   color: #f8f8f8;
   font-family: "Lora", serif;
   font-weight: 400;
   font-size: 2.2vw;
   /* line-height: normal; */
   letter-spacing: 5px;
   /*border-radius: 15px;*/
   padding: 10px 0 5px 0;
   text-align: center;
}

h2 {
   font-family: "Lora", serif;
}

h3 {
   border-bottom: 2px solid #b6c4db;
   color: #373737;
   font-size: 24px;
   font-weight: 700;
   padding-bottom: 10px;
}

h4,
h5 {
   font-size: 17px;
   font-weight: 700;
}

p {
   line-height: 30px;
   margin-bottom: 1.8rem;
}

.main {
   background-image: url('../img/body-background-argyle.jpg');
   background-repeat: repeat;
   background-position: top center;
   background-attachment: fixed;
}

.main section .container {
   background-color: #fff;
   position: relative;
   z-index: 10;
   box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
   padding-top: 20px;
   padding-bottom: 60px;
}

.container .img-behind {
   background-color: #fff;
   text-align: center;
}

.container .content {
   padding-top: 60px;
}

@media (max-width: 1366px) {
   h1 {
      margin-top: 4px;
   }
}

@media (max-width: 992px) {
   body {
      font-size: 15px;
   }
   .container .content {
      padding-top: 50px;
   }
   p {
      line-height: 30px;
   }
   .container .img-behind {
   	margin-right: 5px;
   	margin-left: 5px;
   }
   .main section .container {
      padding-bottom: 40px;
   }
}

@media (max-width: 768px) {
   h3 {
      border-bottom: 1px solid #b6c4db;
      font-size: 20px;
   }
   p {
      line-height: 28px;
      margin-bottom: 1.7rem;
   }
}

@media (max-width: 600px) {
   body {
      font-size: 14px;
   }
}

/*
------------------------------------------
      BACK TO THE TOP BUTTON
-------------------------------------------
*/
.back-to-top {
   position: fixed;
   display: none;
   right: 20px;
   bottom: 25px;
   z-index: 99999;
}

.back-to-top span {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 55px;
   height: 55px;
   border-radius: 5px;
   border: 1px solid #f7f7f7;
   background-color: #243653;
   color: #f7f7f7;
   transition: all 0.4s;
   font-weight: bold;
   font-size: 32px;
}

.back-to-top span:hover {
   background-color: #dbb480;
   border: 1px solid #3e3e3e;
   color: #3e3e3e;
}

@media (max-width: 768px) {
   .back-to-top span {
      font-size: 25px;
      width: 40px;
      height: 40px;
   }
}

@media (max-width: 600px) {
   .back-to-top {
      right: 15px;
      bottom: 20px;
   }
}
@media (max-width: 414px) {
   .back-to-top {
      right: 15px;
      bottom: 30px;
   }
}

/*
------------------------------
      PRELOADER
------------------------------
*/
#preloader {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   z-index: 9999;
   overflow: hidden;
   background-color: #fff;
}

#preloader:before {
   content: "";
   position: fixed;
   top: calc(50% - 30px);
   left: calc(50% - 30px);
   border: 6px solid #243653;
   border-top-color: #C1D4F0;
   border-radius: 50%;
   width: 60px;
   height: 60px;
   -webkit-animation: animate-preloader 1s linear infinite;
   animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

@keyframes animate-preloader {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

/*
------------------------------------------
   Disable aos animation delay on mobile
-------------------------------------------
*/
@media screen and (max-width: 768px) {
   [data-aos-delay] {
      transition-delay: 0s !important;
   }
}

/*
------------------------------------------
      HEADER
-------------------------------------------
*/
#header {
   background-color: #253654;
   /* border-bottom: 1px solid #acacac; */
   transition: all 0.5s;
   z-index: 997;
   padding: 25px 0 20px 0;
   max-height: 150px;
}

#header.header-scrolled {
   /* background-color: rgba(37, 54, 84, .96); */
   background-color: #253654;
   border-bottom: 1px solid #acacac;
   padding: 20px 0 15px 0;
}

#header .logo {
   margin: 0 0 0 10px;
   padding: 0;
   width: 25%;
}

#header img {
   max-height: 100px;
   max-width: 517px;
   width: 100%;
   position: relative;
}

#header.header-scrolled img {
   /* max-height: 60px; */
   width: 100%;
   position: relative;
}

#header.header-scrolled .mobile-nav-toggle {
   top: 25px;
}

/*  -------  */
@media (max-width: 1366px) {
   #header {
      padding: 19px 0 14px 0;
   }
   #header.header-scrolled {
      padding: 16px 0 11px 0;
   }
}

@media (max-width: 992px) {
   #header {
      padding: 20px 0 15px 0;
   }
   #header.header-scrolled {
      padding: 20px 0 15px 0;
   }
}

@media (max-width: 768px) {
   #header {
      padding: 25px 0 20px 0;
   }
   #header .logo {
      margin: 0 0 0 5px;
      width: 30%;
   }
   #header.header-scrolled {
      padding: 16px 0 15px 0;
   }
   #header.header-scrolled .mobile-nav-toggle {
      top: 20px;
   }
}

@media (max-width: 600px) {
   #header {
      padding: 17px 0 15px 0;
   }
   #header .logo {
      width: 35%;
   }
   #header.header-scrolled .mobile-nav-toggle {
      right: 20px;
   }
}

@media (max-width: 414px) {
   #header {
      padding: 18px 0 13px 0;
   }
   #header .logo {
      margin: 0;
      width: 45%;
   }
   #header.header-scrolled .mobile-nav-toggle {
      top: 20px;
      right: 15px;
      font-size: 22px;
   }
}

/*
------------------------------------------
      DESKTOP NAVIGATION
-------------------------------------------
*/
.nav-menu ul {
   margin: 0 40px 0 0;
   padding: 0;
   list-style: none;
}

.nav-menu > ul {
   display: flex;
}

.nav-menu > ul > li {
   position: relative;
   white-space: nowrap;
   padding: 10px 13px;
}

.nav-menu a {
   display: block;
   position: relative;
   color: #f4f4f4;
   transition: 0.3s;
   font-weight: 500;
   font-family: "Lora", serif;
   letter-spacing: 3px;
   /* text-transform: uppercase; */
}

.nav-menu > ul > li > a:before {
   content: "";
   position: absolute;
   width: 100%;
   height: 1px;
   bottom: -6px;
   left: 0;
   background-color: #DBB480;
   visibility: hidden;
   width: 0;
   transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .active > a:before
{
   visibility: visible;
   width: 100%;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a
{
   color: #fff;
}

@media (max-width: 1366px) {
   .nav-menu ul {
      margin: 0 10px 0 0;
   }
   .nav-menu > ul > li {
      padding: 1px 13px;
   }
   .nav-menu a {
      font-size: 15px;
      letter-spacing: 2px;
   }
}

@media (max-width: 1200px) {
   .nav-menu a {
      font-size: 14px;
   }
   .nav-menu > ul > li {
      padding: 1px 10px;
   }
}
/*
------------------------------------------
      MOBILE NAVIGATION
-------------------------------------------
*/
.g-menu-open::before {
   font-family: "Material Icons";
   content: "\e5d2";
   font-weight: normal;
   font-style: normal;
   display: inline-block;
   line-height: 1;
   text-transform: none;
   letter-spacing: normal;
   word-wrap: normal;
   white-space: nowrap;
   direction: ltr;

   /* Support for all WebKit browsers. */
   -webkit-font-smoothing: antialiased;
   /* Support for Safari and Chrome.
   text-rendering: optimizeLegibility; */

   /* Support for Firefox. */
   -moz-osx-font-smoothing: grayscale;

   /* Support for IE. */
   font-feature-settings: 'liga';
}

.g-menu-cancel::after {
   font-family: "Material Icons";
   content: "\e5c9";
   font-weight: normal;
   font-style: normal;
   display: inline-block;
   line-height: 1;
   text-transform: none;
   letter-spacing: normal;
   word-wrap: normal;
   white-space: nowrap;
   direction: ltr;

   /* Support for all WebKit browsers. */
   -webkit-font-smoothing: antialiased;
   /* Support for Safari and Chrome.
   text-rendering: optimizeLegibility; */

   /* Support for Firefox. */
   -moz-osx-font-smoothing: grayscale;

   /* Support for IE. */
   font-feature-settings: 'liga';
}

.mobile-nav-toggle {
   position: fixed;
   right: 25px;
   top: 25px;
   z-index: 9998;
   border: 0;
   background-color: transparent;
   font-size: 28px;
   transition: all 0.4s;
   outline: none !important;
   line-height: 1;
   cursor: pointer;
   text-align: right;
}

.mobile-nav-toggle i {
   color: #fff;
}

.mobile-nav {
   position: fixed;
   top: 80px;
   right: 15px;
   bottom: 15px;
   left: 15px;
   z-index: 9999;
   overflow-y: auto;
   border: 1px solid #a6a6a6;
   font-size: 16px;
   background-color: #253654;
   padding: 20px 0 0 15px;
   transition: ease-in-out 0.2s;
   opacity: 0;
   visibility: hidden;
   border-radius: 10px;
}

.mobile-nav * {
   margin: 0;
   padding: 0;
   list-style: none;
}

.mobile-nav a {
   display: block;
   position: relative;
   color: #f7f7f7;
   padding: 12px 20px;
   font-weight: 500;
   outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a
{
   color: #dbb480;
   text-decoration: none;
}

.mobile-nav-overly {
   width: 100%;
   height: 100%;
   z-index: 9997;
   top: 0;
   left: 0;
   position: fixed;
   background-color: rgba(4, 7, 9, 0.6);
   overflow: hidden;
   display: none;
   transition: ease-in-out 0.2s;
}

.mobile-nav-active {
   overflow: hidden;
}

.mobile-nav-active .mobile-nav {
   opacity: 1;
   visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
   color: #fff;
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
   .mobile-nav {
      top: 80px;
   }
}
@media (max-width: 600px) {
   .mobile-nav-toggle {
      top: 20px;
      right: 20px;
   }
   .mobile-nav {
      top: 70px;
   }
}

@media (max-width: 500px) {
   .mobile-nav-toggle {
      font-size: 24px;
   }
   .mobile-nav {
      top: 65px;
   }
}

@media (max-width: 414px) {
   .mobile-nav-toggle {
      top: 20px;
      right: 15px;
      font-size: 22px;
   }
   .mobile-nav {
      top: 60px;
   }
}

/*
------------------------------------------
      HERO
-------------------------------------------
*/

/*
#hero {  make work in future - scrolling version
   background-image: url("../img/ges-hero-workers.jpg");
   background-repeat: no-repeat;
   background-position: center center;
   width: 100%;
   height: 100vh;
   position: relative;
   margin-top: 116px;
   padding: 0;
   border-bottom: 1px solid #7e7f81;
}*/

#hero {
   width: 100%;
   height: auto;
   position: relative;
   margin-top: 137px;
   padding: 0;
   border-bottom: 1px solid #7e7f81;
}

#hero img {
   width: 100%;
   position: relative;
   text-align: center;
   margin: 0;
   padding: 0;
}

#hero .textContainer {
   display: inline-block;
}

#hero .textScale {
   display: table;
}

#hero .hero-container {
   position: absolute;
   bottom: 0;
   top: 0;
   left: 0;
   right: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   text-align: center;
}

@media (max-width: 1366px) {
   #hero {
      margin-top: 94px;
   }
}

@media (max-width: 992px) {
   #hero {
      margin-top: 82px;
   }
}

@media (min-width: 599.9999px) {
   #hero .hero-mobile {
      display: none;
   }
}
@media (max-width: 600px) {
   #hero {
      margin-top: 70px;
   }
   #hero .hero-desktop {
      display: none;
   }
   #hero .hero-mobile {
      display: block;
   }
}

@media (max-width: 500px) {
   #hero {
      margin-top: 65px;
   }
}

@media (max-width: 414px) {
   #hero {
      margin-top: 61px;
   }
}

/*
------------------------------------------
      SECTIONS
-------------------------------------------
*/
section {
   padding: 55px 0 30px 0;
   overflow: hidden;
}

.section-title {
   background-color: #253654;
   opacity: 1;
   margin-left: -15px;
   margin-right: -15px;
   /* margin-bottom: 15px; */
}

.section-title h2 {
   position: relative;
   font-size: 26px;
   font-weight: 500;
   letter-spacing: 3px;
   margin: 0;
   /* text-transform: uppercase; */
   color: #f4f4f4;
   line-height: 5rem;
   text-align: center;
}

.section-title h2:before {
   /* gold line */
   content: "";
   width: 50px;
   height: 2px;
   display: inline-block;
   background-color: #DBB480;
   margin: 0 20px 7px 0;
}

.section-title h2:after {
   /* gold line */
   content: "";
   width: 50px;
   height: 2px;
   display: inline-block;
   background-color: #DBB480;
   margin: 0 0 7px 20px;
}

@media (max-width: 992px) {
   section {
      padding: 40px 0;
   }
}

@media (max-width: 768px) {
   .section-title h2 {
      font-size: 22px;
      line-height: 4.5rem;
   }
   section {
      padding: 35px 0;
   }
}

@media (max-width: 414px) {
   .section-title h2 {
      font-size: 20px;
      line-height: 3.5rem;
   }
}

/*
------------------------------------------
      COMPANY
-------------------------------------------
*/
.company {
   /* padding: 135px 0 80px 0; */
   position: relative;
}

.company::before {
   /* transparent layer over section */
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   background-color: rgba(255, 255, 255, 0.75);
   z-index: 9;
}

.company img {
   padding-right: 20px;
   padding-left: 10px;
}

.company h3 {
   margin-bottom: 40px;
}

.company .copy {
   background-color: #fff;
   padding: 0 0 20px 35px;
}

.company .copy p:last-child {
   margin-bottom: 0;
}
/*
------------------------------------------
      TTW
-------------------------------------------
*/
.ttw {
   /* padding: 135px 0 80px 0; */
   position: relative;
}

.ttw::before {
   /* transparent layer over section */
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   background-color: rgba(255, 255, 255, 0.75);
   z-index: 9;
}

.ttw img {
   padding-right: 20px;
   padding-left: 10px;
}

.ttw h3 {
   margin-bottom: 40px;
}

.ttw .copy {
   background-color: #fff;
   padding: 0 0 20px 35px;
}

.ttw .copy p:last-child {
   margin-bottom: 0;
}

@media (max-width: 992px) {
   .company {
      padding: 100px 0 45px 0;
   }
   .company .copy {
      padding: 0 35px 40px 35px;
   }
   .company img {
      padding-right: 15px;
      padding-left: 15px;
   }
   .company h3 {
      margin-bottom: 30px;
   }
}

@media (max-width: 768px) {
   .company {
      padding: 80px 0 35px 0;
   }
}

@media (max-width: 414px) {
   .company {
      padding: 40px 0 35px 0;
   }
}

/*
------------------------------------------
      ABOUT - PROFILE
------------------------------------------
*/
.about {
   position: relative;
}

.about::before {
   /* transparent layer over section */
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   background-color: rgba(255, 255, 255, 0.75);
   z-index: 9;
}

.about h3 {
   border-bottom: none !important;
   margin-bottom: 20px;
}

.about .img-behind {
   padding-right: 0;
}

.about .copy {
   padding: 0 50px 20px 25px;
}

.about .copy p:last-child {
   margin-bottom: 0;
}

.profile {
   padding: 10px 0 35px 0;
   text-align: center;
   width: 100%;
}

.profile-img {
   display: block;
   max-width: 240px;
   border-radius: 50%;
   border: 7px solid #b6c4db;
   margin: 0 auto;
}

.about .about-title {
   line-height: 25px;
}

@media (max-width: 992px) {
   .profile-img {
      max-width: 225px;
   }
   .about .img-behind {
      padding-right: 15px;
   }
   .profile {
      padding: 10px 0 20px 0;
   }
   .about .copy {
   	padding: 0 40px 10px 40px;
   }
   .about .content {
      padding-top: 30px;
   }
   .about h3 {
      margin-bottom: 10px;
   }
}

/*
------------------------------------------
      SERVICES
------------------------------------------
*/

.services {
   position: relative;
}

.services::before {
   /* transparent layer over section */
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   background-color: rgba(255, 255, 255, 0.75);
   z-index: 9;
}

.services .content {
   padding: 60px 20px 0 20px;
}

.services .icon-box {
   background-color: #fff;
   margin-bottom: 30px;
   padding: 30px 0 20px 0;
   border-radius: 6px;
   height: auto;
   min-height: 335px;
   border: 1px solid #b6c4db;
}

.services .icon-box i {
   color: #56a241; /* avocado green */
   text-align: center;
   width: 100%;
}

.services .icon-box h4 {
   text-align: center;
   width: 100%;
   margin: 25px 0 20px 0;
}

.services .icon-box p {
   font-size: 15px;
   margin: 0 30px 0 35px;
}

.services .icon-box p:last-child {
   margin-bottom: 0;
}

@media (max-width: 992px) {
   .services .icon-box {
      min-height: 350px;
   }
   .services .icon-box p {
      line-height: 24px;
      margin: 0 20px 0 25px;
   }
   .services .icon-box h4 {
      font-size: 16px;
   }
   .services col-md-4 {
      padding-right: 5px;
      padding-left: 5px;
   }
}

@media (max-width: 768px) {
   .services .icon-box {
      min-height: auto;
   }
   .services .icon-box h4 {
      font-size: 16px;
      margin-top: 25px;
   }
}
.policy {
    margin: 100px 0 0 0;
}
.policy .copy {
    padding: 0 40px;
}

@media (max-width: 992px) {
   .resources .img-behind {
      padding: 0 30px 40px 30px;
   }
   .resources .copy {
      padding: 0 40px;
   }
   .resources .copy ul {
      margin-left: 20px;
   }
   .resources .copy ul i {
      font-size: 17px;
   }
   .resources .copy a {
      line-height: 1.5;
   }
   .resources h3 {
      margin-bottom: 30px;
   }
}

@media (max-width: 600px) {
   .resources .copy ul {
       margin-left: 10px;
   }
}

@media (max-width: 414px) {
   .resources .copy ul {
       margin-left: 0;
   }
}

/*
------------------------------------------
      CONTACT
------------------------------------------
*/

/* Makes content hid no copy/code */
span.uhc { unicode-bidi:bidi-override; direction:rtl }
span.uhc.meem:before { content:"moc.sboj-sis" }
span.uhc.meem:after { content:"@retnuhc" }
span.uhc.hpem:before { content:"5255." }
span.uhc.hpem:after { content:"5.448" }

.contact {
   padding-bottom: 100px;
   position: relative;
}

.contact::before {
   /* transparent layer over section */
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   background-color: rgba(255, 255, 255, 0.75);
   z-index: 9;
}

.contact .content {
   padding-top: 40px;
   text-align: center;
}

.contact .info-box {
   border: 1px solid #b6c4db;
   border-radius: 6px;
   text-align: center;
   padding: 25px 0 40px 0;
   width: 100%;
}

.contact .info-box i {
   color: #56a241; /* avacado green */
   padding: 10px 0 25px 0;
}

.contact .info-box h5 {
   margin: 25px 0 15px 0;
}

.contact .info-box p {
   padding: 0;
   line-height: 24px;
   margin-top: 15px;
   margin-bottom: 0;
}

.contact p {
   padding: 0 100px;
   line-height: 200%;
   margin-top: 15px;
   margin-bottom: 0;
}

@media (max-width: 1200px) {
   .contact p {
      padding: 0 130px;
   }
}

@media (max-width: 992px) {
   .contact p {
      padding: 0 90px;
   }
   .contact h5 {
      font-size: 17px;
   }
   .contact .container .row {
      margin-right: 0;
      margin-left: 0;
   }
}

@media (max-width: 768px) {
   .contact {
      padding-bottom: 60px;
   }
   .contact p {
      padding: 0;
   }
   .contact .info-box {
      margin-top: 30px !important;
      padding: 20px 0 25px 0;
   }
}

@media (max-width: 600px) {
   .contact .info-box p {
      font-size: 15px;
   }
}

/* ------------------------------------- */
@-webkit-keyframes animate-loading {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

@keyframes animate-loading {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

/*
------------------------------------------
      FOOTER
------------------------------------------
*/

#footer {
   background-color: #a3a3a3;
   padding: 0 0 10px 0;
   color: #d7d7d7;
   font-size: 17px;
}

#footer .footer-top {
   background-color: #243653;
   border-bottom: 1px solid #000;
   padding: 60px 0 15px 0;
}

#footer .footer-top .footer-links {
   display: table;
   margin: 0 auto;
   margin-bottom: 55px;
}

#footer .footer-top .footer-links ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
}

#footer .footer-top .footer-links ul li {
   margin-right: 30px;
   padding: 5px 0;
   font-weight: 500;
   display: flex;
}

#footer .footer-top .footer-links ul li:last-child {
   margin-right: 0;
}

#footer .footer-top .footer-links ul a {
   font-family: "Lora", serif;
   color: #f4f4f4;
   transition: 0.2s;
   letter-spacing: 2px;
   /* text-transform: uppercase; */
}

#footer .footer-top .footer-links ul a:hover {
   color: #dbb480;
}

#footer .keylogo {
   padding: 10px 0;
   text-align: center;
}

#footer .keylogo img {
   max-width: 130px;
}

#footer .copyright {
   text-align: center;
   padding-top: 15px;
}

#footer .copyright p {
   color: #d7d7d7;
   font-size: 14px;
   margin-bottom: 1rem;
}

#footer .copyright .material-icons {
   font-size: 18px;
   position: relative;
   top: 3px;
}

#footer .credits {
   color: #3a3a3a;
   text-align: center;
   font-size: 12px;
   padding-top: 20px;
}

#footer .credits p {
   color: #ccc;
}

#footer .credits a {
   color: #3a3a3a;
   transition: 0.2s;
}

#footer .credits a:hover {
   color: #fff;
   text-decoration: underline;
}

@media (max-width: 992px) {
   #footer {
      font-size: 16px;
   }
   #footer .footer-top {
      padding: 35px 0 15px 0;
   }
   #footer .footer-top .footer-links {
      margin-bottom: 45px;
   }
   #footer .footer-top .footer-links ul li {
      margin-right: 25px;
   }
   #footer .copyright {
      padding-top: 10px;
   }
}

@media (max-width: 768px) {
   #footer {
      font-size: 15px;
   }
   #footer .footer-top .footer-links {
      margin-bottom: 25px;
   }
   #footer .footer-top .footer-links ul li {
      margin-right: 20px;
   }
   #footer .footer-top .footer-links ul a {
      letter-spacing: 1px;
   }
}

@media (max-width: 600px) {
   #footer {
      font-size: 14px;
   }
   #footer .footer-top .footer-links ul li {
      margin-right: 15px;
   }
   #footer .keylogo img {
      max-width: 100px;
   }
   #footer .copyright .material-icons {
      font-size: 16px;
   }
}

@media (max-width: 500px) {
   #footer .copyright p {
      font-size: 12px;
      font-weight: 300;
   }
   #footer .footer-top .footer-links ul li {
      font-weight: 300;
      margin-right: 11px;
   }
   #footer .footer-top .footer-links ul a {
      text-transform: none;
   }
}

@media (max-width: 414px) {
   #footer .footer-top .footer-links ul {
      display: block;
      /* display: flex; */
   }
   #footer .footer-top .footer-links {
      margin: 0 0 0 30px;
      padding: 5px 0 8px 0;
   }
   #footer .footer-top {
      padding: 25px 0 15px 0;
   }
   #footer .copyright {
       padding: 10px 30px 0 30px;
   }
}
