/*
Theme Name: Timber Yard
Author: Kubiak Creative
Author URI: https://kubiakcreative.com
Description: Custom Theme - Requires The7 theme to be installed for base structure.
License: This WordPress theme is comprised of two parts: (1) The PHP code and integrated HTML are licensed under the GPL license as is WordPress itself.  You will find a copy of the license text in the same directory as this text file. Or you can read it here: http://wordpress.org/about/gpl/ (2) All other parts of the theme including, but not limited to the CSS code, images, and design are licensed according to the license purchased. Read about licensing details here: http://themeforest.net/licenses/regular_extended
Template: dt-the7
*/

:root {
    --dark:     #455454;
    --stone:    #f3f1e9;
    --red:      #ff5e59;
    --yellow:   #ffcc33;
    --orange:   #ff9141;
    --teal:     #8cdcb4;
    --blue:     #38339c;
    --green:    #45ab45;
    --white:    #ffffff;
}

::selection {
    color: var(--white);
    background: var(--red);
}


.dark        { color: var(--dark) !important}
.stone       { color: var(--stone) !important}
.red         { color: var(--red) !important}
.yellow      { color: var(--yellow) !important}
.orange      { color: var(--orange) !important}
.teal        { color: var(--teal) !important}
.blue        { color: var(--blue) !important}
.green       { color: var(--green) !important}
.white       { color: var(--white) !important}

.bg-dark     { background-color: var(--dark) !important}
.bg-blue     { background-color: var(--stone) !important}
.bg-red      { background-color: var(--red) !important}
.bg-yellow   { background-color: var(--yellow) !important}
.bg-orange   { background-color: var(--orange) !important}
.bg-teal     { background-color: var(--teal) !important}
.bg-blue     { background-color: var(--blue) !important}
.bg-green    { background-color: var(--green) !important}
.bg-white    { background-color: var(--white) !important}


/* ---------------------------  TYPOGRAPHY --------------------------- */


body {
    font-optical-sizing: auto;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
    font-variant-ligatures: none !important;
    text-rendering: auto;
    color: var(--dark);
}

h1, h2, h3, h4, h5 {font-variant-ligatures: none;}

h2 { margin-bottom: 30px;}

/* ---------------------------  GENERAL --------------------------- */


.animated {
    z-index: 1;
}

.center-mobile {
    text-align: center;
}

.row-padding {
    padding-top: 35px;
    padding-bottom: 35px;
}

.hide-mobile { display: none; }
.mobile-navigation { display: none; }

@media (min-width: 992px) { 
    .hide-mobile { display: inline-block; }
    .center-mobile { text-align: inherit;}
    .row-padding {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 768px) {
  /* Disable WPBakery animations on mobile */
  .wpb_animate_when_almost_visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ---------------------------  BANNER BOXES --------------------------- */


.overlap-banner {
    margin-top: -5px;
} 

.banner-left-large .vc_column-inner {
    padding: 35px;
    border-radius: 0px;
}

.banner-right-small .vc_column-inner {
    padding: 35px;
    border-radius: 0px;
    margin-left: 0px;
    width: calc(100%);
}

@media (min-width: 992px) { 

    .overlap-banner {
        margin-top: -50px;
    } 

    .banner-left-large .vc_column-inner {
        padding: 35px 50px 35px 100px;
        border-radius: 0 20px 20px 0;
    }

    .banner-right-small .vc_column-inner {
        padding: 35px;
        border-radius: 20px 0 0 20px;
        margin-left: -50px;
        width: calc(100% + 51px);
    }

    .banner-floating-box {
        position: absolute;
        z-index: 2;
        background-color: rgba(243, 241, 233, 0.95);
        padding: 30px;
        border-radius: 20px;
        top: 40%;
        transform: translateY(-40%);
        right: 8%;
        width: 300px;
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    }
}


.box-red {
    background-color: var(--red);
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    padding: 30px;
}

/* ---------------------------  BUTTONS --------------------------- */

.dt-btn.dt-btn-l,
.microwidget-btn {
    padding: 10px 20px;
    font-size: 15px;
}
.microwidget-btn {
    margin-right: 0 !important
}

@media (min-width: 992px) { 
    .dt-btn.dt-btn-l,
    .microwidget-btn {
        padding: 14px 30px;
        font-size: 18px;
    }
}

.dt-btn-reverse {
    border-color: var(--white) !important;
    background-color: var(--white) !important;
    color: var(--red) !important;
}

.dt-btn-reverse:hover {
    background-color: var(--red) !important;
    color: var(--white) !important;
}

.vc_box_rounded img {
    border-radius: 20px !important;
}

/* ---------------------------  ICONS --------------------------- */

.dt-icon-website::before, .icomoon-the7-font-website::before, .website .soc-font-icon::before {
    font-family: "Font Awesome 5 Brands";
    content: "\e07b";
    font-size: 90%;
}

.calendar-icon {
    position: relative;
    padding-left: 70px
}

.calendar-icon::before {
    content: "";
    background-image: url('/wp-content/themes/dt-the7-child/assets/icons/calendar-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 60px;
}

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

.footer-logo {
    display: inline-block;
    margin-right: 20px
}

.footer-logo img {
    max-height: 70px;
    margin: 5px 0;
    width: auto;
}

.wp-block-group__inner-container {
    justify-content: center !important;
    text-align: center;
}

.wp-block-group__inner-container ul {
    display: inline-flex;
}

@media (min-width: 992px) { 

.wp-block-group__inner-container {
    text-align: inherit;
}

.wp-block-group__inner-container ul {
    display: flex;
}

}