/*!
Theme Name: Rane Wind
Theme URI: https://makeitrane.com/
Author: Rane Digital
Author URI: https://makeitrane.com/
Description: A custom WordPress theme built with Tailwind CSS, jQuery, ACF, Formidable Forms, WOW.js, and Animate.css. Designed for speed, flexibility, and modern user experience.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ranewind
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Rane Wind is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/* ==================== */
/* Variables
/* ==================== */

:root {
    --brand-main: rgb(38 32 72);
    --brand-secondary: rgb(91 172 48);
  
  }

/* ==================== */
/* layout
/* ==================== */
.row {
    display: flex!important;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;  
}

.col-2-no-space {
    width: 100%;
}

.vertical_center{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px){

    .row, .row-invert{
      flex-direction: row;
    }
  
    .col-4{
      width: 48.5%;
    }
  
  }

@media (min-width: 980px){
  
    .row, .row-invert{
      flex-direction: row;
    }
  
    .col-2-no-space{
      width: 50%;
    }
    
}

/* ==================== */
/* Container
/* ==================== */

.container {
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
  }

/* ==================== */
/* Blog
/* ==================== */

.main_card{
    background-color: var(--brand-main);
    color: #fff;
  }
  
  .blog_list_card{
    margin: 15px 0;  
  }
  
  .main_card_text{
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .blog_list_card .site-btn_light_green {
    align-self: flex-start;
  }
  
  .bg-img{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
  }
  
  .blog_card{
    background-color: var(--brand-main);
    color: white;
  }
  
  .blog_card a {
    color: white!important;
  }
  
  .blog_card img{
    width: 100%!important;
  }
  
  .blog_body{
    padding: 30px;
  }

.site-btn {
    cursor: pointer;
    border: none;
    border-radius: 10px;
    padding: 15px 65px;
    transition: .2s;
    text-decoration: none !important;
    line-height: 1 !important;
}

.site-btn_light_green{
    background-color: var(--brand-secondary);
    color: #ffffff!important;
}

.site-btn_light_green:hover{
    background-color: var(--brand-main);
    color: var(--brand-secondary);
    transition: .2s;
}


.content_wrapper{
    padding: 100px 0;
}