.preloader {
  background-color: var(--c-primary);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  margin: 0 auto
}

.preloader .preloader-circle {
  width: 100px;
  height: 100px;
  position: relative;
  border-style: solid;
  border-width: 2px;
  border-top-color: var(--c-white);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  z-index: 10;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(35,181,185,0.15);
  box-shadow: 0 1px 5px 0 rgba(35,181,185,0.15);
/*  background-color: var(--c-white);*/
background: rgba(0,0,0,0.25);
-webkit-animation: zoom 2000ms infinite ease;
animation: zoom 2000ms infinite ease;
-webkit-transition: .6s;
-o-transition: .6s;
transition: .6s
}

.preloader .preloader-circle2 {
  border-top-color: #0078ff
}

.preloader .preloader-img {
  position: absolute;
  top: 50%;
  z-index: 200;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s
}

.preloader .preloader-img img {
  max-width: 55px
}

.preloader .pere-text strong {
  font-weight: 800;
  color: #dca73a;
  text-transform: uppercase
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s
  }
}


header {
  position: relative;
  z-index: 1021;
  padding: 30px 0;
  color: #000000;
  background-color: var(--c-white);
}

header .social-icons i {
  font-size: 20px;
  margin-left: 15px;
}

header .logo, nav .logo{
  height: 58px;
}

.text-right {
  text-align: right;
}

@media (max-width: 991.98px){
  header .text-left, header .text-right {
    display: none;
  }
  header {
    padding: 0;
  }

}

.icofont-facebook {color: #4867aa;}
.icofont-x {color: #000000;}
.icofont-line-messenger {color: #06c755;}
.icofont-brand-youtube {color: #f00;}


.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.section-title {
  font-weight: 500;
  color: var(--c-primary);
}




/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--border-color);
  color: var(--c-primary);
  pointer-events: auto;
  font-weight: var(--font-weight-semibold);
  line-height: 40px;
  position: relative;
  padding: 0 30px;
  box-sizing: border-box;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  border-radius: 0;
  text-transform: uppercase;
}

.custom-link::before {
  content: attr(data-hover);
  background-color: var(--border-color);
  color: var(--c-primary);
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
  right: 0;
  text-align: center;
}

.custom-link:hover::before {
  top: 0;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  LIST GROUP               
-----------------------------------------*/
.list-group-item {
  background-color: transparent;
  color: var(--c-black);
  font-size: var(--p-font-size);
  padding: 1rem 0;
}

.list-group-item:first-child {
  padding-top: 0;
}

.list-group-item span {
  font-weight: var(--font-weight-semibold);
  margin-left: auto;
}

/*---------------------------------------
  ANIMATED TEXT              
-----------------------------------------*/
.animated {
  position: relative;
}

.animated-info {
  display: inline-block;
  vertical-align: top;
  min-width: 250px;
  position: relative;
}

.animated-item {
  color: var(--c-primary);
}

.animated-item {
  display: block;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  animation: BottomTotop 6s linear infinite 0s;
}

.animated-item:nth-child(2n+2) {
  animation-delay: 2s;
}

.animated-item:nth-child(3n+3) {
  animation-delay: 4s;
}

@keyframes BottomTotop {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    transform: translateY(5px);
  }
  10% {
    opacity: 1;
    transform: translateY(0px);
  }
  25% {
    opacity: 1;
    transform: translateY(0px);
  }
  30% {
    opacity: 0;
    transform: translateY(5px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/*---------------------------------------
  SLIDER              
-----------------------------------------*/
.section-padding.slider {  
  padding-top: 0rem;
  padding-bottom: 0rem;
}

/*.slider .container {
  position: relative;
  overflow: hidden;
  height: 580px;
}*/

.sliderText {
  background: var(--c-white);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  padding: 1.5rem 2.5rem;
  width: 50%;
}

.contact-phone {
  font-weight: var(--font-weight-semibold);
}

/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-circle {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-text {
  font-size: var(--h6-font-size);
  line-height: 2rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 0;
}

.featured-number {
  color: var(--c-primary);
  font-size: 8rem;
  margin: 0 10px;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--c-white);
}

.navbar-brand {
  color: var(--c-primary);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  margin: 0 30px;
  padding: 0;
  text-align: center;
}

.navbar-brand strong {
 color: var(--c-black);
 font-size: 15px;
 font-weight: 400;
 position: relative;
 margin-top: 4px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--c-black);
  font-weight: var(--font-weight-semibold);
  font-size: var(--menu-font-size);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-item.active .nav-link, 
.nav-link:focus, 
.nav-link:hover {
  color: var(--c-primary);
}

.nav-link:focus {
  color: var(--c-black);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--c-black);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--c-black);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}
/*---------------------------------------
  ABOUT               
-----------------------------------------*/

.about-img {
  position: relative; 
}
.about-img img {
  width: 100%;
  display: block; 
}
.about-img .image-stack::after {
  content: ' ';
  display: table;
  clear: both; 
}
.about-img .image-item-top {
  float: left;
  width: 66%;
  margin-right: -100%;
  position: relative;
  z-index: 1; 
}

.about-img .image-item-bottom {
  float: right;
  width: 75%; 
}

.about-img .image-item-bottom img{
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}


@supports ((display: -ms-grid) or (display: grid)) {
  .about-img .image-stack {
    display: -ms-grid;
    display: grid;
    position: relative;
    grid-template-columns: repeat(12, 1fr); 
  }
  .about-img .image-item-bottom {
    grid-column: 4 / -1;
    -ms-grid-row: 1;
    grid-row: 1;
    width: 100%; 
  }
  .about-img .image-item-top {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    grid-column: 1 / span 8;
    padding-top: 20%;
    width: 100%; 
  } 
}

.iconleft {
  color: var(--c-white);
  border-radius: 50%;
  font-weight: 400;
  width: 60px;
  height: 60px;
  text-align: center;
  box-shadow: var(--shadow);
  background: var(--c-primary);
}

.iconleft span{
 font-size: 25px;
 line-height: 2;
}

.default-wrapper {
  display: block;
  margin: 0 auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lazy-video {
  width: 100%;
}
.lazy-video a {
  display: inline-block;
  width: 100%;
  position: relative;
}
.lazy-video a:before {
  content: "";
  display: inline-block;
  position: absolute;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--c-primary);
  border-radius: 50%;
  z-index: 1;
}
.lazy-video a:after {
  content: "";
  display: inline-block;
  position: absolute;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 30px solid #fff;
  border-bottom: 15px solid transparent;
  left: calc(50% + 5px);
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  z-index: 1;
}
.lazy-video a:hover img, .lazy-video a:focus img {
  position: relative;
  opacity: 0.7;
}
.lazy-video img {
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  width: 100%;
}
.lazy-video .video-wrapper {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}
.lazy-video .video-wrapper iframe {
  border: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.lazy-video img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.lazy-video.active a {
  display: none;
}


/*---------------------------------------
  TIMELINE               
-----------------------------------------*/
.timeline,
.timeline-nodes {
  position: relative;
}

.timeline-nodes:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline h4, 
.timeline p {
  padding: 10px 30px;
} 

.timeline h4 {
  background: var(--c-black);
}

.timeline::before {
  content: "";
  display: block;
  position: absolute;
  top: 37px;
  left: 50%;
  width: 0;
  border-left: 1px solid var(--border-color);
  height: 85%;
  z-index: 1;
  transform: translateX(-50%);
}

.timeline-content {
  position: relative;
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0;
}

.timeline-nodes:nth-child(odd) h4,
.timeline-nodes:nth-child(odd) p {
  text-align: right;
}

.timeline-date {
  font-size: var(--font-h3);
  font-weight: 500;
}

.timeline-nodes:nth-child(odd) .timeline-date {
  text-align: left;
}

.timeline-nodes:nth-child(even) .timeline-date {
  text-align: right;
}

.timeline-nodes:nth-child(odd) h4::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(0, -50%);
  width: 0;
  border-left: 10px solid var(--c-black);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.timeline-nodes h4 {
  position: relative;
  border-radius: 0.25rem 0.25rem 0 0;
}

.timeline-nodes:nth-child(even) h4::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
  width: 0;
  border-right: 10px solid var(--c-black);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.timeline-icons {
  position: relative;
  z-index: 100;
}

.timeline-icons::before {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: var(--c-white);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  z-index: 1;
}

.timeline-icon {
  position: relative;
  z-index: 100;
  font-size: var(--h4-font-size);
  color: var(--c-primary);
  display: block;
  text-align: center;
  line-height: 80px;
}

@media (max-width: 767px) {
  .timeline-nodes:nth-child(odd) h4,
  .timeline-nodes:nth-child(odd) p {
    text-align: left;
  }

  .timeline-nodes:nth-child(even) {
    flex-direction: row;
  }

  .timeline::before {
    content: "";
    display: block;
    position: absolute;
    top: 60px;
    left: 33px;
    width: 0;
    height: 90%;
    z-index: 1;
    transform: translateX(-50%);
  }

  .timeline-icons {
    position: absolute;
    left: 0%;
    top: 60px;
  }

  .timeline-nodes:nth-child(odd) h3::after {
    left: auto;
    right: 100%;
    border-left: 0;
    border-right: 10px solid var(--c-black);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  .timeline-nodes:nth-child(even) h3::after {
    right: 100%;
    width: 0;
    border-right: 10px solid var(--c-black);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  .timeline-nodes:nth-child(even) .timeline-date {
    text-align: left;
  }

  .timeline-icons::before {
    width: 75px;
    height: 75px;
  }

  .timeline-icon {
    line-height: 75px;
  }
}

@media (max-width: 575px) {
  .timeline::before {
    content: "";
    display: block;
    top: 60px;
    left: 57px;
    height: 87%;
  }

  .timeline-icons {
    position: absolute;
    left: -10px;
  }

  .timeline-icons::before {
    width: 70px;
    height: 70px;
  }

  .timeline-icon {
    line-height: 70px;
  }
}

/*---------------------------------------
  SERVICES               
-----------------------------------------*/

.services-item  {
  margin: 0px 15px;
  position: relative;
  min-height: 420px;
}

.services-item img {
  padding-right: 160px;
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.services-item .text {
  position: absolute;
  width: 75%;
  backdrop-filter: blur(10px);
  background-color: rgb(255 255 255 / 90%);
  border-radius: var(--border-radius);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
  padding: 30px;
}

.services-item .text h4 {
  font-size: 20px;
  display: inline-block;
}

.services-item .text h6 {
  display: inline-block;
  float: right;
  text-align: right;
  font-size: 20px;
  color: var(--c-primary);
}

.services-item .text h4 span,
.services-item .text h6 span {
  font-size: 15px;
  color: #afafaf;
  font-weight: 400;
}

.services-item .text ul {
  border-top: 1px solid #eee;
  margin-top: 25px;
  padding-top: 25px;
  padding-left: 1rem;
}

.services-item .text ul li {
  color: #afafaf;
  font-size: 14px;
  margin-bottom: 10px;
}

.services-item .text ul li:first-child {
  color: var(--c-black);
  font-weight: 600;
}

.services-item a {
 width: 100%;
}

/*---------------------------------------
  BLOG               
-----------------------------------------*/



/*.owl-nav {
  text-align: center;
  margin-top: 30px;
}

.owl-nav .owl-next span {
  display: none;
}

.owl-nav .owl-next::after {
  font-family: IcoFont!important;
  content: '\eaa0'; 
  color: var(--c-primary);
  font-size: 20px;
  width: 46px;
  height: 46px;
  text-align: center;
  border: 1px solid var(--c-primary);
  display: inline-block;
  line-height: 44px;
  border-radius: 50%;
  transition: all .3s;
  margin-left: 5px;
}

.owl-nav .owl-prev span {
  display: none;
}

.owl-nav .owl-prev::after {
  font-family: IcoFont!important;
  content: '\ea9d'; 
  color: var(--c-primary);
  font-size: 20px;
  width: 46px;
  height: 46px;
  text-align: center;
  border: 1px solid var(--c-primary);
  display: inline-block;
  line-height: 44px;
  border-radius: 50%;
  transition: all .3s;
  margin-right: 5px;
}

.owl-nav .owl-prev:hover::after,
.owl-nav .owl-next:hover::after {
  color: #fff;
  background-color: var(--c-primary);
}

*/
.blog-item {
  margin-bottom: 0;
  padding: 32px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

.blog-item h4 {
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.blog-item p {
  padding-top: 15px;
  margin-top: 10px;
  border-top: 1px solid #ddd;
}

.blog-item img{
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
}

.blog-text {
  margin-top: 10px;
  margin-bottom: 25px;
}

.blog-image {
  border-radius: 100px;
  width: 70px !important;
  height: 70px !important;
}

.blog-carousel .owl-item {
  opacity: 0.45;
}

.blog-carousel .owl-item.active.center {
  opacity: 1;
}

.blog-carousel .owl-item.active.center .blog-item {
  background: var(--c-black);
}

.blog-carousel .owl-item.active.center .blog-item,
.blog-carousel .owl-item.active.center .blog-text {
  color: var(--c-white);
}

.blog-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  margin: auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-carousel .owl-nav span {
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
}

.blog-carousel .owl-nav .owl-prev {
  position: relative;
  left: -80px;
}

.blog-carousel .owl-nav .owl-next {
  position: relative;
  right: -80px;
}

.blog-carousel .owl-prev span,
.blog-carousel .owl-next span {
  color: transparent;
}

.blog-carousel .owl-prev span::before,
.blog-carousel .owl-next span::before {
 font-family: IcoFont!important;
 display: block;
 color: var(--c-white);
 font-size: var(--font-h5);
 border: 1px solid var(--c-primary);
 background-color: var(--c-primary);
 border-radius: 50%;
 width: 35px;
 height: 35px;
}

.blog-carousel .owl-prev span::before {
  content: "\ea9d";
}

.blog-carousel .owl-next span::before {
  content: "\eaa0";
}

/*---------------------------------------
  BOOKING FORM            
-----------------------------------------*/

.booking-form .form-control {
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  color: #6c757d;
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 15px;
  transition: all 0.3s;
}

.booking-form #submit-button {
  background: var(--c-black);
  border-bottom: 0;
  font-weight: var(--font-weight-semibold);
  color: var(--c-white);
  text-transform: uppercase;
  margin-top: 35px;
}

.booking-form #submit-button:hover {
  background: var(--c-primary);
}

/*---------------------------------------
  FOOTER              
-----------------------------------------*/

footer {
  padding: 10px 0px 10px 0px;
  background-color: var(--c-black);
  color: var(--c-secondary);
}

footer small, footer a {
  color: var(--c-white);
  opacity: 0.8 !important;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s;
}

.social-icon:hover li:not(:hover) {
  opacity: 0.65;
}

.social-icon-link {
  font-size: var(--p-font-size);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--c-primary);
}


.card-info .social-icons a {
  width: 3.25rem;
  height: 3.25rem;
  padding: 1rem 1rem;
}

.card-info .social-icons i {
  color: var(--c-white);
  v
}

/*---------------------------------------
 CONTACT              
-----------------------------------------*/
.card-info{
  border-radius: var(--border-radius);
  box-shadow: 0px 0px 15px rgba(0,0,0,0.15);
  overflow: hidden;
}

.card-info h4{
  color: var(--c-white);
}

#map{
  overflow: hidden;
  line-height: 0px;
/*  border-radius: var(--border-radius);
  box-shadow: var(--shadow);*/
}

.card-info .bg-cover{
  background-size: cover;
  background-position: center center;
}
.bg-gradient-dark {
  position: absolute;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-image: linear-gradient(195deg,#ec407a,#d81b60);
}

.card-info span {
  opacity: 0.8 !important;
}

.material-form {
  padding: 15px;
  background-color: #fff;
}
.material-form .input-block {
  background-color: #fff;
  border-bottom: solid 1px #c8c8c8;
  width: 100%;
  height: 50px;
  padding: 0;
  position: relative;
  margin-bottom: 20px;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.material-form .input-block::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 0%;
  bottom: 0;
  height: 2px;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: var(--c-primary);
}
.material-form .input-block.focus {
  border-color: #fff;
}
.material-form .input-block.focus label {
  color: var(--c-primary);
  top: 0;
  font-size: 13px;
}
.material-form .input-block.focus::before {
  left: 0%;
  width: 100%;
}
.material-form .input-block.has-value {
  background-color: #fff;
}
.material-form .input-block.has-value label {
  top: 0;
  font-size: 13px;
}
.material-form .input-block.error {
  border-color: #fff;
}
.material-form .input-block.error::before {
  left: 0%;
  width: 100%;
  background-color: #d50000;
}
.material-form .input-block.textarea {
  height: auto;
}
.material-form .input-block.textarea .form-control {
  height: auto;
  resize: none;
  padding-top: 20px;
}
.material-form .input-block.floating-field {
  padding: 2px 0 0;
  height: 62px;
}
.material-form .input-block.floating-field.textarea {
  height: auto;
}
.material-form .input-block label {
  position: absolute;
  left: 0;
  top: 29px;
  width: 100%;
  height: 20px;
  margin: 0;
  font-weight: 500;
  z-index: 1;
  color: #939393;
  font-size: 13px;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  line-height: 16px;
  white-space: nowrap;
  overflow: hidden;
}
.material-form .input-block .form-control {
  background-color: transparent;
  padding: 4px 0 0;
  border: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 500;
  color: #3c3c3c;
}
.material-form .input-block .form-control:focus {
  outline: none;
}
.material-form .input-block .form-control:focus label {
  top: 0;
}
.material-form .error-label {
  color: #d50000;
  margin-top: -15px;
  font-size: 14px;
  margin-bottom: 10px;
}
.material-form .form-note {
  font-size: 13px;
  color: #939393;
  margin-top: -15px;
  margin-bottom: 15px;
}
.material-form .square-button {
  background-color: #39a1f4;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
  height: 60px;
  border: none;
  cursor: pointer;
  width: 100%;
}
.material-form .square-button:hover, .material-form .square-button:focus {
  background-color: #0d8aee;
}


@media (min-width: 768px) {
  .contact-wrap {
    width: 600px;
    margin: auto;
  }

  .material-form .input-block label {
    font-size: var(--font-p);
    line-height: 14px;
  }
  .material-form .input-block .form-control {
    font-size: var(--font-p);
  }

  .select-block label {
    font-size: var(--font-p);
    line-height: 14px;
  }
  .select-block.added .active-list {
    font-size: var(--font-p);
  }
  .select-block.focus .active-list {
    font-size: var(--font-p);
  }
  .select-block .custom-select .drop-down-list li {
    font-size: 15px;
  }

  .material-form {
    padding: 30px;
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .slider .container {
    height: 740px;
  }
}

@media screen and (max-width: 991px) {
  body {
    padding-top: 0px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav .nav-link {
    padding-top: 5px;
    padding-bottom: 10px;
  }

  .slider .container {
    height: inherit;
  }

  .sliderText {
    position: relative;
    bottom: 100px;
    left: 0;
    width: auto;
    margin-bottom: -100px;
    padding: 2rem;
  }

  .featured-circle {
    width: 320px;
    height: 320px;
  }
}

@media screen and (max-width: 767px) {
  .sliderText {
    padding: 1.5rem;
  }

  .animated-info {
    min-width: 125px;
  }

  .featured-circle {
    margin-top: 20px;
  }

  .blog-carousel .owl-nav {
    position: relative;
    width: auto !important;
    transform: inherit;
    top: 0;
    bottom: 0;
    left: 0;
    max-width: 100px;
    margin: 20px auto;
  }

  .blog-carousel .owl-nav .owl-prev,
  .blog-carousel .owl-nav .owl-next {
    right: 0;
    left: 0;
  }
}

@media screen and (max-width: 480px) {
  .sliderText {
    padding: 1rem;
  }

  .sliderLinks .custom-link {
    font-size: 12px;
    line-height: 30px;
    margin-right: 12px !important;
    padding: 0 25px;
  }

  .contact-phone {
    font-size: 12px;
  }
}

@media screen and (max-width: 360px) {
  .featured-number {
    font-size: 5rem;
  }

  .featured-circle {
    width: 235px;
    height: 235px;
  }

  .blog-image {
    width: 55px !important;
    height: 55px !important;
  }

  .blog-item figcaption {
    font-size: var(--menu-font-size);
  }

  .timeline::before {
    left: 42px;
  }
}


