#sticky-nav-concealer {
  position: absolute;
  bottom: 0;
  height: 6rem;
  width: 100%;
  background-color: rgb(246, 248, 251);
  transform: translateY(150%);
  z-index: 10;
}

#sticky-nav {
  position: sticky;
  top: 0;
  background-color: rgb(246, 248, 251);
  z-index: 10;
  height: 3.9rem;
  box-shadow: 0 0px 5px 1px;
  transition: height 0.2s;
}
#sticky-nav img {
  height: 2.9rem;
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
}
#sticky-nav ul {
  align-items: center;
  margin: 0;
}
#sticky-nav ul li a {
  color: rgb(0, 0, 0) !important;
}
#sticky-nav ul li a:hover {
  color: rgb(255, 183, 39) !important;
}
#sticky-nav ul li a.selected {
  color: rgb(255, 255, 255) !important;
}
#sticky-nav ul li a.selected:hover {
  color: rgb(0, 0, 0) !important;
}
#sticky-nav .additional-links-container-sticky {
  width: 100%;
  top: 3.3rem;
  position: absolute;
  right: 0;
}
#sticky-nav .additional-links-container-sticky ul {
  width: 100%;
  max-width: 100%;
}
#sticky-nav .additional-links-container-sticky ul li a {
  margin-top: 0.2rem;
  font-size: 1.1rem;
}
#sticky-nav.expanded {
  height: 6rem;
  transition: height 0.2s;
}
#sticky-nav.expanded ul {
  align-items: baseline;
}

@media only screen and (max-width: 1800px) {
  #sticky-nav.expanded {
    height: 7.9rem;
  }
  #sticky-nav .additional-links-container-sticky ul li a {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 1080px) {
  #sticky-nav.expanded {
    height: 10rem;
  }
}
@media only screen and (min-width: 1001px) {
  #sticky-nav {
    overflow: hidden;
  }
  #sticky-nav ul {
    max-width: calc(100vw - 310px);
  }
}
@media only screen and (max-width: 1350px) {
  #sticky-nav {
    height: 3.7rem;
  }
  #sticky-nav .additional-links-container-sticky ul li a {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 1000px) {
  #sticky-nav {
    height: 4rem;
  }
  #sticky-nav .hamburger {
    color: black;
    transform: translateY(25px);
    z-index: 99;
  }
  #sticky-nav .hamburger:is(:hover) + ul {
    background-color: rgb(246, 248, 251) !important;
    transform: translateY(60px);
    box-shadow: -5px 11px 10px 1px gray;
  }
  #sticky-nav ul:is(:hover) {
    background-color: rgb(246, 248, 251) !important;
    transform: translateY(60px);
    box-shadow: -5px 11px 10px 1px gray;
  }
}
nav {
  position: absolute;
  padding: 0 0 5px 0;
  width: 100%;
  top: 50px;
  right: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
}
nav ul {
  position: relative;
  list-style-type: none;
  display: flex;
  justify-content: right;
}
nav ul li {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  position: relative;
}
nav ul li a {
  position: relative;
  text-decoration: none;
  color: rgb(255, 255, 255) !important;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
}
nav ul li a:visited {
  color: rgb(255, 255, 255) !important;
}
nav ul li a:hover {
  color: rgb(255, 183, 39) !important;
}
nav ul li a.selected {
  background-color: rgb(255, 183, 39);
  border-radius: 5px;
}
nav ul li a.selected:hover {
  color: rgb(0, 0, 0) !important;
}
nav ul li.additional {
  display: none;
}
nav .additional-links-container {
  width: 100%;
  height: 3rem;
  position: relative;
  overflow: hidden;
}
nav .additional-links-container .additional-links {
  position: absolute;
  top: 1.5rem;
  right: 0;
  transition: all 0.5s;
}
nav .additional-links-container .additional-links li a {
  font-size: 1.3rem !important;
}
nav .additional-links-container .additional-links.inactive {
  transform: translateX(110%);
}

@media only screen and (max-width: 1000px) {
  nav ul {
    width: 16rem;
    position: absolute;
    display: none;
    flex-direction: column;
    flex-wrap: wrap;
    transform: translateY(2rem);
    background-color: black;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 99;
  }
  nav ul:is(:hover, :focus, :active) {
    display: block !important;
  }
  nav ul li {
    width: 100%;
    text-align: right;
    padding: 5px 10px;
  }
  nav ul li a {
    width: 100%;
  }
  nav ul li a.selected {
    text-align: center;
  }
  nav ul li.additional {
    display: block;
  }
  nav ul li.more-links {
    display: none;
  }
  nav .hamburger {
    display: inline-block;
    cursor: pointer;
    font-size: 3rem;
    margin: -30px 30px 0 0;
    color: rgb(255, 255, 255);
  }
  nav .hamburger:is(:hover, :focus, :active) + ul {
    display: block !important;
  }
}
@media only screen and (min-width: 1001px) {
  nav .hamburger {
    display: none;
  }
  nav ul {
    flex-direction: row;
  }
  nav ul li {
    text-align: center;
  }
  nav ul li a {
    margin: 0 15px;
  }
  nav ul li a.selected {
    padding: 0 40px;
  }
}
#title {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0 0 70px 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 15;
}
#title .title-logo {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, 0);
  max-height: 150px;
}
#title .divider {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(39%);
  z-index: 20;
}
#title .title-info {
  color: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  font-weight: 200;
}
#title .title-info h1 {
  font-size: 3.2rem;
}
#title .title-info h3 {
  font-size: 1.8rem;
}

@media only screen and (max-width: 1000px) {
  #title .title-logo {
    width: 90vw;
    transform: translate(-50%, 50px);
  }
  #title .title-info h1 {
    font-size: 2.4rem;
  }
  #title .title-info h3 {
    font-size: 1.1rem;
  }
}
#img-nav {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto 40px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#img-nav .item {
  position: relative;
  margin: 10px;
  width: 350px;
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s;
  border-radius: 5px;
  box-shadow: 0 0 5px 1px lightgray;
  display: flex;
  align-items: end;
  overflow: hidden;
  cursor: pointer;
}
#img-nav .item .item-title {
  height: 2rem;
  display: block;
  background-color: rgb(255, 255, 255);
  text-align: center;
  width: 100%;
  transform: translateX(0);
  transition: transform 0.5s;
}
#img-nav .item .get-a-quote-slider {
  height: 2rem;
  background-color: rgb(255, 183, 39);
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.5s;
}
#img-nav .item .get-a-quote-slider img {
  height: inherit;
  display: inline-block;
  background-color: rgb(255, 255, 255);
  padding: 2px 5px;
  margin: 0 10px 0 0;
}
#img-nav .item:nth-child(1) {
  background-image: url("../assets/img_nav/201.webp");
}
#img-nav .item:nth-child(2) {
  background-image: url("../assets/img_nav/202.webp");
}
#img-nav .item:nth-child(3) {
  background-image: url("../assets/img_nav/203.webp");
}
#img-nav .item:nth-child(4) {
  background-image: url("../assets/img_nav/204.webp");
}
#img-nav .item:nth-child(5) {
  background-image: url("../assets/img_nav/205.webp");
}
#img-nav .item:nth-child(6) {
  background-image: url("../assets/img_nav/206.webp");
}
#img-nav .item:nth-child(7) {
  background-image: url("../assets/img_nav/207.webp");
}
#img-nav .item:nth-child(8) {
  background-image: url("../assets/img_nav/208.webp");
}
#img-nav .item:nth-child(9) {
  background-image: url("../assets/img_nav/209.webp");
}
#img-nav .item:nth-child(10) {
  background-image: url("../assets/img_nav/210.webp");
}
#img-nav .item:nth-child(11) {
  background-image: url("../assets/img_nav/211.webp");
}
#img-nav .item:nth-child(12) {
  background-image: url("../assets/img_nav/212.webp");
}
#img-nav .item:nth-child(13) {
  background-image: url("../assets/img_nav/213.webp");
}
#img-nav .item:hover .item-title {
  transform: translateX(-100%);
  transition: transform 0.5s;
}
#img-nav .item:hover .get-a-quote-slider {
  transform: translateX(0);
  transition: transform 0.5s;
}

#instructions {
  margin: 10px 0 40px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: rgb(255, 183, 39);
  position: relative;
}
#instructions .title-container {
  display: block;
  width: 100%;
  margin: 30px 0 10px 0;
}
#instructions .title-container h2 {
  color: rgb(67, 67, 67);
}
#instructions .title-container .stripe {
  background-color: rgb(67, 67, 67);
}
#instructions .instruction {
  border-radius: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  width: 300px;
  position: relative;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  text-align: center;
  padding: 20px;
  font-weight: 400;
  margin: 3rem 50px;
}
#instructions .instruction .num {
  display: inline-block;
  font-size: 3rem;
  width: 4rem;
  height: 4rem;
  text-align: center;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 6px 2px gray;
  z-index: 1;
  line-height: 4rem;
  color: rgb(255, 183, 39);
}
#instructions .instruction .num-cover {
  display: inline-block;
  width: 100%;
  height: 1rem;
  background-color: rgb(255, 255, 255);
  z-index: 2;
  position: absolute;
  top: 1.4rem;
  left: 0;
}
#instructions .instruction img {
  height: 150px;
  margin: 1rem 0 0 0;
  display: block;
  z-index: 3;
}
#instructions .instruction h2 {
  background-color: rgb(240, 240, 240);
  padding: 10px;
}
#instructions .instruction p {
  padding: 20px 0 0 0;
  color: gray;
}

.instructions-top-svg {
  width: 100%;
  margin: -100px 0 -20px 0;
}

.instructions-bottom-svg {
  width: 100%;
  margin: -50px 0 -100px 0;
}

@media only screen and (max-width: 1200px) {
  .instructions-bottom-svg {
    margin: -50px 0 -50px 0;
  }
}
@media only screen and (max-width: 800px) {
  .instructions-bottom-svg {
    margin: -50px 0 0 0;
  }
}
@media only screen and (max-width: 400px) {
  .instructions-bottom-svg {
    transform: translateY(-5px);
  }
}
#tips {
  display: flex;
  justify-content: center;
}
#tips .tips-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
#tips .tips-container .tip-mini {
  background-color: rgb(255, 255, 255);
  display: inline-block;
  width: 300px;
  box-shadow: 0 0 5px 1px gray;
  margin: 20px;
  border-radius: 3px;
  position: relative;
}
#tips .tips-container .tip-mini .tip-title-container {
  display: flex;
  flex-wrap: nowrap;
}
#tips .tips-container .tip-mini .tip-title-container img {
  height: 4.5rem;
}
#tips .tips-container .tip-mini .tip-title-container h3 {
  margin: 10px 20px 10px 20px;
  font-weight: 700;
}
#tips .tips-container .tip-mini ul {
  margin: 20px 20px 4.2rem calc(1.2rem + 20px);
}
#tips .tips-container .tip-mini ul li {
  margin: 20px 0;
}
#tips .tips-container .tip-mini .button-container {
  justify-content: right;
  display: inline-flex;
  justify-content: right;
  width: 100%;
  position: absolute;
  bottom: 0;
}
#tips .tips-container .tip-mini .button-container button {
  margin: 0 10px 15px 0;
  background-color: rgb(255, 183, 39);
  color: rgb(50, 50, 50);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 6px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: box-shadow 1.3s, background-color 0.3s, color 0.3s;
}
#tips .tips-container .tip-mini .button-container button:hover {
  background-color: rgb(255, 183, 39);
  color: rgb(0, 0, 0);
  box-shadow: 0 0 5px 1px rgb(255, 183, 39);
  transition: all 0.3s;
}

.tip-large-icon {
  float: left;
  margin: 0 10px -5px 0;
}

@media only screen and (min-width: 880px) {
  #tips .tips-container {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1450px) {
  #tips .tips-container {
    max-width: 1445px;
  }
}
@font-face {
  font-family: "Titillium Web";
  src: url("../assets/fonts/Titillium_Web/TitilliumWeb-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Titillium Web";
  src: url("../assets/fonts/Titillium_Web/TitilliumWeb-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Titillium Web";
  src: url("../assets/fonts/Titillium_Web/TitilliumWeb-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Titillium Web";
  src: url("../assets/fonts/Titillium_Web/TitilliumWeb-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Titillium Web";
  src: url("../assets/fonts/Titillium_Web/TitilliumWeb-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Titillium Web";
  src: url("../assets/fonts/Titillium_Web/TitilliumWeb-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
footer {
  background-color: rgb(67, 67, 67);
}
footer .back-to-the-top-container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: rgb(240, 240, 240);
}
footer .back-to-the-top-container #back-to-the-top-button {
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background-color: transparent;
  padding: 5px 10px;
}
footer .back-to-the-top-container #back-to-the-top-button:hover {
  text-shadow: 0px 0px 1px;
}
footer .logo-container {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 10px 0 0 0;
}
footer .logo-text {
  text-align: center;
  color: gray;
  margin: -5px 0 0 0;
}
footer .block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
footer .block .copyright {
  padding: 0 40px 0 40px;
}
footer .block .copyright p {
  line-height: 2rem;
}
footer .block .copyright p:first-child {
  color: rgb(255, 255, 255);
  margin: 0 0 20px 0;
  display: inline-block;
}
footer .block .copyright p:last-child {
  color: rgb(255, 183, 39);
  margin: 20px 0 0 0;
}
footer .block .copyright .inc-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr;
}
footer .block .copyright .inc-wrapper img {
  cursor: pointer;
}
footer .bottom-svg {
  width: 100%;
  transform: translateY(5px);
  margin: -100px 0 0 0;
}
footer .links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 2rem) 1fr;
  margin: 20px 40px 0 40px;
  white-space: nowrap;
}
footer .links a {
  cursor: pointer;
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
}
footer .links a:visited {
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
}
footer .links a:hover {
  color: rgb(255, 183, 39) !important;
}
footer .links .social-links {
  grid-column: 1/4;
  grid-row: 5/6;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .links .social-links .social-link-wrapper {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 40%;
  cursor: pointer;
  z-index: 5;
  margin: 0 5px;
}
footer .partners {
  color: rgb(255, 255, 255);
  margin: 20px 40px 0 40px;
}
footer .partners h3 {
  font-size: 1.5rem;
  margin: 0 0 15px 0;
}
footer .partners .partner img {
  height: 3rem;
}
footer .partners .partner p {
  margin: -5px 0 20px 0;
}

@media screen and (max-width: 1200px) {
  footer .block {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1000px) {
  footer .links {
    margin: 20px auto 0 auto;
  }
  footer .links a {
    padding: 0 5px;
  }
  footer .block {
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr;
  }
}
.stylized-title {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.stylized-title div {
  background-color: rgb(255, 183, 39);
  width: 1.2rem;
  height: 0.5rem;
  border-radius: 0.2rem;
  margin: 0 10px;
}
.stylized-title h2 {
  font-size: 2.2rem;
}

.loader-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
  translate: -20px 0;
}
.loader-ring:after {
  content: " ";
  display: block;
  width: 100px;
  height: 100px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid rgb(255, 183, 39);
  border-color: rgb(255, 183, 39) transparent rgb(255, 183, 39) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#partner_companies_modal #partner-comapnies-loader-container {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-companies-list-container ul {
  font-size: 1.2rem;
  display: block;
}
.partner-companies-list-container ul li {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 0 0 1.8rem;
  white-space: inherit;
}

#form-title-container {
  min-height: 460px;
  height: 100%;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(255, 183, 39);
  text-align: center;
  padding: 105px 28px 28px 28px;
  position: relative;
  cursor: default;
}
#form-title-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  padding: 0;
  margin-bottom: 0px;
}
#form-title-container p {
  font-size: 1.5rem;
}

#steps-container {
  margin: auto;
  min-height: 420px;
  display: flex;
  vertical-align: middle;
  align-items: center;
  overflow-x: hidden;
}
#steps-container .question-container {
  animation: fade-in 0.5s;
  padding: 5px 15px;
  margin: 5px 10px;
  display: flex;
  flex-wrap: wrap;
  display: block;
  text-decoration: none;
}
#steps-container .question-container label {
  margin: 0;
  font-size: 1rem;
  color: rgb(0, 0, 0);
  font-weight: 600;
}
#steps-container .question-container label.highlight {
  text-decoration: underline;
  text-decoration-color: red;
  text-decoration-thickness: 2px;
}
#steps-container .question-container input:hover,
#steps-container .question-container select:hover {
  border-color: rgb(255, 183, 39);
}
#steps-container .inline {
  display: inline-block;
  margin: 0;
  width: calc(50% - 15px);
}
#steps-container .inline.left {
  margin: 5px 5px 5px 10px;
  padding: 5px 0 5px 15px;
}
#steps-container .inline.right {
  margin: 5px 10px 5px 5px;
  padding: 5px 15px 5px 0;
}

.tcpa-container {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 0;
}
.tcpa-container .tcpa-text {
  font-size: 1rem;
  z-index: 2;
}
.tcpa-container .tcpa-background {
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.7;
}

.step {
  width: 100%;
}
.step h4 {
  margin: 0 0 26px 0;
  padding: 0;
  position: relative;
  font-weight: 500;
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.6;
}
.step h2 {
  cursor: default;
}

.hidden {
  display: none !important;
}

.required-badge {
  padding: 0 5px;
  font-weight: bold;
  height: 1rem;
  font-size: 1.2rem;
}
.required-badge.highlight {
  color: red;
}

.nav-btn,
.dis-btn {
  font-size: 17px;
  font-weight: bold;
  position: relative;
  width: 130px;
  height: 50px;
  margin: 0 10px;
  margin-top: 20px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s;
  text-align: center;
  color: rgb(255, 255, 255);
  border: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.nav-btn {
  background-color: rgb(255, 183, 39);
  cursor: pointer;
}

.dis-btn {
  background-color: lightgrey;
  cursor: default !important;
}

.nav-btn:after {
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(200, 120, 10);
  content: "";
  z-index: -2;
  transition: transform 0.3s;
}
.nav-btn:hover::after {
  transform: translateY(-80%);
  transition: transform 0.3s;
}

.progress {
  border-radius: 0px !important;
}

.q-box-buttons {
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.q-box-buttons button {
  flex-shrink: 1;
}

.radio-container {
  cursor: pointer;
  display: block;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.radio-container .radio {
  flex: 1 0 0px;
  display: inline-flex;
  flex-wrap: nowrap;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid lightgray;
  border-radius: 5px;
  margin: 5px;
  padding: 0 10px 0 0;
  background: rgb(255, 255, 255);
  justify-content: left;
}
.radio-container .radio .check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid lightgray;
  margin: 0 5px 0 10px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
}
.radio-container .radio:hover {
  border: 1px solid rgb(255, 183, 39);
}
.radio-container .radio.active .check {
  background-color: rgb(255, 183, 39);
}
.radio-container .radio span {
  white-space: nowrap;
}

.buttons-container {
  display: block;
  width: 100%;
}
.buttons-container button {
  margin: 5px 5px;
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 90px;
}

#loader {
  background-image: url("../assets/form/loading.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 300px;
}

#success .img-container {
  width: 100%;
  text-align: center;
}
#success .img-container img {
  width: 20%;
}

.select-input {
  cursor: pointer;
}

.error-message {
  color: red;
  margin: 10px 0 0 0;
  font-weight: lighter;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#form-main-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#form-inner-container {
  margin: 40px;
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: 100%;
  box-shadow: 5px 5px 10px 1px gray;
  max-width: 1100px;
}

#form-wrapper {
  padding: 20px;
}

.question-label {
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  display: inline;
}

.form-control {
  margin: 0 5px;
  width: 100% !important;
}

.question-buttons-container {
  display: block;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.question-buttons-container button {
  flex: 1 0 0px;
  position: relative;
  padding: 10px 40px 10px 20px;
  display: inline-flex;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  border: 1px solid rgb(240, 240, 240);
  white-space: nowrap;
  margin: 5px;
}
.question-buttons-container button::after {
  content: "";
  align-self: center;
  margin-left: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.2s;
  position: absolute;
  right: 10px;
  border: 1px solid rgb(240, 240, 240);
}
.question-buttons-container button:hover {
  background-color: rgb(246, 248, 251);
}
.question-buttons-container button:hover::after {
  background-color: rgb(255, 183, 39);
}

.form-title-container {
  display: flex;
}
.form-title-container img {
  height: 2rem;
  margin: 0 0.5rem;
}

@media only screen and (max-width: 1000px) {
  #form-inner-container {
    grid-template-columns: 100%;
    grid-template-rows: max-content max-content;
  }
  #form-title-container {
    height: -moz-fit-content;
    height: fit-content;
    padding: 28px 28px 28px 28px;
    min-height: 0;
  }
  #form-forms-container {
    border-top: 2px solid rgb(255, 255, 255);
    grid-row: 1;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}
.modal .modal-content {
  font-size: 1.2rem;
  position: relative;
  border-radius: 10px;
  padding: 20px;
  background-color: rgb(255, 255, 255);
  width: 80%;
  max-width: 1536px;
  height: 80%;
  max-height: 864px;
  overflow-y: auto;
  box-shadow: 15px 15px 15px 1px;
  animation: spawn 0.3s linear;
}
.modal .modal-content.small {
  max-width: 600px;
}
.modal .modal-content.fit-content {
  max-height: -moz-fit-content;
  max-height: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.modal .modal-content .exit-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 35px;
  cursor: pointer;
  transition: scale 0.3s;
}
.modal .modal-content .exit-icon:hover {
  scale: 1.3;
  transition: scale 0.3s;
  animation: wiggle 1.3s infinite;
}
.modal .modal-content .stylized-title {
  margin: 0 0 20px 0;
}
.modal .modal-content form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  max-width: 50rem;
  height: fit-content;
}
.modal .modal-content form input,
.modal .modal-content form textarea {
  width: 100%;
  font-size: 1.2rem;
  padding: 1px 3px;
  margin: 0 0 10px 0;
}
.modal .modal-content form input[type=submit] {
  position: relative;
  margin: 20px 0 0 0;
  padding: 5px 40px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  background-color: rgb(255, 183, 39);
  color: rgb(255, 255, 255);
  font-weight: 700;
  cursor: pointer;
}
.modal .modal-content form input[type=submit]:hover {
  background-color: rgb(255, 200, 100);
  color: rgb(0, 0, 0);
  box-shadow: 0 0 5px 1px rgb(255, 200, 100);
  transition: all 0.3s;
}
.modal .modal-content .small-text {
  font-size: 0.9rem;
}

@media only screen and (max-width: 800px) {
  .modal .modal-content .stylized-title {
    margin-top: 50px;
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spawn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
#reviews-title {
  margin: 20px 0 0 0;
}

#reviews-container {
  max-width: 1250px;
  margin: 0 auto;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#reviews-container .review-card {
  display: inline-block;
  width: 260px;
  border: 1px solid lightgray;
  border-radius: 10px;
  padding: 20px 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 5px 1px gray;
  margin: 20px;
}
#reviews-container .review-card .rank svg {
  width: 20px;
  height: 20px;
}
#reviews-container .review-card hr {
  margin: 5px 0;
  color: lightgray;
  background-color: lightgray;
  height: 3px;
  border: none;
  border-radius: 5px;
}
#reviews-container .review-card h2 {
  margin: 0 0 5px 0;
}
#reviews-container .review-card h3 {
  margin: 0 0 2px 0;
}

@media only screen and (max-width: 1220px) {
  #reviews-container {
    max-width: 620px;
  }
}
.about-block {
  display: grid;
  grid-template-columns: auto 200px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin: 20px auto;
  padding: 0 40px;
  max-width: 1080px;
}
.about-block .adopt-logo-svg path:nth-child(1) {
  color: rgb(255, 183, 39);
}
.about-block .adopt-logo-svg path:nth-child(2) {
  color: rgb(50, 50, 50);
}

.picture-row {
  max-width: 1080px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 4fr minmax(40px, 1fr) 4fr;
  grid-template-rows: 1fr;
  margin: 0 auto;
  height: 300px;
}
.picture-row img {
  height: 300px;
}
.picture-row .separator {
  width: 100%;
  height: 100%;
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
}
.picture-row .separator .vertical-line {
  height: 100%;
  width: 2px;
  margin: auto;
  background-color: rgb(255, 183, 39);
}
.picture-row .separator .dot {
  width: 20px;
  height: 20px;
  background-color: rgb(255, 183, 39);
  margin: 0 auto;
  border-radius: 50%;
}
.picture-row.left img {
  grid-column: 1;
  justify-self: end;
}
.picture-row.right img {
  grid-column: 3;
}
.picture-row .empty {
  grid-column: 1;
  height: 300px;
}

.info-row {
  text-align: center;
  margin: 20px auto;
  max-width: 1080px;
  padding: 0 40px;
}
.info-row h3 {
  font-size: 1.5rem;
}

@media only screen and (max-width: 800px) {
  .about-block {
    display: block;
  }
  .about-block .adopt-logo-svg {
    display: none;
  }
}
@media only screen and (max-width: 1000px) {
  .picture-row {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .picture-row .separator {
    display: none;
  }
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Titillium Web", sans-serif;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  font-family: "Titillium Web", sans-serif;
  box-shadow: 0 0 200px 10px black;
  background-color: rgb(246, 248, 251);
  overflow-x: hidden;
}

html {
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 1921px) {
  html {
    background-image: url("../assets/bg/ultrawide.webp");
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}/*# sourceMappingURL=style.css.map */