/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face { src: url(../fonts/GTWalsheimPro-Regular.ttf); font-family: "GTWalsheimPro-Regular";  }
@font-face { src: url(../fonts/GTWalsheimPro-Bold.ttf); font-family: "GTWalsheimPro-Medium";  }
@font-face { src: url(../fonts/GTWalsheimPro-Bold.ttf); font-family: "GTWalsheimPro-Bold";  }
@font-face { src: url(../fonts/Roboto-Regular.ttf); font-family: "Roboto-Regular";  }
@font-face { src: url(../fonts/Roboto-Medium.ttf); font-family: "Roboto-Medium";  }
@font-face { src: url(../fonts/Roboto-Bold.ttf); font-family: "Roboto-Bold";  }

:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

html { background-color: #060606; }
html, body { overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: "GTWalsheimPro-Bold";
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

.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;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #f5f5f563;
  position: absolute;
  width: 100%;
}

.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 13px;
  color: #fff;
  background: transparent;
  transition: 0.3s;
  font-family:"GTWalsheimPro-Regular";
  padding:5px 25px;
  border-radius: 10px;
  border: solid 1px #fff;
}


.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  border: solid 1px #e35a3c;
  background: #e35a3c;
}

@media (max-width: 1279px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 900px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:14px 10px 14px 20px;
    font-family: "Roboto-Regular";
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #e18470;
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 900px) {

  .navbar a::before {
    content: "»";
    padding-right: 10px;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background:#000000a6;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
   /*  justify-content: space-between; */
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid #555555;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top:10px;
    z-index: 9999;
   /*  right: 20px;   */
    background-color: #5ba199;
    border-radius: 2px;
 padding: 2px;
  }
  .header .logo img { max-height: 35px; }
  .header { padding:10px 0 7px 0; }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}


@media (min-width:600px) and (max-width: 900px) {
  .mobile-nav-toggle { right: 40px; }
}  

@media (min-width:901px) and (max-width: 990px) {
  .header { padding: 10px 0px 7px 0; }
}  

@media (max-width: 599px) {
  .mobile-nav-toggle { right: 20px; }
}  

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
.hero-fullscreen {
  width: 100%;
 /* min-height: 100vh;  */
  background: url("../img/bg.png");
  background-size: cover;
 /*  position: relative;  */
  padding: 120px 0 60px;
}

.hero-fullscreen:before {
  content: "";
/* background: rgba(var(--color-white-rgb), 0.85); */
/*  position: absolute;   */
  inset: 0;
}

@media (min-width: 1365px) {
  .hero-fullscreen {
 /*   background-attachment: fixed;  */
  }
}

.hero-fullscreen h2 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 600;
  color:#fff;
  font-family: "GTWalsheimPro-Bold";
}

.hero-fullscreen h2 span {
  color: var(--color-primary);
}

.hero-fullscreen p {
  font-family:"Roboto-Regular"; 
  margin: 0 0 30px 0;
  font-size: 20px;
}

.hero-fullscreen .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-fullscreen .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 30px;
  }

  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-fullscreen .btn-get-started,
  .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

.icon img { max-height:40px;}
.max-wid { max-width: 150px; }
.explore-sec { margin: 20px; padding-top: 40px; }
.explore-bg {  border-radius: 20px; background-color: #fff; padding: 3% 4%; }
.welname {  color: #fff; }
.mb10 { margin-bottom: 10px; }

/*--------------------------------------------------------------
# Products Category Section
--------------------------------------------------------------*/
.tsproducts { display: flex; flex-wrap: wrap; justify-content: center;   }
.tsproducts .product-item {
  border-radius: 10px;
  padding:25px 20px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
/*   height: 100%;     width: 100%;  */
margin: 15px;
max-width: 180px;
transition: transform 800ms!important;
}

.tsproducts .product-item:hover {
  transform: translateY(-10px)!important;
  transition: ease-in-out 0.3s!important;
  
}

.tsproducts .product-item .icon {
  margin-bottom: 10px;
}

.tsproducts .product-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.tsproducts .product-item h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.tsproducts .product-item h4 a {
  color: #303030;
  transition: ease-in-out 0.3s;
}

.tsproducts .product-item h6 {
  font-size: 14px;
}

.tsproducts .product-item p {
  font-family: "Roboto-Regular";  
  color:#4f4f4f;
  line-height: 18px;
  font-size: 10px;
  margin-bottom: 0;
}

.tsproducts .product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}

.tsproducts .product-item:hover h4 a {
  color: #5ba199;
}

.p-s { color: #000; font-weight: 600; }
.p-s:hover { color: #5ba199;}

/*--------------------------------------------------------------
# announce Sidebar
--------------------------------------------------------------*/
.announce .sidebar {
  border-radius: 10px;
  padding:15px 20px;
 /*  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);  */
  margin-bottom: 10px;
  background-color: #f5f5f5;
}

.announce .sidebar:hover {  background-color: #dbebe9; }
.announce h2 { font-size: 24px; color:#303030; padding-bottom: 10px; }
.explore-h { font-size: 24px!important; color:#303030!important; padding-bottom: 10px; }

.announce .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.announce .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.announce .sidebar .search-form form {
  background: var(--color-white);
  border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}

.announce .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.announce .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.announce .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.announce .sidebar .search-form form button i {
  line-height: 0;
}

.announce .sidebar .search-form form button:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.announce .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.announce .sidebar .categories ul li+li {
  padding-top: 10px;
}

.announce .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.announce .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.announce .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.announce .sidebar .recent-posts .post-item {
  display: flex;
  align-items: center;
}

.recent-posts p {margin-bottom: 0; font-size: 12px; }
.tab-content p { color: #bdbdbd; }
.poname { color: #303030; font-weight: 600;}
.poname span { color: #828282; font-weight: 500; }
.pocont { color: #828282; }
.explore-c h3 { font-size:17px; color: #303030; font-family: "GTWalsheimPro-Medium";  }
.explore-c p { font-size: 12px; color: #bdbdbd; margin-bottom: 5px; }
.read-more { font-size: 12px; color: #5ba199; font-family: "Roboto-Regular";  }
.read-more i { padding-left: 3px; }
.announce-head h2 { width: 80%; display: inline-block; text-align: left!important; }
.announce-head .view-btn { display: inline-block; text-align: right; width: 18%; }
.view-btn { color: #e35a3c; font-size: 12px; font-family: "Roboto-Medium";   }

.team-bg { border-radius: 20px; background-color: #8e8e8e9e; padding: 2% 4% 3% 4%; }
.team-bg h2 { font-size: 12px; color: #fff; font-family: "Roboto-Medium"; font-weight: 500; }
.team-head { width: 100%; }
.team-head h2 {  display: inline-block; }
.team-head .view-btn { display: inline-block; color: #fff; float:right; padding-top: 5px; }
.team-head .view-btn:hover { color: #07bfe1;}
.team-item  { display: flex; align-items: center; background-color: #fff;     border-radius: 10px; padding:2px 10px;  height: 100%;   margin: 10px 0; }
.team-item img { width: 35px; height: 35px; margin-right: 15px; border-radius: 50%;}
.team-item h6 { font-family: "GTWalsheimPro-Medium"; font-size: 16px;     margin-bottom: auto; }
.team-item p { margin-bottom: 0px; font-size: 12px; }
.team-details h6 { text-align: left!important; }
.team-details p { text-align: left!important; }
.sidebar-item p { text-align: left!important; }
.explore-c p { text-align: left!important; }
.mt-team-50 { margin-top: 50px; }

.nav-pills {  background-color: #f5f5f5; border-radius: 5px; }
.nav-pills li a {color:#828282; font-size: 14px; font-family: "GTWalsheimPro-Regular"; }
.nav-pills li a:hover {color:#e35a3c; }
.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #e35a3c;
}

.announce .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.announce .sidebar .recent-posts img {
  width: 35px; height: 35px;
  margin-right: 15px;
  border-radius: 50%;
}

.announce .sidebar .recent-posts h3 { padding-top: 10px;
  font-family: "GTWalsheimPro-Medium";
  font-size:16px;
color: #303030;
}


.announce .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.announce .sidebar .recent-posts h4 a {
  color:#303030;
  font-size: 12px;
  transition: 0.3s;
}

.announce .sidebar .recent-posts h4 a span { font-weight: 300; }

.announce .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.announce .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.announce .sidebar .tags {
  margin-bottom: -10px;
}

.announce .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.announce .sidebar .tags ul li {
  display: inline-block;
}

.announce .sidebar .tags ul a {
  color: var(--color-secondary-light);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
  display: inline-block;
  transition: 0.3s;
}

.announce .sidebar .tags ul a:hover {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.announce .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--color-secondary-light-rgb), 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
}

.plays { border: 1px solid #363636; border-radius: 10px; }

.footer .footer-content {
  background: var(--color-secondary);
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-legal {
  padding: 30px 0;
  background-color:#060606;
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}


@media (max-width:991px) {
  .hero-fullscreen { padding: 70px 0 60px; }
  .hero-fullscreen p { margin: 0 0 5px 0;  text-align: center; }
  .hero-fullscreen h2 { margin: 0 0 20px 0; text-align: center; }
  .team-head h2 { margin: 0 0 15px 0;  }
  }
  

@media (max-width: 575px) {
.tsproducts .product-item { padding: 10px; margin: 5px; max-width: 165px;}
.explore-sec {margin: 20px 0px; }
.explore-bg { padding: 10% 6%;}
.team-bg { padding: 7% 6% 11% 6%;}
.hero-fullscreen { background-position: center; }
.hero-fullscreen {     padding: 70px 0 60px; }
.hero-fullscreen p { margin-bottom: 10px; }
.header .btn-getstarted { padding: 5px 15px; }
.nav-link { padding: 10px 5px; font-size: 12px; }
.nav-pills { display: flex; justify-content: space-between; }
.header .logo img { max-height: 30px; }
.mobile-nav-toggle { top:8px; }
.team-head h2 { margin-bottom: 10px; }
}

@media (max-width:1024px) {
.d-n-s { display: none; }
}

@media (min-width:1025px) {
  .d-n-l { display: none; }
}

@media (min-width:576px) and (max-width:991px) {
  .explore-bg {  padding: 3% 4% 6% 4%; }
  .max-wid { max-width: 130px; }
}

@media (max-width:1366px) {
.tsproducts .product-item { padding: 10px; margin:10px 5px; max-width: 150px;}
}

