html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000;
}

hr {
  max-width: 1643px;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background-color: #ccc;
}

h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
  color: #ec3e26;
  text-align: center;
}

.title_green {
  color: #67a35d;
}

.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 41px;
  height: 41px;
  background-color: #fff;
  background-image: url(../assets/btn-arrows/arrow_up.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border: 1px solid #ec3e26;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  transition: 0.4s all ease-out;
}

.header_logo img {
  width: 180px;
}

/* Burger Menu */

nav {
  display: none;
}

.overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
}

.hamburger {
  cursor: pointer;
  position: fixed;
  top: 40px;
  right: 25px;
  z-index: 999;
}

.burger_title {
  font-family: "Figtree", serif;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 57px;
}

.burger_title::after {
  content: "";
  position: absolute;
  top: 84px;
  left: 25px;
  height: 1px;
  width: 275px;
  background-color: #d9d9d9;
}

.bar {
  display: block;
  width: 42px;
  height: 1px;
  margin: 15px auto;
  transition: all 0.3s ease-in-out;
  background-color: #000;
}

.hamburger.active .bar:nth-child(1),
.hamburger.active .bar:nth-child(3) {
  width: 28px;
}

.hamburger.active {
  top: 10px;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(16px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
}

.burger_menu {
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 25px;
  padding: 27px 0 0 24px;
  right: -550px;
  top: 0;
  background-color: #fff;
  width: 325px;
  height: 100%;
  transition: all 0.3s ease;
}

.burger_menu.active {
  right: 0;
}

/* Burger Menu */

/* Containers */

.container_main {
  max-width: 1670px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  scroll-margin-top: 160px;
}

.regions_container {
  max-width: 1045px;
  width: 100%;
  padding: 0 10px;
}

.container_stats {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container_faqs {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container_footer {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* Containers */

/* Header section */

header {
  padding: 29px 0 30px;
  position: sticky;
  top: 0;
  z-index: 1001;
  background-color: #fff;
  display: flex;
  align-items: center;
  height: 160px;
}

.header_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_menu {
  display: flex;
  column-gap: 107px;
}

.menu_link {
  color: #000;
  font-family: "Figtree", serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
}

.menu_link:hover {
  color: #ec3e26;
}

.header_btn .header_btn_link {
  color: #000;
  position: relative;
  border: 1px solid #000;
  height: 55px;
  border-radius: 50px;
  padding: 10px 43px 10px 20px;
  font-weight: 500;
}

.header_btn .header_btn_link::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 12px;
  transform: translate(-50%, -50%);
  background-image: url(../assets/btn-arrows/arrow.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 14px;
}

.header_btn .header_btn_link:hover {
  background-color: #ec3e26;
}

.header_btn .header_btn_link:hover::after {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(23%)
    hue-rotate(12deg) brightness(91%) contrast(100%);
}

/* Header section */

/* Check section */

.check {
  padding: 48px 0 260px;
  text-align: center;
}

.check_content h5 {
  font-weight: normal;
}

.check_title {
  font-size: 40px;
  font-weight: 600;
}

.title_orange {
  color: #ec3e26;
}

.check_search {
  margin-top: 38px;
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.check_search .input {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.check_search input {
  font-family: "Figtree", serif;
  font-size: 20px;
  font-weight: 300;
  padding: 9px 0 11px 44px;
  width: 100%;
  height: 55px;
  color: #000;
  border-top: 1px solid #606060;
  border-bottom: 1px solid #606060;
  border-left: 1px solid #606060;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-right: none;
}

.check_search input::placeholder {
  color: #c0c0c0;
}

.check_btn {
  position: relative;
  padding: 10px 55px 10px 24px;
  height: 55px;
  border-top: 1px solid #606060;
  border-bottom: 1px solid #606060;
  border-right: 1px solid #606060;
  border-left: 2px solid #606060;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  font-family: "Figtree", serif;
  font-weight: 500;
}

.check_btn::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 25px;
  transform: translate(-50%, -50%);
  background-image: url(../assets/btn-arrows/arrow.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 14px;
}

.check_btn:hover {
  background-color: #ec3e26;
}

.check_btn:hover::after {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(23%)
    hue-rotate(12deg) brightness(91%) contrast(100%);
}

/* Check section */

.sections_with_ad_wrapper {
  display: flex;
  gap: 24px;
}

.left_wrapper {
  width: 85%;
}

.hidden {
  display: none;
}

/* Cards section */

.cards {
  position: relative;
  padding: 62px 0 95px;
}

.cards_wrapper {
  display: flex;
  justify-content: center;
}

.cards::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.cards_content {
  max-width: 1045px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 217px;
}

.aside_wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 15%;
}

.cards_ad {
  position: sticky;
  top: 175px;
  /* background-image: url(../assets/ads/ad_big.png); */
  background-size: cover;
  width: 100%;
  height: calc(100vh - 176px);
  z-index: 1;
  transition: all 0.3s ease;
}

.cards_ad.mobile {
  display: none;
}

.absolutely_sticker {
  position: absolute;
  top: 75px;
}

/* .after_element {
  position: absolute;
  top: -175px;
  right: 65px;
  background-image: url(../assets/ads/ad_big.png);
  background-size: cover;
  width: 254px;
  height: 1078px;
  z-index: 1;
} */

.card {
  width: 210px;
  font-family: "Figtree", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.card-1 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-1 p {
  margin-top: 46px;
}

.card-3 {
  overflow: hidden;
}

.card-2,
.card-3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-2 h5,
.card-3 h5 {
  font-family: "Figtree", serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 25px;
  text-transform: uppercase;
  color: #606060;
}

.card-3 a {
  font-family: "Figtree", serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 25px;
  color: #ec3e26;
  max-width: 221px;
}

.mobile_card {
  display: none;
}

/* Cards section */

/* Regions section */

.regions {
  padding: 150px 0 100px;
  display: flex;
  justify-content: center;
}

.regions_title {
  margin-bottom: 78px;
}

.regions_map {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 30px;
  margin-bottom: 40px;
  overflow: hidden;
}

.country:hover {
  fill: #969696;
}

.ad_horizontal {
  background-color: #efefef;
  width: 100%;
  margin-bottom: 40px;
}

.regions_select {
  position: relative;
  display: flex;
  justify-content: space-between;
}

div.select_first {
  border-color: #67a35d;
}

div.select_second {
  border-color: #ec3e26;
}

.select_first,
.select_second {
  position: relative;
  border-width: 2px;
  border-style: solid;
  border-radius: 30px;
  height: 585px;
  width: 48%;
  padding: 25px 45px 22px;
  box-shadow: 2px 2px 4px 0px #00000040;
}

.select_first input,
.select_second input {
  font-family: "Figtree", serif;
  position: relative;
  font-size: 17px;
  padding: 8px 0 11px 34px;
  margin-bottom: 19px;
  width: 100%;
  height: 63px;
  border: 1px solid #ccc;
  color: #000;
  border-radius: 50px;
}

.select_first input::placeholder,
.select_second input::placeholder {
  color: #ccc;
}

.select_first::after,
.select_second::after {
  position: absolute;
  top: 45px;
  right: 70px;
  content: "";
  background-image: url(../assets/main_images/search-icon.svg);
  background-size: cover;
  width: 15px;
  height: 15px;
}

.regions_list {
  max-height: 455px;
  overflow: auto;
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 400;
}

.regions_list li {
  line-height: 38px;
}

.regions_list::-webkit-scrollbar {
  width: 26px;
}

.regions_list::-webkit-scrollbar-track {
  background: #d9d9d9;
}

.regions_list::-webkit-scrollbar-thumb {
  background-color: #a6a6a6;
}

/* Regions section */

/* Messages section */

.messages {
  padding: 100px 0;
}

.messages_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
}

.message {
  width: 100%;
  padding: 25px 0 23px 52px;
  font-weight: 400;
  border-radius: 20px;
}

.message span {
  font-weight: 600;
}

.allowed_message {
  border: 1px solid #314d2c;
  background-color: rgba(103, 163, 93, 0.2);
}

.restricted_message {
  border: 1px solid #735300;
  background-color: rgba(255, 184, 0, 0.2);
}

/* Messages section */

/* Statistics section */

.statistics {
  padding: 100px 0;
}

.statistics_title {
  margin-bottom: 88px;
}

.nums_item {
  width: 24%;
}

.statistics_nums {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ec3e26;
  border-radius: 50px;
  padding: 30px 105px 29px 104px;
  font-size: 48px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 15px;
}

.stat_name {
  font-weight: 400;
  line-height: 15px;
}

/* Statistics section */

/* FAQs section */

.faqs {
  padding: 91px 0 100px;
}

.faqs_title {
  font-size: 40px;
  line-height: 45px;
  margin-bottom: 78px;
}

.faqs_wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
}

.acc_item {
  position: relative;
  border: 1px solid #606060;
  border-radius: 20px;
  padding: 25px 0 24px 44px;
  cursor: pointer;
}

.heading {
  font-weight: 700;
}

.acc_text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.acc_item::after {
  position: absolute;
  right: 37px;
  top: 23px;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../assets/faqs-icons/open.svg);
  background-size: cover;
}

.acc_item.active::after {
  position: absolute;
  right: 37px;
  top: 34px;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../assets/faqs-icons/minus.svg);
  background-repeat: no-repeat;
}

.acc_text p {
  margin-top: 10px;
  font-family: "Poppins", serif;
  font-size: 20px;
  font-weight: 400;
  max-width: 1134px;
}

.acc_item.active {
  border: 1px solid #606060;
}

.acc_item.active .acc_text {
  max-height: 200vh;
}

/* FAQs section */

/* Information section */

.info {
  padding: 100px 0;
}

.info_title {
  font-size: 40px;
  margin-bottom: 81px;
  line-height: 45px;
}

.info_content {
  display: flex;
  justify-content: space-between;
}

.info_content:not(:last-child) {
  margin-bottom: 210px;
}

.info_text {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  max-width: 50%;
}

.info_text p {
  font-family: "Poppins", serif;
  font-size: 20px;
  font-weight: 400;
}

.info_image {
  width: 45%;
}

.info_image img {
  width: 100%;
}

.info_sub {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.info_sub p {
  font-family: "Poppins", serif;
  font-size: 20px;
  font-weight: 400;
}

.info_sub p:first-child {
  max-width: 602px;
}

.info_sub p:last-child {
  max-width: 955px;
}

/* Information section */

/* How to use */

.how-to-use {
  padding: 100px 0 0px;
}

.footer_title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 76px;
}

.footer_cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 76px;
}

.footer_card {
  text-align: center;
}

.footer_card img {
  border: 1px solid #000;
  width: 100%;
}

.footer_card p {
  font-family: "Figtree", serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 42px;
}

.footer_subtitle {
  font-family: "Figtree", serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  margin-bottom: 99px;
}

/* How to use */

/* Footer */
footer {
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
/* Footer  */

.tac-page {
  padding: 10px 50px;
}

.tac-page section {
  margin-bottom: 20px;
}

.tac-page h3 {
  margin-bottom: 15px;
}

.tac-page p {
  font-weight: 400;
}

.tac-page strong {
  font-weight: 600;
}

main {
  padding: 0 4%;
}

header {
  padding: 0 4%;
}

.check_content div:first-child {
  display: flex;
  justify-content: center;
}

.check {
  padding-bottom: 91px;
}

.check_title {
  margin-bottom: 10px;
  max-width: 820px;
}

.check_content h5 {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.check_content h5 span {
  max-width: 820px;
  display: block;
}

.check_search .input {
  margin-bottom: 28px;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

.regions_title {
  margin-bottom: 40px;
}

.select_first input,
.select_second input {
  padding-top: 11px;
}

.select_first::after,
.select_second::after {
  width: 17px;
  height: 17px;
  top: 47px;
}

.message {
  padding-top: 23px;
}

.acc_text p {
  font-size: 16px;
  margin-right: 15%;
}

.nums_item {
  width: 48%;
}

.statistics_nums {
  flex-wrap: wrap;
}

.stat_name {
  margin-bottom: 20px;
}

.check_content {
  padding: 0 10px;
}

footer {
  font-weight: 500;
}

.tac-page h2 {
  margin-top: 28px;
  margin-bottom: 16px;
  text-align: left;
}

.tac-page h3 {
  margin-bottom: 10px;
}

.tac-page p {
  max-width: 80%;
}
