/*
Theme Name: NSPT
Theme URI: http://example.com/nspt
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme for NSPT.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nspt
*/
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(
    circle at top left,
    #d5f8fe 0%,
    #d8f3f8 30%,
    #cce3e7 70%,
    #d8e9ec 100%
  );
  background-attachment: fixed;
}
a {
  text-decoration: none;
  color: var(--accent-color);
}
ul,
li {
  list-style: none;
}
/*------------ header ---------------- */
header.main-header .container {
  max-width: 1790px;
  padding: 0 20px;
}
.tf-top-bar {
  padding: 10px 0;
  border-bottom: 1px solid var(--Outline);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.tf-top-bar .btn-show-top {
  position: absolute;
  right: 12px;
  top: 11px;
  display: none;
  padding: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--secondary-color);
}
.tf-top-bar .btn-show-top .arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  color: var(--secondary-color);
}
.tf-top-bar .btn-show-top .arrows:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 3.3333333333px solid rgba(0, 0, 0, 0.7);
  border-bottom: 3.3333333333px solid rgba(0, 0, 0, 0.7);
  transform: translate(3.3333333333px, 13.3333333333px) rotate(-45deg);
  animation: arrows 3s linear infinite;
  color: var(--secondary-color);
}
.tf-top-bar .btn-show-top .arrows:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 3.3333333333px solid rgba(0, 0, 0, 0.7);
  border-bottom: 3.3333333333px solid rgba(0, 0, 0, 0.7);
  transform: translate(6.6666666667px, 0px) rotate(-45deg);
  animation: arrows 3s linear infinite -1.5s;
  color: var(--secondary-color);
}
.tf-top-bar:not(.style-has-logo).active .wrap-top-bar {
  max-height: 200px;
}
.tf-top-bar .wrap-top-bar {
  max-width: 1790px;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.tf-top-bar .top-bar-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 49px;
  color: var(--secondary-color);
}
.tf-top-bar .top-bar-left .top-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 4px 24px;
  color: var(--secondary-color);
}
.tf-top-bar .top-bar-left .top-info li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  text-align: center;
  white-space: nowrap;
  color: var(--secondary-color);
}
.tf-top-bar .top-bar-left .top-info li i {
  font-size: 20px;
  color: var(--secondary-color);
}
.tf-top-bar .top-bar-left .tf-dropdown-sort {
  position: relative;
}
.tf-top-bar .top-bar-left .tf-dropdown-sort .btn-select {
  padding: 5px;
}
.tf-top-bar .top-bar-left .tf-dropdown-sort::after {
  top: 3px;
  position: absolute;
  content: "";
  background-color: var(--Outline);
  width: 1px;
  height: 20px;
  left: -24px;
}
.tf-top-bar .top-bar-right .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 48px;
}
.tf-top-bar .top-bar-right .list > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 18px;
}
.tf-top-bar .top-bar-right .list > li i {
  font-size: 20px;
}
.tf-top-bar .top-bar-right .list > li:not(:last-child) {
  position: relative;
  font-weight: 600;
}
.tf-top-bar .top-bar-right .list > li:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: var(--Outline);
  right: -27px;
}
.tf-top-bar .top-bar-right .tf-social {
  gap: 4px;
}
.tf-top-bar .top-bar-right .tf-social li a {
  border: none;
  color: var(--secondary-color);
}
.tf-top-bar.style-has-logo {
  padding: 27px 0;
}
.tf-top-bar.style-has-logo .wrap-top-bar {
  max-width: 1320px;
  justify-content: unset;
}
.tf-top-bar.style-has-logo .top-bar-left {
  flex-grow: 1;
}
.tf-top-bar.style-has-logo .top-bar-left .top-info {
  gap: 40px;
}
.tf-top-bar.style-has-logo .top-bar-left .top-info li {
  text-align: start;
  display: block;
}
.tf-top-bar.style-has-logo .top-logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
  max-width: 230px;
}
.tf-top-bar.style-has-logo .top-logo img {
  max-width: 192px;
}
.tf-top-bar.style-has-logo .top-bar-right {
  flex-grow: 1;
  align-items: end;
}
.tf-top-bar.style-has-logo .top-bar-right .list {
  gap: 16px;
  justify-content: end;
}
.tf-top-bar.style-has-logo .top-bar-right .list > li:not(:last-child)::after {
  right: -4px;
}
.tf-top-bar a {
  color: var(--secondary-color);
}
.tf-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.tf-social li a {
  padding: 10px;
  border: 1px solid var(--Border);
  border-radius: 999px;
  color: var(--secondary-color);
}
.tf-social li svg path {
  stroke: var(--secondary-color);
}
.tf-social li a:hover {
  background-color: var(--secondary-color);
}
.tf-social li a:hover svg path {
  stroke: var(--primary-color);
}
.tf-social.style-1 {
  gap: 12px;
}
.tf-social.style-1 li a {
  height: 40px;
  width: 40px;
  border: 1px solid var(--Outline);
}
.tf-social.style-1 li a:hover {
  background-color: var(--accent-color);
}
@media (max-width: 1050px) {
  .tf-top-bar:not(.style-has-logo) .btn-show-top {
    display: block;
  }
  .tf-top-bar:not(.style-has-logo) .wrap-top-bar {
    max-height: 25px;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding-bottom: 19px;
  }
  .tf-top-bar:not(.style-has-logo) .wrap-top-bar {
    justify-content: center;
  }
  .tf-top-bar:not(.style-has-logo)
    .wrap-top-bar:not(.style-has-logo)
    .tf-dropdown-sort
    .dropdown-menu {
    transform: translate3d(-30px, 14px, 0px) !important;
  }
}
@media (max-width: 998px) {
  .tf-top-bar .wrap-top-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
  }
  .tf-top-bar.has-logo .top-bar-left {
    justify-content: center;
  }
  .tf-top-bar.has-logo .header-logo {
    width: 100%;
  }
  .tf-top-bar.has-logo .header-logo .site-logo img {
    margin: 0 auto;
  }
  .tf-top-bar.has-logo .top-bar-right .list {
    justify-content: center;
  }
}

@media (max-width: 869px) {
  .tf-top-bar.style-has-logo {
    padding: 10px 0;
  }
  .tf-top-bar.style-has-logo .wrap-top-bar {
    gap: 7px !important;
  }
  .tf-top-bar.style-has-logo .top-bar-left {
    width: 100%;
  }
  .tf-top-bar.style-has-logo .top-bar-left .top-info {
    width: 100%;
    justify-content: space-between;
    gap: 15px;
  }
  .tf-top-bar.style-has-logo .header-logo {
    max-width: 100%;
    width: 100%;
    order: 1;
  }
  .tf-top-bar.style-has-logo .header-logo a {
    margin: 0 auto;
  }
  .tf-top-bar.style-has-logo .top-bar-right .list {
    justify-content: space-between;
  }
}
@media (max-width: 603px) {
  .tf-top-bar .top-bar-left {
    align-items: start;
    gap: 10px 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .tf-top-bar .top-bar-left .top-info {
    gap: 10px;
  }
  .tf-top-bar .top-info {
    flex-wrap: wrap;
    justify-content: center;
  }
  .tf-top-bar .tf-dropdown-sort::after {
    display: none;
  }
}

@media (max-width: 550px) {
  .tf-top-bar .top-bar-right .list {
    gap: 20px;
  }
  .tf-top-bar .top-bar-right .list > li:not(:last-child)::after {
    right: -17px;
  }
}
@media (max-width: 425px) {
  .tf-top-bar .wrap-top-bar {
    gap: 10px;
  }
  .tf-top-bar .top-bar-right {
    justify-content: center;
  }
  .tf-top-bar .top-bar-right .list {
    flex-wrap: wrap;
    gap: 5px 20px;
    justify-content: center;
  }
  .tf-top-bar .top-bar-right .list > li:not(:last-child) {
    gap: 9px;
  }
  .tf-top-bar .top-bar-right .list > li:not(:last-child)::after {
    display: none;
  }
  .tf-top-bar .top-bar-right .tf-social {
    margin-left: -8px;
    gap: 0;
  }
}
.custom-logo {
  width: 350px;
  height: auto;
}
