/*--------------------------------------------------------------
# variables
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
:root {
  --primary-color: #1f1f20;
  --secondary-color: #c89337;
  --green-color:#D74B4B;
  --text-color: #ffffff;
  --gray-color: #1c1c1c;
  --gray-ligt:#3f3f49;
}

.bg-black {
  background-color: #000;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
  overflow-x: hidden;
  font-size: 16px;
  background-color: var(--primary-color);
  line-height: 1.6;
}

p {
  margin: 0;
  padding: 0;
  font-size: 15px;
}

section {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
}

.navbar-toggler:focus, a:focus, input:focus, textarea:focus, button:focus {
  text-decoration: none;
  outline: none;
  outline: none !important;
  border-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn:focus, .btn.focus {
  text-decoration: none;
  outline: none;
  outline: none !important;
  border-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  outline: none !important;
  border-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

span, a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0;
  color: var(--text-color);
  line-height: 1.2;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.section {
  padding: 100px 0px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .section {
    padding: 80px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .section {
    padding: 50px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .wow {
    -webkit-animation-name: none !important;
    animation-name: none !important;
    visibility: visible !important;
  }
}
.scroll-top {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 3px;
  background: var(--secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}
.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--gray-color);
  color: var(--secondary-color);
}

.overlay {
  position: relative;
  z-index: 1;
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: #081828;
  content: "";
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  background-color: #1f1f20;
  overflow: hidden;
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader-icon {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0;
}
.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: var(--secondary-color);
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}
.preloader-icon span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(200, 147, 55, 0.3), 0 0 0 10px rgba(200, 147, 55, 0.3), 0 0 0 20px rgba(200, 147, 55, 0.3);
            box-shadow: 0 0 0 0 rgba(200, 147, 55, 0.3), 0 0 0 10px rgba(200, 147, 55, 0.3), 0 0 0 20px rgba(200, 147, 55, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(200, 147, 55, 0.3), 0 0 0 20px rgba(200, 147, 55, 0.3), 0 0 0 30px rgba(200, 147, 55, 0);
            box-shadow: 0 0 0 10px rgba(200, 147, 55, 0.3), 0 0 0 20px rgba(200, 147, 55, 0.3), 0 0 0 30px rgba(200, 147, 55, 0);
  }
}
@keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(200, 147, 55, 0.3), 0 0 0 10px rgba(200, 147, 55, 0.3), 0 0 0 20px rgba(200, 147, 55, 0.3);
            box-shadow: 0 0 0 0 rgba(200, 147, 55, 0.3), 0 0 0 10px rgba(200, 147, 55, 0.3), 0 0 0 20px rgba(200, 147, 55, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(200, 147, 55, 0.3), 0 0 0 20px rgba(200, 147, 55, 0.3), 0 0 0 30px rgba(200, 147, 55, 0);
            box-shadow: 0 0 0 10px rgba(200, 147, 55, 0.3), 0 0 0 20px rgba(200, 147, 55, 0.3), 0 0 0 30px rgba(200, 147, 55, 0);
  }
}
/*--------------------------------------------------------------
# button
--------------------------------------------------------------*/
.button .btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 28px;
  background-color: var(--secondary-color);
  color: #fff;
  border: 1px solid var(--secondary-color);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.button .btn i {
  display: inline-block;
  margin-right: 5px;
}
.button .btn:hover {
  color: var(--primary-color);
  border-color: var(--green-color);
  background-color: var(--green-color);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.0588235294);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.0588235294);
  color: #fff;
}
.button .btn-2 {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 28px;
  background-color: var(--green-color);
  color: var(--primary-color);
  border: 1px solid var(--gray-color);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.button .btn-2 i {
  display: inline-block;
  margin-right: 5px;
}
.button .btn-2:hover {
  color: #fff;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.0588235294);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.0588235294);
}
.button .btn-alt {
  color: #fff !important;
  background: 0 0 !important;
  border: 1px solid var(--secondary-color);
  padding: 10px 28px;
  font-size: 14px;
}
.button .btn-alt:hover {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
}

@media (max-width: 767px) {
  .button .btn {
    padding: 11px 25px;
    font-size: 14px;
    font-weight: 500;
  }
  .button .btn-alt {
    padding: 11px 25px;
    font-size: 14px;
    font-weight: 400;
  }
  .button .btn-2 {
    padding: 11px 25px;
    font-size: 14px;
    font-weight: 400;
  }
}
@media only screen and (max-width: 480px) {
  .button .btn {
    padding: 11px 25px;
    font-size: 14px;
    font-weight: 400;
  }
  .button .btn-2 {
    padding: 11px 25px;
    font-size: 14px;
    font-weight: 400;
  }
}
/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 12px 0;
}
@media only screen and (max-width: 991px) {
  .navbar {
    padding: 12px 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 482px) {
  .navbar {
    padding: 10px 0;
  }
}
.navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
}
.navbar .navbar-brand img {
  height: 160px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .navbar .navbar-brand img {
    height: 110px;
  }
}
@media only screen and (max-width: 1199px) {
  .navbar .navbar-brand img {
    height: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-brand img {
    height: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 66px;
  }
}
@media only screen and (max-width: 482px) {
  .navbar .navbar-brand img {
    height: 66px;
  }
}
.navbar .navbar-nav {
  /** Large devices (desktops, 992px and up) **/
}
@media (min-width: 992px) {
  .navbar .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 34px;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 16px;
  }
}
.navbar .navbar-nav .nav-item a {
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    color: #fff;
  }
}
.navbar .navbar-nav .nav-item a:hover, .navbar .navbar-nav .nav-item a.active {
  color: #c89337;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    margin: 4px 0px;
    padding: 6px 0;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0;
  }
}
.navbar .navbar-nav .nav-item a.btn-nav {
  padding: 9px 30px !important;
  background-color: #c89337;
  border-radius: 7px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.navbar .navbar-nav .nav-item a.btn-nav:hover {
  -webkit-box-shadow: 0 3px 20px 0px rgba(95, 167, 250, 0.52);
          box-shadow: 0 3px 20px 0px rgba(95, 167, 250, 0.52);
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a.btn-nav {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 9;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 12px 20px 12px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 9;
    -webkit-box-shadow: 0 15px 20px 0 rgba(43, 56, 109, 0.1);
            box-shadow: 0 15px 20px 0 rgba(43, 56, 109, 0.1);
  }
}
.navbar .navbar-toggler {
  padding: 0;
}
.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(2, 8, 23, 0.763);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
  padding: 10px 0;
}
@media only screen and (max-width: 991px) {
  .sticky .navbar {
    padding: 10px 0px;
  }
}
@media (max-width: 767px) {
  .sticky .navbar {
    padding: 10px 0;
  }
}
.sticky .navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
}
.sticky .navbar .navbar-brand img {
  height: 125px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .sticky .navbar .navbar-brand img {
    height: 110px;
  }
}
@media only screen and (max-width: 1199px) {
  .sticky .navbar .navbar-brand img {
    height: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .sticky .navbar .navbar-brand img {
    height: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .sticky .navbar .navbar-brand img {
    height: 66px;
  }
}
@media only screen and (max-width: 482px) {
  .sticky .navbar .navbar-brand img {
    height: 66px;
  }
}

/*--------------------------------------------------------------
# hero
--------------------------------------------------------------*/
.hero-area {
  position: relative;
  background: var(--primary-color);
  background: url("../images/hero/banner-pttrn.png") no-repeat center right #1f1f20;
  background-size: auto !important;
  padding-top: 200px;
  padding-bottom: 100px;
}
.hero-area .hero-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 600px;
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-content {
    text-align: center;
  }
}
.hero-area .hero-content h1 {
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.0901960784);
  line-height: 1.3;
}
@media only screen and (max-width: 1199px) {
  .hero-area .hero-content h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-content h1 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area .hero-content h1 {
    font-size: 22px;
  }
}
.hero-area .hero-content p {
  font-size: 21px;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-content p {
    font-size: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-content p {
    font-size: 18px;
  }
}
.hero-area .hero-content .button {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-content .button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-content .button {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .hero-area .hero-content .button {
    margin-top: 18px;
  }
}
.hero-area .hero-content .button .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.hero-area .hero-content .button .btn-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-content .button .btn-2 {
    width: 55%;
  }
}
@media only screen and (max-width: 480px) {
  .hero-area .hero-content .button .btn-2 {
    width: 55%;
  }
}

/*--------------------------------------------------------------
# testimonials
--------------------------------------------------------------*/
.testimonials {
  overflow: hidden;
}
.testimonials .tns-controls {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .testimonials .tns-controls {
    display: none;
  }
}
.testimonials .tns-controls button {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  border: none;
  background: none;
  color: #959AA3;
  font-size: 20px;
}
.testimonials .tns-controls button[data-controls=prev] {
  left: 0;
}
.testimonials .tns-controls button[data-controls=next] {
  right: 0;
}
.testimonials .tns-nav {
  text-align: center;
  position: absolute;
  bottom: 80px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9;
}
.testimonials .tns-nav button {
  width: 14px;
  height: 6px;
  background-color: rgba(149, 154, 163, 0.4);
  border-radius: 5px;
  display: inline-block;
  border: none;
  margin: 0 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.testimonials .tns-nav button:hover {
  background: #959AA3;
}
.testimonials .tns-nav button.tns-nav-active {
  background: #959AA3;
  width: 25px;
}
.testimonials .single-testimonial {
  text-align: center;
  padding: 0 80px 40px;
}
.testimonials .single-testimonial .text .brand-icon {
  margin-bottom: 30px;
}
.testimonials .single-testimonial .text .brand-icon img {
  width: 140px;
}
.testimonials .single-testimonial .text p {
  color: #e7e3e3;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
}
.testimonials .single-testimonial .author {
  margin-top: 30px;
  display: inline-block;
  position: relative;
}
.testimonials .single-testimonial .author img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: inline-block;
}
.testimonials .single-testimonial .author .name {
  font-size: 15px;
  font-weight: 500;
  color: #e7e3e3;
  display: block;
  margin-top: 10px;
}
.testimonials .single-testimonial .author .name span {
  color: #777;
  display: block;
  font-size: 13px;
  margin-top: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials .tns-nav {
    bottom: 50px;
  }
}
@media (max-width: 767px) {
  .testimonials .tns-nav {
    bottom: 40px;
  }
}
@media (max-width: 767px) {
  .testimonials .single-testimonial {
    padding: 0 10px 20px 20px;
  }
}
@media (max-width: 767px) {
  .testimonials .single-testimonial .text p {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
  }
}
/*--------------------------------------------------------------
# faq
--------------------------------------------------------------*/
.faq .cont-con h5 {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .faq .cont-con h5 {
    margin-bottom: 7px;
  }
}
.faq .cont-con a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
}
.faq .cont-con a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.accordion-item {
  background-color: var(--primary-color);
}
.accordion-item:first-of-type .accordion-button {
  border-radius: 0;
  padding-right: 40px;
}
.accordion-item .accordion-button {
  font-size: 17px;
  font-weight: 500;
  width: 100%;
  display: block;
  overflow: hidden;
  border: none;
  border: 1px solid rgba(228, 228, 228, 0.1450980392);
  padding: 20px;
  padding-right: 40px;
  background-color: var(--primary-color);
}
.accordion-item .accordion-button .title {
  font-size: 15px;
  position: relative;
  float: left;
  padding-left: 5px;
  line-height: 25px;
  color: #a9a9a9;
  font-weight: 500;
}
.accordion-item .accordion-button i {
  font-size: 13px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button {
    padding: 18px 20px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .accordion-item .accordion-button {
    padding: 15px 20px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
}
.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
}
.accordion-button:not(.collapsed) i::before {
  content: "\eb2c";
  font-family: lineIcons;
}
.accordion-button::after {
  display: none;
}

.accordion-collapse {
  border: none;
}

.accordion-body {
  padding: 30px;
  background-color: var(--primary-color);
  border-left: 1px solid rgba(228, 228, 228, 0.1450980392);
  border-right: 1px solid rgba(228, 228, 228, 0.1450980392);
  border-bottom: 1px solid rgba(228, 228, 228, 0.1450980392);
}
.accordion-body p {
  margin: 0;
  margin-bottom: 20px;
  color: #777;
}
.accordion-body p:last-child {
  margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-body {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .accordion-body {
    padding: 20px;
  }
}
.accordion-item {
  margin-bottom: 20px;
}

.badges-logo {
  margin-top: 30px;
}
.badges-logo img {
  width: 130px;
  height: 140px;
  background-color: #fff;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
  padding: 5px;
  margin: 10px 5px;
}

/*--------------------------------------------------------------
# title
--------------------------------------------------------------*/
.sec-title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .sec-title {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .sec-title {
    margin-bottom: 25px;
  }
}
.sec-title span {
  font-size: 16px;
  color: var(--secondary-color);
}
@media only screen and (max-width: 480px) {
  .sec-title span {
    font-size: 15px;
  }
}
.sec-title h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .sec-title h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .sec-title h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# courses
--------------------------------------------------------------*/
.courses {
  position: relative;
}
.courses.crs-shape::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  background-image: url("../images/activities/shap-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}
.courses .crs-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
}
.courses .crs-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(31, 31, 32, 0.3);
  z-index: 1;
}
.courses .crs-img img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.courses .crs-img .crs-left {
  display: inline-block;
  position: absolute;
  top: 50px;
  left: 20px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 15px;
  z-index: 2;
  color: #fff;
}
@media only screen and (max-width: 534px) {
  .courses .crs-img .crs-left {
    top: 30px;
  }
}
.courses .crs-img .crs-btm {
  position: absolute;
  bottom: 10px;
  left: 20px;
  z-index: 2;
}
.courses .crs-img .crs-btm h5 {
  font-size: #fff;
  font-size: 18px;
  margin-bottom: 3px;
}
@media only screen and (max-width: 480px) {
  .courses .crs-img .crs-btm h5 {
    font-size: 16px;
  }
}
.courses .crs-img .crs-btm span {
  font-size: 15px;
  color: #fff;
}
.courses .crs-img .play-btn {
  display: inline-block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  -webkit-animation: ripple-white 1s linear infinite;
          animation: ripple-white 1s linear infinite;
}
.courses .crs-img .play-btn i {
  position: relative;
  left: 2px;
  font-size: 14px;
}
.courses .crs-img:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.courses .crs-con h3 {
  font-size: 26px;
  color: var(--text-color);
  max-width: 400px;
  margin-bottom: 36px;
}
@media only screen and (max-width: 991px) {
  .courses .crs-con h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .courses .crs-con h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .courses .crs-con h3 {
    font-size: 21px;
  }
}
.courses .crs-con .crs-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.courses .crs-con .crs-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.courses .crs-con .crs-list ul li:last-child {
  margin-bottom: 0;
}
.courses .crs-con .crs-list ul li img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 10px;
}
.courses .crs-con .crs-list ul li span {
  font-size: 16px;
}
.courses .crs-con .button {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# train
--------------------------------------------------------------*/
.train .train-img {
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border-radius: 12px;
  overflow: hidden;
}
.train .train-img img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.train .train-img .train-right {
  position: absolute;
  display: inline-block;
  top: 40px;
  left: 20px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .train .train-img .train-right {
    top: 20px;
  }
}
.train .train-img .train-btm {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 15px;
  left: 20px;
}
.train .train-img .train-btm h5 {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 3px;
}
.train .train-img .train-btm span {
  font-size: 14px;
  color: #fff;
}
.train .train-img:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.train .train-img:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

/*--------------------------------------------------------------
# advantages
--------------------------------------------------------------*/
.advantages {
  position: relative;
}
.advantages .shape2 {
  height: 230px;
  position: absolute;
  top: -40px;
  right: 0;
  z-index: -1;
}
.advantages .advan-single {
  height: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  padding: 40px 20px;
  border-radius: 10px;
  background-color: #2c2c2d;
}
@media only screen and (max-width: 767px) {
  .advantages .advan-single {
    padding: 30px 15px;
  }
}
.advantages .advan-single:hover {
  background-color: #38383a;
}
.advantages .advan-single .advan-logo {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 9px;
  color: #fff;
  background-color: #3f3f49;
  margin-bottom: 24px;
  padding: 8px;
}
.advantages .advan-single .advan-title {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .advantages .advan-single .advan-title {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
#
categories
--------------------------------------------------------------*/
.categories .cat-single {
  border: 2px solid rgba(228, 228, 228, 0.1450980392);
  border-radius: 8px;
  padding: 23px 23px;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.categories .cat-single .cat-logo {
  height: 30px;
  margin-bottom: 12px;
}
.categories .cat-single h5 {
  font-size: 16px;
  margin-bottom: 13px;
  font-weight: 500;
}
.categories .cat-single p {
  font-size: 14px;
  color: #929292;
}
.categories .cat-single:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  background-color: #000;
}

/*--------------------------------------------------------------
# cta-section
--------------------------------------------------------------*/
.cta-section .cta-con {
  background-image: url("../images/cta/peace.jpg");
  background-position: top center;
  background-size: cover;
  padding: 100px 0px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .cta-section .cta-con {
    padding: 70px 0px;
  }
}
@media only screen and (max-width: 480px) {
  .cta-section .cta-con {
    padding: 60px 0px;
  }
}
.cta-section .cta-con .cta-inner {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-con .cta-inner h3 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .cta-section .cta-con .cta-inner h3 {
    font-size: 30px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .cta-section .cta-con .cta-inner h3 {
    font-size: 24px;
    margin-bottom: 10px;
    display: inline-block;
    background-color: rgba(31, 31, 32, 0.6);
  }
}
.cta-section .cta-con .cta-inner p {
  color: #a9a9a9;
  padding-bottom: 30px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .cta-section .cta-con .cta-inner p {
    font-size: 15px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .cta-section .cta-con .cta-inner p {
    font-size: 14px;
    padding-bottom: 14px;
  }
}

/*--------------------------------------------------------------
# cta-2
--------------------------------------------------------------*/
.cta-2 .cta-box {
  background-color: var(--gray-color);
  border-radius: 17px;
  overflow: hidden;
}
.cta-2 .cta-box .cta-box-con {
  padding: 0px 50px;
}
@media only screen and (max-width: 991px) {
  .cta-2 .cta-box .cta-box-con {
    padding: 34px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-2 .cta-box .cta-box-con {
    padding: 30px 25px;
  }
}
.cta-2 .cta-box .cta-box-con .cta-logo-con {
  padding-bottom: 15px;
}
.cta-2 .cta-box .cta-box-con .cta-logo-con img {
  height: 50px;
}
.cta-2 .cta-box .cta-box-con .cta-logo-con p {
  margin-bottom: 0;
  font-weight: 400;
  color: #50D890;
  font-size: 23px;
}
.cta-2 .cta-box .cta-box-con .cta-text p {
  font-size: 15px;
  margin-bottom: 25px;
}
.cta-2 .crs-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cta-2 .crs-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.cta-2 .crs-list ul li:last-child {
  margin-bottom: 0;
}
.cta-2 .crs-list ul li img {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-right: 6px;
}
.cta-2 .crs-list ul li span {
  font-size: 14px;
  font-weight: 300;
}

/*--------------------------------------------------------------
# abt-text
--------------------------------------------------------------*/
.about-us {
  background-color: #000;
}
.about-us .abt-text p {
  font-size: 16px;
}

/*--------------------------------------------------------------
# main-footer
--------------------------------------------------------------*/
.main-footer {
  color: #A8A9AC;
  background-color: #000;
}
.main-footer .footer-top {
  padding: 30px 0px;
}
@media only screen and (max-width: 767px) {
  .main-footer .footer-top {
    padding: 20px 0px;
  }
}
.main-footer .footer-top .footer-logo img {
  height: 170px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1399px) {
  .main-footer .footer-top .footer-logo img {
    height: 130px;
  }
}
@media only screen and (max-width: 991px) {
  .main-footer .footer-top .footer-logo img {
    height: 100px;
  }
}
.main-footer .footer-top .footer-logo p {
  font-size: 14px;
}
.main-footer .footer-top .footer-list h5 {
  font-size: 16px;
  margin-bottom: 1px;
  color: #A8A9AC;
}
.main-footer .footer-top .footer-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-footer .footer-top .footer-list ul li {
  margin-bottom: 8px;
}
.main-footer .footer-top .footer-list ul li:last-child {
  margin-bottom: 0;
}
.main-footer .footer-top .footer-list ul li a {
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  color: #A8A9AC;
}
.main-footer .footer-top .footer-list ul li a:hover {
  color: var(--secondary-color);
}
.main-footer .footer-top .footer-list .add {
  font-size: 14px;
}
.main-footer .footer-top .footer-list .social-list {
  padding-top: 14px;
}
.main-footer .footer-top .footer-list .social-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-footer .footer-top .footer-list .social-list ul li {
  display: inline-block;
  margin-right: 4px;
}
.main-footer .footer-top .footer-list .social-list ul li:last-child {
  margin-right: 0;
}
.main-footer .footer-top .footer-list .social-list ul li a i {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.main-footer .footer-top .footer-list .social-list ul li a i:hover.lni-facebook {
  background-color: #3b5998;
  color: #fff;
}
.main-footer .footer-top .footer-list .social-list ul li a i:hover.lni-instagram {
  background-color: #c32aa3;
  color: #fff;
}
.main-footer .footer-top .footer-list .social-list ul li a i:hover.lni-linkedin {
  background-color: #0a66c2;
  color: #fff;
}
.main-footer .footer-top .footer-list .social-list ul li a i:hover.lni-youtube {
  background-color: #ff0000;
  color: #fff;
}
.main-footer .foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0px;
}
.main-footer .foot-bottom span {
  font-size: 13.5px;
}
/*# sourceMappingURL=main.css.map */