
.img-hover-zoom img {
  transition: transform .5s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}

.img-hover-zoom:hover ~ .offer-text h3 {
  color: #027a4c !important;
}

.offer-text:hover h3 {
  color: #027a4c !important;
}

.overlayr {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
z-index: 9999;
  top: 0;
  left: 0;
  background-color: #fefefe
}

.overlayr-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlayr .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlayr .closebtn:hover {
  color: #ccc;
}

.overlayr input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  border-radius: 10px 0px 0px 10px;
  width: 80%;
  background: white;
}

.overlayr input[type=text]:hover {
  background: #f1f1f1;
}

.overlayr input[type=password] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  border-radius: 10px 0px 0px 10px;
  width: 80%;
  background: white;
}

.overlayr input[type=password]:hover {
  background: #f1f1f1;
}

.overlayr button {
  float: left;
  width: 20%;
  border-radius: 0px 10px 10px 0px;
  padding: 15px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.overlayr button:hover {
  background: #bbb;
}


.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;    
}

.lights {
    position: absolute;
    width: 0px;
    opacity: .75;
    background-color: white;
    box-shadow: #e9f1f1 0px 0px 20px 2px;
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

.x1{
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
   -webkit-transform: scale(1.0);
   -moz-transform: scale(1.0);
   -o-transform: scale(1.0);
  transform: scale(1.0);
}

.x2{
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3{
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  left: -15%;
}

.x4{
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5{
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6{
  -webkit-animation: floatUp 3s infinite linear;
  -moz-animation: floatUp 3s infinite linear;
  -o-animation: floatUp 3s infinite linear;
  animation: floatUp 3s infinite linear;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  left: -81%;
}

.x7{
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(3.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8{
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9{
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

button:focus{
  outline: none;
}

@-webkit-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-moz-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-o-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
.img-blogsmall {
 width:269px !important;height:180px !important;object-fit: cover;    
}
.img-blogbig {
width:571px !important;height:390px !important;object-fit: cover;
}
.img-mblogsmall {
 width:100% !important;height: 250px !important;object-fit: cover;    
}

.img-mabout {
    height: 250px !important;
    width: 100%;
    object-fit: cover; 
}

.oneline {
overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;    
}
.open-button {
border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 23px;
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  z-index: 9999;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 200px;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/send button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

.chatwith.svelte-aoit06 .slide-in-left.svelte-aoit06 {
    -webkit-animation: svelte-aoit06-slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: svelte-aoit06-slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.chatwith.svelte-aoit06 .chatwith-bubble.svelte-aoit06 {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgb(0 0 0 / 30%);
    margin-bottom: 10px;
    min-width: 280px;
    width: 300px;
}

.chatwith-header.svelte-lkffd5.svelte-lkffd5 {
    position: relative;
    padding: 20px 10px 5px;
}

.close-chatwith.svelte-lkffd5.svelte-lkffd5 {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.close-chatwith.svelte-lkffd5 svg.svelte-lkffd5 {
    width: 25px;
    height: 25px;
}

.chatwith-header.svelte-lkffd5 .chatwith-intro.svelte-lkffd5 {
    text-align: center;
    color: white;
    font-size: 14px;
}

.chatwith.svelte-aoit06 .banner.svelte-aoit06 {
    height: auto;
    width: 100%;
    margin: auto;
    display: block;
}

.chatwith.svelte-aoit06 .people.svelte-aoit06 {
    background: white;
}
.chatwith.svelte-aoit06 .peopleScroll.svelte-aoit06 {
    overflow-y: scroll;
    max-height: 320px;
}
.chatwith-header.svelte-lkffd5 .profile-img.svelte-lkffd5 {
    display: block;
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 200px;
    background: white;
    -o-object-fit: cover;
    object-fit: cover;
}

.chatwith.svelte-aoit06.svelte-aoit06 {
    position: fixed;
    bottom: 10px;
    font-family: Arial, sans-serif;
}

.chatwith.svelte-aoit06 .person.svelte-aoit06:last-child {
    border-bottom: #fff 1px solid;
}

.chatwith.svelte-aoit06 .person.svelte-aoit06 {
    border-bottom: #efefef 1px solid;
    padding: 10px 0;
    background: #fff;
}
.chatwith-person.svelte-1m23jck .chatwith-active.svelte-1m23jck {
    cursor: pointer;
    line-height: 1.1em;
}
.chatwith-person.svelte-1m23jck .chatwith-singleperson.svelte-1m23jck {
    display: flex;
    color: #5c5b5b;
}
.chatwith-person.svelte-1m23jck .chatwith-avatar.svelte-1m23jck {
    flex: 1;
    display: flex;
    justify-content: center;
}
.chatwith-person.svelte-1m23jck .chatwith-avatar-pic.svelte-1m23jck {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    margin: auto;
    display: block;
}
.chatwith-person.svelte-1m23jck .chatwith-persondata.svelte-1m23jck {
    flex: 3;
}
.chatwith-person.svelte-1m23jck .chatwith-post.svelte-1m23jck {
    font-size: 12px;
    color: #5c5b5b;
    line-height: 1.1em;
}
.chatwith-person.svelte-1m23jck .chatwith-name.svelte-1m23jck {
    font-weight: bold;
    font-size: 16px;
    padding: 5px 0;
    line-height: 1.1em;
}
.chatwith-person.svelte-1m23jck .chatwith-active .chatwith-status.svelte-1m23jck {
    color: green;
}
.chatwith-person.svelte-1m23jck .chatwith-status.svelte-1m23jck {
    font-size: 11px;
    color: #ccc;
}
.chatwith-person.svelte-1m23jck .chatwith-active .chatwith-circle.svelte-1m23jck {
    background: green;
}
.chatwith-person.svelte-1m23jck .chatwith-circle.svelte-1m23jck {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    display: inline-block;
    background: #ccc;
}
.dito {
color: #20aeae;
}
.share-icons:hover {
opacity:.7;
}

.marginbot-0 {
 margin-bottom: 0 !important;          
}
.margin-0 {
 margin: 0 !important;       
}

.white {
color: #ffffff !important;  
}

.bottom10 {
    margin-bottom: 10px;
}
.contact-right h4 {
    color: #001238;
}
.top10 {
    margin-top: 10px;
}
.bottom20 {
    margin-bottom: 20px;
}

.car-thumb {
padding-top: 23px;
padding-bottom: 23px;
text-align: center;
}
.car-thumb img {
width: 80px;
    border: 1px #80808047 solid;
    cursor: pointer;
    border-radius: 5px;
}
.view-map {
position: absolute;
    border-radius: 5px;
    padding: 0px 23px;
    background-color: #ba2229;
    margin-top: 23px;  
}
.view-map:hover {
background-color: #001238;    
}
.view-map a{
color:white; 
}
.view-map i{
color:white; 
}
.blog-image {
overflow: hidden!important;
}
.blog-image img {
 object-fit: cover;
    height: 290px;
}
.kulay {
color: #ba2229;    
}
.overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: #fefefe;
}
.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    background: url(../img/pageLoader.gif) no-repeat;
    background-position: center;
}
.title {
    color: #fff;
    background: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: #ba2229;
    position: relative;
    display: inline-block;
    padding: 8px 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;    
}
.title:before {
    top: -6px;
    left: -6px;
    border-width: 2px 0 0 2px;
    z-index: 5;
}
.title:after {
    bottom: -6px;
    right: -6px;
    border-width: 0 2px 2px 0;
}
.title:before, .title:after {
    content: '';
    display: block;
    position: absolute;
    border-color: #ba2229;
    box-sizing: border-box;
    border-style: solid;
    width: 1em;
    height: 1em;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;  
}
