/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color) !important;
  background-color: var(--background-color) !important;
  font-family: "Poppins", serif !important;
}



a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
	cursor: pointer;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

.red { color: red; }

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.vh-header {
  --background-color: #fff;
  color: var(--default-color);
  background-color:#fff;
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
	box-shadow: 3px 1px 7px rgba(0, 0, 0, 0.2);
}

.vh-header .logo {
  line-height: 1;
}

.vh-header .logo img {
  max-height: 90px;
  margin-right: 8px;
}

.vh-header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.vh-header .header-social-links {
  padding-right: 15px;
}

.vh-header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.vh-header .header-social-links a:hover {
  color: var(--accent-color);
}

.vh-header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .vh-header .logo {
    order: 1;
  }

  .vh-header .header-social-links {
    order: 2;
  }

  .vh-header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ff6801;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ff6801;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.9);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



/* Main area */
.main-area { float: left; width: 100%; margin-bottom: 50px;}
.main-area p { float: left; width: 100%; color: #424242; font-size: 15px; margin-bottom: 15px; }
.main-area p span { color:#000; font-weight: 600; font-style: italic;
}
.main-area h3 { float: left; width: 100%; font-weight: 600; margin: 20px 0; padding: 0; }
.main-area ul { float: left; width: 100%; margin: 0; padding: 0;}
.main-area ul li {float: left; width: 100%; margin-bottom: 25px; font-size: 15px; line-height: 25px;}

.banner-area { float: left; width: 100%;}
.banner-area img {width: 100%;}

.about { float: left; width: 100%;}

.about p {line-height: 25px;
    font-size: 16px;
    float: left;
    width: 100%;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.vh-footer {
  color: #fff;
  background-color: #000;
  font-size: 14px;
  position: relative;
	float: left; width: 100%;
  padding-bottom: 20px;
}
.tabletax {
  text-align: center;  
}
.vh-footer-link { float: left; width: 100%; text-align: center; margin-top: 25px;  color: #666; }
.vh-footer-link a { padding: 0 10px; color: #c5bcbc; }

.vh-footer-link a i { color:#c5bcbc; 
}

.vh-footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


.vh-footer .copyright {
  padding: 25px 0;
  border-top: 1px solid #333;
	margin-top: 20px;
}

.vh-footer .copyright p {
  margin-bottom: 0;
}
.vh-footer .copyright p strong {
	color: #ff6801;
}

.vh-footer .credits {
  margin-top: 0px;
  font-size: 13px;
  float: right;
}

.vh-footer .credits a {
  color: #b12a77;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
  border-bottom: 1px solid #e8e9e9;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.page-title .breadcrumb {
  margin-bottom: 0;
}

.page-title .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumb ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumb ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.page-title .breadcrumb ol li a {
  color: #000;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
float: left; width: 100%;
  padding: 40px 0;

}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
/*  margin-bottom: 40px;*/
  position: relative;
	text-align: center;
}

.section-title h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ff6801;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/*
.section-title p {
  margin-bottom: 0;
}
*/

.section-title .section-title-container {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--default-color);
}

.section-title h2 {
  font-size: 40px;
  font-weight: 500;
}


.section-title p a {
  color: var(--default-color);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-bottom: 1.5px solid var(--default-color);
  font-weight: 500;
  padding-bottom: 2px;
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
  background-color: transparent;
}

.slider .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

.slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.slider .swiper-wrapper {
  height: auto !important;
}

.slider .swiper-slide {
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.subcriber-area { float: left; width: 100%; background: #fafafa; padding: 25px; border: 1px solid #eee; border-radius: 10px;}
.subcriber-area .form-label {float: left; width: 100%; font-size: 15px; font-weight: 400; color: #404040; margin: 15px 0 10px 0;  }

.subcriber-area .form-control {
  font-size: 14px !important;
  color: #666;
  border-radius: 5px !important;
  padding: 8px !important;
  margin-bottom: 5px;
}
.subcriber-area .form-select {
	font-size: 14px; color: #666; padding: 8px !important; border-radius: 5px !important;
}


.subcriber-area hr {margin: 2rem 0; opacity: 25;}

.subcriber-area .subcriber-btn { background: #ff6801; color: #fff; padding: 10px 20px; border: none; border-radius: 8px; border: 1px solid #d35600; line-height: normal;}

.privacy-detail { float: left; width: 100%; background: #f5f5f5; padding: 15px; border: 1px solid #ddd; color: #666; font-size: 15px; }
.privacy-detail p { float: left; width: 100%; font-size: 15px; color: #666; line-height: 25px;
}
.privacy-detail span  { font-weight: 500; color: #000; }
.privacy-detail strong { font-weight: 600; color: #ff6801; font-size: 20px; margin-bottom: 15px; float: left; width: 100%;}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .map { float: left; width: 100%; padding: 15px; border: 1px solid #eee; 
}

.contact .info-item i {
  color: #fff;
  background: #465367;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
	margin-top: 0;
  line-height: normal;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
/*
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
*/
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: #fff;
  background: #ff6801;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}


/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



@media (max-width: 575px) {
  .slider .swiper-slide {
    min-height: 300px;
  }
}

.slider .swiper-button-prev:after,
.slider .swiper-button-next:after {
  font-size: 24px;
/*  color: color-mix(in srgb, var(--default-color), transparent 50%);*/
	color: #fff;
}

.slider .content {
  padding: 60px 80px;
  max-width: 700px;
  position: relative;
}

.slider .content a,
.slider .content h2,
.slider .content p {
  color: var(--default-color);
}


@media only screen and (min-width:1200px) and (max-width: 1399px) {
.slider .swiper-slide {
    min-height: 450px;
  }
}

@media only screen and (min-width:992px) and (max-width: 1199px) {
.slider .swiper-slide {
    min-height: 450px;
  }
}

@media only screen and (min-width:768px) and (max-width: 991px) {
.slider .swiper-slide {
    min-height: 300px;
  }
}

@media only screen and (min-width:576px) and (max-width: 767px) {
.slider .swiper-slide {
    min-height: 223px;
  }
}

@media only screen and (min-width:420px) and (max-width: 575px) {
.slider .swiper-slide {
    min-height: 172px;
  }
}

@media only screen and (min-width:320px) and (max-width: 419px) {
.slider .swiper-slide {
    min-height: 132px;
  }
}


#loom-companion-mv3 {
	display: none;
}



