

/* === contact-form-03 === */

.contact03 {
  padding: 55px 0;
  position: relative;
  --link-background: var(--contact-form-03-accent-color, #63cc56);
  --button-background: var(--contact-form-03-accent-color, #1cb5cd);
  --scrollbar-color: var(--contact-form-03-accent-color, #fbc826);
  --selection-bg: var(--contact-form-03-accent-color, #fbc826);
  --selection-color: #171717
}

.contact03 form .bottom-box .btn {
  background-color: var(--button-background);
  border-color: var(--button-background);
}

.contact03 form .bottom-box .btn:hover {
  background-color: transparent;
  border-color: var(--button-background);
}

.contact03::before {
  content: "";
  width: 120%;
  height: calc(100% + var(--block-padding) * 4);
  top: calc(var(--block-padding) * -2);
  left: -10%;
  position: absolute;
  border-radius: 0;
  background: conic-gradient(from 20deg at 100% 55%, #e8b317 0deg, #473a16 100deg, #473a16 230deg, #e8b317 270deg, #e8b317 360deg);
  filter: blur(var(--block-blur, 200px));
  opacity: var(--block-opacity, .6);
}

.contact03 .row {
  --bs-gutter-y: 1rem;
}

.contact03 h1 {
  margin-bottom: .25rem;
}

.contact03 h1 strong,
.contact03 h1 b {
  font-weight: var(--h1-fontweight);
}

.contact03 .text:not(.form-field) {
  max-width: 580px;
  margin-bottom: 1.5rem;
}

.contact03 form .form-field.date .form-control {
  max-width: calc(50% - var(--bs-gutter-x) * .5);
}

.contact03 form .form-field.date .form-control::-webkit-calendar-picker-indicator {
  background-color: #405da7;
  border-radius: 50%;
  cursor: pointer;
  padding: 5px;
  filter: invert(1) grayscale(100%) brightness(200%);
}

.contact03 h3 {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: var(--body-color);
  margin-bottom: 0;
}

.contact03 .phone,
.contact03 .email {
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact03 .phone a,
.contact03 .email a {
  color: var(--link-background, #63cc56);
  --selection-bg: var(--link-background, #63cc56);
  --selection-color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}

.contact03 .text a {
  color: var(--body-color);
  text-decoration: none;
}

.contact03 .text p {
  margin-bottom: 10px;
}

.contact03 .text p:last-child {
  margin-bottom: 0;
}

.contact03 .icon-block {
  border-radius: 5px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
  padding: 40px;
  background-color: #fff;
}

.contact03 .icon-block .icon {
  margin-bottom: 20px;
}

.contact03 .icon-block .icon i {
  font-size: 36px;
}

.contact03 .icon-block h2 {
  font-weight: 300;
  margin-bottom: 10px;
  font-size: 44px;
  line-height: 48px;
}

.contact03 .icon-block h2 strong {
  font-weight: 600;
}

.contact03 .phone a,
.contact03 .email a {
  font-size: 18px;
  line-height: 26px;
  color: var(--link-background, #63cc56);
  text-decoration: none;
  transition: color .3s ease-in-out;
}

.contact03 .phone a:hover,
.contact03 .email a:hover {
  color: var(--body-color);
}

.contact03 .addr p {
  margin-bottom: 5px;
}

.contact03 .addr .addr-additional {
  /* display: flex;
        flex-direction: row;
        flex-wrap: wrap;*/
}

.contact03 .addr .addr-additional p {
  display: inline;
}

.contact03 .addr .addr-additional p+p {
  margin-left: 10px;
}

.contact03 .addr .addr-additional p:nth-child(2n)+p {
  margin-left: 0;
}

.contact03 .addr .addr-additional p:not(:first-child):before {
  content: ",";
  transform: translateX(-10px);
  display: inline-block;
}

.contact03 .addr .addr-additional p:nth-child(2n)+p:before {
  content: none;
}

.contact03 .addr .addr-additional p:nth-child(2n):after {
  content: "";
  white-space: pre;
  display: block;
}

.contact03 .addr p:last-child {
  margin-bottom: 0;
}

.contact03 .social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 160px;
  margin-top: 1.75rem;
}

.contact03 .social a {
  width: 55px;
  height: 55px;
  min-width: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  margin-right: 5px;
  text-decoration: none;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: background-color .3s ease-in-out;
}

.contact03 .social a:hover {
  background-color: var(--link-background, #63cc56);
}

.contact03 .social a i {
  color: #fff;
  font-size: 20px;
}

.contact03 .social a svg {
  color: #fff;
  fill: #fff;
  width: 20px;
  max-height: 20px;
}

.contact03 .content-wrapper {
  position: relative;
  z-index: 2;
}

.contact03 .form-wrapper {
  position: relative;
  z-index: 1;
  margin-top: -4px;
}

.contact03 .form-title {
  margin-bottom: 1.5rem;
}

.contact03 .form-text {
  color: inherit;
  margin-bottom: 1.25rem;
  font-size: inherit;
}

.contact03 .form-text p {
  margin-bottom: 5px;
}

.contact03 .form-text p:last-child {
  margin-bottom: 0;
}

.contact03 form .form-control {
  background-color: #ffffff;
  border-color: #ffffff;
  padding: 17px 20px;
  min-height: 56px;
  height: 63px;
  border: unset !important;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.025);
}

.contact03 form textarea.form-control {
  height: 228px;
}

.contact03 form .checkbox+label::before {
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.025);
}

.contact03 form .checkbox.error+label::before {
  background-color: var(--errorinput-bg);
  border-color: var(--errorinput-bg);
}

.contact03 .form .required-star {
  color: var(--required_color) !important;
}

.contact03 .reload_captcha {
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  padding: 0px !important;
  min-width: 40px;
}

.contact03 .captcha_whatis {
  color: inherit;
}

.contact03 .col-form-label {
  font-size: 16px;
  line-height: 20px;
  font-weight: var(--font-regular);
  color: var(--body-color);
  padding-top: 6px;
  padding-bottom: 10px;
}

.contact03 .form input[type="checkbox"]+label {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 8px;
  font-weight: var(--font-regular);
  color: var(--body-color);
}

.contact03 .required {
  display: inline-block;
  color: var(--required_color);
  font-size: 16px;
  align-content: center;
}

.contact03 .address {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 1.65rem;
}

.contact03 .address p {
  margin-bottom: 0px;
}

.contact03 .address .company-name {
  font-weight: 600;
}

.contact03 .address :last-child {
  margin-bottom: 0;
}

.contact03 .form-group.bottom-box {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}

@media screen and (max-width: 1199.98px) {
  .contact03 form .form-control {
    min-height: 56px;
    height: 56px;
  }
}

@media (max-width: 767.98px) {
  .contact03 .form-wrapper {
    margin-top: calc(2.5rem - var(--bs-gutter-y));
  }

  .contact03 .social {
    max-width: 100%;
  }
}
/* === contact-form-03 === */



/* === contact-form-thankyou === */

.contact-thankyou {
    padding: 220px 0px;
    min-height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    --link-background: var(--contact-form-thankyou-accent-color, #fbc826);
    --button-background: var(--contact-form-thankyou-accent-color, #fbc826);
    --scrollbar-color: var(--contact-form-thankyou-accent-color, #fbc826);
    --selection-bg: var(--contact-form-thankyou-accent-color, #fbc826);
    --selection-color: #171717;
}

.contact-thankyou::before {
    content: "";
    width: 120%;
    height: calc(100% + var(--block-padding) * 4);
    top: calc(var(--block-padding) * -2);
    left: -10%;
    position: absolute;
    border-radius: 0;
    background: conic-gradient(from 20deg at 100% 55%, #e8b317 0deg, #473a16 100deg, #473a16 230deg, #e8b317 270deg, #e8b317 360deg);
    filter: blur(var(--block-blur, 200px));
    opacity: var(--block-opacity, .6);
}

.contact-thankyou h2 {
    margin-bottom: 1.25rem;
}

.contact-thankyou .text {
    text-wrap: balance;
    margin-bottom: 0;
}

.contact-thankyou .cty-feat-itme {
    height: 300px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 7px 6px #0000003b;
    border-radius: 5px;
}

.contact-thankyou .cty-feat-itme img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cty-feat-itme>a {
    text-decoration: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cty-feat-itme .title {
    display: block;
    padding: 10px 0px;
    text-align: center;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}

.cty-feat-itme .title b,
.cty-feat-itme .title strong {
    font-weight: 600;
}

.cty-feat-itme.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.cty-feat-itme.social .title {
    position: static;
}

.cty-feat-itme .social-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px 45px;
    justify-content: space-around;
}

.cty-feat-itme .social-list a {
    background-color: #1d1d1d;
    width: calc(25% - 10px);
    height: auto;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    padding-bottom: calc(25% - 10px);
    position: relative;
    margin-top: 10px;
    position: relative;
}

.cty-feat-itme .social-list a>* {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cty-feat-itme .social-list a svg {
    fill: #fff;
    width: 40px;
    height: 40px;
}

@media(max-width: 1399px) {
    .cty-feat-itme .social-list a {
        width: calc(33.3% - 10px);
        padding-bottom: calc(33.3% - 10px);
    }
}
/* === contact-form-thankyou === */



/* === footer-04-ecommerce === */

.footer-04-ecommerce {

    --footer-background: #171717;
    --footer-tile-background: rgba(255, 255, 255, 0.03);
    --button-background: #ffffff;

    --scrollbar-color: var(--footer-05-brochure-accent-color, #63cc56);
    --selection-bg: var(--footer-05-brochure-accent-color, #63cc56);

    padding: var(--block-margin) 0;
    background-color: var(--footer-background);
    color: #fff;
    position: relative;
}

.footer05+.footer-04-ecommerce {
    padding-top: 0;
}

.footer-04-ecommerce a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.footer-04-ecommerce .footer-links {
    display: flex;
    flex-flow: column wrap;
}

.footer-04-ecommerce .links-wrapper {
    display: flex;
    flex-flow: column nowrap;
}

.footer-04-ecommerce .footer-links {
    width: calc((100% - 2rem) * .5);
}

.footer-04-ecommerce .links-wrapper {
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
}

.footer-04-ecommerce a.footer-link {
    --button-background: #fff;
    color: var(--button-background);
    text-decoration: none;
    font-size: 18px;
    line-height: 30px;
    margin: 5px 0;
    width: fit-content;
    transition: color 0.3s ease-in-out;
}

.footer-06-copyright,
.footer-06-design {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    width: 100%;
    display: block;
    letter-spacing: .025em;
}

.footer-04-ecommerce .footer-image {
    max-height: 110px;
}

.footer-text-part {
    height: 100%;
    display: flex;
    flex-flow: column;
}

.footer-text-part a {
    height: 18px;
}

.footer-06-accreditation {
    margin-top: 1.25rem;
    margin-bottom: .75rem;
    display: flex;
    flex-flow: row wrap;
    gap: 0.5rem;
    justify-content: start;
    align-items: center;
}

.footer-06-accreditation img {
    height: auto;
    object-fit: contain;
    object-position: center left;
    max-height: 70px;
    border-radius: 6px;
}

@media screen and (max-width: 991.98px) {
    .footer-04-ecommerce .row {
        --bs-gutter-y: 1rem;
    }

    .footer-04-ecommerce {
        padding: 3rem 0;
    }
}

@media screen and (max-width: 767.98px) {
    .footer-04-ecommerce .row {
        --bs-gutter-y: 2rem;
    }

    .footer-06-accreditation {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 350px) {
    .footer-04-ecommerce .links-wrapper {
        gap: 0;
    }

    .footer-04-ecommerce .footer-links {
        width: 100%;
    }
}
/* === footer-04-ecommerce === */

