﻿@import url('https://fonts.googleapis.com/css?family=Montserrat:300|Open+Sans:700|Source+Sans+Pro&display=swap');
@media only screen and (max-width: 1200px){
    div.BBPOS {margin-left: 25%;}
    /*a.BB {color: purple;}*/
}
@media only screen and (max-width: 1024px){
  	div.D4{min-height: 20vh;}
}
@media only screen and (max-width: 1000px){
    div.BBPOS {margin-left: 20%;}
    /*a.BB {color: orange;}*/
}
@media only screen and (max-width: 768px){
    a.BB {padding-left: 15px; padding-right: 15px; /*color: blue;*/}
    div.BBPOS {margin-left: 23%;}
}
@media only screen and (max-width: 670px){
    div.BBPOS {margin-left: 18%;}
    /*a.BB {color: red;}*/
}
@media only screen and (max-width: 600px){
    div.BBPOS {margin-left: 8%;}
    /*a.BB {color: green;}*/
}
@media only screen and (max-width: 414px){
	a.BB {padding-left: 7px; padding-right: 7px;}
    div.BBPOS {margin-left: 7%;}
}
@media only screen and (max-width: 375px){
  	a.BB {padding-left: 5px: padding-right: 5px;}
  	div.BBPOS {margin-left: 3%;}
}
html {
    background-color: #d7d7d7;
    font-family: 'Source Sans Pro';
    background-image: url(Images/FAQsBG.jpg);
    width: 100%;
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}
body {
    margin: 0;
    width: auto;
}
.D1 {
    width: 100%;
    height: 100vh;
}
.SEC1 {
    width: 100%;
    height: 6vh;
}
.BB {
    font-size: 1.3rem;
    font-family: 'Montserrat';
    text-align: center;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    color: white;
    cursor: pointer;
    border-bottom: solid 2px white;
    float: left;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 10px;
    position: static;
}
.BB:hover {
    color: #f2dfdc;
    border-bottom-color: #f2dfdc;
}
.BB:active {
    color: #d1c1be;
    border-bottom-color: #d1c1be;
}
.BBPOS {
    margin-left: 32%;
}
.SEC2 {
    width: 100%;
    height: 94vh;
}
.D2 {
    width: 100%;
    height: 10vh;
}
.TX1 {
    font-family: 'Open Sans';
    font-size: 4rem;
    color: white;
    text-align: center;
    letter-spacing: 9px;
    margin: 0;
}
.D3 {
    width: 80%;
    min-height: 60vh;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: -4%;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}
.D4 {
    width: 80%;
    min-height: 15vh;
    margin-left: 10%;
    margin-top: -1%;
}
.TX2 {
    font-size: 1.5rem;
    text-align: center;
    color: white;
    font-family: 'Montserrat';
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}
/*Dropdown reviews*/
.REV {
    background-color: white;
    color: black;
    cursor: pointer;
    padding: 22px;
    width: 100%;
    border: none;
    border-radius: 4px;
    text-align: left;
    outline: none;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.active, .REV:hover {
    background-color: #f2dfdc;
}
.REV:after {
    content: '\002B';
    color: black;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: '\2212';
}
.REV-CONT {
    padding: 0, 18px;
    max-height: 0;
    border-radius: 4px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}