:root {
  --clr-main: #cf2f52;
  --clr-main-light: #fa3560;
  --clr-main-dark: #9e1331;
  --clr-accent: #03a7bb;
  --clr-accent-light: #17c7df;
  --clr-accent-dark: #057180;
  --clr-alt: #a806ad;
  --clr-light: #fff5ff;
  --clr-dark: #161418;
  --body-bg: #fafaff;
  --body-clr: #6f8ba4;
  --grad-main: ;
  --grad-alt: ;
  --ff-body: "Rubik", sans-serif;
  --ff-heading: "Montserrat", sans-serif;
  --ff-cursive: "Sail", cursive;
}

html {
  --scroll-padding-top: ;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding-top);
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background: var(--body-bg);
  font-weight: 400;
  line-height: 1.375;
  color: var(--body-clr);
  overflow-x: hidden;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  font-family: var(--ff-heading);
  font-weight: 900;
  word-wrap: balance;
  color: #111;
}

img {
  max-width: 100%;
}

a:not([class]) {
  text-decoration: none;
  color: inherit;
}

ul:not([role="list"]),
ol:not([role="list"]) {
  list-style: none;
  margin: 0;
  padding: 0;
}
:is(ul, ol) {
  --list-margin: ;
}
:is(ul, ol) > li {
  margin-block: var(--list-margin);
}

/* ==================>
CUSTOM
<================== */
.bg-main {
  background: var(--clr-main);
}
.bg-accent {
  background: var(--clr-accent);
}
.navbar-toggle .icon-bar {
  background: var(--clr-main);
}

.form-control {
  box-shadow: none;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--clr-main);
}

.py-7 {
  padding: 7rem 0px;
}

.btn {
  display: inline-block;
  border: 2px solid transparent;
  transition: all 0.35s ease;
}

.btn i {
  vertical-align: middle;
  margin-right: 2px;
}

.btn.btn-icon i {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.btn:focus {
  outline: 0px;
  box-shadow: none;
}

.btn-main {
  background: var(--clr-main);
  color: #fff;
  border-color: var(--clr-main);
}

.btn-main:hover {
  color: var(--clr-main);
  background: transparent;
  border: 2px solid;
}

.btn-main-2 {
  background: var(--clr-main);
  color: #fff;
  border-color: var(--clr-main);
}

.btn-main-2:hover {
  color: var(--clr-main);
  background: transparent;

  border-color: var(--clr-main);
}

.btn-solid-border {
  border: 2px solid var(--clr-main);
  background: transparent;
  color: #111;
}

.btn-solid-border:hover {
  border: 2px solid var(--clr-main);
  color: #fff;
  background: var(--clr-main);
}

.btn-transparent {
  background: transparent;
  color: #111;
  border-color: #6f8ba4;
}

.btn-transparent:hover {
  background: #6f8ba4;
  color: #fff;
}

.btn-white {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.btn-white:hover {
  background: var(--clr-main);
  color: #fff;
  border-color: var(--clr-main);
}

.btn-solid-white {
  border-color: #fff;
  color: #fff;
}

.btn-solid-white:hover {
  background: #fff;
  color: #111;
}

.btn-round {
  border-radius: 4px;
}

.btn-round-full {
  border-radius: 50px;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

.bg-gray {
  background: #eff0f3;
}

.bg-primary {
  background: var(--clr-main);
}

.bg-primary-dark {
  background: #ff4528;
}

.bg-primary-darker {
  background: #f42100;
}

.bg-dark {
  background: #111;
}

.bg-gradient {
  background-image: linear-gradient(
    145deg,
    rgba(19, 177, 205, 0.95) 0%,
    rgba(152, 119, 234, 0.95) 100%
  );
  background-repeat: repeat-x;
}

.section {
  padding: 70px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-title {
  margin-bottom: 70px;
}

.section-title .title {
  font-size: 50px;
  line-height: 50px;
}

.section-title p {
  color: #666;
  font-family: "Montserrat", sans-serif;
}

.subtitle {
  color: var(--clr-main);
  font-size: 14px;
  letter-spacing: 1px;
}

.overly {
  position: relative;
}

.overly:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}

.overly-2 {
  position: relative;
}

.overly-2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 2.25rem;
}

.text-lg {
  font-size: 3.75rem;
}

.no-spacing {
  letter-spacing: 0px;
}

/* Links */
a {
  color: #111;
  text-decoration: none;
}

a:focus,
a:hover {
  color: var(--clr-main);
  text-decoration: none;
}

a:focus {
  outline: none;
}

.content-title {
  font-size: 40px;
  line-height: 50px;
}

.page-title {
  padding: 40px 0px 20px 0px;
  position: relative;
}

.page-title .block h1 {
  color: #fff;
}

.page-title .block p {
  color: #fff;
}

/* .page-title .breadcumb-nav {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
} */

.section {
  padding: 70px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-title {
  margin-bottom: 70px;
}

.section-title .title {
  font-size: 50px;
  line-height: 50px;
}

.section-title p {
  color: #666;
  font-family: "Montserrat", sans-serif;
}

.subtitle {
  color: var(--clr-main);
  font-size: 14px;
  letter-spacing: 1px;
}

.slick-slide:focus,
.slick-slide a {
  outline: none;
}

@media (max-width: 480px) {
  h2,
  .h2 {
    font-size: 1.3rem;
    line-height: 36px;
  }
}

/* ==================>
HEADER
<================== */

.header-padding {
  padding: 0px 80px;
}

.navigation {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 99999;
}

.navigation .btn {
  box-shadow: none;
}

/* #navbar {
  background: #fffaff;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
} */
.nav-item {
  padding: 0px 10px 0px 10px;
}

#navbar .nav-link {
  /* padding: 5px 15px 5px 15px; */
  font-weight: 500;
  color: #111;
  font-family: "Rubik", sans-serif;
  text-transform: capitalize;
  font-size: 18px;
  transition: all 0.25s ease;
  position: relative;
}
#navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  height: 5px;
  left: 0;
  width: 100%;
  border-radius: 50px;
  transform: scaleX(0);
  transition: transform 0.2s linear;
  background-color: var(--clr-accent);
}
#navbar .nav-link:hover::after {
  transform: scaleX(1);
}

#navbar.nav-text-white .nav-link {
  color: #fff;
}

#navbar.nav-text-white .navbar-brand {
  color: #fff;
}

.navbar-brand {
  font-weight: 600;
}

.dropdown-menu {
  visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  transition: all 0.2s ease-in, visibility 0s linear 0.2s, transform 0.2s linear;
  -webkit-transition: all 0.2s ease-in, visibility 0s linear 0.2s,
    -webkit-transform 0.2s linear;
  -o-transition: all 0.2s ease-in, visibility 0s linear 0.2s,
    -o-transform 0.2s linear;
  -ms-transition: all 0.2s ease-in, visibility 0s linear 0.2s,
    -ms-transform 0.2s linear;
  width: 250px;
  margin-top: 15px;
  padding: 0px;
  border-radius: 0px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-toggle::after {
  display: none;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  transition: all 0.45s ease 0s;
  opacity: 1;
}

.dropdown-item {
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  font-size: 14px;
}

.dropdown-item:hover {
  background: var(--clr-main);
  color: #fff;
}

ul.dropdown-menu li {
  padding-left: 0px !important;
}

#navbar.nav-text-white .mobile-logo {
  display: none;
}

@media (max-width: 480px) {
  #navbar {
    background: #fff;
  }

  #navbar.nav-text-white .nav-link {
    color: #111;
  }

  #navbar.nav-text-white .mobile-logo {
    display: block;
  }

  #navbar.nav-text-white .hidden-logo {
    display: none;
  }

  .navbar-toggler {
    color: #111;
  }

  .dropdown-menu {
    display: none;
    width: 100%;
    text-align: center;
  }

  h2,
  .h2 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 36px;
  }

  .header-padding {
    padding: 0px 30px;
  }
}

@media (max-width: 400px) {
  #navbar {
    background: #fff;
  }

  #navbar.nav-text-white .nav-link {
    color: #111;
  }

  #navbar.nav-text-white .mobile-logo {
    display: block;
  }

  #navbar.nav-text-white .hidden-logo {
    display: none;
  }

  .navbar-toggler {
    color: #111;
  }

  .dropdown-menu {
    display: none;
    width: 100%;
    text-align: center;
  }

  .header-padding {
    padding: 0px 30px;
  }
}

@media (max-width: 768px) {
  #navbar {
    background: #fff;
  }

  #navbar.nav-text-white .nav-link {
    color: #111;
  }

  .navbar-toggler {
    color: #111;
  }

  .dropdown-menu {
    display: none;
    width: 100%;
    text-align: center;
  }

  #navbar.nav-text-white .mobile-logo {
    display: block;
  }

  #navbar.nav-text-white .hidden-logo {
    display: none;
  }

  .header-padding {
    padding: 0px 30px;
  }
}

@media (max-width: 992px) {
  #navbar {
    background: #fff;
  }

  #navbar.nav-text-white .nav-link {
    color: #111;
  }

  #navbar.nav-text-white .mobile-logo {
    display: block;
  }

  #navbar.nav-text-white .hidden-logo {
    display: none;
  }

  .navbar-toggler {
    color: #111;
  }

  .dropdown-menu {
    display: none;
    width: 100%;
    text-align: center;
  }

  .header-padding {
    padding: 0px 30px;
  }
}

.bg-1 {
  background: url("../img/committee-banner.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.bg-2 {
  background: url("../images/bg/home-5.jpg");
  background-size: cover;
}

.banner {
  position: relative;
  overflow: hidden;
  background: #fcf6fe;
  /* background: url("../img/main-banner1.jpg") no-repeat 80% 50%; */
  background-size: cover;
  padding: 60px 0px;
  /* min-height: 600px; */
}
/* ==================>
FOOTER
<================== */
.footer {
  padding-bottom: 10px;
  background: var(--clr-accent);
}

.footer .copyright a {
  font-weight: 600;
}

.copyright {
  text-align: center;
}

.lh-35 {
  line-height: 35px;
}

.logo {
  font-weight: 600;
  letter-spacing: 1px;
}

.logo h3 {
  color: #fff;
}

.logo span {
  color: var(--clr-main);
}

.widget h4 {
  color: #fff;
  font-weight: 600;
}

.widget a {
  color: rgba(255, 255, 255, 0.7);
}

.widget p {
  color: rgba(255, 255, 255, 0.7);
}

.footer .row {
  justify-content: space-around;
}

.footer-btm {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-socials li a {
  margin-right: 7px;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.copyright a {
  color: rgba(255, 255, 255, 0.8);
}

.widget-contact h6 {
  font-weight: 500;
  margin-bottom: 18px;
}

/* ==================>
OTHERS
<================== */
.slick-prev:before,
.slick-next:before {
  font-family: bootstrap-icons !important;
  color: #000;
}
.slick-prev:before {
  content: "\F12F";
}

.slick-next:before {
  content: "\F138";
}
