﻿/*
Theme Name: Red Moose Translation & Employment Services
Author: AB
Version: 1.1
*/

:root {
    --sidebar-width: 280px;
    --bg-dark: #111;
    --bg-grey: #666;
    --bg-grey-light: #F5F5F5;
    --bg-red: #EA2727;
    --bg-red-dark: #D5272B;
    --text-light: #fff;
    --content-padding: 30px 60px;
}

* {
    margin: 0;
    /* padding: 0; */
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

h1 {
  font-size: 35px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 20px;
}

.layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-red);
    color: var(--text-light);
    padding: 50px 15px 50px 40px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
    /* overflow-y: hidden; */
}

.sidebar .logo {
    margin-bottom: 60px;
}

.sidebar .custom-logo {
  width: 240px;
  margin-top: -80px;
  margin-left: -60px;
}

.sidebar img {
    max-width: 240px;
}

.sidebar .url {
  writing-mode: vertical-rl;
  position: absolute;
  top: 25px;
  left: 230px;
  font-size: 30px;
  font-weight:bold;
}

.sidebar .company {
  font-size: 30px;
  margin-left: -25px;
  margin-right: 0;
  margin-top: -50px;
  margin-bottom: 50px;
  font-weight: bold;
  font-family: Helvetica;
  text-align:center;
}

.sidebar .slogan {
  font-size: 20px;
  margin-left: -25px;
  margin-right: 0;
  margin-top: -20px;
  margin-bottom: 90px;
  font-family: Helvetica;
  font-style: italic;
  text-align: center;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
}

.sidebar nav li {
    #margin-bottom: 20px;
}

.sidebar nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    display: block;
    padding: 10px 5px;
}

.sidebar nav a:hover {
    color: #fff;
    background: #b61b1d;
}

#my-custom-sidebar-area {
  display: none;
}
#my-custom-sidebar-area-right {
   list-style: none;
   margin: 0 28px;
   border-radius: 25px;
   background-color: #FFF;
}

#my-custom-sidebar-area li, #my-custom-sidebar-area-right li {
  margin: 0!important;
  padding: 10px;
  border-radius: 25px;
}

#my-custom-sidebar-area ul li:hover, #my-custom-sidebar-area-right ul li:hover {
    background: #b61b1d;
}

[data-wpml="current-language-item"] {
  background-color: var(--bg-red)!important;
}
[data-wpml="current-language-item"] span {
  color: #FFF!important;
}

.sidebar-right {
    background: var(--bg-red);
    padding: 0;
    margin: 0;
    height: 100%;
    background-image: url('./images/Red_Moose_Shadow.png');
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 300px auto;
}

.main-main {
  display: flex;
}

h2.slogan {
  font-size: 30px;
  color: var(--bg-red);
}


.main-left {
  flex:6;
}

.main-right {
  flex: 2;
}

.content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
  position: relative;
  text-align: center;
}

.hero .title
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-light);
  text-shadow: 2px 2px var(--bg-dark);
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.main-content {
    padding: var(--content-padding);
    /* max-width: 1024px; */
    line-height: 1.6;
}

.main-content h1,
.main-content h2,
.main-content h3 {
    margin-bottom: 18px;
}

.main-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonialsection {
    padding: 20px;
    border: 5px solid var(--text-light);  
    margin: 0 30px;
    border-radius: 25px;
    color: var(--content-padding);
    background-color: #FFF;
    min-height: 290px;
}

.testimonial_name {
  font-style: italic;
}

footer {
    padding: 40px var(--content-padding);
    background: var(--bg-grey-light);
    font-size: 14px;
    color: var(--bg-grey);
    border-top:2px solid #FFF;
}
.footer {
  width:100%;
  margin: 10px;
}
.footer p {
  margin: 30px;
}
ul#menu-footer-menu, ul#menu-footer-menu-dutch, ul#menu-footer-menu-dutch-1 {
  list-style-type: none;
  flex:1;
  text-align: center;
  margin-right: 55px;
  margin-top: 40px;
}
ul#menu-footer-menu li a, ul#menu-footer-menu-dutch li a, ul#menu-footer-menu-dutch-1 li a {
  color: #FFF;
}
ul#menu-footer-menu li a:hover, ul#menu-footer-menu-dutch li a:hover, ul#menu-footer-menu-dutch-1 li a:hover {
  text-decoration: none;
}

.footer-menu-mobile, .copyright-mobile {
  display: none;
  visibility:hidden;
}

#calltoaction {
  margin: 30px 60px;
  border: 5px solid var(--bg-red);
  border-radius: 25px;
  padding: 25px;
  font-size: 20px;
}
#calltoaction a {
  color: var(--bg-red);
}
#calltoaction a:hover {
  color: #0000FF;
}
.hamburger {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 18px 25px;
    font-size: 18px;
    z-index: 1000;
    cursor: pointer;
}

.border {
  border: 1px solid black;
  padding: 12px;
  margin-top: 12px;
}

.disclaimer {
  border: none;
  padding: 12px;
  margin-top: 12px;
}

.disclaimer table tr, .disclaimer table td,
.bible-verse table tr, .bible-verse table td,
.note table tr, .note table td {
  border: none;
}

.bible-verse, .note {
  color: var(--bg-red);
  padding: 12px 90px;
  font-weight: bold;
  font-size: 25px!important;
}

.testimonial {
  margin-top: 12px;
  margin-bottom: 12px;
}

.faq {
  margin-bottom: 12px;
}

.faq button {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.8s;
  font-size: 16px;
  font-weight: bold;
}
.faq button:hover {
  background-color: #ccc;
}
.faq button::after {
  content: "\002B";
  float: right;
}

.faq button.active::after {
  content: "\2212";
  float: right;
}

.faq div {
  border: 1px solid #ccc;
  padding: 12px;
  margin-bottom: 12px;
}

.faqcontent_hidden {
  visibility:hidden;
  display: none;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s linear;
}

.faqcontent_visible {
   visibility: visible;
   display: block;
   opacity: 1;
   transition: visibility 0s linear 0s, opacity 0.3s linear;
}

.wpcf7-text {
  height: 30px;
}
.wpcf7-select {
  border: 1px solid #CCC;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
}
.wpcf7-textarea {
  width:800px;
  height:200px;
}
.wpcf7-submit {
  border: 1px solid #CCC;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
}
#mfcf7_zl_add_file {
  border: 1px solid #CCC;
  padding: 10px 13px;
  border-radius: 10px;
  font-size: 16px;
}

.certified-translations-quote table tr td {
  padding: 15px 75px;
  color: var(--bg-red);
  font-size: 25px;
  text-align:center;
  font-weight: bold;
  border: none;
}

.testimonialSlide {display: none;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* The dots/bullets/indicators */
.dots {
  text-align:center;
}
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.testimonialsection .active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.no-wrap {
  white-space: nowrap;
}

.table-no-border table,
.table-no-border table tr,
.table-no-border table th,
.table-no-border table td {
    border: none !important;
    padding: 0;
}

@media (max-width: 992px) {

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 260px;
        z-index: 10;
        overflow: auto;
        overflow-x: hidden;
    }
    .sidebar nav ul {
      margin-left: -4px;
      
    }
    #my-custom-sidebar-area {
      list-style: none;
      display: inline!important;
    }
    #my-custom-sidebar-area-right {
      display: none;
    }
    #my-custom-sidebar-area li, #my-custom-sidebar-area-right li
    {
      margin-left: -10px!important;
    }
    ul#menu-footer-menu, ul#menu-footer-menu-dutch, ul#menu-footer-menu-dutch-1 {
      text-align: left;
      margin-left: -4px;
    }
    .sidebarspacer {
      display: none;
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .hero img {
      margin-top: 60px;
      width:110%;
      height:110%
    }
    .hero .title
    {
      top: 75%;
      left: 30%;
      transform: translate(-20%, -50%);
    }    
    .sidebar .custom-logo {
      margin-top: -20px;
    }
    .sidebar .url {
      top: 85px;
      left: 225px;
    }

    .sidebar .company {
      margin-left: 0;
      margin-right: 30px;
    }
    .main-right {
      display: none;
    }
    .content {
        margin-left: 0;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .bible-verse, .note {
      padding: 12px 20px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .main-content {
        padding: 40px 25px;
        margin-top: 60px;
    }
    
    .Photo-Robert-REDMTES img {
	    width: 140px !important;
    }
    
    .wpcf7-textarea {
      width: auto!important;
      padding-right: 15px!important;
    }

    footer {
        padding: 30px 25px;
    }

    .footer-menu-mobile, .copyright-mobile {
      display: inline;
      visibility:visible;
    }
}
