@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 33px;
  }
}

h2 {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 21px;
  }
}

h4 {
  font-size: 18px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  margin: 0 !important;
}
@media screen and (max-width: 1024px) {
  body {
    position: absolute !important;
    width: 100vw !important;
  }
}

header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
header .small-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-left: 15%;
  padding-right: 15%;
  background-color: #103961;
  height: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  header .small-header {
    display: none;
    padding-left: 16px;
    padding-right: 16px;
  }
}
header .small-header a {
  color: #D1DFEC;
  margin-left: 32px;
}
header .main-header {
  margin-left: 15%;
  margin-right: 15%;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #DFE7EF;
}
@media screen and (max-width: 1024px) {
  header .main-header {
    margin-left: 16px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  header .main-header {
    margin-left: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-right: 16px;
    padding-right: 40px;
  }
}
header .site-branding {
  width: 30%;
  float: left;
}
header .site-branding .site-logo {
  cursor: pointer;
}
header .site-branding .site-logo img {
  width: 75px;
  height: 66px;
}
header .site-branding .open-nav {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  header .site-branding .open-nav {
    display: initial !important;
    position: absolute;
    top: 28px;
    right: 16px;
    font-size: 32px;
  }
}
header .site-branding .site-title a {
  color: #87159a;
}
header .main-navigation {
  margin-left: 206px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1340px) {
  header .main-navigation {
    margin-left: 155px;
  }
}
@media screen and (max-width: 1225px) {
  header .main-navigation {
    margin-left: 130px;
  }
}
@media screen and (max-width: 1160px) {
  header .main-navigation {
    margin-left: 100px;
  }
}
@media screen and (max-width: 1100px) {
  header .main-navigation {
    margin-left: 60px;
  }
}
@media screen and (max-width: 1024px) {
  header .main-navigation {
    margin-left: 225px;
  }
}
@media screen and (max-width: 981px) {
  header .main-navigation {
    margin-left: 155px;
  }
}
@media screen and (max-width: 870px) {
  header .main-navigation {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 768px) {
  header .main-navigation {
    margin-left: 0px;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: center;
    gap: 0px !important;
    margin-top: -16px;
    z-index: 2000;
    position: fixed;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    background-color: #fff;
    transition: 0.5s;
    width: 100%;
    left: -100%;
  }
}
header .main-navigation .closebtn {
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 50px;
  color: #051320;
}
@media screen and (max-width: 768px) {
  header .main-navigation .closebtn {
    display: initial;
  }
}
header .main-navigation closebtn:visited {
  color: #051320;
}
header .main-navigation ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  margin: 0px;
  padding: 0px;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1414px) {
  header .main-navigation ul {
    padding-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  header .main-navigation ul {
    flex-direction: column;
    padding-left: 0px;
    margin-top: 146px;
  }
}
header .main-navigation ul li {
  list-style: none;
}
@media screen and (max-width: 768px) {
  header .main-navigation ul li {
    text-align: center;
  }
}
header .main-navigation ul a {
  color: #051320;
}
@media screen and (max-width: 768px) {
  header .main-navigation ul a {
    font-size: 24px;
  }
}
header .main-navigation ul a:hover {
  color: #103961;
}
header .main-navigation .subnav {
  overflow: hidden;
}
header .main-navigation .subnav .menu-item::after {
  content: "▼";
  position: relative;
}
header .main-navigation .subnav .subnav-content {
  display: none;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
  background: #fff;
  border: 1px solid #000;
  padding: 5px;
}
header .main-navigation .subnav .subnav-content a {
  color: rgba(31, 25, 25, 0.968627451);
}
header .main-navigation .subnav .subnav-content a:hover {
  color: #fc7216;
}
header .main-navigation .subnav:hover .subnav-content {
  display: flex;
  flex-direction: column;
}

.error-page {
  height: 50vh !important;
  margin-bottom: 32px !important;
}
.error-page .container {
  width: 70% !important;
}
@media screen and (max-width: 768px) {
  .error-page .container {
    width: 100% !important;
  }
}
.error-page .container h1 {
  margin-top: 0px !important;
}
@media screen and (max-width: 768px) {
  .error-page .container h1 {
    font-size: 31px !important;
  }
}
@media screen and (max-width: 768px) {
  .error-page .container p {
    font-size: 16px !important;
  }
}
.error-page .container a {
  background-color: #103961 !important;
  border-color: #103961 !important;
}

.nav-opened {
  left: 0 !important;
}

#stars {
  display: flex;
  flex-direction: row;
}
#stars svg {
  max-height: 50px;
  max-width: 50px;
  fill: #777;
}
@media screen and (max-width: 768px) {
  #stars svg {
    max-height: 25px;
    max-width: 30px;
    min-width: 30px;
  }
}
#stars svg:hover {
  cursor: pointer;
  transition: all 0.2s ease;
}

.star-color {
  fill: gold !important;
  transition: all 0.2s ease;
}

.stars-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .stars-wrapper {
    gap: 10px;
  }
}
.stars-wrapper .rating-number {
  font-size: 20px;
}
@media screen and (max-width: 920px) {
  .stars-wrapper .rating-number {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .stars-wrapper .rating-number {
    height: 21px;
    font-size: 16px;
  }
}

.stars {
  display: flex;
  flex-direction: row;
}
.stars svg {
  max-height: 50px;
  max-width: 50px;
  min-width: 50px;
  fill: gold;
}
@media screen and (max-width: 920px) {
  .stars svg {
    max-height: 35px;
    max-width: 35px;
    min-width: 35px;
  }
}
@media screen and (max-width: 768px) {
  .stars svg {
    max-height: 25px;
    max-width: 27px;
    min-width: 27px;
  }
}

#content {
  margin-left: 15%;
  margin-right: 15%;
}
@media screen and (max-width: 1024px) {
  #content {
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media screen and (max-width: 768px) {
  #content {
    margin-left: 16px;
    margin-right: 16px;
  }
}

a {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .site-content .container {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-about {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-about #primary {
    margin-bottom: 46px !important;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-about .customer-info {
    margin-bottom: 0px !important;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-about #secondary {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-search {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-search #secondary .popular-searches {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-blog {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-blog #secondary {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-blog #secondary .popular-searches {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-company {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .site-content .container-company #secondary {
    margin-bottom: 80px !important;
  }
}
.site-content #primary {
  width: 75%;
  float: left;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .site-content #primary {
    width: 100%;
    margin-bottom: 42px;
  }
}
.site-content #primary .site-main {
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main {
    padding-right: 0px;
  }
}
.site-content #primary .site-main .faq .faq-title h1 {
  margin-top: 0px;
}
.site-content #primary .site-main .questions .question-single h4 {
  margin-bottom: 16px;
}
.site-content #primary .site-main .contact-us .contact-container .contact-content h1 {
  font-weight: normal;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .contact-us .contact-container .contact-content h1 {
    margin-bottom: 24px;
  }
}
.site-content #primary .site-main .contact-us .contact-container #form .user {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .contact-us .contact-container #form .user {
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }
}
.site-content #primary .site-main .contact-us .contact-container #form .user .row-contact-form {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .contact-us .contact-container #form .user .row-contact-form {
    width: 100%;
  }
}
.site-content #primary .site-main .contact-us .contact-container #form .user .row-contact-form label {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #103961;
}
.site-content #primary .site-main .contact-us .contact-container #form .user .row-contact-form input {
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  padding: 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #103961;
}
.site-content #primary .site-main .contact-us .contact-container #form .subject {
  width: 90%;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .contact-us .contact-container #form .subject {
    width: 100%;
  }
}
.site-content #primary .site-main .contact-us .contact-container #form .subject .row-contact-form label {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #103961;
}
.site-content #primary .site-main .contact-us .contact-container #form .subject .row-contact-form select {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #103961;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
}
.site-content #primary .site-main .contact-us .contact-container #form .review {
  width: 90%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .contact-us .contact-container #form .review {
    width: 100%;
  }
}
.site-content #primary .site-main .contact-us .contact-container #form .review .row-contact-form label {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #103961;
}
.site-content #primary .site-main .contact-us .contact-container #form .review .row-contact-form textarea {
  width: 100%;
  height: 129px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  padding: 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #103961;
  font-family: "Inter";
  padding-top: 6px;
  padding-left: 2px;
}
.site-content #primary .site-main .contact-us .contact-container #form #cntSubmit {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  gap: 6px;
  width: 126px;
  height: 34px;
  background: #1B5FA1;
  border-radius: 5px;
  border: 0px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #F8FAFC;
  text-align: center;
  margin-top: 16px;
}
.site-content #primary .site-main .sites .sites-title h1 {
  margin-bottom: 37px;
  margin-top: 0px;
}
.site-content #primary .site-main .sites .site-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 8px 0px;
  border-bottom: 1px solid #DFE7EF;
}
.site-content #primary .site-main .sites .site-detail .left svg {
  width: 32px;
  height: auto;
}
.site-content #primary .site-main .sites .site-detail .left img {
  width: 32px;
  height: auto;
}
.site-content #primary .site-main .sites .site-detail .left div {
  display: flex;
}
.site-content #primary .site-main .sites .site-detail .right a {
  color: #051320;
}
.site-content #primary .site-main .sites .site-detail .right a:hover {
  color: #103961;
}
.site-content #primary .site-main .sites .site-detail .right a:visited {
  color: #051320;
}
.site-content #primary .site-main .sites .site-detail .right h4 {
  margin: 0px;
}
.site-content #primary .site-main .customer-search {
  margin-bottom: 26px;
}
.site-content #primary .site-main .customer-search h1 {
  font-weight: normal;
  margin: 0px;
}
.site-content #primary .site-main .customer-info {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .customer-info {
    margin-bottom: 32px;
  }
}
.site-content #primary .site-main .customer-info img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.site-content #primary .site-main .customer-info h1 {
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .customer-info h1 {
    font-size: 31px;
  }
}
.site-content #primary .site-main .customer-info p {
  color: #103961;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .customer-info p {
    margin-bottom: 0px;
  }
}
.site-content #primary .site-main .customer-info .post-detail h1 {
  margin-top: 0px;
  font-weight: bold;
  margin-bottom: 14px;
}
.site-content #primary .site-main .customer-info .post-detail .post-info {
  margin-bottom: 24px;
  margin-top: 0px;
}
.site-content #primary .site-main .customer-info .post-detail .post-info a {
  color: #1B5FA1;
}
.site-content #primary .site-main .page-header {
  margin-left: 0px;
}
.site-content #primary .site-main .post-container h1 {
  margin-top: 0px;
}
.site-content #primary .site-main .post-container h2 {
  font-weight: normal;
}
.site-content #primary .site-main .post-container .posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .post-container .posts {
    display: flex;
    flex-direction: column;
  }
}
.site-content #primary .site-main .post-container .posts .post {
  background: #DFE7EF;
  border-radius: 6px;
  padding: 32px 16px;
}
.site-content #primary .site-main .post-container .posts .post .post-info {
  font-size: 10px;
  color: #1B5FA1 !important;
  margin: 0;
  margin-bottom: 7px;
}
.site-content #primary .site-main .post-container .posts .post .post-info a:hover {
  text-decoration: underline;
}
.site-content #primary .site-main .post-container .posts .post .post-info a:visited {
  color: #1B5FA1;
}
.site-content #primary .site-main .post-container .posts .post h4 {
  min-height: 44px;
  margin-top: 0;
  margin-bottom: 16px;
  color: #051320;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
}
.site-content #primary .site-main .post-container .posts .post .post-content {
  color: #103961;
  font-weight: 400;
  font-size: 13px;
  line-height: 140%;
}
.site-content #primary .site-main .post-container .posts .post .post-content h3 {
  margin-bottom: 8px;
}
.site-content #primary .site-main .post-container .posts-blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .post-container .posts-blog {
    display: flex;
    flex-direction: column;
  }
}
.site-content #primary .site-main .nav-links {
  width: -moz-max-content;
  width: max-content;
}
.site-content #primary .site-main .nav-links a {
  color: #fff;
  background-color: #fc7216;
  border-radius: 25px;
  border: 1px solid #fc7216;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 5px;
  display: inline-block;
  margin-top: 5px;
}
.site-content #primary .site-main .nav-links a:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.site-content #primary .site-main .nav-links .nav-previous {
  float: left;
  margin-right: 32px;
}
.site-content #primary .site-main .nav-links .nav-next {
  float: right;
}
.site-content #primary .site-main .results-header h1 {
  font-weight: normal;
  margin-top: 0px;
}
.site-content #primary .site-main .companies-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.site-content #primary .site-main .companies-list .company-single {
  display: flex;
  flex-direction: row;
  gap: 16px;
  background: #DFE7EF;
  border-radius: 6px;
  padding: 32px 24px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .companies-list .company-single {
    flex-direction: column;
  }
}
.site-content #primary .site-main .companies-list .company-single .company-left {
  width: 75%;
  border-right: 1px solid #A4BFD9;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .companies-list .company-single .company-left {
    width: 100%;
    padding-bottom: 16px;
    border-right: 0px;
    border-bottom: 1px solid #A4BFD9;
  }
}
.site-content #primary .site-main .companies-list .company-single .company-left a {
  margin-bottom: 16px;
  color: #051320;
}
.site-content #primary .site-main .companies-list .company-single .company-left a h4 {
  margin: 0px;
}
.site-content #primary .site-main .companies-list .company-single .company-left a:visited {
  color: #051320;
}
.site-content #primary .site-main .companies-list .company-single .company-left p {
  font-size: 13px;
  color: #103961;
  margin-bottom: 0px;
}
.site-content #primary .site-main .companies-list .company-single .company-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .companies-list .company-single .company-right {
    width: 126px;
  }
}
.site-content #primary .site-main .companies-list .company-single .company-right a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  width: 126px;
  background: #1B5FA1;
  border-radius: 5px;
  font-weight: 600;
  font-size: 12px;
  color: #F8FAFC;
}
.site-content #primary .site-main .pagination {
  margin-top: 24px;
}
.site-content #primary .site-main .pagination .step-links {
  display: flex;
  gap: 8px;
}
.site-content #primary .site-main .pagination .step-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
  color: #1B5FA1;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .pagination .step-links span {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.site-content #primary .site-main .pagination .step-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #E8EDFB;
  border-radius: 5px;
  width: 36px;
  height: 36px;
  color: #1B5FA1;
}
.site-content #primary .site-main .pagination .step-links a:visited {
  color: #1B5FA1;
}
.site-content #primary .site-main .company-info .messages {
  padding: 0px;
  margin-bottom: 32px;
}
.site-content #primary .site-main .company-info .messages .success {
  list-style: none;
  padding: 8px 12px;
  background-color: #71d4a6;
  color: #fff;
  font-size: 20px;
  border-radius: 6px;
  font-weight: bold;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .messages .success {
    width: 90%;
  }
}
.site-content #primary .site-main .company-info .company-title h1 {
  margin-top: 0px;
  margin-bottom: 32px;
  font-weight: normal;
}
.site-content #primary .site-main .company-info .navigation-links {
  width: 100%;
  border-bottom: 1px solid #DFE7EF;
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .navigation-links {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.site-content #primary .site-main .company-info .navigation-links a {
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  color: #475569;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .navigation-links a {
    width: -moz-max-content;
    width: max-content;
  }
}
.site-content #primary .site-main .company-info .navigation-links a:active {
  background: #E8EDFB;
  color: #1B5FA1;
}
.site-content #primary .site-main .company-info .company-about {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-about {
    margin-bottom: 55px;
  }
}
.site-content #primary .site-main .company-info .company-about p {
  color: #103961;
  margin-bottom: 0px;
}
.site-content #primary .site-main .company-info .company-website {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-website {
    margin-bottom: 55px;
  }
}
.site-content #primary .site-main .company-info .company-website h4 {
  margin-top: 0px;
  margin-bottom: 8px;
}
.site-content #primary .site-main .company-info .company-website a {
  background-color: #1B5FA1;
  color: #fff;
  border-radius: 6px;
  padding: 24px 32px;
  text-align: center;
  font-weight: bold;
}
.site-content #primary .site-main .company-info .company-website a:hover {
  background-color: #103961;
}
.site-content #primary .site-main .company-info .company-phone {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 70px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-phone {
    flex-direction: column;
    gap: 0px;
  }
}
.site-content #primary .site-main .company-info .company-phone div {
  margin-bottom: 22px;
}
.site-content #primary .site-main .company-info .company-phone h4 {
  height: 44px;
  margin-top: 0px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-phone h4 {
    height: initial;
  }
}
.site-content #primary .site-main .company-info .company-open-hours {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.site-content #primary .site-main .company-info .company-open-hours .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
.site-content #primary .site-main .company-info .company-open-hours .row h4 {
  margin: 0px;
}
.site-content #primary .site-main .company-info .company-open-hours .row p {
  margin: 0px;
}
.site-content #primary .site-main .company-info .socials {
  margin-bottom: 48px;
}
.site-content #primary .site-main .company-info .socials h4 {
  margin-bottom: 6px;
}
.site-content #primary .site-main .company-info .company-rating {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-rating {
    margin-top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-rating .reviews {
    border: 2px solid #d1d1d1;
    border-radius: 6px;
    padding: 24px 12px;
  }
}
.site-content #primary .site-main .company-info .company-rating .reviews .errorlist {
  color: red;
}
.site-content #primary .site-main .company-info .company-rating .reviews h3 {
  margin-top: 0px;
  margin-bottom: 32px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-rating .reviews h3 {
    font-size: 16px;
  }
}
.site-content #primary .site-main .company-info .company-rating .reviews .review-stars {
  margin-bottom: 35px;
}
.site-content #primary .site-main .company-info .company-rating .reviews form {
  margin-bottom: 48px;
}
.site-content #primary .site-main .company-info .company-rating .reviews form .submit-button-review {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-rating .reviews form .submit-button-review {
    width: 100%;
    height: 40px;
  }
}
.site-content #primary .site-main .company-info .company-rating .reviews .top-rating {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-rating .reviews .top-rating h3 {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-rating .reviews .top-rating strong {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-rating .other-reviews {
    margin-top: 50px;
  }
}
.site-content #primary .site-main .company-info .company-rating .other-reviews h3 {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-rating .other-reviews strong {
    display: block;
  }
}
.site-content #primary .site-main .company-info .company-rating .other-reviews .review-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-content #primary .site-main .company-info .company-rating .other-reviews .review-list .review-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 24px;
  background: #FFF7EE;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-rating .other-reviews .review-list .review-card {
    flex-direction: column;
  }
}
.site-content #primary .site-main .company-info .company-rating .other-reviews .review-list .review-card .review-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: -moz-max-content;
  height: max-content;
  min-width: 120px;
  border-right: 1px solid #A4BFD9;
}
@media screen and (max-width: 768px) {
  .site-content #primary .site-main .company-info .company-rating .other-reviews .review-list .review-card .review-left {
    border-right: 0px;
    border-bottom: 1px solid #A4BFD9;
    padding-bottom: 16px;
  }
}
.site-content #primary .site-main .company-info .company-rating .other-reviews .review-list .review-card .review-left h4 {
  margin: 0px;
}
.site-content #primary .site-main .company-info .company-rating .other-reviews .review-list .review-card .review-left p {
  font-weight: 400;
  font-size: 13px;
  margin: 0px;
  color: #103961;
}
.site-content #primary .site-main .company-info .company-rating .other-reviews .review-list .review-card .review-left span {
  color: #103961;
  font-size: 13px;
}
.site-content #primary .site-main .company-info .company-rating .other-reviews .review-list .review-card .review-right h4 {
  margin-top: 0px;
  margin-bottom: 16px;
}
.site-content #primary .site-main .company-info .company-rating .other-reviews .review-list .review-card .review-right p {
  font-weight: 400;
  font-size: 13px;
  margin: 0px;
  color: #103961;
}
.site-content #secondary {
  width: 25%;
  float: right;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .site-content #secondary {
    width: 100%;
  }
}
.site-content #secondary .popular-searches {
  background-color: #FFF7EE;
  padding: 24px;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .site-content #secondary .popular-searches {
    margin-bottom: 32px;
  }
}
.site-content #secondary .popular-searches h3 {
  margin-top: 0px;
  font-weight: normal;
}
.site-content #secondary .popular-searches .popular-companies {
  display: flex;
  flex-direction: column;
}
.site-content #secondary .popular-searches .popular-companies a {
  margin-bottom: 16px;
  color: #1B5FA1;
  font-size: 14px;
}
.site-content #secondary .recent-blog {
  background-color: #FFF7EE;
  padding: 24px;
  border-radius: 6px;
}
.site-content #secondary .recent-blog h3 {
  font-weight: normal;
  margin-top: 0;
  font-size: 24px;
}
.site-content #secondary .recent-blog .recent-posts {
  display: flex;
  flex-direction: column;
}
.site-content #secondary .recent-blog .recent-posts a {
  margin-bottom: 16px;
  color: #1B5FA1;
  font-size: 14px;
}

.homepage-search {
  margin-bottom: 46px !important;
}

.similar-companies h2 {
  font-weight: normal;
}

.company-text {
  margin-bottom: 48px !important;
}
.company-text .ui-accordion-header {
  font-weight: bold !important;
  margin-top: 16px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  border: 1px solid #f7f7f7 !important;
}
.company-text .ui-accordion-header-active {
  border: 1px solid #1B5FA1 !important;
  background: #1B5FA1 !important;
  font-weight: bold !important;
}
.company-text .ui-accordion-header-collapsed {
  border: 1px solid #f7f7f7 !important;
  background: #f7f7f7 !important;
  color: #454545 !important;
}
.company-text .ui-accordion-header-collapsed:hover {
  filter: brightness(90%) !important;
}
.company-text .ui-widget-content {
  border: 1px solid #f7f7f7;
  background: #f7f7f7;
  margin-bottom: 16px;
  height: -moz-max-content !important;
  height: max-content !important;
}
.company-text .ui-widget-content a {
  color: #0000EE;
}
.company-text .ui-widget-content a:hover {
  text-decoration: underline;
}
.company-text p {
  color: #103961;
  margin: 0px;
}

#form label {
  font-weight: 400;
  font-size: 14px;
  color: #103961;
}
#form .review-user {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #form .review-user {
    flex-direction: column;
  }
}
#form .review-user .review-name {
  display: flex;
  flex-direction: column;
}
#form .review-user .review-name .full-name {
  height: 52px;
  width: 308px;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  padding-left: 8px;
  font-size: 16px;
}
#form .review-user .review-email {
  display: flex;
  flex-direction: column;
}
#form .review-user .review-email .email {
  height: 52px;
  width: 308px;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  padding-left: 8px;
  font-size: 16px;
}
#form .review-comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
#form .review-comment .comment {
  height: 129px;
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: 4px;
  padding-left: 8px;
  padding-top: 8px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #form .review-comment .comment {
    max-width: 308px;
  }
}
#form .submit-button-review {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  width: 126px;
  height: 34px;
  background: #1B5FA1;
  border-radius: 5px;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #F8FAFC;
  font-family: "Inter";
  border-style: none;
}

#submit img {
  width: 16px !important;
  height: 16px !important;
}

.dropdown-lang {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}
.dropdown-lang .current-lang {
  width: 5rem;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.dropdown-lang .current-lang svg {
  height: 50%;
}
.dropdown-lang .dropdown-flags {
  width: 100%;
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 100%;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  z-index: 50;
}
.dropdown-lang .dropdown-flags .flag-svg {
  margin: 0.1rem 0.6rem;
  padding: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
}
.dropdown-lang .dropdown-flags .flag-svg .lang-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropdown-lang .dropdown-flags svg {
  width: 80%;
}

.active-lang {
  background-color: rgb(236, 236, 236);
}

.dropdown-lang.active > .current-lang + .dropdown-flags {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-lang.active > .current-lang {
  background-color: rgb(236, 236, 236);
  transition: background-color 300ms ease-in-out;
}

.dropdown-clicked {
  background-color: #ddd;
  transition: background-color 300ms ease-in-out;
}

.dropdown-flags-animation {
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.page-title {
  font-weight: normal;
  font-size: inherit;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
}
footer .footer-first {
  padding-top: 27px;
  padding-bottom: 47px;
  padding-left: 15%;
  padding-right: 15%;
  background-color: #103961;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  footer .footer-first {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-first {
    flex-direction: column;
    padding: 40px 16px 20px 16px;
  }
}
footer .footer-first h4 {
  color: #fff;
  text-decoration: underline;
}
footer .footer-first .footer-info {
  width: 54%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  footer .footer-first .footer-info {
    width: 100%;
  }
}
footer .footer-first .footer-info img {
  height: 65.2px;
  width: 74.3px;
}
footer .footer-first .footer-info p {
  color: #fff;
}
footer .footer-first .footer-links {
  width: 33%;
  display: flex;
  flex-direction: column;
  padding-left: 107px;
}
@media screen and (max-width: 768px) {
  footer .footer-first .footer-links {
    width: 100%;
    padding-left: 0px;
    display: initial;
    flex-direction: initial;
  }
}
footer .footer-first .footer-links a {
  color: #fff;
  margin-bottom: 10px;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  footer .footer-first .footer-links a {
    margin-right: 32px;
    display: inline;
  }
}
footer .footer-first .footer-services {
  width: 33%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  footer .footer-first .footer-services {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-first .footer-services h4 {
    margin-top: 36px;
  }
}
footer .footer-first .footer-services .footer-companies {
  display: flex;
  flex-direction: column;
}
footer .footer-first .footer-services .footer-companies a {
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
}
footer .footer-second {
  background-color: #000000;
  color: #ffffff;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 15%;
  padding-right: 15%;
}
@media screen and (max-width: 768px) {
  footer .footer-second {
    padding: 10px 0px 10px 14px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-second .sep {
    font-size: 10px;
  }
}

.captcha-background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.captcha-background .captcha-modal {
  width: 400px;
  background-color: #fff;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  transform: translateY(-20px);
  pointer-events: none;
  opacity: 0;
}

.captcha-animation {
  transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
}

.active-modal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.captcha-background .captcha-modal .captcha-close {
  width: 100%;
  height: 15%;
  display: flex;
  justify-content: flex-end;
}
.captcha-background .captcha-modal .captcha-close svg {
  width: auto;
  height: 70%;
  stroke: #bbb;
  transition: all 150ms ease-in-out;
}
.captcha-background .captcha-modal .captcha-close svg:hover {
  stroke: #555;
  transition: all 150ms ease-in-out;
}
.captcha-background .captcha-modal .captcha-content {
  width: 100%;
  height: 80%;
  margin: 0 auto;
}
.captcha-background .captcha-modal .captcha-content .captcha-area {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.captcha-background .captcha-modal .captcha-content .captcha-area .captcha-img {
  width: 85%;
  height: 3rem;
  position: relative;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  margin-right: 1rem;
}
.captcha-background .captcha-modal .captcha-content .captcha-area .captcha-img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  image-rendering: -webkit-optimize-contrast;
  -o-object-fit: cover;
     object-fit: cover;
}
.captcha-background .captcha-modal .captcha-content .captcha-area .captcha-img .captcha {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.captcha-background .captcha-modal .captcha-content .captcha-area .reload-btn {
  width: 15%;
  border: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  background-color: #1B5FA1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 300ms ease;
}
.captcha-background .captcha-modal .captcha-content .captcha-area .reload-btn svg {
  fill: #fff;
  width: 60%;
  height: auto;
  transition: transform 300ms ease;
}
.captcha-background .captcha-modal .captcha-content .captcha-input-area {
  width: 100%;
  height: 3rem;
  margin-top: 1rem;
  position: relative;
}
.captcha-background .captcha-modal .captcha-content .captcha-input-area input {
  width: 75%;
  height: 100%;
  padding: 0px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border: 1px solid #bbb;
  font-size: 1.5rem;
  font-family: "Calibri";
}
.captcha-background .captcha-modal .captcha-content .captcha-input-area input::-moz-placeholder {
  color: #bfbfbf;
}
.captcha-background .captcha-modal .captcha-content .captcha-input-area input::placeholder {
  color: #bfbfbf;
}
.captcha-background .captcha-modal .captcha-content .captcha-input-area input:focus {
  outline-color: #1B5FA1;
}
.captcha-background .captcha-modal .captcha-content .captcha-input-area .check-btn {
  height: 100%;
  padding: 0 0.7rem;
  position: absolute;
  right: 0;
  border: 0;
  border-radius: 5px;
  background-color: #1B5FA1;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  pointer-events: none;
}
.captcha-background .captcha-modal .captcha-content .captcha-input-area input:valid + .check-btn {
  opacity: 1;
  pointer-events: auto;
}

.captcha-content .status-text {
  width: 100%;
  height: 0;
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 200ms ease;
}

.status-active {
  height: auto !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.status-error {
  color: #f44336;
}

.status-success {
  color: #4caf50;
}

@media (hover: hover) and (pointer: fine) {
  .captcha-background .captcha-modal .captcha-content .captcha-area .reload-btn:hover {
    background-color: rgba(102, 102, 153, 0.8274509804);
  }
  .captcha-background .captcha-modal .captcha-content .captcha-area .reload-btn:hover svg {
    transform: rotate(15deg);
  }
  .places .place .data .name a:hover {
    color: #23527c;
  }
}
@media only screen and (max-width: 1024px) {
  .details-container .oh-status {
    width: 40%;
  }
  .details-container .details {
    width: 60%;
  }
  .details-container .details .reviews form input {
    width: 60%;
  }
}
@media only screen and (max-width: 768px) {
  .details-container .oh-status {
    width: 80%;
    margin: auto;
    padding: 0;
  }
  .details-container .details {
    width: 80%;
    margin: 2rem auto 0 auto;
    padding: 0;
  }
  .details-container .details .details-content .content-top {
    margin-top: 1rem;
  }
  .details-container .details .details-content .content-top .top-data {
    width: 100%;
  }
  .details-container .details .details-content .content-top .top-rating {
    width: 100%;
    justify-content: flex-start;
  }
  .map-unavailable {
    font-size: 2rem;
    padding: 1rem;
  }
  .details-container .details .reviews form input, .details-container .details .reviews form textarea {
    width: 100%;
  }
  .details-container .details .reviews .review-card {
    width: 100%;
  }
  .details-container .details .reviews form input:last-child {
    width: 50%;
  }
  .captcha-background .captcha-modal .captcha-content .captcha-input-area {
    height: 2.5rem;
  }
  .captcha-background .captcha-modal .captcha-content .captcha-input-area input {
    font-size: 1.2rem;
  }
  .captcha-background .captcha-modal .captcha-content .captcha-input-area .check-btn {
    font-size: 1rem;
  }
  .messages li {
    width: 100%;
  }
}
@media only screen and (max-width: 530px) {
  .details-container {
    padding: 1.5rem 0;
  }
  .details-container .oh-status, .details-container .details {
    width: 100%;
  }
  .places .place .data .name a {
    white-space: normal;
  }
}
@media only screen and (max-width: 425px) {
  .captcha-background .captcha-modal {
    width: 95%;
  }
}/*# sourceMappingURL=style.css.map */