
body {  
  color: #444444;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

a {
  text-decoration: none;
  color: #67b0d1;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 14px 0;
  background: #fff;
  position: fixed;
}

#header.header-transparent {
  background: #fff;
}

#header.header-scrolled {
  background: #fff;
  padding: 12px;
  border-bottom: 2px solid #000;
}

#header .logo h1 {
  font-size: 24px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  width: 250px;
}

@media (max-width: 768px) {
  #header.header-scrolled {
    padding: 15px 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 a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 6px;
  margin-left: 10px;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #25507c;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  border-bottom:3px dashed #9bbd47;
  color: #25507c;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 10px;
  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: 15px;
  text-transform: none;
  font-weight: 600;
  color: #2f4d5a;
}

.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: #2f4d5a;
}

.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: #25507c;
  border: 2px solid #25507c;
  border-radius: 3px;
  font-size:38px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .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(43, 111, 142, 0.9);
  transition: 0.3s;
}

.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 a {
  padding: 10px 20px;
  font-size: 15px;
  color: #2f4d5a;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff;
}

.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: #67b0d1;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  transition: all 0.5s ease-in-out;
}
.card-body{
  box-shadow: 1px 1px 0px 1px #25507c;
  border-radius: 2px;
  min-height: 230px;
}
@media(max-width:920px){
  .card-body{
    box-shadow: 1px 1px 0px 1px #25507c;
    border-radius: 2px;
    min-height: 110%
  }
}
#cards{
  background: linear-gradient(#f1f3f88c,#f1f3f88c) ,url("../img/herobg6.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  
}

#cards .card {
    border-radius: 5px;
}

#cards .heading-border {
    position: absolute;
    width: 100%;
    top: 60%;
}

#cards .card .user-picture img {
    position: absolute;
    top: -30%;
    left:-1%;
    background: #25507c  !important;
    padding: 5px;
}

#cards .card .user-content .user-name {
  font-size: 18px;
  font-weight: 600;
  margin-top: 80px;
  margin-bottom: 0px;
}
#cards .card .user-content p{
  font-size: 16px;
}


#hero {
  width: 100%;
  background: url("../img/herobg7.jpg");
  background-size: cover;
  position: relative;
  margin-top: 80px;
  border-bottom: 1px solid #25507c;
}
#hero::before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ffffff00;
  z-index: 9;
}

#hero .hero-container {
  position: relative;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  z-index: 11;
}
#hero .img1{
  width: 50%;
  margin-top: 50px;
  margin-bottom: 30px;
}
#hero .img{
  width: 50%;
   margin-top: 40px;
   margin-bottom: 30px;
}
@media(max-width: 480px){
  #hero .img{
    width: 100%;
  }
}

@media(max-width:650px) and (min-width: 480px){
  #hero .img{
    width: 70%;
  }
}

@media(max-width:850px) and (min-width: 650px){
  #hero .img{
    width: 50%;
  }
}
@media(max-width:1150px) and (min-width: 851px){
  #hero .img{
    width: 40%;
  }
}


#hero h1 {
  margin: 0 0 10px 0;
  font-size: 34px;
  padding: 15px;
  font-weight: 900;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  line-height: 60px;
  color: #25507c;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#hero h2 span{
 padding: 20px;
}
#hero h1 span{
 padding: 10px;
}

#hero h2 {
  color: #25507c;
  margin-bottom: 20px;
  margin-top: 30px;
  font-size: 30px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 700;
}
#hero h4{
  color: #25507c;
  font-size: 24px;
  margin-top: 5px;
  font-weight: 700;
}

#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #25507c;
  color: #25507c;
}

#hero .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #adc921;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px){
  #hero img{
  width: 90%;
  padding: 10px;
}
}

@media (max-width: 658px) {
  #hero h1 {
    font-size: 16px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 958px) {
  #hero h1 {
    font-size: 20px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}



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

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

.section-title {
  text-align: center;
  padding-bottom: 50px;
  padding-top: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  color: #25507c;
  z-index: 2;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url(../img/section-title-bg.png) no-repeat;
  z-index: -5;
}

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

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

.about .container {
  position: relative;
  z-index: 10;
}

.about img{
 width: 100%;
}


.about .content h3 {
  font-weight: 600;
  font-size: 20px;
  color: #2f4d5a;
  margin-bottom: 10px;
  text-align: justify;
}

.about .content p {
  margin-bottom: 30px;
  font-size: 18px;
}

.about .content .about-btn {
  display: inline-block;
  background: #67b0d1;
  padding: 6px 44px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
}

.about .content .about-btn i {
  font-size: 18px;
  position: absolute;
  right: 18px;
  top: 9px;
}

.about .content .about-btn:hover {
  background: #7bbad7;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #67b0d1;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 15px #2c4897;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width: 100%;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #25507c ;
  top: 0;
  border-radius: 0px;
}
.anim1{
  animation: myanimation 15s infinite;
}
@keyframes myanimation {
  10% {background-color: #25507c;color: #fff;}
  20%{background-color:#25507c;color: #fff;}
  30%{background-color:#fff;color: #000;}
  40%{background-color:#fff;}
  50% {background-color: #fff;}
  60%{background-color:#fff;}
  70%{background-color:#fff;}
  80% {background-color: #fff;}
  90%{background-color:#fff;}
  100%{background-color:#fff;}
}

.anim2{
  animation: myanimation2 15s infinite;
}
@keyframes myanimation2 {
  10% {background-color:#fff;}
  20%{background-color:#fff;color: #000;}
  30%{background-color:#25507c;color: #fff;}
  40%{background-color:#fff;color: #000;}
  50% {background-color: #fff;}
  60%{background-color:#fff;}
  70%{background-color:#fff;}
  80% {background-color: #fff;}
  90%{background-color:#fff;}
  100%{background-color:#fff;}
}

.anim3{
  animation: myanimation3 15s infinite;
}
@keyframes myanimation3 {
  10% {background-color:#fff;}
  20%{background-color:#fff;}
  30%{background-color:#fff;color: #000;}
  40%{background-color:#25507c;color: #fff;}
  50%{background-color: #fff;color: #000;}
  60%{background-color:#fff;}
  70%{background-color:#fff;}
  80% {background-color: #fff;}
  90%{background-color:#fff;}
  100%{background-color:#fff;}
}

.anim4{
  animation: myanimation4 15s infinite;
}
@keyframes myanimation4 {
  10% {background-color:#fff;}
  20%{background-color:#fff;}
  30%{background-color:#fff;}
  40%{background-color:#fff;color: #000;}
  50%{background-color:#25507c;color: #fff;}
  60%{background-color:#fff;color: #000;}
  70%{background-color:#fff;}
  80% {background-color: #fff;}
  90%{background-color:#fff;}
  100%{background-color:#fff;}
}

.anim5{
  animation: myanimation5 15s infinite;
}
@keyframes myanimation5 {
  10% {background-color:#fff;}
  20%{background-color:#fff;}
  30%{background-color:#fff;}
  40%{background-color: #fff;}
  50%{background-color:#fff;color: #000;}
  60%{background-color:#25507c;color: #fff;}
  70%{background-color:#fff;color: #000;}
  80% {background-color: #fff;}
  90%{background-color:#fff;}
  100%{background-color:#fff;}
}

.anim6{
  animation: myanimation6 15s infinite;
}
@keyframes myanimation6 {
  10% {background-color:#fff;}
  20%{background-color:#fff;}
  30%{background-color:#fff;}
  40%{background-color: #fff;}
  50%{background-color: #fff;}
  60%{background-color:#fff;color: #000;}
  70%{background-color:#25507c;color: #fff;}
  80%{background-color:#fff;color: #000;}
  90%{background-color:#fff;}
  100%{background-color:#fff;}
}

.anim7{
  animation: myanimation7 15s infinite;
}
@keyframes myanimation7 {
  10% {background-color:#fff;}
  20%{background-color:#fff;}
  30%{background-color:#fff;}
  40%{background-color: #fff;}
  50%{background-color: #fff;}
  60%{background-color:#fff;}
  70%{background-color:#fff;color: #000;}
  80% {background-color:#25507c;color: #fff;}
  90%{background-color:#25507c;color: #fff;}
  100%{background-color:#25507c;color: #fff;}
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #9bbd47;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 400;
}

.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
}


/*--------------------------------------------------------------
# Awards Category
--------------------------------------------------------------*/
.services1{
  background-image: url('../img/2018.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.gold-text {
  color:#c3a343;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(#ffffffa6, #c3a343),
  url(http://example.com/gold-texture-image.png) repeat;
  background: -o-linear-gradient(#ffffffa6, #c3a343);
  -webkit-background-clip: text;
  }
  
.services1 .icon-box {
  padding: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px #2c4897;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width: 100%;
}

.services1 .icon-box::before {
  content: '';
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.9s;
  z-index: -1;
}

.services1 .icon-box:hover::before {
  background: #25507c ;
  top: 0;
  border-radius: 0px;
}

.services1 .icon {
  margin-bottom: 15px;
  text-align: center;
}

.services1 .icon i {
  font-size: 54px;
  padding: 10px;
  color: #25507c;
  transition: all 0.8s ease-in-out;
}

.services1 .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services1 .title a {
  color: #25507c;
}

.services1 .description {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
}

.services1 .icon-box:hover .title a, .services1 .icon-box:hover .description {
  color: #fff;
}

.services1 .icon-box:hover .icon i {
  color: #fff;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  border-bottom: 1px solid #25507c;
  border-top: 1px solid #25507c;
}

.counts .count-box {
  padding: 10px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #2f4d5a;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #2f4d5a;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 18px;
  color: #2f4d5a;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #49788c;
  font-size: 15px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #6e9fb4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(#f1f3f88c,#f1f3f88c) ,url("../img/herobg6.jpg");
  background-size: cover;
  padding: 60px 0;
  
}

.cta h3 {
  color: #255091;
  font-size: 30px;
  font-weight: 600;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-transform: none;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 38px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(0, 0, 0, 0.9);
}
.cta-btn {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin: 10px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 38px;
  border-radius: 8px;
  transition: 0.5s;
  margin-top: 10px;
  background-color: #fff;
  border: 3px solid #25507c;
  color: #25507c;
}
.cta-btn:hover {
  border-color: #adc921;
  background-color: #25507c;
  color: #fff;
}

.cta .cta-btn:hover {
  border-color: #fff;
}

.cta-btn1 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-left: 35px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 8px;
  border-radius: 8px;
  transition: 0.5s;
  margin-top: 20px;
  background-color: #25507c;
  border: 3px solid #25507c;
  color: #fff;
}
.cta-btn1:hover {
  border-color: #adc921;
  background-color: #fff;
  color: #25507c;
}

/*--------------------------------------------------------------
# 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;
}

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

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #67b0d1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #67b0d1;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(47, 77, 90, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

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

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #111;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #d5e9f2;
  font-size: 26px;
}

.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;
}
.testimonials .testimonial-item .quote-icon-right1{
  display: inline-block;
  right: 5px;
  position: relative;
  top: 2px;
  font-size: 18px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #255091;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
  text-align: justify;
  margin-top: 30px;
 color: #fff;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #255091;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #67b0d1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #67b0d1;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #2f4d5a;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
  max-height: 300px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #2f4d5a;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #52869d;
}

.team .member .social a:hover {
  color: #67b0d1;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}

.contact .info-box {
  color: #444444;
  background: #fff;
  text-align: justify;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 40px;
  margin-top: 50px;
}

.contact .info-box1{
  color: #444444;
  background: #fff;
  text-align: justify;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 40px;
}



.contact .info-box i {
  font-size: 22px;
  color: #67b0d1;
  border-radius: 50%;
  padding: 10px;
}

.contact .info-box h3 {
  font-size: 24px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}
.contact .info-box1 h3 {
  font-size: 24px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box1 i {
  font-size: 22px;
  color: #67b0d1;
  border-radius: 50%;
  padding: 10px;
}
.contact .info-box1 p {
  padding: 0;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Attend
--------------------------------------------------------------*/
#attend1{
  background-color:  #d1e1ff;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 14px;
}

#attend1 .attend-top{
  padding: 40px 0 10px 0;
}

#attend1 .attend-top .attend-info{
  margin-top: -60px;
  background: white;
  color: #2f4d5a;
  border-top: 4px solid #9bbd47;
  text-align: center;
  padding: 30px ;
  box-shadow: 0 0 10px #2f4d5a;
}

#attend1 .attend-top .attend-info h2{
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  color: #25507c;
  z-index: 2;
}


#attend1 .attend-top .attend-info h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url(../img/section-title-bg.png) no-repeat;
  z-index: -1;
}

#attend1 .attend-top .attend-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  line-height: 36px;
  font-weight: 600;
}

#attend1 .attend-top .attend-info h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  line-height: 32px;
  font-weight: 600;
  background-color: #eee;
  text-align: center;
  color: #000;
  padding: 10px;
}
#attend1 .attend-top .attend-info h4:hover {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 8px;
  line-height: 32px;
  font-weight: 500;
  background-color: #2d5681;
  color: #fff;
}

#attend1 .attend-top .attend-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

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


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

#attend1 .attend-top .attend-links ul i {
  padding-right: 2px;
  color: #00144f;
  font-size: 20px;
  line-height: 1;
}

#attend1 .attend-top .attend-links ul li {
  padding: 2px 0;
  display: flex;
   font-weight: 500;
   font-size: 17px;
}


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

#attend1 .attend-top .attend-links ul a {
  color: #00144f;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}


@media (max-width: 575px) {
  #attend1 .attend-top .attend-info {
    margin: -20px 0 30px 0;
  }
}

.main-content5 {
  align-items: center;
  background-position: bottom;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  line-height: 1.5;
  padding-top: 20px;
  position: relative;
}
  .main-title {
    color: #fff;
    font-size: 12px;
    letter-spacing: 8px;
    margin: 0px 0px 19px;
    text-align: center;
    text-transform: uppercase;
  }
  .container-countdown {
    display: flex;
    flex-flow: row nowrap;
  }
  .countdown-block {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    margin-right: 30px;
  }
    .countdown-block :last-child {
      margin-right: 0;
    }
    .subtitle {
      color: #fff;
      font-size: 18px;
    }
  .time-element {
    background-color: #255091;
    border-radius: 8px;
    box-shadow: 0px 8px 0px 0px #16151d;
    color: #fff;
    font-size: 3.5em;
    height: 70px;
    line-height: 68px;
    margin-bottom: 17px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 140px;
  }
    .time-element::before,
    .time-element::after {
      background: #24242e;
      border-radius: 50%;
      content: "";
      height: 10px;
      position: absolute;
      top: calc(50% - 5px);
      width: 10px;
      z-index: 6;
    }
    .time-element::before {
      left: -5px;
    }
    .time-element::after {
      right: -5px;
    }
    .time-element > span {
      left: 0;
      position: absolute;
      right: 0;
    }
    .top {
      background-color: #255091;
      transform-origin: 50% 100%;
      transform: perspective(200px);
      z-index: 3;
    }
    .top::after,
    .bottom-back::after {
      border-bottom: 1px solid hsl(240, 12%, 16%);
      bottom: 0;
      content: "";
      height: 100%;
      left: 0;
      position: absolute;
      width: 100%;
      z-index: -1;
    }
    .bottom {
      z-index: 1;
      }
      .bottom::before {
        background-color: #255091;
        content: "";
        display: block;
        height: 50%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
      }
    .bottom-back {
      background-color: #33354d;
      height: 50%;
      overflow: hidden;
      top: 0;
      z-index: 2;
    }
     .bottom-back span {
        bottom: 0;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
      }
    .top,
    .top-back {
      backface-visibility: hidden;
      height: 50%;
      overflow: hidden;
    }
    .top-back {
      background-color: rgb(51, 53, 77);
      bottom: 0;
      transform-origin: 50% 0;
      transform: perspective(200px) rotateX(180deg);
      z-index: 4;
      }
      .top-back span {
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: -100%;
      }
@media only screen and (max-width: 768px) {
  .main-content5 .container-countdown {
    flex-direction: column;
  }
}


.site-footer {
  background-color: #263f49;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
}

.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5
}

.site-footer hr.small {
  margin: 20px 0
}

.site-footer a {
  color: #737373;
}

.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none
}

.footer-links li {
  display: block
}

.footer-links a {
  color: #737373
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block
}

.site-footer .social-icons {
  text-align: right
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #fff;
}

.copyright-text {
  margin: 0
}

@media (max-width:991px) {
  .site-footer [class^=col-] {
      margin-bottom: 30px
  }
}

@media (max-width:767px) {
  .site-footer {
      padding-bottom: 0
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
      text-align: center
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px
}

.social-icons a.facebook:hover {
  background-color: #3b5998
}

.social-icons a.twitter:hover {
  background-color: #00aced
}

.social-icons a.linkedin:hover {
  background-color: #007bb6
}

.social-icons a.youtube:hover {
  background-color: red
}

.social-icons a.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  ;

}

@media (max-width:767px) {
  .social-icons li.title {
      display: block;
      margin-right: 0;
      font-weight: 600
  }
}

#conference-timeline {
  position: relative;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
#conference-timeline .timeline-start,
#conference-timeline .timeline-end {
  display: table;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  background: #00b0bd;
  padding: 15px 23px;
  color: #fff;
  max-width: 5%;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
#conference-timeline .conference-center-line {
  position: absolute;
  width: 3px;
  height: 58%;
  top: 0;
  left: 50%;
  margin-left: -2px;
  background: #9bbd47;
  z-index: -1;
  margin-top: 120px;
}

.timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.timeline-article .content-left-container,
.timeline-article .content-right-container {
  max-width: 44%;
  width: 100%;
}
.timeline-article .timeline-author {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #242424;
  text-align: right;
}
.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  width: auto;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.03);
  padding: 17px 15px;
}
.timeline-article p {
  margin: 0 0 0 60px;
  padding: 0;
  font-weight: 400;
  color: #242424;
  font-size: 18px;
  line-height: 24px;
  position: relative;
}
.timeline-article p span.article-number {
  position: absolute;
  font-weight: 300;
  font-size: 24px;
  top: 3px;
  left: -40px;
  color: #25507c;
}
.timeline-article .content-left-container {
  float: left;
}
.timeline-article .content-right-container {
  float: right;
}
.timeline-article .content-left:before,
.timeline-article .content-right:before{
  position: absolute;
  top: 20px;
  font-size: 23px;
  font-family: "FontAwesome";
  color: #fff;
}
.timeline-article .content-left:before {
  content: "\f0da";
  right: -8px;
}
.timeline-article .content-right:before {
  content: "\f0d9";
  left: -8px;
}
.timeline-article .meta-date {
  position: absolute;
  top: 0;
  left: 50%;
  width: 32px;
  height: 32px;
  margin-left: -17px;
  color: #fff;
  border-radius: 100%;
  background: #9bbd47;
}
.timeline-article .meta-date .date,
.timeline-article .meta-date .month {
  display: block;
  text-align: center;
  font-weight: 900;
}
.timeline-article .meta-date .date {
  font-size: 30px;
  line-height: 40px;
}
.timeline-article .meta-date .month {
  font-size: 18px;
  line-height: 10px;
}
/*===== // Vertical Timeline =====*/

/*===== Resonsive Vertical Timeline =====*/
@media only screen and (max-width: 830px) {
  #conference-timeline .timeline-start,
  #conference-timeline .timeline-end {
    margin: 0;
  }
  #conference-timeline .conference-center-line {
    margin-left: 0;
    left: 50px;
  }
  .timeline-article .meta-date {
    margin-left: 0;
    left: 20px;
  }
  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 100%;
    width: auto;
    float: none;
    margin-left: 110px;
    min-height: 53px;
  }
  .timeline-article .content-left-container {
    margin-bottom: 20px;
  }
  .timeline-article .content-left,
  .timeline-article .content-right {
    padding: 10px 25px;
    min-height: 65px;
  }
  .timeline-article .content-left:before {
    content: "\f0d9";
    right: auto;
    left: -8px;
  }
  .timeline-article .content-right:before {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  .timeline-article p {
    margin: 0;
  }
  .timeline-article p span.article-number {
    display: none;
  } 
}
.slide-right {
  animation: 2s slide-right;
}
@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}

.slide-left {
  animation: 2s slide-left;
}
@keyframes slide-left {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 0%;
  }
}


.fade-in {
  animation: fadeIn ease 2s;
}
@keyframes fadeIn{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
