body {
  background: #1c1e27;
  color: #2f3138;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #2bae66ff;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  /* color: #f8234a; */
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: white;
}

.main-page {
  margin-top: 70px;
}

/* Prelaoder */

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2bae66ff;
  background-image: linear-gradient(green, yellow);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background-image: linear-gradient(#3cb371, yellow);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Sections Header
--------------------------------*/

.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: green;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  background-color: #f6f7fd;
  margin-top: 100px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.mtclogo {
  margin-left: -200px;
}

#header {
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: white;
}

#header.header-scrolled,
#header.header-inner {
  background: white;
  height: 70px;
}

#header #logo h1 {
  font-size: 50px;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 span {
  color: #2bae66ff;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
}

@media (max-width: 992px) {
  #header #logo img {
    max-height: 50px;
  }
}

/*--------------------------------------------------------------
# Buy Tickets
--------------------------------------------------------------*/

.buy-tickets {
  color: Black;
  background: white;
  padding: 7px 22px;
  margin: 0 0 0 15px;
  border-radius: 50px;
  border: 3px solid #2bae66ff;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  line-height: 1;
  font-size: 16px;
  white-space: nowrap;
}

.buy-tickets:hover {
  background: #2bae66ff;
  color: white;
  border: 2px solid #2bae66ff;
}

/* .buy-tickets:focus {
    color: #fff;
} */

@media (max-width: 992px) {
  .buy-tickets {
    margin: 0 15px 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/**
* Desktop Navigation
*/

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding-right: 80px;
  padding-left: 10px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 4px;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -6px;
  left: 0;
  background-color: #2bae66ff;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #000;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #2bae66ff;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #2bae66ff;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/

.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
@media (min-width: 992px) {
  .maginp {
    margin-left: 200px;
  }
  .magin {
    margin-left: 200px;
    width: 50%;
    margin-top: 50px;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #060c22;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #2bae66ff;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #2bae66ff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/home.jpeg") top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(6, 12, 34, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

@media (max-width: 991px) {
  #hero .hero-container {
    top: 70px;
  }
}

#hero h1 {
  /* css code for gradient  
    color: linear-gradient(red 30%, green 50%, blue 20%);*/

  font-family: "Product Sans", sans-serif;
  font-size: 56px;
  font-weight: 600;

  /*  background: linear-gradient(to right, red, green, blue, yellow);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-stroke-width: 0.9px;
    -webkit-text-stroke-color: black;*/
}

#hero h1 span:nth-child(1) {
  color: #1bfff5;
}

#hero h1 span:nth-child(2) {
  color: white;
}

#hero h1 span:nth-child(3) {
  color: yellow;
}

#hero h1 br span:nth-child(4) {
  color: green;
}

@media (max-width: 991px) {
  #hero h1 {
    font-size: 34px;
  }
}

#hero p {
  color: #ebebeb;
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 991px) {
  #hero p {
    font-size: 16px;
  }
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#2bae66ff 50%, rgba(101, 111, 150, 0.15) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(163, 163, 163, 0.4);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #2bae66ff;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

#hero .about-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #2bae66ff;
}

#hero .about-btn:hover {
  background: #2bae66ff;
  color: #fff;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/* #about {
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 60px 0 20px 0;
    height: 500px;
}
@media (min-width: 1024px) {
    #about {
        background-attachment: fixed;
    }
}
#about:before {
    content: "";
    background: #0B0C10;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#about h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 30px;
    color: #fff;
}
#about h3 {
    font-size: 18px;
    margin-top: 50px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}
#about p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #fff;
}
#about .container .row .col-lg-6 p {
    position: fixed;
    padding-left: 450px;
    top: 120px;
}
#about .container .row .col-lg-6 img {
    width: 400px;
}
#about .container .row .col-lg-3 img {
    position: fixed;
    left: 900px;
    top: 300px;
    width: 400px;
}
#about .container .row .col-lg-3 p {
    position: fixed;
    left: 500px;
    top: 380px;
} */

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/

#speakers {
  padding: 60px 0 30px 0;
}

#speakers .section-header {
  margin-top: 35px;
}

#speakers .img-mod {
  border-radius: 40px;
  width: 300px;
}

#speakers .speaker {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 40px;
  width: 350px;
}
@media (max-width: 991px) {
  #speakers .speaker {
    width: auto;
  }
}
#speakers .speaker .details {
  background: rgba(6, 12, 34, 0.76);
  position: absolute;
  border-radius: 40px;
  left: 0;
  bottom: -40px;
  right: 0;
  text-align: center;
  padding-top: 10px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#speakers .speaker .details h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

#speakers .speaker .details p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-style: italic;
}

#speakers .speaker .details .social {
  height: 40px;
}

#speakers .speaker .details .social i {
  line-height: 0;
  margin: 0 2px;
}

#speakers .speaker .details a {
  color: #fff;
}

#speakers .speaker .details a:hover {
  color: #2bae66ff;
}

#speakers .speaker:hover .details {
  bottom: 0;
}

#speakers-details {
  padding: 60px 0;
}

#speakers-details .details h2 {
  color: #112363;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#speakers-details .details .social {
  margin-bottom: 15px;
}

#speakers-details .details .social a {
  background: #e9edfb;
  color: #112363;
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#speakers-details .details .social a:hover {
  background: #2bae66ff;
  color: #fff;
}

#speakers-details .details .social a i {
  font-size: 16px;
  line-height: 0;
}

#speakers-details .details p {
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
}
#speakers-details .details ul {
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
}
#speakers-details .img-fluid {
  /* height: 700px;
  width: 150%; */
  margin-top: 30px;
  border: 5px solid #2bae66ff;
}
#Bm {
  height: 690px;
  width: 150%;
}
@media (max-width: 1024px) {
  #Bm {
    width: 190%;
    height: 350px;
  }
}
#Qp {
  height: 535px;
  width: 150%;
}
@media (max-width: 1024px) {
  #Qp {
    width: 190%;
    height: 350px;
  }
}
#It {
  height: 560px;
  width: 170%;
}
@media (max-width: 1024px) {
  #It {
    width: 190%;
    height: 350px;
  }
}
#Cp {
  height: 555px;
  width: 270%;
}
@media (max-width: 1024px) {
  #Cp {
    width: 190%;
    height: 350px;
  }
}
#Wp {
  height: 635px;
  width: 270%;
}
@media (max-width: 1024px) {
  #Wp {
    width: 190%;
    height: 350px;
  }
}
#Cv {
  height: 592px;
  width: 270%;
}
@media (max-width: 1024px) {
  #Cv {
    width: 190%;
    height: 350px;
  }
}
/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/

#schedule {
  background: #1c1e27;
  padding: 60px 0 60px 0;
  /* background: url("../img/1.jpeg") top center; */
  background-size: cover;
  overflow: hidden;
  position: relative;
}
/* #schedule:before {
    content: "";
    background: rgba(6, 12, 34, 0.8);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
} */

/* #schedule .nav-tabs {
    text-align: center;
    margin: auto;
    display: block;
    border-bottom: 0;
    margin-bottom: 30px;
} */

#schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}
/*
#schedule .nav-tabs a {
    border: none;
    border-radius: 50px;
    font-weight: 600;
    background-color: #0e1b4d;
    color: #fff;
    padding: 10px 100px;
}
@media (max-width: 991px) {
    #schedule .nav-tabs a {
        padding: 8px 60px;
    }
}
@media (max-width: 767px) {
    #schedule .nav-tabs a {
        padding: 8px 50px;
    }
}
@media (max-width: 480px) {
    #schedule .nav-tabs a {
        padding: 8px 30px;
    }
}
#schedule .nav-tabs a.active {
    background-color: #2BAE66FF;
    color: #fff;
} */

#schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}

#schedule .tab-pane {
  transition: ease-in-out 0.2s;
}

#schedule .schedule-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

/* #schedule .schedule-item:hover {
    background-color: #2BAE66FF;
} */

#schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}

#schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}
#schedule .schedule-item .speaker:hover {
  width: 150px;
  height: 150px;
}
#schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

#schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

#schedule .schedule-item h4 span {
  font-style: italic;
  color: #19328e;
  font-weight: normal;
  font-size: 16px;
}

#schedule .schedule-item li {
  font-style: italic;
  font-family: "Raleway", sans-serif;
  color: #2bae66ff;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  /* margin-bottom: 0; */
}
#schedule .schedule-item .col-md-2 {
  color: white;
}

#schedule .collapsible {
  font-family: "Raleway", sans-serif;
  background-color: #1c1e27;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #2bae66ff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 20px;
  border: 2px solid #2bae66ff;
  width: 154px;
}

#schedule .collapsible:hover {
  background: #2bae66ff;
  color: #fff;
  text-decoration: none;
}

#schedule .content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  margin-left: 75px;
  width: 50%;
  transition: max-height 0.2s ease-out;
  background-color: #1c1e27;
}
#schedule .register {
  font-family: "Raleway", sans-serif;
  background-color: #1c1e27;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  align-content: center;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #2bae66ff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 20px;
  border: 2px solid #2bae66ff;
  width: 110px;
  margin-left: 46%;
  /* white-space: nowrap; */
}
#schedule .image1 {
  height: 90%;
  position: absolute;
  top: 8px;
  left: 220px;
}
@media (max-width: 991px) {
  #schedule .image1 {
    height: 0%;
    position: fixed;
    top: 0px;
    left: 0px;
  }
}
#schedule .image {
  height: 90%;
  position: absolute;
  top: 12px;
  left: 950px;
}
@media (max-width: 991px) {
  #schedule .image {
    height: 0%;
    position: fixed;
    top: 0px;
    left: 0px;
  }
}
@media (max-width: 991px) {
  #schedule .register {
    margin-left: 34.5%;
  }
}
/* #schedule .register:hover a{
  background: #2BAE66FF;
  color: white;
  text-decoration: none;
} */
#schedule .register:hover {
  background: #2bae66ff;
  color: white;
  text-decoration: none;
}

#schedule .fullSchedule {
  padding: 0 18px;
  max-height: 0;
  overflow: auto;
  /* margin-left: 75px; */
  transition: max-height 0.2s ease-out;
  background-color: #1c1e27;
}
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1c1e27;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #2bae66ff;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: white;
}
#schedule .schedule-item .speaker {
  position: relative;
}
#schedule .schedule-item .speaker img:hover {
  opacity: 1;
  cursor: pointer;
}
#schedule .schedule-item .speaker .middle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
#schedule .schedule-item .speaker:hover .middle {
  opacity: 1;
}
#schedule .schedule-item .speaker .text {
  /* background-color: #04AA6D; */
  cursor: pointer;
  font-weight: bold;
  color: white;
  font-size: 16px;
  position: relative;
  top: 35px;
}

/*--------------------------------------------------------------
# about Section
--------------------------------------------------------------*/
#about {
  overflow: hidden;
  /* margin-top: 10px; */
  padding-top: 5em;
}
#fh5co-board .item .fh5co-board-img {
  /* border-top-left-radius: 4px;
    border-top-right-radius: 4px; */
  /* overflow: hidden; */
  height: 225px;

  /* padding: 3px; */
  border-radius: 10px;
}
.item {
  margin: 10px 10px 20px 10px;
  background: #fff;
  height: 255px;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
  margin-left: 10%;
  width: 80%;

  padding: 15px;
  position: relative;
  transition: all 0.3s ease-in-out;

  margin-bottom: 50px;
  z-index: 1;
}
/* .services .icon-box {
        padding: 30px;
        margin-bottom: 40px;
        margin-left: 60px;
        position: relative;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
        transition: all 0.3s ease-in-out;
        border-radius: 8px;
        z-index: 1;
    } */

.item::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.item:hover::before {
  background: #2bae66ff;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.item:hover {
  background: #2bae66ff;
}

@media (max-width: 991px) {
  .item {
    /* position: auto; */
    margin-left: 10%;
    width: 80%;
    /* height:200px; */
    padding: 5px;
    height: 205px;

    margin-bottom: 50px;
  }
  #fh5co-board .item .fh5co-board-img {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: hidden;
    height: 190px;
    padding: 3px;
    width: 100%;
    border-radius: 10px;
  }
}
#fh5co-board .item a {
  display: block;
}
#fh5co-board .item .fh5co-desc {
  padding: 20px;
  float: left;
  line-height: 24px;
}
#fh5co-board .item .fh5co-item-title {
  font-family: "Montserrat", arial, sans-serif;
  font-size: 17px;
  line-height: 24px;
  margin: 0;
  padding: 0;
}
#fh5co-board .item img {
  max-width: 100%;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* #fh5co-board .item .image-popup:hover img {
  opacity: .5;
} */

.js .animate-box {
  opacity: 0;
}

pre {
  background: #e9e9e9;
  border: 1px solid #ccc;
}

/**********
Past Events about
**********/
#pastEvents {
  padding: 60px;
  /* right:30px; */
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  #pastEvents {
    position: static;
  }
}

#pastEvents .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#pastEvents .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2bae66ff;
}

#pastEvents .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2bae66ff;
}
#pastEvents .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  #pastEvents .swiper-wrapper {
    padding: 40px 0;
  }
  #pastEvents .swiper-slide-active {
    border: 5px solid #2bae66ff;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.15);
    /* margin-top: 600px; */
  }
}
/* #pastEvents .img-fluid{
	width: 150px;
	height: 80px;
} */

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/

#faq {
  padding: 60px 0;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border-bottom: 1px solid #e9eaed;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #2bae66ff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #e0072f;
  transition: 0.3s;
}

#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: black;
}

#faq .faq-list .collapsed:hover {
  color: #2bae66ff;
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/

#subscribe {
  padding: 60px;
  background: url("../img/subscribe-bg.jpg") center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#subscribe:before {
  content: "";
  background: rgba(6, 12, 34, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 1024px) {
  #subscribe {
    background-attachment: fixed;
  }
}

#subscribe .section-header h2,
#subscribe p {
  color: #fff;
}

#subscribe input {
  background: #fff;
  color: #060c22;
  border: 0;
  outline: none;
  margin: 0;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
}

@media (min-width: 767px) {
  #subscribe input {
    min-width: 400px;
  }
}

#subscribe button {
  border: 0;
  padding: 9px 25px;
  cursor: pointer;
  background: #2bae66ff;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  font-size: 14px;
  border-radius: 50px;
}

#subscribe button:hover {
  background: #e0072f;
}

@media (max-width: 460px) {
  #subscribe button {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
#buy-tickets {
  padding: 60px 0;
  margin-top: 100px;
  background-color: #1c1e27;
}

#buy-tickets .card {
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 25px 0 rgba(6, 12, 34, 0.1);
}

#buy-tickets .card:hover {
  box-shadow: 0 10px 35px 0 rgba(6, 12, 34, 0.2);
}

#buy-tickets .card hr {
  margin: 25px 0;
}
#buy-tickets .card .card-title {
  margin: 10px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
  color: black;
}

#buy-tickets .card .card-price {
  font-size: 48px;
  margin: 0;
  color: black;
}

#buy-tickets .card ul li {
  margin-bottom: 20px;
}

#buy-tickets .card .text-muted {
  opacity: 0.7;
}
#buy-tickets .row .card-body {
  background-color: #d3d3d3;
}

#buy-tickets .card .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background: #2bae66ff;
  border: 0;
  color: white;
  cursor: pointer;
}

#buy-tickets .card .btn:hover {
  background-color: #2bae66ff;
}

#buy-tickets #buy-ticket-modal input,
#buy-tickets #buy-ticket-modal select {
  border-radius: 0;
}

#buy-tickets #buy-ticket-modal .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: #2bae66ff;
  border: 0;
  color: white;
}

#buy-tickets #buy-ticket-modal .btn:hover {
  background-color: #2bae66ff;
}
#buy-tickets .row {
  margin-left: 450px;
  width: 1200px;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact {
  padding: 60px 0;
  margin-top: 100px;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #2bae66ff;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: white;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

#contact .contact-info a {
  color: white;
}

#contact .contact-info a:hover {
  color: #2bae66ff;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
  color: #2bae66ff;
}

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: rgb(0, 0, 0);
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
  border-color: #2bae66ff;
}

#contact .php-email-form input {
  padding: 10px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form button[type="submit"] {
  background: #d3d3d3;
  border: 0;
  padding: 10px 40px;
  color: #2bae66ff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #2bae66ff;
  color: white;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#contact .form .php-email-form .form-control {
  background-color: #d3d3d3;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #2bae66ff;
  padding: 0 0 25px 0;
  color: black;
  font-size: 20px;
}

#footer .footer-top {
  background: white;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: Black;
}

#footer .footer-top .footer-info img {
  height: 110px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: Black;
}

#footer .social-links a {
  display: inline-block;
  background: #222636;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .social-links a i {
  line-height: 0;
  font-size: 20px;
}

#footer .social-links a:hover {
  background: #2bae66ff;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: black;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #2bae66ff;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  margin-left: 150px;
}
@media (max-width: 922px) {
  #footer .footer-top .footer-links {
    margin-left: 0px;
  }
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #2bae66ff;
  font-size: 25px;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #2bae66ff;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: black;
}

#footer .footer-top .footer-links ul a:hover {
  color: #2bae66ff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  margin-left: 150px;
}
@media (max-width: 922px) {
  #footer .footer-top .footer-contact {
    margin-left: 0px;
  }
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #2bae66ff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #e0072f;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
/*
.about {
    margin-top: 60px;
}
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}
.about .content ul {
    list-style: none;
    padding: 0;
    color: #fff;
}
.about .content ul li {
    padding-left: 28px;
    position: relative;
}
.about .content ul li+li {
    margin-top: 10px;
}
.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 30px;
    color: #2BAE66FF;
    line-height: 1;
}
.about .content p:last-child {
    margin-bottom: 0;
}
.about .content .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.3s;
    line-height: 1;
    color: #2BAE66FF;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 20px;
    border: 2px solid #2BAE66FF;
    width: 154px;
}
.about .content .btn-learn-more:hover {
    background: #2BAE66FF;
    color: #fff;
    text-decoration: none;
}
.counts {
    padding-top: 0;
}
.counts .content {
    padding: 0;
}
.counts .content h3 {
    font-weight: 700;
    font-size: 34px;
    color: #222222;
}
.counts .content p {
    margin-bottom: 0;
}
.counts .content .count-box {
    padding: 20px 0;
    width: 100%;
}
.counts .content .count-box i {
    display: block;
    font-size: 36px;
    color: #2BAE66FF;
    float: left;
}
.counts .content .count-box span {
    font-size: 36px;
    line-height: 30px;
    display: block;
    font-weight: 700;
    color: #fff;
    margin-left: 50px;
}
.counts .content .count-box p {
    padding: 15px 0 0 0;
    margin: 0 0 0 50px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #fff;
}
.counts .content .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #fff;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: ease-in-out 0.3s;
}
.counts .content .count-box a:hover {
    color: #6f6f6f;
}
@media (max-width: 1024px) {
    .counts .image {
        text-align: center;
    }
    .counts .image img {
        max-width: 70%;
    }
}
@media (max-width: 667px) {
    .counts .image img {
        max-width: 100%;
    }
} */

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
  /* margin-top: 120px; */
  margin-bottom: 80px;
}

.services .icon-box {
  padding: 30px;
  margin-bottom: 40px;
  margin-left: 60px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

/*css code for card */

.containersp {
  height: 500px;
}

.sponsor-wrapper .cardsp {
  width: 300px;
  height: 300px;
  /* position: relative; */
  margin: 40px;
}

.sponsor-wrapper .cardsp .contentsp {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: 0.5s;
}

.sponsor-wrapper .cardsp .contentsp.front {
  margin-bottom: 30px;
  border-radius: 10px;
  transform-origin: bottom;
}

.sponsor-wrapper .cardsp .contentsp.front img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.sponsor-wrapper .cardsp:hover .contentsp.front {
  transform: translateY(-100%) rotateX(90deg);
}

.sponsor-wrapper .cardsp .contentsp.back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: white;
  color: black;
  transform: translateY(100%) rotateX(90deg);
}

.sponsor-wrapper .cardsp .contentsp.back h2 {
  color: black;
  margin: 15px 0;
}

.sponsor-wrapper .cardsp .contentsp.back h3 {
  color: black;
  margin: 15px 0;
}

.sponsor-wrapper .cardsp .contentsp.back p {
  text-align: center;
}

.sponsor-wrapper .cardsp .contentsp.back .social {
  margin: 15px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.sponsor-wrapper .cardsp .contentsp.back .social a {
  margin: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
}

.sponsor-wrapper .cardsp .contentsp.back .social a i {
  font-size: 21px;
  color: black;
}

.sponsor-wrapper .cardsp .contentsp.back .social a:hover {
  background: chocolate;
}

.sponsor-wrapper .cardsp .contentsp.back .social a:hover i {
  color: white;
}

.sponsor-wrapper .cardsp:hover .contentsp.back {
  transform: translateY(0) rotateX(0deg);
}

@media (max-width: 425px) {
  .sponsor-wrapper .cardsp {
    width: 200px;
    height: 200px;
    /* position: relative; */
    margin: 40px;
  }
  .sponsor-wrapper .cardsp .contentsp.front img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .containersp {
    height: 10px;
  }
  .sponsor-wrapper {
    margin-top: 20px;
    width: 100%;
    height: 100%;
  }

  .contentsp.front {
    width: max-content;
    min-width: max-content;
  }
}

.services .icon-box::before {
  content: "";
  position: absolute;
  /*background: #e1f0fa;*/
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  /* background: #2BAE66FF;*/
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

/* css hover effect on sponsor card effect */

.cardsp {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 400px;
  background: #000;
}
.cardsp .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cardsp .image img {
  width: 100%;
  transition: 0.5s;
}
.cardsp :hover .image img {
  opacity: 0.5;
  transform: translateX(30%); /*100%*/
}
.cardsp .details {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%; /*100%*/
  height: 100%;
  background: #ffc107;
  transition: 0.5s;
  transform-origin: left;
  transform: perspective(2000px) rotateY(-90deg);
}
.cardsp :hover .details {
  transform: perspective(2000px) rotateY(0deg);
}
.cardsp .details .center {
  padding: 20px;
  text-align: center;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cardsp .details .center h1 {
  margin: 0;
  padding: 0;
  color: #ff3636;
  line-height: 20px;
  font-size: 20px;
  text-transform: uppercase;
}
.cardsp .details .center h1 span {
  font-size: 14px;
  color: #262626;
}
.cardsp .details .center p {
  margin: 10px 0;
  padding: 0;
  color: #262626;
}
.cardsp .details .center ul {
  margin: 10px auto 0;
  padding: 0;
  display: table;
}
.cardsp .details .center ul li {
  list-style: none;
  margin: 0 5px;
  float: left;
}
.cardsp .details .center ul li a {
  display: block;
  background: #262626;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  transform: 0.5s;
}
.cardsp .details .center ul li a:hover {
  background: #ff3636;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #2bae66ff;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-img {
  width: 250px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .services .icon-img {
    position: auto;
  }
}
@media (max-width: 922px) {
  .services .icon-img {
    position: center;
    width: 200px;
  }
}
.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #3498db;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #ecf5f9;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #2f4d5a;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #67b0d1;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(103, 176, 209, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(103, 176, 209, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid #8ec4dd;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}
.proto-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  /* display: inline-block; */
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #2bae66ff;
}
.proto-btn:hover {
  background: #2bae66ff;
  color: #fff;
}
.ProtoCode {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 770px) {
  .details {
    font-size: 0.75em;
  }
}
