/*
    =============================================================================================
    Elements
    =============================================================================================
*/


html {
    margin: 0;
    font-size: 62.5%;
    height: 100%;
}

body {
    background-size: 50%;
    font-size: 1.8em;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    font-weight: 400;
}

@media (min-width: 500px) {
    body {
        background-size: 25%;
    }
}

hr {
    border-top: 1px solid #c5c5c5;
    padding: 5px auto;
    width: 98%;
}

h1 { 
    font-size: 4.5rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
}

h2 { 
    font-size: 3.6rem; 
    font-family: 'Ubuntu', sans-serif; 
    line-height: 1.25; 
    letter-spacing: -.1rem; 
    font-weight: 600;
}

h3 { 
    font-size: 2.5rem; 
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
}

h4 { 
    font-size: 2.6rem; 
    font-family: 'Ubuntu', sans-serif; 
    line-height: 1.35; 
    letter-spacing: -.08rem; 
}

h5 { 
    font-size: 2.4rem; 
    font-family: 'Ubuntu', sans-serif; 
    line-height: 1.5; 
    letter-spacing: -.05rem; 
}

h6 { 
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
  
  /* Larger than phablet */
  @media (min-width: 500px) {
    h1 { font-size: 4.2rem; } 
    h2 { font-size: 3.6rem; }
    h3 { font-size: 2.0rem; }
    h4 { font-size: 2.6rem; }
    h5 { font-size: 2.0rem; }
    h6 { font-size: 2.3rem; }
  }

.fl-module-content h2 {
	font-size: 3.6rem;
}
  
p {
    margin-top: 0; 
    font-size: 1.8rem
}

.bold {
    font-weight: 700;
}

a {
    text-decoration: none;
    padding: 3px;
}

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

#content-desktop {display: flex;}
#content-mobile {display: none;}

@media screen and (max-width: 800px) {

#content-desktop {display: none;}
#content-mobile {display: flex; margin: 0 auto;}
}

.row {
    width: 100%;
    padding: 0;
    margin: 0;
}

.main-section {
    min-height: calc(100vh - 90px);
}

.main-section-tsp {
    min-height: calc(100vh - 90px);
    top: 0;
    left: 0;
    width: 100%
}

/*
    =============================================================================================
    Navigation
    =============================================================================================
*/

.navbar-mobile {
    width: 100%;
    height: 6.0rem;
}

.mobile-logo {
    width: 80%;
}

.mobile-nav {
    width: 100%;
    position: relative;
}

.mobile-nav-button {
    margin: 0;
    padding: 0 10px;
    position: absolute;
    right: 1.0rem;
    border-radius: 10px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}

.navbar {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
}

.navbar-logo {
    width: 100%;
    text-align: center;
    padding-bottom: 3.0rem;
}

.navbar-logo img {
    width: 90%;
    height: auto;
}

.text-logo {
    margin: 0 auto;
}

.navbar-logo h6 {
    font-size: 10.0rem;
}

.navbar-nav { 
    position: relative;
    padding-right: 0;
}

.navbar-nav .menu-primary-container {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nav {
    list-style-type: none;
    justify-content: center;
}

.nav li {
    display: inline;
    text-align: center;
}

.nav li a {
    margin: 0;
    display: block;
    padding: 10px;
    font-weight: 700;
    font-size: 1.4rem;
}

.sub-menu li a {
    text-align: left;
}

@media screen and (min-width: 350px) {
    .nav li a {
        font-size: 1.6rem;
    }

	.link-menu-box {
    height: 45px;
	}
}

@media screen and (min-width: 768px) {
    .navbar-logo img {
        height: 300px;
        width: auto;
    }
    
    .nav li a {
        min-width: 100px;
        font-size: 1.9rem;
    }
	
	.link-menu-box {
    height: 50px;
	}
}

.nav li a:hover {
    text-decoration: none;
}

.nav ul {
    display: none;
    position: absolute;
    z-index: 99990;
}

.nav li:hover > ul {
    display: block;
    padding: 0;
}

.nav ul li a {
    display: block;
    padding: 10px;
    margin: 0;
}

.overlay-case {
    margin: 0;
    padding: 0;
}

/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */    
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 99999; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  }
  
  /* Position the content inside the overlay */
  .overlay-content {
    position: relative;
    top: 15%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
  }

  .overlay-case ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  /* The navigation links inside the overlay */
  .overlay a {
    padding: 5px;
    text-decoration: none;
    font-size: 3.0rem;
    color: #818181;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
  }
  
  /* When you mouse over the navigation links, change their color */
  .overlay a:hover {
    color: #f1f1f1;
  }
  
  /* Position the close button (top right corner) */
  .overlay .closebtn {
    position: absolute;
    top: 1.0rem;
    right: 1.0rem;
    font-size: 3.0rem;
    line-height: 1;
  }

/*
    =============================================================================================
    Front Page
    =============================================================================================
*/

.call-to-action {
    padding: 2.0rem;
    text-align: center;
}

.cta-button {
    margin: 0 1.0rem;
    border: 2px solid #37123c;
    padding: 1.5rem;
    font-family: "Protest Riot", sans-serif;
    color: #37123c;
}

.cta-button:hover {
    background-color: #37123c;
    color: #ffffff;
    transition-duration: 700ms;
}

.banner1, .banner2 {
    position: relative;
    margin: 3.0rem 0;
    padding: 1.0rem 0;
    width: 100%;
}

.banner1 .stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1b9aaa;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
    z-index: -1;
}

.banner1-spread, .banner2-spread {
    position: relative;
    display: flex;
    flex-direction: column;
}

.banner1-spread .picture {
    flex-grow: 1; 
    text-align: center;
}

.banner1-spread .picture img {
    width: 50%;
    height: auto;
    box-shadow: 8px 8px #c98bb9;
}

.banner1-spread .content {
    flex-grow: 4; 
    align-self: center;
    padding: 2.0rem 1.0rem 6.0rem 1.0rem;
    text-align: center;
}

.banner-title {
    font-family: "Protest Riot", sans-serif;
    font-size: 4.0rem;
    font-weight: 900;
}

.banner-text {
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1;
}

.banner2-spread .content {
    display: none;
}

.banner2-spread .content img {
    width: 50%;
    float: right;
}

.banner2-spread .box {
    flex-grow: 1;
    margin: 1.5rem;
    text-align: center;
}

.banner2-spread .box img {
    width: 75%;
    height: auto;
}

.banner3 {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
    background-color: #c0df85;
    margin: 3.0rem 0;
    padding: 5.0rem 1.0rem;
    width: 100%;
}

.banner3 .banner-title {
    margin-bottom: 2.0rem;
    width: 100%;
    text-align: center;
}

.banner3 .banner-text {
    color: #37123c;
}

.banner3-spread {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 3.0rem;
}

.banner3 .picture {
    flex-grow: 1; 
    text-align: center;
}

.banner3-spread .picture img {
    width: 50%;
    height: auto;
    border-radius: 2.5rem;
}

.banner3 .content {
    flex-grow: 2;
    align-self: center;
    text-align: center;
    padding: 2.0rem 1.0rem;
}

#banner3-image1 {
    order: 2;
    margin-bottom: 2.0rem;

}

#banner3-text {
    order: 1;
}

#banner3-image2 {
    order: 3;
}

@media screen and (min-width: 768px) {

    .banner1-spread, .banner2-spread {
        flex-direction: row;
    }

    .banner1-spread .picture {
        flex-basis: 500px;
    }

    .banner1-spread .picture img {
        width: 100%;
    }

    .banner1-spread .content {
        flex-grow: 4; 
        align-self: center;
        padding: 0 0 0 8.0rem;
        text-align: center;
    }

    .banner2-spread .box img {
        width: 100%;
        height: auto;
    }

    .banner2-spread .content {
        display: block;
        flex-grow: 1;
        align-self: center;
        flex-basis: 500px;
        padding-right: 2.0rem;
        text-align: center;
        line-height: 1.2;
    }

    .banner3-spread {
        flex-direction: row;
    }

    .banner3 .content {
        padding: 0 4.0rem;
    }

    .banner3 {
        clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
        padding: 5.0rem 0;
    }

    .banner3 .picture {
        flex-basis: 300px;
    }

    .banner3-spread .picture img {
        width: 100%;
    }

    .banner3 .content {
        padding: 0 2.0rem;
    }

    #banner3-image1 {
        order: 1;
        margin-bottom: 0;
    }

    #banner3-text {
        order: 2;
    }
}

/*
    =============================================================================================
    Color Card Blog Page
    =============================================================================================
*/

.ms-card {
    position: relative;
    margin-right: 2.0rem;
    background: #dad9d9;
    overflow: hidden;
}

.ms-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat, repeat;
    background-position: center top;
}

.ms-card-category {
    position: absolute;
    top: -40px;
    right: -70px;
    z-index: 10;
    background-color:rgba(39, 39, 39, 0.6);
    transform: rotate(45deg);
    height: 100px;
    width: 150px;
}

.card-cat-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-cat {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.ms-card-category a {
    font-weight: 700;
    color: white;
}

.ms-card-title {
    padding: 1.0rem;
    color: white;
    height: 100px;
}

.ms-card-title a {
    color: white;
}


/*
    =============================================================================================
    Single Post Page
    =============================================================================================
*/

.comments-area {
    padding: 1.0rem 0;
}

.comments-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.comment-list {
    padding: 2.0rem 1.0rem;
}

.depth-2 {
    margin: 0 2.0rem;
}

@media screen and (min-width: 768px) {
    .comment-list {
        padding: 2.0rem 5.0rem;
    }

    .depth-2 {
        margin: 0 5.0rem;
    }
}

.comment article {
    padding: 1.5rem;
    margin-bottom: 2.0rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.comment-author {
    margin-bottom: 0;
}

.comment-author img {
    margin-right: 1.0rem;
    border-radius: 50%;
    float: left;
}

.comment-author .fn {
    position: relative;
}

.says {
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}

.comment-metadata {
    position: relative;
    margin-bottom: 2.0rem;
}

.comment-metadata a {
    color: #292929;
}

.reply {
    padding-left: 3.0rem;
}

.new-comment-box {
    margin: 0 auto;
    padding: 2.0rem;
    max-width: 500px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.comment-notes {
    font-size: 1.2rem;
}

.form-control {
    font-size: 1.7rem !important;
}

.comment-form-cookies-consent label {
    font-size: 1.2rem;
}

.form-submit {
    text-align: center;
}

.btn-comment {
    padding: 10px 25px 4px 25px !important;
}

.comments-closed {
    margin: 4.0rem 0;
    font-size: 2.0rem;
    font-weight: 700;
    text-align: center;
}

/*
    =============================================================================================
    Social Sharing
    =============================================================================================
*/

.wplogout-social-wrapper {
    margin: 0;
    font-size: 0;
}

.wplogout-social-wrapper span {
    font-weight: bold;
    padding-right: 10px;
    font-size: 16px;
}

.wplogout-social-sharing {
    font-size: 17px;
    padding: 7px 20px;
}

@media only screen and (max-width: 600px) {
    .wplogout-social-sharing {
        font-size: 17px;
        padding: 7px 12px;
        display: inline-block;
    }
    .hide-on-mobile {
        display: none;
    }
}

.wplogout-social-sharing svg {
    position: relative;
    top: -0.25rem;
    display: inline-block;
}

.wplogout-social-sharing:first-of-type {
    border-radius: 100px 0 0 100px;
}

.wplogout-social-sharing:last-of-type {
    border-radius: 0 100px 100px 0;
}

.wplogout-social-facebook {
    fill: #fff;
    background-color: rgba(59, 89, 152, 1);
}

.wplogout-social-facebook:hover {
    background-color: rgba(59, 89, 152, .8);
}

.wplogout-social-twitter {
    fill: #fff;
    background-color: rgba(29, 161, 242, 1);
}

.wplogout-social-twitter:hover {
    background-color: rgba(29, 161, 242, .8);
}

.wplogout-social-pinterest {
    fill: #fff;
    background-color: rgba(189, 8, 28, 1);
}

.wplogout-social-pinterest:hover {
    background-color: rgba(189, 8, 28, .8);
}

.wplogout-social-whatsapp {
    fill: #fff;
    background-color: rgba(37, 211, 102, 1);
}

.wplogout-social-whatsapp:hover {
    background-color: rgba(37, 211, 102, .8);
}

.wplogout-social-email{    
    fill: #fff;
    background-color: rgb(107, 107, 107);
}

.wplogout-social-email:hover {    
    background-color: rgba(19,20,24 ,.8);
}


/*
    =============================================================================================
    Search Form
    =============================================================================================
*/

.search-form {
    width: 300px;
    height: 44px;
    border: 3px solid #818181;
    border-radius: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
}

.search-field {
    all: unset;
    color: #818181;
    height: 100%;
    width: 250px;
    padding: 6px 0 6px 10px;
}

.btn-search {
    all: unset;
    cursor: pointer;
    width: 50px;
    height: 44px;
    text-align: center;
}

.search-container {
    margin: 0 auto;
    padding: 0;
    width: 300px;
}

.search-page-title {
    padding: 0;
    width: 300px;
    text-align: left;
}

/*
    =============================================================================================
    Footer
    =============================================================================================
*/

.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 50px;
    padding: 10px 0;
    width: 100%;
}

.footer-left {
    align-self: center;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.footer-title {
    width: 100%;
}

.footer-left a {
    color: #dfdfdf !important;
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
}

.footer-center {
    align-self: center;
    width: 100%;
    padding: 20px 0;
}

.footer-center ul {
    list-style-type: none;
    padding: 0;
}

.footer-right {
    align-self: center;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.footer-right .footer-nav {
    display: block;
}

.footer-nav {
    list-style-type: none;
    padding-left: 0 !important;
}

.footer-nav li {
    display: block;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.sub-footer {
    background-color: #292929;
}

@media (min-width: 1400px) {
    
    .footer {
        flex-direction: row;
        padding: 10px;
    }
    
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
      max-width: 1140px !important;
    }

    .footer-left, .footer-center, .footer-right {
        width: 32%;
    }
}