<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Lindy UI Kit
Author: UIdeck
*/

/* ============================= 
    BUTTONS CSS
================================ */
.button {
  height: 44px;
  font-size: 18px;
  font-weight: 500;
  box-sizing: border-box;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #2F80ED;
  color: #ffffff;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  padding: 0 25px;
  overflow: hidden;
}

.button i {
  padding-left: 20px;
}

.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  padding: 50%;
  border-radius: 50%;
  margin: auto;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: all .4s linear;
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.button:hover {
  color: #ffffff;
}

.button:hover::before {
  transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.button.border-button {
  background: transparent;
  color: #2F80ED;
  border-color: #2F80ED;
}

.button.border-button::before {
  background: rgba(47, 128, 237, 0.16);
}

.button-lg {
  height: 64px;
}

.button-sm {
  height: 34px;
  font-size: 16px;
  font-weight: 400;
}
.radius-10 {
  border-radius: 10px;
}
/* ============================= 
    BUTTONS PAGE CSS
================================ */
.buttons-wrapper ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.buttons-wrapper ul li {
  margin-right: 30px;
  margin-bottom: 20px;
}
/* ============================= 
    CONTACT-1 CSS
================================ */
.contact-style-1 {
  background: #F3F3F3;
  padding: 100px 0 70px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-style-1 .contact-form-wrapper form .single-input {
  position: relative;
  margin-bottom: 20px;
}

.contact-style-1 .contact-form-wrapper form .single-input label {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.contact-style-1 .contact-form-wrapper form .single-input textarea,
.contact-style-1 .contact-form-wrapper form .single-input input {
  background: #ffffff;
  border-radius: 10px;
  position: relative;
  padding-left: 20px;
  padding-right: 50px;
  width: 100%;
  border: 1px solid transparent;
  box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
  transition: all 0.3s ease-out 0s;
}

.contact-style-1 .contact-form-wrapper form .single-input textarea::placeholder,
.contact-style-1 .contact-form-wrapper form .single-input input::placeholder {
  font-weight: 300;
  opacity: 1;
  color: 585978;
}

.contact-style-1 .contact-form-wrapper form .single-input textarea:focus,
.contact-style-1 .contact-form-wrapper form .single-input input:focus {
  border-color: #2F80ED;
}

.contact-style-1 .contact-form-wrapper form .single-input input {
  height: 56px;
}

.contact-style-1 .contact-form-wrapper form .single-input textarea {
  padding: 15px 20px;
  padding-right: 50px;
  resize: none;
}

.contact-style-1 .contact-form-wrapper form .single-input i {
  position: absolute;
  right: 21px;
  top: 53.5px;
}

.contact-style-1 .contact-form-wrapper form .form-button {
  padding-top: 10px;
}

.contact-style-1 .contact-form-wrapper form .form-button button {
  height: 56px;
  background: #ffffff;
  color: #585978;
}

.contact-style-1 .contact-form-wrapper form .form-button button:hover {
  color: #ffffff;
}

.contact-style-1 .contact-form-wrapper form .form-button button:hover::before {
  background: #2F80ED;
}

.contact-style-1 .contact-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  width: 30%;
}

.contact-style-1 .contact-image::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 60px;
  z-index: -1;
  right: -400px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: #ffffff;
}

.contact-style-1 .contact-image img {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-style-1 .contact-image img {
    display: none;
  }
}

/* ============================= 
    CONTACT-2 CSS
================================ */
.contact-style-2 {
  padding: 100px 0 70px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-style-2 .contact-form-wrapper form .single-input {
  position: relative;
  margin-bottom: 20px;
}

.contact-style-2 .contact-form-wrapper form .single-input label {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.contact-style-2 .contact-form-wrapper form .single-input textarea,
.contact-style-2 .contact-form-wrapper form .single-input input {
  background: transparent;
  border-radius: 10px;
  position: relative;
  padding-left: 20px;
  padding-right: 50px;
  width: 100%;
  border: 1px solid #585978;
  box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
  transition: all 0.3s ease-out 0s;
}

.contact-style-2 .contact-form-wrapper form .single-input textarea::placeholder,
.contact-style-2 .contact-form-wrapper form .single-input input::placeholder {
  font-weight: 300;
  opacity: 1;
  color: 585978;
}

.contact-style-2 .contact-form-wrapper form .single-input textarea:focus,
.contact-style-2 .contact-form-wrapper form .single-input input:focus {
  border-color: #2F80ED;
}

.contact-style-2 .contact-form-wrapper form .single-input input {
  height: 56px;
}

.contact-style-2 .contact-form-wrapper form .single-input textarea {
  padding: 15px 20px;
  padding-right: 50px;
  resize: none;
}

.contact-style-2 .contact-form-wrapper form .single-input i {
  position: absolute;
  right: 21px;
  top: 53.5px;
}

.contact-style-2 .contact-form-wrapper form .form-button {
  padding-top: 10px;
}

.contact-style-2 .contact-form-wrapper form .form-button button {
  height: 56px;
}

.contact-style-2 .contact-map {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  height: 75%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-style-2 .contact-map {
    width: 40%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-style-2 .contact-map {
    width: 40%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-style-2 .contact-map {
    position: static;
    width: 100%;
    height: 300px;
    margin-top: 60px;
  }
}

.contact-style-2 .contact-map .map-canvas {
  height: 100%;
  border-radius: 30px 0 0 30px;
}
</pre></body></html>