/* 
Primary color - Background
ç
#343a40
#1864ab
#c98101


Primary color - text
#f8f9fa 
#212529

//Secondary Color - Text
#495057
#e9ecef


//Primary button - Background
#e6ac1a




Font Family
font-family: 'Montserrat', sans-serif;


*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 10px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif;
    /* font-family: 'Montserrat', sans-serif; */
    font-weight: 400;
    overflow-x: hidden;
    

}
input {
    font-family: 'Montserrat', sans-serif;
}
textarea {
    resize: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;

}
.pad-1 {
    padding: 2.4rem;
}
.pad-2 {
    padding: 4.8rem;
}
.pad-3 {
    padding: 5.6rem;
}
.pad-4 {
    padding: 7.2rem;
}
.pad-x-1 {
    padding: 9.6rem 9.6rem 14rem;
}
.pad-x-5 {
    padding: 0 100rem;
}
.primary-heading {
    font-size: 4.8rem;
}
.secondary-heading {
    font-size: 2.4rem ;
}

.btn {
    width: 100%;
}
.btn-md {
    width: 50%;
}
.btn-sm {
   
    width: 40%;
}
.btn-xs {
   
    width: 40%;
}
.btn-primary {
    background-color: #e6ac1a;
    border-radius: 12px;
}
.btn-secondary {
    background-color: transparent;
    border: 0.1rem solid #fff ;
    /* border-radius: 50px; */
}
.btn-secondary-dark {
    background-color: transparent;
    border: 0.1rem solid #212529;
    /* border-radius: 50px; */
}
.icon {
    
    font-size: 1.8rem;
}

/* Grids */

.grid {
    display: grid;
}
.grid--cols--2 {
    grid-template-columns: repeat(2,1fr);
}
.grid--cols--2--v {
    grid-template-columns: 0.5fr 1fr;
}
.grid--cols--2--podcast {
    grid-template-columns: 1.5fr 0.5fr;
}
.grid--cols--6 {
    grid-template-columns: repeat(6,1fr);
    column-gap: 3.2rem;
    row-gap: 5.4rem;
    padding: 0 3.2rem;
}
.grid-cols-2-program-1 {
    grid-template-columns: repeat(2,1fr);
    justify-items: center;
}
.grid-cols-2-program-2 {
    grid-template-columns: repeat(2,1fr);
    justify-items: center;
    row-gap: 1.2rem;
}
.col-gap-1 {
    column-gap: 2.4rem;
}
.col-gap-2 {
    column-gap: 4.8rem;
}
.span-2 {
    grid-column: span 2;
}
.span-3 {
    grid-column: span 3;
}
.span-6 {
    grid-column: span 6;
}
.mt-1 {
    margin-top: auto;
}

/* Colors */

.bg-dark {
    
    background-color: #212529;
}
.bg-light-dark {
    
    background-color: #bfbfbf;
}
.bg-white {
    background-color: #f8f9fa;
    /* background-color: #212529; */
}
.br-1 {
    border-radius: 20px;
}
.text-light {
    color: #f8f9fa !important;
}
.text-dark {
    color: #212529 !important;
}
.text-secondary {
    color: #888 !important;
}
.text-primary {
    color: #e6ac1a !important;
}
.text-green {
    color: rgb(0, 162, 255);
}



/* Text Alignment */

.text-mid {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #e6ac1a;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
  }
  
  /* The Close Button */
  .close {
    color: #f8f9fa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  .active-link {
    /* background-color: #e6ac1a;
    color: black;
    border-radius: 12px; */
    border-bottom: 1px solid #e6ac1a;
  
  }