﻿/*<meta />*/

@import url('https://fonts.googleapis.com/css?family=Nunito&display=swap');
@import url('https://fonts.googleapis.com/css?family=Anton&display=swap');

body {
 background-color: white;
 color: #fff;
 font-family: Nunito;
 font-weight: 400;
}


div.main-section {

background-color: white;
 
}







h1 {
 font-family: Anton;
 font-size: 36px;
 line-height: 54px;
 color: #557227;
 text-align: center;
 margin-top: 40px;
}

p.info-content
{
 font-family: Nunito;
 font-size: 18px;
 line-height: 24px;
 color: #fff;
 
}





.accordionMenu {
 width: 450px;
 margin: 0 auto;

 
 
 
}
.accordionMenu input[type="radio"] {
 display: none;
}
.accordionMenu label {
 display: block;
 height: 50px;
 line-height: 47px;
 padding: 0 25px 0 10px;
 background: #d7e8bc;
 font-size: 18px;
 color: black;
 position: relative;
 cursor: pointer;
 border-bottom: 1px solid #353b48;
}
.accordionMenu label:after {
 display: block;
 content: "";
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 5px 0 5px 10px;
 border-color: transparent transparent transparent black;
 position: absolute;
 right: 10px;
 top: 20px;
 z-index: 10;
 -webkit-transition: all 0.3s ease-in-out;
 -moz-transition: all 0.3s ease-in-out;
 -ms-transition: all 0.3s ease-in-out;
 -o-transition: all 0.3s ease-in-out;
 transition: all 0.3s ease-in-out;
}

.accordionMenu .content {
 max-height: 0;
 height: 0;
 overflow: hidden;
 -webkit-transition: all 2s ease-in-out;
 -moz-transition: all 2s ease-in-out;
 -ms-transition: all 2s ease-in-out;
 -o-transition: all 2s ease-in-out;
 transition: all 2s ease-in-out;
}
.accordionMenu .content .inner {
 font-size: 1.2rem;
 color: #2c97de;
 line-height: 1.5;
 background: whitesmoke;
 padding: 20px 10px;
 
}

.accordionMenu input[type="radio"]:checked + label:after {
 -webkit-transform: rotate(90deg);
 -moz-transform: rotate(90deg);
 -ms-transform: rotate(90deg);
 -o-transform: rotate(90deg);
 transform: rotate(90deg);
}

.accordionMenu input[type="radio"]:checked + label + .content {
 max-height: 2000px;
 height: auto;
}