* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.with-bg {
  max-height: 100vh;
  background: linear-gradient(to bottom, #35454e 0%, #35454e 2%, #c0d5e1 25%, #ffffff 50%); 
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
}


body {
  margin: 0;
  overflow: hidden;
  font-family: var(--default-font);
}

body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-track {
  background: var(--dark-blue-color);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--gray-color);
  border-radius: 25px;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
}

.padding-for-main {
  padding: 120px 0 50px 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

sup {
  font-size: var(--content-font);
}

.bg-blue {
  background-color: var(--blue-color);
}

.bg-dark-blue {
  background-color: var(--dark-blue-color);
}

.bg-fon {
  background-image: linear-gradient(to top,
  rgba(0, 0, 0, 0.6) 0%,
  rgba(0, 0, 0, 0.6) 50%,
  rgba(0, 0, 0, 0.6) 80%,
  rgba(0, 0, 0, 0.6) 100%
),url("../img/services/fonmain9.jpg");
  background-size: cover;        
  background-position: center;   
  background-attachment: fixed;
}


.bg-content-fon{
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-white {
  background-color: var(--white-color);
}

.bg-gray {
  background-color: var(--gray-color);
}

.bg-green-blue {
  background-color: var(--green-blue-color);
}

.color-white {
  color: var(--white-color);
}

.color-blue {
  color: var(--blue-color);
}

.color-dark-blue {
  color: var(--dark-blue-color);
}

.text-center{
  text-align: center !important;
}

.static-height {
  /* height: 420px; */
  height: 100vh;
}

.review-width {
  min-width: 380px;
}

.flex-end {
  justify-content: flex-end;
}

.space-between {
  justify-content: space-between;
}

.content-section {
  display: flex;
}

.content-container {
  width: 100%;
  height: 100%;
  padding: 100px 0 50px 0;
  gap: 20px;
}

.content-title {
  width: fit-content;
  /* font-size: var(--main-line-font); */
  font-weight: bold;
  font-size: 45px;
}

.content-title-top {
  width: fit-content;
  font-size: 60px;
  font-weight: bold;
  text-align: left;
}

.content-description {
  width: 100%;
  max-width: 400px;
  font-size: var(--content-font);
  font-size: var(--button-font);
  margin-top: 15px;
  margin-bottom: 20px;
}

.shadow {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.shadow-blur {
  box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.25);
}

.shadow-normal-blur {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.right {
  float: right;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.font-bold {
  font-weight: bold;
  z-index: 100;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-20-to-40 {
  gap: 20px;
}

.align-items-center {
  display: flex;
  align-items: center;
}

.url-decorate-underline {
  text-decoration: underline;
}

.pika-single {
  z-index: 100 !important;
}

.cursor-pointer {
  cursor: pointer;
}

.g-recaptcha {
  width: fit-content;
}


/* .faq {
  width: 1490px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  text-align: left;
}

.faq details {
  border-bottom: 1px solid black;
  padding: 15px 0;
  cursor: pointer;

  position: relative;
  display: block;
  max-width: 650px;
  margin: 0 auto 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 5px;
  transition: 0.3s;
  overflow: hidden;
}

.faq summary {
  font-size: 20px;
  font-weight: bold;
  list-style: none;


  background: #fff;
  border-radius: 5px;
  padding: 12px 24px;
  font-size: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  transition: .3s;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary::after {
  content: "–";
  float: right;
  font-size: 24px;
}
.faq summary::after {
  content: "+";
  float: right;
  font-size: 24px;
}

.faq p {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.4;
} */




.faq {
  width: 80vw;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  text-align: left;
}

.details {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto 10px;
  background: rgba(255,255,255,0.5);
  transition: 0.4s;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}

.details::after {
  position: absolute;
  right: 24px;
  top: 15px;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-right: 3px solid #425995;
  border-bottom: 3px solid #425995;
  transform: rotate(-45deg);
  transform-origin: center;
  transition: .9s;
}

.details[open]::after {
  transform: rotate(45deg);
}

.details[open] {
  padding-bottom: 65px;
}

.details[open] .details__title {
  margin-bottom: 16px;
}

.details__title {
  background: #fff;
  border-radius: 5px;
  padding: 12px 24px;
  font-size: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  transition: .1s;
}

.details__title::-webkit-details-marker {
  display: none;
}

.details__content {
  padding: 12px 24px;
  font-size: 15px;
  margin-bottom: -60px;
}

.details__content p:last-child {
  margin-bottom: 0;
}
.details__content p:first-child {
  margin-top: 0;
}

::selection {
  background: rgba(0, 0, 0, 0.01); 
  color: #000000;            
}





@media (min-width: 1024px) {
  .main-padding {
    padding: 0 150px;
  }
}

@media (max-width: 1150px) and (min-width: 768px) {
  .content-title-top{
    font-size: 30px;
  }
  .main-padding {
    padding: 0 50px;
  }

  .padding-for-main {
    padding: 50px 0 50px 0;
  }

  .gap-20-to-40 {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  

  
  .faq{
    width: 100vw;
  }
  .content-title-top{
    font-size: 30px;
    text-align: center;
  }
  .main-padding {
    padding: 0 20px;
  }

  .padding-for-main {
    padding: 50px 0 50px 0;
  }

  .mobile-flex-column {
    flex-direction: column;
  }

  .mobile-content-container-for-second-section {
    display: flex;
    justify-content: flex-end;
  }

  .static-height {
    height: 630px;
  }

  .review-width {
    min-width: 280px;
  }

  .gap-20-to-40 {
    gap: 40px;
  }

  .content-title {
    white-space: normal;
    font-size: var(--main-line-font-mobile);
  }
}
