/* Importing Google font - Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');

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

html {
  font-size: auto !important;
}

body {

  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  width: 47rem !important;
  margin: auto !important;
  font-family: "Source Sans Pro", sans-serif;
}

h4 {
  margin-top: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.preview-zone {
  display: inline-block;
  padding: 30px;
  margin: 1px;

  background-color: #f5f5fa;
  color: #06162d !important;
}

.preview-zone h4 {

  color: #06162d !important;
}


li {

  list-style: none;


  padding: 5px;
}

/**
 * Search styles
 */
.search__form {
  display: flex;
}

.search--large .search__input {
  padding: 30px;
}

.search--large .search__btn-submit {
  padding: 30px;
  color: #fff !important;
}

.search--swap .search__input {
  order: 1;
}

.search--icon .search__form {
  position: relative;
}

.search--icon .search__btn-submit {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  width: 46px;
  height: 100%;
  background: none;
  color: #fff !important;
}

.search--icon .search__btn-submit:focus,
.search--icon .search__btn-submit:active,
.search--icon .search__btn-submit:hover {
  box-shadow: none;
}

.search--icon .search__btn-submit:focus:before,
.search--icon .search__btn-submit:active:before,
.search--icon .search__btn-submit:hover:before {
  border-color: #eee;
}

.search--icon .search__btn-submit:focus:after,
.search--icon .search__btn-submit:active:after,
.search--icon .search__btn-submit:hover:after {
  background-color: #eee;
}

.search--icon .search__btn-submit:before,
.search--icon .search__btn-submit:after {
  content: "";
  position: absolute;
  transition: background-color 200ms ease-out, border-color 200ms ease-out;
}

.search--icon .search__btn-submit:before {
  right: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
  border: 3px solid #666;
  border-radius: 100%;
}

.search--icon .search__btn-submit:after {
  right: 30px;
  top: 23px;
  width: 3px;
  height: 16px;
  background-color: #CF1E25;
  transform: rotate(45deg);
}

.search--icon .search__btn-submit:hover {
  background: none;
}

.search--icon-expandable .search__input {
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 300ms ease-out;
}

.search--icon-expandable .search__input:focus,
.search--icon-expandable .search__input:active {
  transform: scaleX(1);
}

.search--icon-expandable .search__btn-submit {
  background-color: #333;
}

.search--icon-expandable .search__btn-submit:hover {
  background-color: #333;
}

.search--expanded .search__input {
  transform: scaleX(1);
}

.search__input:focus,
.search__input:active,
.search__btn-submit:focus,
.search__btn-submit:active {
  outline: 0;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
}

.search__input {
  padding: 15px;
  width: 300px;
  color: #eee;
  font-size: 14px;
  background-color: #333;
  border: 0;
}

.search__btn-submit {
  position: relative;
  padding: 15px;
  color: #fff;
  font-size: 13px;
  background-color: #CF1E25;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 200ms ease-out;
}

.search__btn-submit:hover {
  background-color: #777;
}


@media screen and (max-width:768px) {
  html {
    font-size: calc(100vw / 768 * 100);
  }

  .preview-zone {


    width: 90%;

  }

  .html_master {
    margin: 50px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;

  }


  .main-title {
    margin-top: 0.5rem;
    text-align: center;
    font-family: "Abril Fatface", cursive;
    font-size: 0.32rem;
    color: #701A23;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-title:before,
  .main-title:after {
    content: "";
    display: block;
    margin: 0 0.2rem;
    flex: 1;
    border-bottom: 1px solid #701A23;
  }

  .wrapper {
    width:6rem !important;
    font-family: "Source Sans Pro", sans-serif;
  }
}

input[type=radio] {
  display: none;
}

input[type=radio]:checked+.item .title {
  color: #fff;
  border-color: #701A23;
  background-color: #701A23;
}

input[type=radio]:checked+.item .title:after {
  transform: rotate(180deg);
}

input[type=radio]:checked+.item .content {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s, opacity 0.7s;
}

.item {
  display: block;
  margin-bottom: 0.1rem;
}

.html_master {
  margin: 50px !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 100px !important;
}

.title {
  padding: 0.3rem 0.5rem;
  border-radius: 0.3rem;
  color: #701A23;
  border: 1px solid;
  border-radius: 20px !important;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title:after {
  content: "▼";
  display: inline-block;
  font-size: 12px;
}

.Frequently_title,
.main-title {
  font-size: 25px;
  ;
}

.content {
  width: 95%;
  margin: 0 auto;
  padding: 0 0.3rem;
  line-height: 1.6;
  color: #701A23;
  border: 1px solid;
  border-width: 0 1px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}