﻿@import url("../../static/css/css-1.css");

* {
  font-family: Lato, sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}



.wper {
    width: 70%;
  }

h1 {
  margin-bottom: 20px;
}

.cner {
  background-color: rgb(206, 212, 231);
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
  margin: 20px 0;
}

.quest {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.quest::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.quest.active::after {
  transform: rotate(45deg);
}

.ac {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.ans {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}

.question.active + .answercont {
}

@media screen and (max-width: 790px){
  html {
    font-size: 14px;
  }
  .waper {
  width: 90%;
}
}