/* FONTS */
@font-face {
  font-family: 'Courier Prime';
  src: url('../fonts/Courier Prime.ttf') format('truetype');
}

@font-face {
  font-family: 'dilemma-sans-bold';
  src: url('../fonts/dilemma-sans-bold.otf') format('opentype');
}

@font-face {
  font-family: 'dilemma';
  src: url('../fonts/Dilemma-SansExtraLight.otf') format('opentype');
}

@font-face {
  font-family: 'dilemmam';
  src: url('../fonts/Dilemma-SansMedium.otf') format('opentype');
}

/* GLOBAL */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'dilemma-sans-bold';
}

body{
width:100%;
}

/* TOP BAR */
.bar-top{
width:100%;
background:#d4a32a;
text-align:center;
padding:10px 0;
font-weight:700;
font-size:14px;
letter-spacing:1px;
}

/* NAVBAR */
.nav{
width:100%;
background:#1f3524;
padding:18px 0;
display:flex;
justify-content:center;
align-items:center;
}

.nav-logo img{
height:40px;
width:auto;
display:block;
}

/* BLOG */
.section-blog{
background:#e6e1d2;
padding:60px 0;
text-align:center;
}

.title-main{
font-size:50px;
font-weight:700;
text-transform:uppercase;
line-height:1.1em;
letter-spacing:1.3px;
color:#231f20;
padding-bottom:20px;
}

.text-sub{
font-family:"Courier Prime";
font-size:18px;
line-height:1.3em;
color:#212c1c;
padding-bottom:40px;
}

/* BLOG LAYOUT */
.layout-flex{
margin:auto;
display:flex;
width:90%;
}

.img-box{
width:50%;
}

.img-box img{
width:100%;
height:100%;
object-fit:cover;
}

.content-box{
width:50%;
background:#1e3324;
color:#fff;
display:flex;
flex-direction:column;
justify-content:center;
padding:40px;
text-align:center;
}

.content-box h3{
margin-bottom:40px;
color:#f4f1de;
font-size:24px;
text-transform:uppercase;
}

.content-box p{
font-family:"Courier Prime";
color:#f4f1de;
font-size:13px;
padding-bottom:20px;
}

/* CARDS */
.section-cards{
padding-bottom:40px;
background:#e7e3d5;
}

.flex-wrap{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.card{
width:350px;
background:#1f3a1f;
color:#fff;
text-align:center;
overflow:hidden;
}

.card img{
width:100%;
height:230px;
object-fit:cover;
}

.card-body{
padding:30px 25px;
}

.card-body h3{
font-size:18px;
text-transform:uppercase;
margin-bottom:15px;
}

.card-body p{
font-family:'Courier Prime';
font-size:14px;
margin-bottom:10px;
}

.link-btn{
display:inline-block;
color:#7ed957;
text-decoration:none;
}

.link-btn:hover{
text-decoration:underline;
}

/* LEGAL */
.section-legal{
background:linear-gradient(rgba(10,25,10,.95), rgba(10,25,10,.98)),
url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6');
background-size:cover;
background-position:center;
color:#d8d8d8;
}

.bar-legal{
background:#8cc63f;
padding:2vh 4vw;
font-family:'Courier Prime';
}

.legal-inner{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
color:#1b2d12;
}

.legal-links{
display:flex;
gap:3vw;
}

.legal-links a{
text-decoration:none;
color:#1b2d12;
}

/* RESPONSIVE */
@media(max-width:900px){

.layout-flex{
flex-direction:column;
}

.img-box,
.content-box{
width:100%;
}

.flex-wrap{
flex-direction:column;
align-items:center;
}

}

@media(max-width:768px){
.title-main{
font-size:32px;
}
}