@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

html, body{
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #808080;
    line-height: 26px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 999;
    background-color: #ffffff;
    border-bottom: 1px solid #f2f2f2;
}
.header-hidden {
    transform: translateY(-100%);
}
.header-scrolled {
    background: #323232;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo-scrolled {
    display: none;
}
.header-scrolled .logo-default {
    display: none;
}
.header-scrolled .logo-scrolled {
    display: inline-block;
}
.container{
    max-width: 1100px;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Poppins", sans-serif;
    color: #303030;
}
.nav-link{
    color: #838383;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    padding: 0 20px;
    font-weight: 700;
    font-size: 13px;
}
.nav-link:focus, .nav-link:hover{
    color: #43cb83;
}
.navbar-expand-lg .navbar-nav .dropdown-menu{
    border: 1px solid #f2f2f2;
    border-radius: 0;
    top: 50px;
}
.dropdown-menu{
    width: 220px;
}
.dropdown-menu li{
    padding: 0 20px;
}
.dropdown-item{
    color: #999;
    height: auto;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid #f4f4f4;
    white-space: normal;
}
.dropdown-item::before{
    content: '';
    display: inline-block;
    position: relative;
    top: -2px;
    margin-right: 10px;
    width: 5px;
    height: 5px;
    background-color: #43cb83;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.dropdown-item:hover{
    background-color: transparent;
    color: #43cb83;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: #43cb83;
}
.navbar-toggler{
    border: none;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.header-scrolled .nav-link{
    color: #ffffff;
}
.header-scrolled .navbar-toggler-icon{
    filter: invert(1);
}
.banner{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgb(255 255 255 / 70%), rgba(0, 0, 0, .1)), url(../images/banner.png);
    display: flex;
    align-items: center;
}
.banner .info{
    max-width: 560px;
    width: 100%;
}
.info h1{
    font-size: 53px;
    font-weight: 900;
}
.info p{
    font-size: 18px;
    color: #545454;
    font-weight: 500;
    margin: 20px 0 40px;
}
.btn{
    background-color: #43cb83;
    border: 2px solid #43cb83;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 14.5px 50px;
    min-width: 165px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 0;
    transition: color .25s ease-out, background-color .25s ease-out, border-color .25s ease-out;
}
.btn:hover{
    border: 2px solid #43cb83;
    background-color: transparent;
    color: #43cb83;
}
section{
    padding: 80px 0;
}
h6{
    color: #545454;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
}
.card-list img {
  cursor: pointer;
}

.card-list img:hover {
  animation: bounceClick 0.4s ease;
}

@keyframes bounceClick {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.85); }
  60%  { transform: scale(1.05); }
  80%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.badge{
	font-size: 25px;
	font-weight: 200;
}

.badge i {
	font-size: 20px;
	font-weight: 200;
}

.about-rating{
	font-size: 15px;
	font-weight: 500;
	margin-top: 10px;
}

.total-ratings{
	font-size: 12px;

}

.bg-custom{
	background-color: #b7dd29 !important;
}

.progress{
	margin-top:10px;
    border-radius: 0;
    height: 9px;
}
h2{
    font-size: 37px;
    font-weight: 700;
}
.progress-title{
    display: flex;
    font-family: "Poppins", sans-serif;
    justify-content: space-between;
    color: #545454;
    font-size: 14px;
    font-weight: 600;
    margin: 11px 0;
}
.progress-section{
    background-color: #fbfbfc;
    font-size: 18px;
    border: 1px solid #f2f2f2;
}
.progress-bar {
  width: 0;
  transition: width 1.5s ease-in-out;
}
.progress-bar.red{
    background-color: #dd3336;
    width: 100%;
}
.progress-bar.yellow{
    background-color: #eeee22;
    width: 100%;
}
.progress-bar.green{
    background-color: #81d742;
    width: 100%;
}
.progress-bar.blue{
    background-color: #1e73be;
    width: 100%;
}
.progress-bar.orange{
    background-color: #dd9933;
    width: 100%;
}
.our-rate{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #43cb83;
    color: #ffffff;
}
.ico{
    height: 60px;
    width: auto;
    margin-bottom: 37px;
}
.ico i{
    font-size: 60px;
    font-weight: 700;
}
.numbers{
    font-size: 48px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}
.bg-grey{
    padding: 60px 0;
    background-color: #323232;
    color: #ffffff;
}
.bg-grey h2{
    font-size: 26px;
    text-transform: uppercase;
}
.title {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px
}

.content {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
    overflow: hidden
}

.content .content-overlay {
    background: rgba(0, 0, 0, .7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s
}

.content:hover .content-overlay {
    opacity: 1
}

.content-image {
    width: 100%
}

.content-image {
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, .1);
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s
}

.content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1
}

.content-details h3 {
    color: #fff;
    font-weight: 500;
    letter-spacing: .15em;
    margin-bottom: .5em;
    text-transform: uppercase
}

.content-details p {
    color: #fff;
    font-size: .8em
}

.fadeIn-bottom {
    top: 80%
}
.content-details .btn{
    font-size: 10px;
    min-width: 143px;
    padding: 9px 30px;
}
footer{
    background-color: #323232;
    color: #ffffff;
}
footer a{
    text-decoration: none;
    color: #ffffff;
    transition: color .25s ease-in-out;
}
footer a:hover{
    color: #43cb83 !important;
}
.links{
    list-style: none;
    padding: 0;
}
.links li a{
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    margin-left: 32px;
}
.links li{
    border-bottom: 1px solid #484848;
    position: relative;
    padding: 8px 0;
}
.links li::before{
    content: "\F285";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 24px;
    color: #545454;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
footer h5{
    color: #ffffff;
    margin-bottom: 23px;
    font-family: Poppins, sans-serif;
    text-transform: uppercase;
    line-height: 36px;
    font-size: 20px;
}
.copyright{
    background-color: #2a2a2a;
    color: #43cb83;
    padding: 30px 0;
}
.post-content h2 span{
    color: #33cccc;
}
.title-section{
    margin-top: 80px;
    text-align: center;
    color: #ffffff;
    background-color: #43cb83;
}
.title-section h1{
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}
.tab-content{
    padding: 20px 32px 30px 32px;
    border: 1px solid #f2f2f2;
    background-color: #eeeeee;
}
.nav-tabs .nav-link.active{
    background-color: #43cb83;
    color: #ffffff;
}
.nav-tabs .nav-link{
    padding: 7px 14px;
    background-color: #eeeeee;
    color: gray;
    margin-right: 7px;
}
.nav-tabs{
    background-color: #f6a828;
    border: 1px solid #e78f08;
}
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  z-index: 1000;
}
.popup h2{
  color: #ffffff;
}
 .close-button{
   color: #ffffff;
   margin-left: auto;
   display: block;
   background-color: transparent;
 }
 .modal-header{
    border: none;
 }