

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  
}

a {
  color: #47b2e4;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #47b2e4;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #209dd8;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
 height: 70px;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 25px;
  margin: 0;
  padding: 20px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

#Path_3_h {
  fill: url(#Path_3_h);
  stroke: rgba(112,112,112,1);
  stroke-width: 1px;
  stroke-linejoin: miter;
  stroke-linecap: butt;
  stroke-miterlimit: 4;
  shape-rendering: auto;
}
.Path_3_h {
  overflow: visible;
  position: absolute;
  /* width: 1349.853px;
  height: 441.891px; */
  left: 0.147px;
  top: -15px;
  transform: matrix(1,0,0,1,0,0);
}









/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
/* NAVIGATION */

.nav-menu ul {
  margin: 0;
  padding: 10px;
  list-style: none;
  margin-left:20%;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  border-bottom: 3px solid transparent;
  
  width: 0%;
  content: '.';
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #47b2e4;
  border-bottom: 3px solid red;
  width:100%;
   /* background-color: red; 
   line-height:40px; */
  
} 



/* Get Login Button */
/* .btn-login {
  margin-right: -10%;
  margin-top: 15px;
  color: #fff;
  padding: 3px 25px 7px 25px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  border: 1px solid #47b2e4;
  font-weight:400;
  height: 30px;
  
} */
.nav-menu .get-login a {
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #3498db;
  width: 100%;
  color: rgb(255, 255, 255);
  margin-top: -10px;
  padding: 10px 20px;
  margin-left:-10%;
 
}

.nav-menu .get-login a:hover {
  background: #39a85b;
  color: #fff;
}




@media (max-width: 768px) {
  .btn-login {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
    width:80px;
   
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

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

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #37517e;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #47b2e4;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #E7EEEF;
}

#hero .container {
 margin-top:-30px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
  color: #37517e;
}

#hero h2 {
  color: rgba(40, 58, 90, 0.9);
  margin-bottom: 50px;
  font-size:38px;
}
#hero p {
  font-size:16px;
  margin-top:-10px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  /* border-radius: 50px; */
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.5s;
  margin: 20px 0 0 0;
  color: #fff;
  background:red;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 0 8px 40px;
  transition: 0.5s;
  margin: 20px 0 0 25px;
  color: #fff;
  position: relative;
  background:red;
  width: 150px;
  border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

#hero .btn-watch-video i {
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 2px;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 70%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 8px 24px 11px 24px;
  }
  #hero .btn-watch-video {
    font-size: 16px;
    padding: 8px 0 8px 40px;
    margin-left: 20px;
  }
  #hero .btn-watch-video i {
    font-size: 32px;
    top: 7px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# counts
--------------------------------------------------------------*/
.counts {
  padding: 12px 0;
  text-align: center;
}

.counts img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 30px 0;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
}

.counts img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}



.counts  .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #000000;
  margin-left:30px;
  margin-top: 30px;
}

.counts .count-box p {
 padding-top:10px;
  margin-left:-100px;
  margin-top:30px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #484848;
  font-size: 20px;
}

.counts  .count-box i {
  display: block;
  font-size: 76px;
  color: #3498db;
  float: left;
}


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

.section-bg {
  /* background-color: #f3f5fa; */
  background: #E7EEEF;
}


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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: rgba(40, 58, 90, 0.9);
}
.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

 .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 3px;
  background: #ee2020;
  bottom: 0;
  left: calc(47% - 20px);
}

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

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
.cliens {
  padding: 12px 0;
  text-align: center;
}

.cliens img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
}

.cliens img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cliens img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#Path_2 {
  fill: rgba(232,231,243,1);
}
.Path_2 {
  overflow: visible;
  position: absolute;
  /* width: 410.681px; */
  height: 400.17px;
  left: 0px;
  /* top: 550.851px; */
  transform: matrix(1,0,0,1,0,0);
}
#about {
  width: 100%;
  height: 90vh;
  /* background: #d3e9ec; */
  background-color: #f3f5fa;
}
.about .content h1{
  font-weight: 600;
  font-size: 42px;
  color: #37517e;
  /* margin-top: 50px; */
}
.about .content h2{
  font-weight: 600;
  font-size: 38px;
  color: #37517e;
  margin-top: 50px;
}

.about .content .btn-learn-more {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: rgb(15, 14, 14);
border-style: solid;
border-color: #e74c3c;
margin-left:100px;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}
.about .about-img{
  text-align: center;
}
.about .about-img img {
  width:85%;
  margin-top: -50px;
}


@media (max-width: 991px) {
  #about {
    height: 100vh;
    text-align: center;

  }
 
  #about .about-img {
    text-align: center;
  }
  #about .about-img img {
    width: 60%;
    margin-left: 30px;
  }
}

@media (max-width: 768px) {
  #about h1 {
    font-size: 28px;
    line-height: 36px;
    color: #37517e;
  }
  #about h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    color: #37517e;
  }
  #about .about-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #about .about-img img {
    width: 70%;
  }
  #about .btn-get-started {
    font-size: 16px;
    padding: 8px 24px 11px 24px;
  }
}

@media (max-width: 375px) {
  #about{
height:100vh;

  }

  .Path_2 {
    overflow: visible;
    position: absolute;
    top: 720.851px;
    width: 210.681px;
    height: 350.17px;
    left:-50px;
    transform: matrix(1,0,0,1,0,0);
  opacity: 0.5;
  }
  #about .about-img img {
    width: 60%;
  }
  
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
 /* background-color:#E7EEEF; */
 background-color: #f3f5fa;
}


.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(97, 130, 219, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  background:red;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #d5e3ec;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  opacity: 0.4;
}

.services .icon {
  margin-left: 20px;
  padding-top: 10px;
  display: block;
  text-align: center;
  border-radius: auto;
  width: 180px;
  height: 180px;
  /* background: #3498db; */
  transition: all 0.3s ease-in-out;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}
/* .services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
} */

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

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

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

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

.services .icon-box:hover .icon {
  /* background: #3498db; */
  opacity: 0.4; 
}
.services .btn-view-more {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.5s;
  margin-top:10px;
  margin-left: 30px;
  color: #fff;
  background: red;
   box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.services .btn-view-more:hover {
  background: #209dd8;
}



/*--------------------------------------------
   simple step
   ------------------------------------------*/



   .simple-step .icon-box {
 
    position: relative;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(97, 130, 219, 0.12);
    transition: all 0.3s ease-in-out;
    margin-left:100px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    z-index: 1;
  }
  .simple-step .box{
  
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(97, 130, 219, 0.12);
    transition: all 0.3s ease-in-out;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    z-index: 1;
    margin:90px;
    margin-top:10px;
    opacity:0.4; 
  
  
  }
  
  .simple-step .box:hover{
  
    background: rgb(207, 234, 243);
    box-shadow: 0 0 29px 0 rgba(97, 130, 219, 0.12);
    transition: all 0.3s ease-in-out;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    z-index: 1;
    margin:90px;
    margin-top:10px;
    
  
  
  }
  
  
  .simple-step .title a {
    color: #111;
      margin-left:10px; 
     font-size: 18px; 
     float:right;
  }
  
  .simple-step .icon {
   padding-top: 30px; 
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    /* background: #8fa8cd; */
    transition: all 0.3s;
    /* z-index: -1; */
    
  }
  
  .simple-step .icon i {
    font-size: 36px;
    line-height: 1;
    color: #3ba8cd;
    
    
  }
  
  .simple-step .icon:hover i {
    font-size: 36px;
    line-height: 1;
    color: hsl(357, 65%, 62%);
    
    
  }
  @media screen and (max-width: 700px) {
   

  .simple-step .box {
  margin-left:30%;;

      
    }

}


  

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

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

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 50px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.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: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  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 p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: red !important;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  /* background: #37517e; */
  /* background: #E7EEEF; */
}

#footer .footer-newsletter {
  padding: 50px 0;
  /* background: #f3f5fa; */
  text-align: center;
  font-size: 15px;
  color: #444444;
  margin-top: 70px;
}

#footer .footer-newsletter h4 {
  font-size: 32px;
  /* margin-left: -250px; */
  line-height: 1;
  font-weight: 600;
  color: #37517e;
  float: left;
}
#footer .footer-newsletter p {
  font-size: 18px;
  float: left;
 margin-left: 20px;
  line-height: 1;
  font-weight: 500;
  color: #2c2c2c;
}

#footer .footer-newsletter .newsletter-box{
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  /* margin: 30px 0px; */
  margin-top: -10px;
  left: -20px;
  /* min-height: 120px;
  min-width: 700px; */
  box-shadow: 0px 24px 24px rgb(178, 178, 180);
  position: relative;
  background: #C6E2E6;
  border-radius: 50px;
  z-index: 1;
}

.join-newsletter-btn{
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  margin-top:50px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: red;
   box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.join-newsletter-btn:hover {
  background: #e90c0c;
  opacity: 0.7;
  color:#fff
}

@media (max-width: 767px) {
  #footer .footer-newsletter h4 {
    font-size:28;
    font-weight: 400;
    color: #37517e;
  }
  #footer .footer-newsletter p {
    font-size: 16px;
    float: left;
    margin-left: 20px;
    
  }
  .join-newsletter-btn{
margin-top: 30px;



  }
}
#ftr {
  fill: rgba(198,226,230,1);
}
.ftr {
  overflow: visible;
  position: sticky;
  /* width: 1351.436px;
  height: 656.18px; */
  left: 0.159px;
  /* top: 3300.889px; */
  transform: matrix(1,0,0,1,0,0);
  z-index: -1;
  margin-top: -730.558px;
  
}


/*--------------------------------------------------------------
# Footer subscribe
--------------------------------------------------------------*/

#footer .footer-top {
  padding: 60px 0 30px 0;
  /* background: #fff; */
  
}



#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;

}


#footer .footer-top .footer-links p{
 font-size: 18px;
 color:#000000;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer-links {
  color: #aaa;
}

.footer-links i {
  color: #ee1515;
  font-size: 20px;
}

.footer-links .media {
  margin-bottom: 20px;
  color: #000;
}

.footer-links {
  color: #aaa;
}

.footer-links i {
  color: #ee1515;
  /* font-size: 18px; */
}

.footer-links .media {
  margin-bottom: 15px;
}



/*----------------------------------------------------
 footer  useful links  footer-useful-links
-------------------------------------------------*/


#footer .footer-top .footer-useful-links  h4 {
  list-style: none;
  padding: 0;
  margin-left: 30px;
}


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

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

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

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

#footer .footer-top .footer-useful-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 16px;
}

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

/*---------------------------------------------
recent post 
-----------------------------------*/
.recent-post-widget .rcnt-img {
  width: 68px;
  height: 68px;
  border-radius: 4px;
  overflow: hidden;
  padding: 5px;
}

.recent-post-widget .rcnt-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recent-post-widget a {
  color: #37517e;
}

.recent-post-widget p {
  font-size: 13px;
  margin-top: -50xp;
}

.recent-post-widget  {
  margin-left:-30px;
 
}

.recent-post-widget i:last-of-type {
  margin-left: 15px;
}

/*-----------------------------------------------------------
social link
-----------------------------------------------*/



#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background-color: #444;
  z-index: 1;
  color:#47b2e4;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  margin-top:-10px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

#footer .footer-top .subscribe-widget h4 {
margin-top: 50px;
font-size: 20px;

}

#footer .footer-top .subscribe-widget p {

  font-size: 16px;
  
  }
  
.subscribe-widget form {
  margin-bottom: 10px;
}

.subscribe-widget input {
  font-size: 14px;
  padding: 0px 10px;
  background-color: #fff;
  border: none;
  line-height: 0;
  position: relative;
  z-index: 1;
  height:50px;
}

.subscribe-widget input:focus {
  outline: none;
  box-shadow: none;
}

.subscribe-widget button {
  background: #ee1515;
  border: none;
  padding: 9px 14px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-left: -10px;
  position: relative;
  z-index: 5;
  height:50px;
}

.subscribe-widget button i {
  color: #fff;
}


/*-----------------------------------------
botton
-----------------------------------------------*/
#sticky-footer {
  flex-shrink: none;
}
.foot-note {
  padding: 35px 0;
  /* background-color: #f07f72; */
  background: rgba(40, 58, 90, 0.9);
  color: #ffffff;
  z-index: 1;
}

.foot-note a {
  color: #26264b;
}

.foot-note a:last-child {
  margin-left: 30px;
}


@media(max-width:357px){
#footer .footer-top{
/*background-color: #f3f5fa;*/
z-index:-1;

}
}
@media(max-width:1085px){
  .ftr{
  
    margin-top: -500.558px;
  }
  
  }
  @media(max-width:575px){
    .ftr{
    
      margin-top:-50%;
    }
    
    }
  @media(max-width:375px){
    .ftr{
    
      margin-top: -200.558px;
    }
    
    }

