  @charset "utf-8";
/* CSS Document */

.bigBlue {
    font-size:36px;
    font-family: "Libertians", Serif, Bodoni;
    color:#dcd1eb;
    
}

.smallBlue {
    font-size: 100px;
    font-family: "Londrina Solid", Merriweather, EB Garamond; 
    color:#411b5e;
    
}

.mediumBlue {
    font-size:40px;
    font-family: "Arial Narrow" Catamarian, Vidaloka;
    
}


.form-row {
    padding: 10px 0;
    display: flex;
    
}

.form-row label {
    padding: right;

}

.form-row input {
    flex: 1;
    
}



.column-layout {
    max-width:1300px;
    background-color:#FFF;
    line-height: 1.65;
    display: flex;
     justify-content: space-between;
}

.main-column {
    flex: 1;
   
}


.sidebar-one {
     flex: 1;
}

.sidebar-two {
    flex: 1;
}

.sidebar-three {
    flex: 1;
    order: 1;
    background-color: #ffbb99;
    padding: 20px 50px;
}

.main-column2 {
    flex: 3;
    order: 2;
    background-color: #ffbb99;
    padding: 20px 50px;
}

.sidebar-four {
    flex: 1;
    order: 3;
    background-color: #ffbb99;
    padding: 20px 50px;
}

.call-outs-container {
    max-width: 1400px;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: space-between;
}

.call-out {
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
    flex-basis: 30%;
}


.call-out:nth-child(1) {background-color:#ffb3b3;}
.call-out:nth-child(2) {background-color: #ddffcc;}
.call-out:nth-child(3) {background-color: #f9ecf9;}


.equal-height-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    margin: 30px auto;
}


.first {
    background-color: #FFF;
    padding: 20px;
    flex: 1;
}

.second {
     background-color: #b3c6ff;
     flex: 1;
     display: flex;
     flex-direction: column;
}
    
.second-a {
    background-color: #ffffe6;
    flex: 1;
}

.second-b {
    background-color:  	 #99e6ff;
    flex: 1;
}



.basic-grid {
    display: grid;
    gap: 1rem;
  
  
   grid-template-columns: 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr 2fr;
    
    grid-template-columns: repeat (12,2fr);
    
    grid-template-columns: repeat(12,minmax(240px, 2fr));
    
    grid-template-columns: repeat(auto-fit, minmax(240px, 2fr));
 }
 
 .basic-grid2 {
    display: grid;
    gap: 1rem;
  
  
   grid-template-columns: 2fr 2fr 2fr;
    
    grid-template-columns: repeat (3,2fr);
    
    grid-template-columns: repeat(3,minmax(240px, 2fr));
    
    grid-template-columns: repeat(auto-fit, minmax(240px, 2fr));
 }
 
.card {
    background-color:#c1dbc3;
    font-family: Verdana, Arial;
     color: #3c473d;
     padding: 15px;
}

.card2 {
    background-color: #f5dfbf; #e3c7c5; #f2e7e6;
    font-family: Times;
    color: black;
    padding: 5px;
}
    

.flex2 {
   display: flex;
   margin: 5px;
 
}
    




