@charset "UTF-8";
/*Theme default CSS*/
:root {
  --vm-font:'Poppins', sans-serif;
  --vm-title:"Inter", sans-serif;
  --vm-text:'Poppins', sans-serif;
  --vm-primary:#093e62;
  --vm-secondary:#38e1c5;
  --vm-tertiary:#00afb0;	
  --vm-base:#61CE70;
  --vm-accent:#ff781f;
  --vm-black:#1E1E1E;
  --vm-white:#ffffff;
  --vm-text-body:#363636;
  --vm-text-dark:#1d1e20;
  --vm-text-light:#bed2df;
  --vm-text-primary:#391e6c;
  --vm-bg-dark:#23013c;
  --vm-bg-primary:#f2faff;
  --vm-bg-secondary:#f2f2f2;
  --vm-bg-light:#f4f5ff;
  --vm-bg-light-2:#F3F7FA;
  --vm-bg-light-3:#f5f6fc;
  --vm-border-dark:#212529;
  --vm-border-light:#eeebf2;
 --bg-purple-gradiunt: linear-gradient(313deg, #673de6 0%, #3f169a 100%);
}
body {
  line-height: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family:var(--vm-font);
  color:var(--vm-text-body);
}
h1, h2, h3, h4, h5, h6 {
  font-family:var(--vm-title);	
  color:var(--vm-black);
  font-weight: bold;
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
a, button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
}
a, i, button, img, input, span,
*:before, *:after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
*:focus {
  outline: 0px solid;
}

a:focus {
  color: inherit;
  outline: medium none;
  -webkit-transform: scale(1);
          transform: scale(1);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.rotate-315 {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.opacity-60 {
  opacity: 0.6 !important;
}
/*Common Class*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.float-start {
  float: left;
}

.float-end {
  float: right;
}

.section {
  width: 100%;
  overflow:hidden;	
}
.bg-gray {background-color:var(--vm-bg-light-2);}
.section.bg-white {background-color: #fff;}
.bg-primary-vm {background: var(--vm-primary);}
.bg-secondary-vm {background:var(--vm-accent);}
.section-primary-bg {background:var(--vm-bg-primary);}
/*-- Section Title --*/
.section-title .title {
  font-size: 42px;
  color:var(--vm-primary);
  line-height: 28px;
  padding-bottom: 20px;
  margin: 0;
  position: relative;
  font-weight: 600;
}
.section-title .title span {color:var(--vm-secondary);}
.section-title p {
  color:var(--vm-secondary);
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
}
@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
.section-title .title {font-size: 36px;}
}
@media only screen and (max-width: 479px) {
  .section-title .title {
    font-size:27px;
    line-height:32px;
    padding-bottom: 15px;
  }
}
.section-title.title-white h1 {
  color: #fff;
}
.section-title.title-white h1::before {
  border-color: #fff;
}

.btn {
  font-family: var(--vm-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vm-primary);
  padding: 18px 40px;
  background-color: var(--vm-secondary);
  border-radius: 0px;
  border: 0px;
  transition: all 0.4s ease-in-out;
  width: auto;
  letter-spacing: 1px;
}
.btn:hover {
  color:var(--vm-white);
  background-color:var(--vm-primary);
}

.btn--primary {
  position: relative;
  z-index: 1;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 0px;
  height: 100%;
  background-color:var(--vm-white);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn--primary:hover {
  color:var(--vm-white);
  background-color:var(--vm-primary);
}
.btn--primary:hover::before {
  width: 100%;
}

.btn--secondary {
  position: relative;
  z-index: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  justify-content: center;
  background-color: #00003d;
  color: #ffffff;
  font-weight: 700;
}
.btn--secondary::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 0px;
  height: 100%;
  background-color: #ed6700;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn--secondary i {
  transform: rotate(45deg);
}
.btn--secondary:hover {
  color: #161616;
  background-color: #00003d;
}
.btn--secondary:hover::before {
  width: 100%;
}
.row {
  --bs-gutter-x: 30px;
}
.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/*Header Area Start Here*/
/*-- Header Area --*/
.header-area {
  float: left;
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top:0;
  background-color: #fff;
  z-index: 99999;
  padding-right: 60px;
  padding-left: 60px;	
}
.header-area.stick {
  position: fixed;
  top: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.header-area.stick .header-search {
  padding: 26px 0;
}
@media only screen and (max-width: 767px) {
  .header-area.stick .header-search {
    padding: 16px 0;
  }
}
.header-area.stick .main-menu {
  margin: 26px 0;
}
@media only screen and (max-width: 767px) {
  .header-area.stick .main-menu {
    margin: 0;
  }
}
.header-area .logo {
  display: inline-block;
  margin: 15px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .logo {
    width: 140px;
  }
}
/* ----------- iPad Pro ----------- */
/* Portrait and Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
	.header-area {padding-right: 0px;padding-left: 0px;}
}
@media only screen and (max-width: 767px) {
  .header-area .logo {
    width:230px;
  }
  .header-area {
  padding-right:10px;
  padding-left:10px;	
}
.header-contact-info {display:none !important;}	
}
.header-area .logo img {
  width: 100%;
}
@media only screen and (max-device-width: 480px) {
	.header-contact-info {display:none !important;}	
}
/*-- Animation For Stick Menu --*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: none;
    transform: none;
  }
}
/*-- Menu Toggle --*/
.header-buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-buttons .mobile-login-btn {
  border: 1px solid var(--vm-primary);
  border-radius: 3px;
  padding:5px 7px;
  color: var(--vm-primary);
  font-weight: 600;
}
.header-buttons .mobile-call {
  color: var(--vm-primary);
  margin-top:4px;
  margin-right:12px;	
  font-size:24px;	
}

.menu-toggle {
  margin-left: 20px;
  width:45px;
  height:40px;
  border:none;
  background-color:var(--vm-primary);
  border-radius:3px;
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.menu-toggle:hover {
  background-color:var(--vm-primary);
}
@media only screen and (max-width: 767px) {
  .menu-toggle {
    margin-left: 15px;
  }
}
.menu-toggle i {
  display: block;
  font-size: 16px;
  line-height: 28px;
}
/*-- Call Us --*/
.header-contact-info {
  padding:24px 0;
  position: relative;
  display: flex;
  align-items: center;	
}
.header-contact-info .info__item--call {
  display:flex;
  align-items:center;
  margin-right: 20px;	
  gap: 18px;
  transition: all 0.7s ease-in-out;
  z-index: 1;
}
.header-contact-info .info__item__icon {
  font-size: 20px;
  color:var(--vm-primary);
  line-height: 50px;
  width: 50px;
  height: 50px;
  border-radius: 500px;
  margin-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--vm-secondary);
  box-shadow: 0 0 40px rgba(0,0,0,.15);
  position: relative;
  transition: all 0.4s ease-in-out;
}
.header-contact-info .info__item__icon .fa-phone {
  transform: scaleX(-1);
}

.header-contact-info .info__item__content__text {
  color:var(--vm-primary);
  font-family: var(--vm-font);
  font-size:14px;
  font-style:normal;
  font-weight:700;
  line-height:30px;
  margin-bottom: -3px;
}
.header-contact-info .info__item__content__call {
  margin-top: -9px;
  color:var(--vm-primary);
  font-family: var(--vm-font);
  font-size:18px;
  font-style: normal;
  font-weight: 600;
  line-height: 166.667%;
  margin-bottom: 0;
  padding-bottom: 0;
  transition: all 500ms ease;
}

.header-contact-info .info__item:last-child i {
  margin-right: 0;
}

.header-contact-info .call-btn {
	font-weight:700;
	padding: 6px 12px;
	font-size:18px;
	color: var(--vm-black);
}
.header-contact-info .call-btn i {font-size:24px;}
.header-contact-info .call-btn:hover {
	color: var(--vm-primary)
}
.header-contact-info .call-btn .fa-phone {
  transform: scaleX(-1);
}
.header-contact-info .talk-btn {
  background: var(--vm-primary);
  color:var(--vm-secondary);
  padding: 12px 24px;
  width: auto;
  font-weight: 600;
}
.header-contact-info .talk-btn:hover {
  color:var(--vm-primary);	
  background:var(--vm-secondary);
}
@media only screen and (max-width: 767px) {
	.header-call {
    padding: 26px 0;
    position: static;
  }
}
/*-- Menu --*/
.main-menu {
  margin: 36px 0;
}

@media only screen and (max-width: 767px) {
  .main-menu {
    margin: 0;
    width: 100%;
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  .main-menu nav {
    padding-bottom: 10px;
  }
}
.main-menu nav ul li {
  display: block;
  float: left;
  margin-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-menu nav ul li {
    margin-left: 18px;
  }
  .header-contact-info .info__item__content__call {font-size: 16px}	
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-menu nav ul li {margin-left:10px;}
  .talk-btn {display:none;}
  .header-contact-info .info__item__icon{line-height:42px;width:42px;height:42px;font-size:16px;}
  .header-contact-info .info__item--call{margin-right:5px;gap:6px;}
  .header-contact-info .info__item__content__call {font-size:16px;margin-right:5px !important;}	
}
@media only screen and (max-width: 767px) {
  .main-menu nav ul li {
    float: none;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.main-menu nav ul li:first-child {
  margin-left: 0;
}
.main-menu nav ul li a {
  border-top: 1px solid transparent;
  display: block;
  font-size: 18px;
  color: var(--vm-black);
  line-height: 22px;
  font-weight: 600;
  margin: 3px 0 2px;
}
/*.main-menu nav ul li a span {
  position: absolute;
  right: 10px;
  top: 3px;
  width: 42px;
  height: 16px;
  font-weight: 600;
  line-height: 1.6em;
  border-radius: 50px;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--vm-base);
  background-color: var(--vm-primary);
  text-align: center;
}*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-menu nav ul li a {
    font-size: 13px;
  }
}
.main-menu nav ul li a:hover {
  color:var(--vm-primary);
}
@media only screen and (max-width: 767px) {
  .main-menu nav ul li a:hover {
    border-color: transparent;
  }
}
.main-menu nav ul li.active a {
  color:var(--vm-secondary);
}
@media only screen and (max-width: 767px) {
  .main-menu nav ul li.active a {
    border-color: transparent;
  }
}
/* Slider CSS */
.cs-slider{margin-top:100px;}
.single-slide-item {
  background-image: url("../img/slider01.jpg");
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  color: #fff;
  width: 100%;
  height:700px;
  position: relative;
  z-index: 1;
  display: flex !important;
  align-items: center;
}
@media (max-width: 767px) {
  .single-slide-item {
    height:560px;
  }
  .cs-slider{margin-top:0px;}	
}
.single-slide-item h1 {
  color: #fff;
  font-size:52px;
  font-weight:500;
  line-height:60px;
  letter-spacing: 2px;
  margin:20px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slide-item h1 {
    font-size: 75px;
    line-height: 85px;
  }
}
@media (max-width: 767px) {
  .single-slide-item h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-slide-item h1 {
    font-size: 50px;
    line-height: 60px;
  }
}
.single-slide-item p {
  color: #fff;
  font-size: 17px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .single-slide-item p {
    font-size: 16px;
    line-height: 26px;
  }
  .single-slide-item p br {
    display: none;
  }
}

.hero-area-bg-2 {
  background-image: url(../img/slider02.jpg);
}

.hero-area-bg-3 {
  background-image: url(../img/slider03.jpg);
}


.overlay {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
  top: 0;
  left: 0;
  z-index: -1;
}
.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  width:50px;
  height:50px;
  line-height: 30px;
  text-align: center;
  background:var(--vm-secondary);
  color:var(--vm-primary);
  font-size: 18px;
  z-index: 11;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out 0s;
  border:none;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slick-arrow {
    top: 0;
    bottom: 0;
    transform: translateY(230px);
  }
}
.slick-arrow:hover {
  background:var(--vm-primary);
  border-color:var(--vm-primary);
  color:var(--vm-white);
}

.slick-arrow.slick-next {
  right: 15px;
  left: auto;
}

.homepage-slides.slick-slider button:before {
  display: none;
}

.slick-active .single-slide-item h1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.slick-active .single-slide-item p {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.slick-active .main-btn {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

.slick-active .single-slide-item h1,
.slick-active .single-slide-item p,
.slick-active .main-btn {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slick-active .single-slide-item h1 {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  font-family: var(--vm-font);
  color: var(--vm-secondary);
  font-size: 45px;
  text-align: center;
  font-weight: 600;
}

.homepage-slides:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.homepage-slides .section-title h6 {
  font-size: 36px;
  color: var(--vm-white);
  font-family: var(--vm-font);
  text-align: center;
}

/* About */
.about-con {
    padding:90px 0px;
}
.about-con .about_content {
    margin-left:20px;
}
.about-con .about_content p {
    line-height: 26px;
    margin-bottom: 16px;
}
.about-con .about_content .text2 {
    margin-bottom: 30px;
}
.about-us-image{
	position: relative;
}
.about-img img{
	border-radius: 30px;
}
/* Statistic */
.statistic-con {
    padding:40px 0 60px;
    position:relative;
}
.statistic-con .statistic-box {
    padding: 38px 40px 32px;
    text-align: center;
    background-color: var(--vm-white);
    border: 1px solid var(--vm-white);
    box-shadow: 0 2px 67px 2px rgb(44 162 252 / 7%);
    transition: all 0.3s ease-in-out;
}
.statistic-con .statistic-box:hover {
    border: 1px solid var(--vm-secondary);
}
.statistic-con .statistic-box .icon {
    width:90px;
    height:90px;
    line-height:86px;
    margin-bottom: 24px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    background-color: var(--vm-primary);
    transition: all 0.3s ease-in-out;
}
.statistic-con .statistic-box:hover .icon {
    transform: translateY(-5px);
}
.statistic-con .statistic-box .value {
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color:var(--vm-primary);
    font-family: "Teko", sans-serif;
}
.statistic-con .statistic-box .text {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: var(--vm-black);
}
/*Services area Start Here*/
.services-area {
	position:relative;
	padding:60px 0;
}
.offer-boxes {
  display:flex
}
.offer-boxes .box {
  margin-bottom: 32px;
}
.offer-boxes .box .box-content {
  position:relative
}
.offer-boxes .box .box-content .name {
  color: var(--vm-primary);
  padding:1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 27px;
}
.offer-boxes .box .actions {
  text-align:center;
  bottom:0;
  width:100%
}
.offer-boxes .box .actions a.readmore-btn {
  border-radius:0
}
.offer-boxes .box .actions a.readmore-btn[aria-expanded="false"] .opened {
  display:inline
}
.offer-boxes .box .actions a.readmore-btn[aria-expanded="false"] .closed {
  display:none
}
.offer-boxes .box .actions a.readmore-btn[aria-expanded="true"] .opened {
  display:none
}
.offer-boxes .box .actions a.readmore-btn[aria-expanded="true"] .closed {
  display:inline
}
.offer-boxes .box .content {
  display:none;
  position:absolute;
  padding:1rem;
  top:0;
  left:0;
  height:100%;
  overflow:auto;
  width:100%;
  background-color:var(--vm-primary);
  color:var(--vm-white)
}
.offer-boxes .box .content.show {
  display:block
}
.offer-boxes .box .content.show h6 {
	color: var(--vm-secondary);
    font-size: 32px;
    margin-bottom: 27px;
}
.offer-boxes .box .content.show .text {
	text-align:center;
}
/*Services area End Here*/
.counts-area {
	padding:60px 0;
	position:relative;
}
.counts-box {
	-webkit-box-shadow: 0px 7px 68px 0 rgba(0, 0, 0, 0.07);
	box-shadow: 0px 7px 68px 0 rgba(0, 0, 0, 0.07);
	padding:20px;
	border: none;
	border-radius: 0;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	margin-bottom: 30px;
	/*color:#FFF;*/
}
.counts-box h2 {color:var(--vm-primary);}
.counts-box-dis {
    margin-top:25px;
}
.counts-box-dis img {
	border-radius:9px;
}
/*Contact Us Area Start Here*/
.contact-area {
	padding:90px 0;
}
.contact-info-item{
	border:2px solid #E7EBEA;
	border-radius: 30px;
	padding: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.contact-info-item .icon-box{
	background: var(--vm-secondary);
	border-radius: 10px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.contact-info-item .icon-box img{
	max-width: 30px;
}

.contact-info-item .contact-info-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.contact-info-item .contact-info-content p{
	margin: 0;
	font-weight: 500;
    font-size: 16px;
    line-height: 27px;
}

.contact-us-form{
	padding:50px 0 0px;
}

.contact-us-img img{
	border-radius: 30px;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.contact-form{
	margin-left: 25px;
}

.contact-form .form-control{
    padding: 15px 20px;
    background-color: transparent;
	border: 2px solid #E7EBEA;
    border-radius: 10px;
    color: var(--vm-primary);
    box-shadow: none;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
	width: 100%;
	height: 730px;
}
/*Contact Us Area End Here*/
/*Footer Area Start Here*/
.footer-text {
    fill: none;
    stroke-width: 2px;
    stroke-linejoin: round;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    stroke: #fff;
    font-size: 128px;
    line-height: normal;
}
@keyframes stroke {
    100% {
        stroke-dashoffset: -400;
    }
}
.get_touch_text a .footer-text:nth-child(5n+1),
.footer_upper_big_text a:hover .footer-text:nth-child(5n+1) {
    stroke: #fff;
    -webkit-animation-delay: -1.2s;
    animation-delay: -1.2s;
}
.get_touch_text a .footer-text:nth-child(5n+2),
.footer_upper_big_text a:hover .footer-text:nth-child(5n+2) {
    stroke: #fff;
    -webkit-animation-delay: -2.4s;
    animation-delay: -2.4s;
}
.get_touch_text a .footer-text:nth-child(5n+3),
.footer_upper_big_text a:hover .footer-text:nth-child(5n+3) {
    stroke:var(--vm-secondary);
    -webkit-animation-delay: -3.6s;
    animation-delay: -3.6s;
}
.get_touch_text a .footer-text:nth-child(5n+4),
.footer_upper_big_text a:hover .footer-text:nth-child(5n+4) {
    stroke: #fff;
    -webkit-animation-delay: -4.8s;
    animation-delay: -4.8s;
}
.get_touch_text a .footer-text:nth-child(5n+5),
.footer_upper_big_text a:hover .footer-text:nth-child(5n+5) {
    stroke:var(--vm-secondary);
    -webkit-animation-delay: -6s;
    animation-delay: -6s;
}
.footer_upper_big_text a {
    display: flex;
}
.footer_upper_big_text a:hover .footer-text {
    -webkit-animation: stroke 6s infinite linear;
    animation: stroke 6s infinite linear;
    stroke-dasharray: 70 330;
}
.footer_upper_big_text {padding:50px 0px;}

.footer_mid_area {
    padding-bottom:40px;
    border-bottom:1px solid rgb(255 255 255 / 10%);
}
.footer_mid_area h6 {
	font-size:24px;
	color:var(--vm-white);
	padding-bottom: 15px;
}
.footer_bottom_area,
.get_touch_info_bottom>p,
.coming_soon_title_area h2,
.comment_info>p {
    padding: 25px 0px;
}
.footer_logo_area p {
	padding-top: 15px;
	color: var(--vm-bg-light);
	line-height:30px;
	font-weight:300;
	font-size:16px;
    width: 410px;
}
.footer_contact a  {
	color: var(--vm-bg-light);
	font-weight:300;
	font-size:16px;
}
.footer_time p {
	color: var(--vm-bg-light);
	font-weight:300;
	font-size:16px;
}
.footer_address p {
	color: var(--vm-bg-light);
	font-weight:300;
	font-size:16px;
}
.copyright-text p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight:300;
  color: rgba(245, 247, 245, 0.8);
}
@media (max-width: 767px) {
  .copyright-text p {
    font-size: 14px;
  }
}
.copyright-text p a {color: var(--vm-secondary);}
/*Footer End*/