@font-face {
  font-family: 'helvetica-bold';
  src:url('fonts/Helvetica/helvetica-bold.woff') format('woff'),
        url('fonts/Helvetica/helvetica-bold.woff2') format('woff2'),
        url('fonts/Helvetica/helvetica-bold.svg#helvetica-light') format('svg'),
        url('fonts/Helvetica/helvetica-bold.eot'),
        url('fonts/Helvetica/helvetica-bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Helvetica/helvetica-bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'helvetica-light';
  src:url('fonts/Helvetica/helvetica-light.woff') format('woff'),
        url('fonts/Helvetica/helvetica-light.woff2') format('woff2'),
        url('fonts/Helvetica/helvetica-light.svg#helvetica-light') format('svg'),
        url('fonts/Helvetica/helvetica-light.eot'),
        url('fonts/Helvetica/helvetica-light.eot?#iefix') format('embedded-opentype'),
        url('fonts/Helvetica/helvetica-light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "helvetica-light";
  color: #000;
  line-height: 1.55;
  font-size: 18px;
}

a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #606161;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "helvetica-bold", sans-serif;
}

.text-white{
  color:#FFF;
}

.text-grey{
  color:#717172;
}

.btn-theme{
 color: #FFF;
 background-color: #717172;
 border: 1px solid #717172;
 border-radius: 50px;
 padding: 10px 28px;
 font-family: helvetica;
 font-weight: 100;
}

.btn-theme:hover, .btn-theme:focus, .btn-theme:active{
 color: #FFF;
 background-color: #000;
 border: 1px solid #000;
}


.btn-bright{
 color: #000;
 background-color: #F4F4F4;
 border: 1px solid #F4F4F4;
 border-radius: 20px;
 padding: 10px 28px;
 font-family: helvetica;
 font-weight: 100;
}

.btn-bright:hover, .btn-bright:focus, .btn-bright:active{
 color: #FFF;
 background-color: #000;
 border: 1px solid #000;
}

@media (max-width: 768px) {
  body {
    line-height: 1.35;
    font-size: 16px;
  }
}

@media (max-width: 468px) {
  .row {
    padding: 0px 20px;
  }
}

/*--------------------------------------------------------------
# Form input
--------------------------------------------------------------*/


.form-group {
  padding-bottom: 8px;
}

.error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.error-message br+br {
  margin-top: 25px;
}

.sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

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;
  animation: animate-loading 1s linear infinite;
}

input.form-control,
textarea.form-control,
select.form-control {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  border-radius: 20px;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
  border-color: #707071;
  box-shadow: none;
  outline: 0 none;
}

input.form-control {
  height: 50px;
  padding: 10px 18px;
}

textarea.form-control {
  padding: 10px 18px;
}

select.form-control {
  height: 50px;
  padding: 10px 20px;
  appearance: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.control-arrow {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 7px), calc(100% - 15px) calc(1em + 7px), calc(100% - 5.5em) 7.5em;
  background-size: 5px 5px, 5px 5px, 0;
  background-repeat: no-repeat;
}

form input[type=submit] {
  background: #707071;
  border: 0;
  padding: 9px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 20px;
  width: 100%
}

form input[type=submit]:hover {
  background: #000;
}

form input[type=submit] {
  background: #707071;
  border: 0;
  padding: 9px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 20px;
  width: 100%
}

form button[type=submit]:hover {
  background: #000;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


@media (max-width: 468px) {
  form .row{
    padding: 0;
  }
}


/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.page-link{
  color:#000;
  margin: 0px 10px;
  border-radius: 10px;
}

.page-item:last-child .page-link{
  border-radius: 10px;
}

.page-item:first-child .page-link{
  border-radius: 10px;
}

.active>.page-link, .page-link.active{
  background-color : #606161;
  border-color : #606161;
}

.page-link:hover{
  color:#606161;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 88px;
  z-index: 996;
  background: #606161;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #606161;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #000;
  transition: all 0.5s;
  z-index: 997;
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0px 50px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


#header .mobile-logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


#header .logo img, #header .mobile-logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin-left: 20px;
  border-left: 1px solid #c4c4c4;
}

.header-social-links a {
  color: #a0a0a0;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: 20px;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #1bbd36;
}

@media (max-width: 768px) {
  .header-social-links {
    padding: 0 15px 0 0;
    border-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
  justify-content: center;
  flex-wrap: nowrap;
  margin: auto;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: 0px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px 5px 20px;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  color: #FFF;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: normal !important;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar .active,
.navbar .active:focus
{
  color: #FFF;
  background-color: #606161;
  border-radius: 30px;
}


.navbar-brand.d-lg-block{
  padding: 0px 30px;
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  border-top: 2px solid #1bbd36;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #111;
}

.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: #1bbd36;
}

.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%;
  }
}

@media (max-width: 1200px) {
  .navbar li {
    position: relative;
    padding: 0;
  }
}

@media (max-width: 820px) {
  .navbar{
    margin: 0;
  }

  .navbar li {
    position: relative;
    padding: 0;
  }

}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #FFF;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 820px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.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: 0;
  left: 0;
  padding: 10px 0;
  background-color: #000;
  overflow-y: auto;
  transition: 0.3s;
  margin: auto;
}

.navbar-mobile ul li{
  text-align: center;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;

}

.navbar-mobile a:hover,
.navbar-mobile .active {
  background-color: #606161;
  color: #fff;
}

.navbar-mobile li:hover>a{
  color: #000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  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: #1bbd36;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
  padding: 0px;
  margin-top: 58px;
  z-index:0;
}



#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}




#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}


#hero .carousel-control-prev,
#hero .carousel-control-next,
#hero .carousel-indicators {
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.6);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #717172;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 992px) {
  #hero .carousel-container {
    top: 58px;
  }

  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  #hero .carousel-content p {
    font-size: 15px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f7f7;
}

.section-title {
  padding-bottom:15px;
}

h2.section-title, h1.section-title {
  font-weight: bold;
  font-size: 42px;
  line-height: 1.35;
  text-transform: uppercase;
}


.section-title p {
  margin-bottom: 0;
}

h3.subtitle{
  font-size: 25px;
}


@media (max-width: 768px) {
  h2.section-title, h1.section-title {
    font-size: 38px;
  }

  h3.subtitle{
    font-size: 22px;
  }
}

@media (max-width: 468px) {

  section {
    padding: 40px 0;
    overflow: hidden;
  }

  h2.section-title, h1.section-title {
    font-size: 29px;
  }

  h3.subtitle{
    font-size: 19px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1bbd36;
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.breadcrumbs ol a {
  color: #fff;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about-us{
  background: #000;
}

.about-us .about-us-logo{
  padding: 0 0 20px 0;
}

.about-us .about-us-logo img{
  max-width: 60% !important;
}

.about-us .content h1{
  font-size: 40px;
  font-family: "helvetica";
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about-us .content{
    text-align: center;
  }

  .about-us .about-us-logo{
    padding: 0 20% 0 20%;
  }

}


/*--------------------------------------------------------------
# Prelude
--------------------------------------------------------------*/
.prelude{
  background: #fff;
  position: relative;
}



.prelude .icon-box{
  min-height: 350px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 20%;
}
.prelude .icon-box h3{
  font-size: 31px;
  font-weight: 800;
  margin-top: 35%;
}

.prelude .icon-box p{
  margin-top: 25px;
  padding-right: 5%;
}



@media (max-width: 468px) {

  .about-us .content h1{
    font-size: 30px;
  }

  .prelude .icon-box{
    margin-left: 15%;
  }
  .stat{
    display:none;
  }
  .partnership-collaboration{
    background-color: #707071;
    background-image: none!important;
  }

  .navbar .active, .navbar .active:focus{
    border-radius: 0;
  }

  .d-xs-none{
    display:none;
  }

  .mt-sm-4{
    margin-top:40px;
  }

}


/*--------------------------------------------------------------
# Mission
--------------------------------------------------------------*/
.mission{
  background: #F4F4F4;
  padding: 80px 0px 80px 0px;
}

.mission .mission-box .mission-icon{
  margin-bottom: 20px;
}

.mission .mission-box .mission-icon img{
  width: 80px;
}

/* .mission .mission-box .list-gr{
  list-style-type: square !important;
  padding-left: 20px !important;
}

.mission .mission-box .list-gr .list{
  display: list-item;
  padding: 0 25px 0 5px !important;
} */

.mission .mission-box ul{
   list-style-type: none;
   padding-left: 0;
}

.mission .mission-box ul li{
  width: 33%;
  display: inline-block;
  padding: 20px 10px;
}



.mission .mission-box ul li .circle{
  display: inline-block;
  background: #050607;
  border-radius: 50%;
  text-align:center;
  padding: 10px;
  margin-bottom: 20px;
}


.mission .mission-box ul li .circle:hover{
  background: #717172;
  cursor: pointer;
}


.mission .mission-box ul li .circle img{
  width: 60px;
  height: 60px;

}

@media (max-width: 768px) {
  .mission{
  padding: 50px 0px 50px 0px;
 }


}

@media (max-width: 468px) {

  .mission{
   padding: 40px 0px 40px 0px;
   text-align: center;
  }

  .mission .mission-box ul li{
     width: 100%;
  }

}


/*--------------------------------------------------------------
# Goal
--------------------------------------------------------------*/
.goal{
  background: #f4f4f4;
  padding: 80px 0px;
}


.goal .goal-box{
  padding: 0px 0px 0 30px;
  text-align: left;
}

.goal .goal-box .goal-icon{
  margin-bottom: 20px;
}

.goal .goal-box .goal-icon img{
  width: 80px;
}

.goal .goal-box .list-gr{
  list-style-type: square !important;
  padding-left: 20px !important;
}

.goal .goal-box .list-gr .list{
  display: list-item;
  padding: 0 25px 0 5px !important;
}

.goal .goal-box ul{
   list-style-type: none;
   padding-left: 0;
}

.goal .goal-box ul li{
  width: 100%;
  display: inline-block;
  padding: 20px 10px;
}

.goal .goal-box .owl-dot2{
  display:inline-block;
  margin:30px 40px;
}

.goal .goal-box .circle{
  display: inline-block;
  background: #050607;
  border-radius: 50%;
  text-align:center;
  padding: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}


.goal .goal-box .owl-dot2 .circle:hover, .goal .goal-box .owl-dot2 .circle:focus {
  background: #717172 !important;
}
.goal .goal-box .active .circle {
  background: #717172 !important;
}

.goal .goal-box .owl-dot2 .circle:hover img, .goal .goal-box .owl-dot2 .circle:focus img{
  transition: 0.5s;
  width: 100px;
  height: 100px;
}

.goal .goal-box .circle img{
  width: 80px;
  height: 80px;
}

.goal .goal-box .active .circle img{
  width: 100px;
  height: 100px;
}

.goal .goal-col{
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  text-align: center;
  padding: 30px;
  min-height: 480px;

}

.goal .goal-col .goal-col-icon{
  background: #000;
  border-radius: 50%;
  text-align:center;
  padding: 15px 0px 15px 0px;
  width: 80px;
  height: 80px;
  text-align: center;
  margin: auto;
  margin-bottom: 10px;
}

.goal .goal-col .goal-col-icon img{
  width: 50px;
}

.goal .goal-col .goal-col-desc{
  margin-top: 30px;
}

@media (max-width: 768px) {
  .goal {
    padding: 40px 0px 0px 0px;
  }

  .goal .goal-box {
    padding: 0px 0px 0 30px;
  }
}

@media (max-width: 468px) {

  .goal {
    padding: 40px 0px 30px 0px;
  }

  .goal .goal-box {
    padding: 0;
    text-align: center;
  }

  .goal .goal-box .goal-icon{
    margin-top: 20px;
  }

  .goal .goal-box .owl-dot2{
    margin:0;
  }

  .goal .goal-box .owl-dot2 .circle:hover img, .goal .goal-box .owl-dot2 .circle:focus img{
    transition: 0.5s;
    width: 60px;
    height: 60px;
  }

  .goal .goal-col{
    min-height: auto;
    margin-bottom: 20px;
  }

  .goal .goal-box .owl-dot2 .circle img{
    width: 50px;
    height: 50px;
  }

  .goal .goal-box .active .circle img{
    width: 60px;
    height: 60px;
  }

}



/*--------------------------------------------------------------
# Mission & Goal Tooltips
--------------------------------------------------------------*/

.tooltip{
   font-size: 18px;
   background: #fff;
   font-family: "helvetica-light";
}


.tooltip-inner {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 3px #717172;
  opacity: 1 !important;
  color: #000;
  padding: 10px;
  max-width: 250px !important;
  width: 250px !important;
}

.bs-tooltip-bottom > .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] > .tooltip-arrow::before {border-bottom-color: #717172;}

.bs-tooltip-top > .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] > .tooltip-arrow::before {border-top-color: #717172;}

.bs-tooltip-start > .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] > .tooltip-arrow::before {border-left-color: #717172;}

.bs-tooltip-end > .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] > .tooltip-arrow::before {border-right-color: #717172;}


/*--------------------------------------------------------------
# Awards Program
--------------------------------------------------------------*/
.awards, .awards-list{
  padding: 80px 0px ;
  background: #fff;
}


.awards-wrap {
  margin-bottom: 20px;
  overflow: hidden;
  background: transparent;
}

.awards-wrap .awards-img {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(85, 98, 112, 0.6);
  border-radius: 20px;
  max-height: 265px;
}

.awards-wrap .awards-img::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.awards-wrap .awards-img img {
  transition: all ease-in-out 0.3s;
}

.awards-wrap .awards-img:hover img {
  transform: scale(1.2);
}


.awards-wrap .awards-img .awards-link {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.awards-wrap .awards-img .awards-link button{
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 5px 20px;
  font-family: helvetica;
}

.awards-wrap .awards-img:hover::before {
  opacity: 1;
}

.awards-wrap .awards-img:hover .awards-link {
  opacity: 1;
}


.awards .awards-box .awards-info {
  padding: 25px 15px;
}

.awards-wrap .awards-info h3 {
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 18px;
  font-size: 20px;
  color: #000;
}

.awards-wrap .awards-info p {
  font-size: 17px;
  line-height: 1.4;
  color: #000;
  padding-right: 30px;
}

.awards-wrap .awards-info .social {
  position: relative;
  height: 40px;
  transition: ease-in-out 0.3s;
  text-align: left;
  display: flex;
  margin-top: 10px;
  margin-bottom: 30px;
}

.awards-wrap .awards-info .social a {
  transition: color 0.3s;
  color: #111;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.awards-wrap .awards-info .social a i {
  line-height: 0;
}

.awards-wrap .awards-info .social a:hover {
  color: #606161;
}

.awards-wrap .awards-info .social i {
  font-size: 20px;
  margin: 0 2px;
}

.awards-list .sidebar {
  padding: 30px;
  margin: 0 60px 0 0;
  border-radius: 20px;
  background: #F1F0F0;
}

.awards-list .sidebar.featured{
  padding: 0px;
  margin-top: 50px;
}

.awards-list .sidebar.featured img{
  border-bottom-left-radius:20px;
  border-bottom-right-radius:20px;
}



.awards-list .sidebar .sidebar-header {
  background: #000;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 20px 20px 5px 20px;
}

.awards-list .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111;
  position: relative;
}


.awards-list .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
  border-radius: 20px;
}

.awards-list .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  width: calc(100% - 50px);
}

.awards-list .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.awards-list .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #606161;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 20px 20px 0;
  line-height: 0;
  width: 50px;
}

.awards-list .sidebar .search-form form button i {
  line-height: 0;
}

.awards-list .sidebar .search-form form button:hover {
  background: #606161;
}

.awards-list .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.awards-list .sidebar .categories ul li{
  padding: 8px 20px;
  border-radius: 20px;
}

.awards-list .sidebar .categories ul li+li {
  margin-top: 10px;
}

.awards-list .sidebar .categories ul li.active {
  background: #FFF;
}

.awards-list .sidebar .categories ul a {
  color: #000;
  transition: 0.3s;
  font-family: helvetica;
  font-weight: normal;
}


.awards-list .sidebar .categories ul a:hover {
  color: #606161;
}

.awards-list .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b4aca8;
  font-size: 14px;
}



.awards-list .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.awards-list .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.awards-list .sidebar .recent-posts h4 a {
  color: #111;
  transition: 0.3s;
}

.awards-list .sidebar .recent-posts h4 a:hover {
  color: #1bbd36;
}

.awards-list .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b4aca8;
}

@media (max-width: 820px) {

  .awards{
    padding: 50px 0px 50px 0px;
  }

  .awards-list{
    padding: 100px 0px 50px 0px;
    background: #FFFF;
  }

  .awards-list .sidebar{
    margin: 0;
  }

  .awards-list .sidebar.featured {
    padding: 0px;
    margin-bottom: 50px;
  }

}

@media (max-width: 468px) {

  .awards{
    padding: 40px 0px 50px 0px;
  }

  .awards, .awards-list{
    padding: 40px 0px ;
  }

  .awards-list .sidebar.featured {
    padding: 0px;
    margin-bottom: 50px;
  }

  .awards-list .col-lg-8.col-md-12.col-sm-12 .row{
    padding: 0px;
  }

  .awards-wrap .awards-info h3 {
    text-align: center;
  }

  .awards-wrap .awards-info p {
    padding-right: 0;
    text-align: center;
  }

  .awards-wrap .awards-info .social {
    text-align: center;
    display: block;
  }

}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.stat{
  position: relative;
  background-image: url("../img/home/stat-background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 680px;
  background-attachment: fixed;
  margin-bottom: -70px;
  z-index: 99;
  overflow: hidden;
}

.counter{
  display: block;
  z-index: 100;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.counter .container{
  background: #F4F4F4;
  border-radius: 30px;
  overflow: hidden;
}

.counter .counter-box{
  padding: 60px 0px;
  text-align: center;
}

.counter .counter-box h2.bignum{
  font-size: 50px;
}

.counter .counter-box .title-sm{
  color:#72706F;
  font-family: "helvetica-bold";
  font-size: 20px;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 20px 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #000;
  border-radius: 10px;
}


.testimonials .testimonial-item::after{
    content: '';
    position: absolute;
    left: 15%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #000;
    clear: both;
}


.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #FFF;
  font-size: 26px;
  line-height: 0;
  text-shadow: rgb(18, 18, 18) 1.9px 0px 10px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  margin: 15px auto 15px auto;
  color:#FFF;
  line-height: 1.4;
  font-size: 16px;
}

.testimonials .testimonial-title{
  margin-top: 50px;
  padding: 0px 30px;
}
.testimonials .testimonial-title .testimonial-img {
  width: 120px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonials .testimonial-title h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-title h4 {
  font-size: 16px;
  color: #999;
  margin: 0;
  font-family: "helvetica-light";
}


.testimonials .testimonial-title .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #9B9C9C;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 20px 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}



/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients{
  background: #000;
}


.clients .clients-slider .swiper-slide img {
  opacity: 0.8;
  transition: 0.3s;
}

.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}

.clients .clients-slider .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #606161;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #606161;
}



/*--------------------------------------------------------------
# Action
--------------------------------------------------------------*/
.action{
  background: #fff;
}

.action .icon-box {
  text-align: center;
  padding: 30px 20px 30px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.action .icon-box .icon {
  margin: 0 auto;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}


.action .icon-box h4 {
  font-weight: 600;
  margin: 15px 0 15px 0;
  font-size: 22px;
}

.action .icon-box p {
  margin-bottom: 0;
  padding: 0 40px 0 40px;
  min-height: 60px;
}




/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 50px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #4d4643;
  transition: all 0.3s;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #1bbd36;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #111;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #444444;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #2b2b2b;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #1bbd36;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #57e76f;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}



/*--------------------------------------------------------------
# Partnership
--------------------------------------------------------------*/
.partnership{
  background: #000;
}

.partnership h3.subtitle {
    padding: 0px 20%;
    margin-bottom: 30px;
}


@media (max-width: 768px) {


  .partnership h3.subtitle {
      padding: 0px 10%;
  }

}

/*--------------------------------------------------------------
# partnership Collaboration
--------------------------------------------------------------*/
.partnership-collaboration{
  position: relative;
  background-color: #707071;
}

.partnership-collaboration .section-title{
  padding-right: 20%;
}

.partnership-collaboration .content ul {
  list-style: none;
  padding: 0;
}

.partnership-collaboration .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.partnership-collaboration .content ul li:first-child {
  margin-top: 35px;
}

.partnership-collaboration .content ul img {
  width: 80px;
  margin-right: 40px;
}

.partnership-collaboration .content ul h4 {
  font-size: 25px;
  color: #FFF;
}

@media (max-width: 768px) {
  .partnership-collaboration .section-title{
    text-align: center;
      padding-right: 0;
  }
}

@media (max-width: 468px) {
  .partnership-collaboration .content ul li{
    display: block !important;
    text-align: center;
  }

  .partnership-collaboration  .partnership-icon{
    display: block !important;
  }

  .partnership-collaboration .content ul img{
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .partnership-collaboration .content ul h4 {
    font-size: 21px;
 }

 .partnership-collaboration .partnership-info p{
    margin-bottom: 25px;
 }

}



/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners .partner-box{
  display: flex;
  align-items: center;
  padding: 30px;
  background: #F0EFEF;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  transition: ease-in-out 0.3s;
  border-radius: 20px;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Become Partner
--------------------------------------------------------------*/
.become_partner{
  background: #F0EFEF;
}

.become_partner h2{
  padding-right: 50%;
  margin-top: 20%;
}

@media (max-width: 468px) {

  .become_partner .content{
    text-align: center;
  }

  .become_partner h2{
    padding-right: 0;
    margin-top: 0;
  }

}



/*--------------------------------------------------------------
# Grand Jury Panel
--------------------------------------------------------------*/
.judges{
   margin-top: 65px;
}

.judges form{
  margin-bottom: 50px;
}

.judges .jury {
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
  border-radius: 20px;

}

.judges .jury .jury-img {
  position: relative;
  overflow: hidden;
}


.judges .jury .jury-img::before {
  content: "";
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.judges .jury .jury-img img{
filter: grayscale(100%);
}

.judges .jury .jury-img .jury-link {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.judges .jury .jury-img .jury-link button{
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 5px 20px;
  font-family: helvetica;
}

.judges .jury .jury-img:hover::before {
  opacity: 1;
}

.judges .jury .jury-img:hover .jury-link {
  opacity: 1;
}

.judges .jury .social {
  position: relative;
  height: 40px;
  transition: ease-in-out 0.3s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.judges .jury .social a {
  transition: color 0.3s;
  color: #111;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.judges .jury .social a i {
  line-height: 0;
}

.judges .jury .social a:hover {
  color: #606161;
}

.judges .jury .social i {
  font-size: 20px;
  margin: 0 2px;
}

.judges .jury .jury-info {
  padding: 25px 15px;
  background: #F1F0F0;
}

.judges .jury .jury-info h4 {
  margin-bottom: 5px;
  font-size: 20px;
  color: #000;
}

.judges .jury .jury-info .jury-country {
  display: block;
  font-family: "helvetica-bold";
  color: #606161;
}

.judges .jury .jury-info .jury-title {
  display: block;
  font-size: 17px;
  margin-top: 15px;
}

.judges .jury .jury-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #847872;
}

.judges .jury:hover .social {
  opacity: 1;
}



/*--------------------------------------------------------------
# Jury's Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-img img {
  width: 100%;
  filter: grayscale(100%);
  border-radius: 20px;
}



.portfolio-details .portfolio-info {
  padding: 30px;
}

.portfolio-details .portfolio-info h1 {
  font-size: 35px;
  margin-bottom: 40px;
  position: relative;
}

.portfolio-details .portfolio-info h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    height: 3px;
    width: 40px;
    background-color: #606161;
}

.portfolio-details .portfolio-info h3{
  font-size: 22px;
}


.portfolio-details .portfolio-info .portfolio-country{
  font-family: 'helvetica';
  margin-bottom: 30px;
}


.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 20px;
  margin-top: 10px;
}

.portfolio-details .portfolio-info ul li {
  display: inline-block;
  width: 38px;
  height: 38px;
  background-color: #000;
  border-radius: 50%;
  text-align: center;
  padding: 6px 0;
}

.portfolio-details .portfolio-info ul li a{
  color: #FFF;
}

.portfolio-details .portfolio-info ul li a:hover{
  color:#F1F0F0;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  font-size: 17px;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.contact p {
  margin-bottom: 50px;
}



.contact .php-email-form {
  width: 100%;
  padding: 60px 80px;
  background: #F0EFEF;
  border-radius: 30px;
}

.address{
  background: #F4F4F4;
  padding: 80px;
}


@media (max-width: 468px) {

.contact .php-email-form {
  padding: 30px 30px;
  border-radius: 10px;
 }

 .contact h3 {
    font-size: 19px;
    margin-bottom: 15px;
 }

}


/*--------------------------------------------------------------
# Terms Of Use
--------------------------------------------------------------*/
.terms{
  margin-top: 60px;
}

.terms .terms-list {
  padding: 0;
}

.terms .terms-list ul {
  padding: 0;
  list-style: none;
}


.terms .terms-list li+li {
  margin-top: 15px;
}

.terms .terms-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.terms .terms-list a {
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  color:#606161 !important;
  font-family: helvetica;
}



.terms .terms-list .icon-show,
.terms .terms-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}



.terms .terms-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.terms .terms-list p a{
  display: inline;
}

.terms .terms-list p a:hover{
  text-decoration: underline;
}

.terms .terms-list .icon-show {
  display: none;
}

.terms .terms-list a.collapsed {
  color: #606161;
  transition: 0.3s;
}

.terms .terms-list a.collapsed:hover {
  color: #606161;
}

.terms .terms-list a.collapsed .icon-show {
  display: inline-block;
}

.terms .terms-list a.collapsed .icon-close {
  display: none;
}

.terms .terms-list ul.points{
  list-style: disc;
}

.terms .terms-list ul.points li{
  padding: 0 0 0 15px;
  background: transparent;
  border-radius: 0px;
  position: relative;
  margin-left: 30px;
}

.terms .terms-list ul.points li+li {
    margin-top: 0px;
}

.terms .terms-list ul.points.secondary{
  list-style: circle;
}


@media (max-width: 1200px) {
  .terms .terms-list {
    padding: 0;
  }
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: lightgray;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #1bbd36;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #000;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  border-bottom: 1px solid #444;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1ed33c;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 12px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
  text-align: left;
}


#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .credits a{
  color:rgba(255, 255, 255, 0.6);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #828382;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  border: 1px solid #C0C0C0;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #F0EFEF;
  color: #000;
  text-decoration: none;
}

@media (max-width: 468px) {
  #footer .footer-top{
     padding: 40px 0 30px 0;
     text-align: center;
  }

  #footer .footer-top .footer-links ul li{
    display: block;
    text-align: center;
  }
}
