/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --color-wh: #e2eaff;
  --color1: #768ED0;
  --color2: #041154;
  --color1-light:  #4a6dcf;
  --backgr-1: #abbceb;
  --backgr-2: #1a7cc5;
  --back-gd-hr1: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(26,126,199,1) 0%, rgba(4,17,84,1) 100%);
  --back-gd-hr11: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(26,126,199,1) 0%, rgba(4,17,84,1) 77%);
  --back-gd-hr2: linear-gradient(349deg, rgba(2,0,36,1) 0%, rgba(26,126,199,1) 0%, rgba(4,17,84,1) 100%);
  --back-gd-hr3: linear-gradient(152deg, rgba(2,0,36,1) 0%, rgba(26,126,199,1) 0%, rgba(4,17,84,1) 100%);
  --accent-1: #FFA726;
  --accent-2: #FFEB3B;
  --accent-3: #00BCD4;
}
/* linear:  1A7EC7   ---  373589*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: var(--color2);
}

a:hover {
  color: var(--color1-light);
  text-decoration: none;
}

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

.txt_span {
  color: var(--color1-light);
}
.txt_span2 {
  color: #7b9eff;
}
.txt_accent {
  color: var(--accent-1)
}

.btn_more,
.btn_more:focus {
  background: var(--back-gd-hr3);
  padding: 6px 25px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 0.9em;
  color: #fff;
  transform: all 0.4s;
}

.btn_more:hover,
.btn_more:focus:hover {
  color: var(--accent-1);
  background: var(--back-gd-hr2);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffa82642;
  border: 1px solid var(--accent-1);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--accent-1);
  line-height: 0;
}

.back-to-top:hover {
  background: #ffa82688;
  border: 1px solid var(--accent-1d);
  color: #fff;
}
.back-to-top:hover i {
  color: #132e51;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: white;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}
h1 {
  color: rgb(118, 142, 208);
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(88, 107, 157, 0.5);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

#header .logo a {
  color: #556270;
}

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

/*--------------------------------------------------------------
# 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: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #7c7c7c;
  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 {
  color:var(--color1-light);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--back-gd-hr1);
  padding: 6px 25px;
  margin-left: 30px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 0.9em;
  color: #fff;
  transform: all 0.4s;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--back-gd-hr3);
}

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

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

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  width: 100%;
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(90, 117, 144, 0.7);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  border-radius: 8px;
  width: 60%;
  min-width: 300px;
  display: block;
  position: absolute;
  top: 55px;
  bottom: 15px;
  right: 15px;
  padding: 10px 0;
  background-color: rgb(224, 234, 245);;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(58vh + 80px);
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background: linear-gradient(90deg, rgba(2,0,36,0.3) 0%, rgba(26,126,199,0.3) 0%, rgba(4,17,84,0.3) 100%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(30, 35, 40, 0.3);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: var(--color-wh);
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0 0 10px var(--color2);
}

#hero p {
  width: 60%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: var(--color-wh);
  font-size: 1.3em;
  text-shadow: 0 0 10px black;
}

.hero-social-links {
  margin-top: 30px;
}
#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-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.3);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  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.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #d6d6d6;
  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: var(--accent-1);
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: var(--back-gd-hr1);
  box-shadow: 0 0 8px rgb(206, 206, 206);
}

.social_link {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1.4em;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px;
  border-radius: 10px;
  transition: 0.5s;
  line-height: 1;
  color: var(--color-wh);
  animation-delay: 0.8s;
  background: #1a7cc5;
  box-shadow: 0 0 8px -3px rgb(206, 206, 206);
}

.social_link:hover {
  color: var(--color2);
  background: var(--backgr-1);
}
#hero .btn-get-started:hover {
  background: var(--back-gd-hr1);
}

#hero .carousel-item .container {
  margin-top: 40px;
}

@media (max-width: 992px) {

  #hero .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 2.4em;
  }
  #hero p {
    width: 100%;
    font-size: 1.1em;
    margin-top: 30px;
  }
}

@media (min-width: 1024px) {

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

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

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

.section-bg,
.services .icon-box {
  background: rgba(26,126,199,0.1);
}

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-1);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #556270;
}

@media (max-width: 926px) {
  .section-title {
    padding-bottom: 10px;
  }
}

@media (max-width: 762px) {
  .section-title p {
    font-size: 1.5em;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(26,126,199,1) 0%, rgba(4,17,84,1) 100%);
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 300;
  margin-top: 10px;
  color: var(--color-wh)
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li a {
  color: var(--color1);
 }

.breadcrumbs ol li+li {
  padding-left: 10px;
  color: var(--color1);
}

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

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

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

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

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

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

.about .content h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 2em;
}

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

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
  font-size: 1.1em;
}

.about .content ul i {
  left: 0;
  top: 7px;
  font-weight: 1000;
  position: absolute;
  font-size: 20px;
  color: var(--accent-1d);
}
.about .content p {
  color: #787878;
  font-size: 1.1em;

}

.about .content span {
  color: #787878;
  font-style: italic;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about_img {
  border-radius: 8px;
}
@media (max-width: 768px) {
  .about .content h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

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

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

.swiper-pagination {
  margin-top: 40px;
  position: relative;
  max-width: 90vw;
  max-height: 20px;
  overflow: hidden;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: #ddd;
  transition: 0.5s;
}

.swiper-pagination .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  margin-bottom: -2px !important;

  background-color: var(--accent-1);
}

@media (max-width: 768px) {
  #swiper-wrapper-4ff03537972a3f69{
    height: 80px;
  }

  .swiper-slide img {
    max-height: 80px;
    width: auto;
  }

}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
}

.services .icon-box i {
  float: left;
  color: #d9232d;
  font-size: 40px;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #556270;
  transition: 0.3s;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover h4 a {
  color: #d9232d;
}

/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
  /* border: 1px solid #e7f2f9; */
  border-radius: 4px;
  padding: 30px 20px;
  margin: 20px 0px;
  transition: all 0.6s !important;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: var(--accent-1d);
}
.services-list .service-item .icon {
  margin-top: 10px;
}
.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.6em;
  color: var(--color1);
  color: #1b72ba;
  min-height: 60px;
}

.services-list .service-item .title a {
  color: var(--color1)
}

.services-list .service-item p {
  color: rgb(111, 111, 111);
  line-height: 24px;
  font-size: 1.1em;
}

.services-list .service-item:hover {
  background-color: rgba(40, 106, 186, 0.8);
}

.services-list .service-item:hover .icon i,
.services-list .service-item:hover .title a {
  color: var(--color-wh);
}

.services-list .service-item .title a:hover {
  color: var(--accent-1);
}

.services-list .service-item:hover .description {
  color: #cdd4e6;
}

@media (min-width: 1440px) {
  .services-list .service-item .title {
    min-height: auto;
    margin-bottom: 10px;
  }
}
@media (max-width: 762px) {
  .services-list .service-item .title {
    min-height: auto;
  }
  .services-list .service-item {
    padding: 10px 20px;
    margin: 10px 0px; }
  .services-list .service-item .icon{
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

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

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

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

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(85, 98, 112, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(85, 98, 112, 0.6);
  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 img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: white;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

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

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

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

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(85, 98, 112, 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;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  background: #fff;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: #31547c;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--color-primary);
}

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

.team .team-member .member-info {
  padding: 25px 15px 0 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6c757d;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #556270;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #edeff1;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #6b7b8d;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  overflow: hidden;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #556270;
  border-radius: 0;
  border-right: 2px solid white;
  font-weight: 600;
  font-size: 15px;
}

.features .nav-link:hover {
  color: #d9232d;
}

.features .nav-link.active {
  color: #d9232d;
  border-color: #d9232d;
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #556270;
}

.features .details p {
  color: #777777;
}

.features .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .features .nav-link {
    border: 0;
    padding: 15px;
  }

  .features .nav-link.active {
    color: #fff;
    background: #d9232d;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #d9232d;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #d9232d;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #d9232d;
  display: inline-block;
  padding: 8px 35px 9px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #e1444d;
}

.pricing .featured h3 {
  color: #fff;
  background: #d9232d;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #d9232d;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid white;
}

.faq .faq-item i {
  color: #dee2e6;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
  padding: 10px;
}

.testimonials .testimonial-item .card {
  min-height: 380px;
  border: none;
  padding: 40px 10px 4px 10px;
  background-image: url('/assets/img/line_gr.svg');
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonials .testimonial-item .card {
  /* background-color: rgba(51, 68, 168, 0.5); */
  /* background: var(--back-gd-hr1); */
  border-bottom-right-radius: 20px;
  box-shadow: 0 0 10px gray;
}
.testimonials .testimonial-item .card .card-title {
  font-size: 0.9em;
  color: var(--color-wh);
  min-height: 110px;
}

.testimonials .testimonial-item .card .card-head {
  color: var(--accent-1);
  font-size: 2em;
  margin-bottom: 16px;
}

.testimonials .testimonial-item .card p {
  color: rgb(189, 209, 234);
  font-size: 1.2em;
  height: 80px;
  overflow: hidden;
}
@media (max-width: 992px) {

}
@media (max-width: 762px) {

  .testimonials .testimonial-item .card {
    min-height: auto;
  }
  .testimonials .testimonial-item .card .card-title {
    width: 80%;
    margin: auto;
    padding: 20px 0;
    min-height: 110px;
  }
  .testimonials .testimonial-item .card .card-body {
    padding: 20px 0;
    min-height: 140px;
    width: 90%;
    margin: auto;
  }
  }

@media (max-width: 576px) {}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  margin-top: 40px;
  padding: 100px 0px 140px 0;
}
.contact .info {
  width: 100%;
  background: none;
}


.contact .address-map iframe {
  border-radius: 6px;
  border: solid 2px var(--backgr-1);
  transition: 0.8s;
}

.contact .address-map:hover > iframe {
  border: solid 2px var(--backgr-2);
}

.contact .info i {
  font-size: 24px;
  color: var(--color1);
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  padding-top: 6px;
  color: #556270;
}

.contact .info p {
  padding: 0 0 0 46px;
  margin-bottom: 0;
  font-size: 14px;
  color: #8795a4;
}
.contact .info .whatsapp {
  border-top: solid 1px var(--backgr-1);
  border-bottom: solid 1px var(--backgr-1);
  padding: 8px 0 8px 0;
  min-height: 80px;
  }
.contact .info .email,
.contact .info .phone, .contact .info {
  margin-top: 8px;
  border-bottom: solid 1px var(--backgr-1);
  min-height: 80px;
}
.contact .info .address p{
  padding-top: 0;
}

.contact .info .whatsapp i {
  color: #60a760;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i,
.contact .info .whatsapp:hover i {
    color: var(--accent-1);
}

@media (max-width: 992px) {
  .contact .info p {
  padding: 8px 0 0 0px;
  margin-left: 44px;}
  .contact .info .email,
  .contact .info .phone,
  .contact .info .address,
  .contact .info .whatsapp,
  .contact .info {
  margin-top: 10px;
  border: none;
  padding-top: 10px;
  }
  .contact .info h4 {
  width: auto;
  font-size: 20px;
  padding: 8px 0 0 6px;
  }
}

@media (max-width: 762px) {
  .contact .info {
    padding-top: 4px;
    margin: 0px;
  }
}
@media (max-width: 576px) {
  #contact {
    margin-top: 40px;
    padding: 100px 0px 40px 0;
  }
  .contact .info h4 {
    font-size: 1.2em;
  }
  .contact .info p {
    padding-bottom: 0px;

  }
  .contact .info .address, .contact .info .email,
  .contact .info .phone {
    min-height: 70px;
    padding-bottom: 10px;
  }
  .contact .info .email,
  .contact .info .phone, .contact .info .address {
    margin-top: 0px;
    border-top: none;
  }
}

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

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

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .post-item {
  border-top: solid 1px rgb(169, 169, 169);
  padding-top: 15px;
}
.blog .post-item img {
  border: solid 1px rgb(171, 171, 171);
}

.blog .entry {
  margin-top: 10px;
  padding: 20px 40px;
  margin-bottom: 60px;
  border-radius: 2px;
  box-shadow: 0px 0px 15px -10px rgba(88, 107, 157, 0.9);
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 10px 0;
  padding: 10px 0;
  border-bottom: solid 1px rgb(188, 188, 188);
}
.blog .entry .entry-img .img-fluid {
  max-height: 300px !important;
}
.blog .entry .entry-title a {
  color: #556270;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: var(--accent-1);
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #c1c8d0;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  text-indent: 2em;
  text-align: justify;
  line-height: 24px;
  padding: 20px 0;
  border-top: solid 1px rgb(188, 188, 188);
  border-bottom: solid 1px rgb(188, 188, 188);
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #d9232d;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #df3740;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #556270;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #a4afba;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #606f7e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #d9232d;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #556270;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(85, 98, 112, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .sidebar {
  max-height: 800px;
  overflow-y: scroll;
  padding: 20px 6px;
  margin: 0 0 60px 0px;
  border-bottom: solid 2px rgb(193, 193, 193);
  /* box-shadow: 0px 15px 20px -20px rgba(88, 107, 157, 0.5),
              inset 0px -15px 20px -20px rgba(88, 107, 157, 0.5); */
  box-shadow: inset 0px -15px 20px -20px rgba(88, 107, 157, 0.5);
}

.blog .sidebar-title {
  font-size: 1.2em;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 10px 0 0px 0;
  color: #556270;
  position: relative;
}

.blog .sidebar .sidebar-item {  margin-bottom: 30px;
}
.blog .search-form label {
  display: flex;
  padding: 4px;
}
.blog .search-form {
  display: flex;
  align-content: flex-start;
  box-shadow: 0px 5px 15px -15px rgba(88, 107, 157, 1);
}

.blog .search-form h3{
  margin: 0;
  color: var(--color1);
}

.blog .search-form input{
  display: flex;
  border: none;
  border-bottom: solid 1px rgb(194, 194, 194);
  padding: 0px 6px;
  min-width: 60%;
}


.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

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

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

.blog .sidebar .recent-posts h4 a {
  color: #556270;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--accent-1);
}

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

.blog .sidebar-item tags { margin: 0px }

.blog .sidebar-tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar-tags ul li {  display: inline-block; }

.blog .sidebar-tags ul a {
  color: #96a2af;
  font-size: 14px;
  padding: 2px 8px;
  margin: 0 6px 6px 0;
  border: solid 1px rgb(222, 222, 222);
  border-radius: 4px;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar-tags ul a:hover {
  color: var(--backgr-2);
  border: solid 1px var(--backgr-2);
}

@media (max-width: 576px) {
  .blog {
    padding: 10px 0 20px 0;
  }
  .blog .sidebar {
    border: none;
    padding: 10px 4px;
    margin: 0;
    max-height: 400px;
  }
  .blog .entry {
    padding: 10px;
  }
  .blog .post-item {
    padding: 6px 0 2px0;
    margin-top: 4px !important;
  }
  .blog .post-item img {
    display: none;
  }
  .blog .post-item h4 {
    margin-left: 4px !important;
    margin: 0 0 0 4px;
  }
  .blog .post-item time {
    margin-left: 4px !important;
  }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0 0 80px 0;
}

.why-us .img-bg {
  min-height: 500px;
  background-size: cover;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.why-us .slides {
  background-color: #e7f2f9;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}

.why-us h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-secondary);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #132e51;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #254a7a;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info div {
  margin: 14px;
}

#footer .footer-top .footer-info div span{
  color: rgb(219, 219, 219);
}
#footer .footer-top .footer-info a {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #aeaeae;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #aeaeae;
}
#footer .footer-top .footer-info a:hover {
  color: var(--accent-1)
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--accent-1);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  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: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 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.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: white;
}

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

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #d9232d;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #df3740;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  font-weight: 600;
}

#footer .credits a:hover {
  color: white;
}

@media (max-width: 926px) {
  #footer .footer-top .footer-links ul li {
    padding: 4px 0;
  }
}
@media (max-width: 576px) {
#footer .footer-top
{
  padding: 30px 0 10px 0;}
}
/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog-main .posts-list .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border-radius: 6px;
  background: white;
}

.blog-main .posts-list .post-img img {
  transition: 0.5s;
}

.blog-main .posts-list .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-main .posts-list .post-content {
  padding: 30px;
}

.blog-main .posts-list .post-title {
  font-size: 20px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-main .posts-list .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.blog-main .posts-list .meta span {
  font-size: 15px;
  color: #838893;
}

.blog-main .posts-list p {
  margin-top: 20px;
}

.blog-main .posts-list hr {
  color: #888;
  margin-bottom: 20px;
}

.blog-main .posts-list .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.blog-main .posts-list .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-main .posts-list .post-item:hover .post-title,
.blog-main .posts-list .post-item:hover .readmore {
  color: var(--color-primary);
}

.blog-main .posts-list .post-item:hover .post-img img {
  transform: scale(1.1);
}
.blog-main .post-img img{
  min-width: 100%;
  max-height: 260px;
}
.blog-main .post-img .post-date {
  background: rgba(53, 67, 174, 0.4);
  border-top-left-radius: 10px;
}
.news-list-tags {
  display: none;
}
.news-list-tags p{
  display: inline-block;
  float: right;
  margin: 2px;
  padding: 2px 8px;
  font-size: 0.8em;
  border: solid 1px rgb(222, 222, 222);
  border-radius: 4px;
}

/* .ex-tags::before {
  content: 'ТЕГИ';
  color: rgb(201, 201, 201);
} */

.ex-tags a {
  display: inline-block;
  margin: 2px;
  padding: 4px 8px;
  font-size: 0.8em;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  color: #1b72ba;
  background: #e7f2f9;
}
.ex-tags a:hover {
  color: var(--color2);
  background: var(--backgr-1);
}

.ex-tags a i{
  font-style: italic;
}
.tag-div p {
  color: #96a2af;
  font-size: 14px;
  padding: 4px 14px;
  margin: 0 6px 6px 0;
  display: inline-block;
  transition: 0.3s;
  border: solid 1px rgb(222, 222, 222);
  border-radius: 4px;
}

.tag-active {
  color: var(--backgr-2) !important;
  border: solid 1px var(--backgr-2) !important;
}
.glowIn {
	color: var(--color-primary);
  }
  .glowIn span {
	animation: glow-in 0.8s both;
  }
  @keyframes glow-in {
    from {
      opacity: 0;
    }
    65% {
      opacity: 1;
      text-shadow: 0 0 25px white;
    }
    75% {
      opacity: 0.6;
    }
    to {
      opacity: 1;
    }
    }