/*==================================
* Author        : "ThemeSine"
* Template Name : Listrace  HTML Template
* Version       : 1.0
==================================== */

/*==================================
font-family: 'Roboto', sans-serif;
==================================== */


/*=========== TABLE OF CONTENTS ===========
1.  General css (Reset code)
2.  Header-top
3.  Top-area
4.  Welcome-hero
5.  List-topics
6.  Works  
7.  Explore
8.  Reviews
9.  Counter
10. Blog
11. Subscribe
12. Footer
==========================================*/

/*-------------------------------------
		1.General css (Reset code)
--------------------------------------*/
*{
    padding: 0;
    margin: 0;

	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	
	font-family: 'Roboto', sans-serif;
	/*font-size:14px;
    line-height: 1.8;
	
	color:#767f86;
	*/
	--color-blue1: #2189da;
	
	--color-gray1:#343a3f;
	--color-gray2: #dde0e4;
	--card-img-max-height:280px;
	
	color:var(--color-gray1);
}


/* CSS */
html, body {
  height: 100%;
  /*width: 100%;*/
} 
 
 body{
    margin:0;
	overflow-x:hidden;
}

iframe { 
    height: 100vh; /* Viewport-relative units */
    width: 83%;
    border:none; 
    padding:0;
}



a  {
 text-decoration:none;	
 color: var(--color-gray1);
}

a:hover {
 text-decoration:none;
 color: white;
}

h1,h2,h3,h4,h5,h6 
{ 
	margin: 0;
	
    /*font-weight: 500;*/
}
p {
	margin: 0;
    line-height: 1.8;
}

img{
    border:none;max-width:100%; height:auto;
}

ul{ 
    margin: 0;
    /*list-style: none;*/
    display:inline-block;
}
ul li {
	/*list-style: none;*/
	padding:0;
}

select,input,textarea,button{
    box-shadow:none;
	outline:0!important;
}

button {
    background: transparent;
	border: 0;
}



.navbar-nav  .dropdown-menu {
	border: 0;
}
.navbar-nav a:hover {
	background-color:var(--color-blue1);
	color:white;
}
.navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
	display:block;
}


a.btn-link{
    display:inline-block;
    text-decoration : none;
    background-color : #2189DA;
    color:white;
    padding: 5px 15px 5px 15px;
}
a.btn-link:hover{
     display:inline-block;
      background-color : #343a3f;
     color:white;
    text-decoration: none;
     padding: 5px 15px 5px 15px;
}

.divide{
	border-left:1px solid var(--color-gray2);
	display:inline-block;
	margin:0 5px 0 5px;
	
	content:"";
}

.explore-content .card-title {
	
	min-height:60px;
}
[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.3s ease; 
  -moz-transition: opacity 0.3s 0.3s ease; 
  -o-transition: opacity 0.3s 0.3s ease; 
  transition: opacity 0.3s 0.3s ease; 
  opacity: 0;
}

/* section-header */
.section-header{
    position: relative;
    text-align: center;
}
.section-header h2{
    color: #505866;
    font-size:24px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1.3px;
}
.section-header h2 span{}
.section-header p{
    font-size:16px;
}
/* section-header */
.fix{position: relative;clear: both;}
/*=============Style css=========*/


/*-------------------------------------
        2. Header-top
--------------------------------------*/

/*-------------------------------------
        3. Top-area
--------------------------------------*/
.text-blue1{
	color:var(--color-blue1);
	
}

/*.menu-ui-design*/
.menu-ui-design{
    overflow-y:scroll;
    height: 350px;
}
.menu-ui-design::-webkit-scrollbar {
    width:5px;
}
.menu-ui-design::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 8px #000;
}
.menu-ui-design::-webkit-scrollbar-thumb {
  background-color: #2189da;
}
/*.menu-ui-design*/

/*.navbar-toggle */
/* nav.navbar.bootsnav .navbar-toggle {
    position: relative;
    background-color: transparent;
    border: 1px solid #2189da;
    padding: 10px;
    top: 0;
}
nav.navbar.bootsnav .navbar-toggle i{
    color: #2189da;
} */
/*.navbar-toggle */

/*-------------------------------------
        4.  Welcome-hero
--------------------------------------*/
.welcome-hero {
	top:70px;
    position: relative;
    background:url(../images/welcome-hero/banner.jpg) no-repeat;
    background-position:center;
    background-size:cover;
    text-align: center;
    height:300px;
    z-index: 1;
}
.welcome-hero:before{
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(65,73,89,.65);
    z-index: -1;
}
.welcome-hero-txt { padding-top: 30px;}

.welcome-hero-txt h1 {
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1.4px;
	font-weight:bold;
}

/*-------------------------------------
        5. List-topuics
--------------------------------------*/
.list-topics-content {
    position: relative;
    top:15px;
    z-index: 1;
}
.list-topics-content > .card {
	
	
}
.list-topics-content .card-group > .card + .card

.single-list-topics-content:not(:last-child){
    margin-right: 20px;
}

.single-list-topics-content{
	align-items: center;
    justify-content: center;

    height: 100px;
    background:#fff;
    border-radius: 3px;
	border:3px solid white;
   
    box-shadow: 0 0 10px rgba(71,71,71,.2);
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}

.single-list-topics-content:hover{
    color: #fff;
    background:#2189da;
    box-shadow: 0 5px 10px rgba(71,71,71,.6);
}

/*-------------------------------------
        6. Works 
--------------------------------------*/
.works{padding: 0 0 90px;}
.works-content {margin-top: 73px;}

.single-how-works{
    text-align: center;
    padding:50px 42px;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(71,71,71,.2);
    margin-bottom: 30px;
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}

.single-how-works-icon {
    display: inline-block;
    color: #50616c;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #eef2f6;
    border-radius: 50%;
}
.single-how-works h2 a {
    font-size:  18px;
    margin: 35px 0 20px;
}
.single-how-works h2 a span {

}
.single-how-works p {
    margin-bottom: 25px;
}

.single-how-works-icon [class^="flaticon-"]:before,
.single-how-works-icon [class*=" flaticon-"]:before,
.single-how-works-icon [class^="flaticon-"]:after,
.single-how-works-icon [class*=" flaticon-"]:after {
    font-size: 35px;
}
.single-how-works:hover .single-how-works-icon [class^="flaticon-"]:before,
.single-how-works:hover .single-how-works-icon [class*=" flaticon-"]:before,
.single-how-works:hover .single-how-works-icon [class^="flaticon-"]:after,
.single-how-works:hover .single-how-works-icon [class*=" flaticon-"]:after {
    color:#2189da;
}

.single-how-works:hover h2 a,
.single-how-works:hover p{color: #fff;}
.single-how-works:hover .single-how-works-icon{
    background: #fff;
}
.single-how-works:hover .welcome-hero-btn.how-work-btn{
    background: #fff;color: #2189da;
}

.single-how-works:hover{
    box-shadow: 0 0 10px rgba(71,71,71,.4);background: #2189da;
}

main{
	padding:60px 0 30px;
    
}

.hover1:hover{
	 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-transition: .3s linear; 
    -moz-transition:.3s linear; 
    -ms-transition:.3s linear; 
    -o-transition:.3s linear;
    transition: .3s linear;
}
/*-------------------------------------
        7. Explore
--------------------------------------*/

.explore-content{margin:25px 0 50px 0;}

.explore-content .card{
    background: #fff;
    border: 1px solid #edeff1;
    border-radius: 3px;
	margin-right:10px;
}
.explore-content .card-img-top {position:relative;overflow: hidden;}
.explore-content .card-img-top:before  {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(162,172,177,.2);
}
.explore-content .card-img-top  {
    height: var(--card-img-max-height);
}
.explore-content .card-img-overlay .logo{
	max-height:55px;
 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
 position:relative;right:-10px;
}
.explore-content .card-img-overlay img{
	max-height:45px;
	margin:5px;
}
.explore-content .card-img-overlay{
	color:white;
	padding:0;
}

.explore-content .card:hover{
    opacity:1;
    visibility:visible;
    bottom:0px
}

.explore-content .explore-price {
	color: #f63138;
	}
.explore-content .card-text {
	padding: 0 0 0 20px;
	border-left: 5px solid var(--color-gray2);
	}
	

/*-------------------------------------
        8. Reviews
--------------------------------------*/
.reviews{padding:117px 0 75px;}
.reviews-content {margin-top:36px;}

/*single-testimonial-box */
.single-testimonial-box  {
    padding: 50px 30px;
    box-shadow: 0 0px 5px rgba(71,71,71,.2); 
    overflow-x:hidden;
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.single-testimonial-box:hover{box-shadow:0 10px 20px rgba(21,19,19,.2);}
.slick-current .single-testimonial-box{box-shadow:0 10px 20px rgba(21,19,19,.2);}
/*testimonial-description*/
.single-testimonial-box{
    width: 404px;
    background:#fff;
}
/* testimonial-info */
.testimonial-info {
    display: flex;
    align-items: center;
}
.testimonial-img {
    position: relative;
    top: 11px;
    margin-right: 5px;
    border-radius:50%;
    -webkit-transition: .3s; 
    -moz-transition:.3s; 
    -ms-transition:.3s; 
    -o-transition:.3s;
    transition: .3s;
}
.testimonial-person {
    margin-left: 15px;
    margin-top: 11px;
}
.testimonial-person h2 {
    color: #505866;
    font-size: 18px;
}
.testimonial-person h4 {
    color: #a2a5ab;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}
.testimonial-person-star i {
    color: #ffda2b;
    margin: 9px 4px 0 0;
}/* testimonial-info */


/* testimonial-comment */
.testimonial-comment {
    margin-top: 18px;
}
.testimonial-comment p{
    color: #8d939e;
    font-size: 14px;
    font-weight: 300;
}/* testimonial-comment */


/*.slick-slide*/
.slick-initialized .slick-slide {
    display: block;
    padding: 40px 0;
}
.slick-slide.slick-cloned {outline: 0!important;}
.slick-slide {
  margin: 0 10px;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .5;
}
.slick-active {
  opacity: .5;
}
.slick-current {
  opacity: 1;
}
/*.slick-slide*/



/*-------------------------------------
        11. Subscribe
--------------------------------------*/
.subscription{
    background: #f8fafb;
    padding:150px 0;
}
/*subscribe-title*/
.subscribe-title {margin-bottom: 52px;}

.subscribe-title h2{
    font-size:24px;
    font-weight: 500;

}
.subscribe-title p{
    color:#7b8088;
    font-size:16px;
    font-weight: 500;
    margin-top: 28px;
}/*subscribe-title*/


/*custom-input-group*/
.subscription-input-group {
    position: relative;
    text-align: center;
    max-width: 630px;
    margin:0 auto;
}

.subscription-input-group .subscription-input-form{
    display: inline-block;
    width: 630px;
    height: 60px;
    padding-left:30px;
    font-size: 16px;
    color: #a5adb3;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    border:1px solid #fff;
    box-shadow: 0 0 10px rgba(21,19,19,.1);
    -webkit-transition:0.3s linear;
    -moz-transition:0.3s linear;
    -o-transition:0.3s linear;
    transition:0.3s linear;
}
.subscription-input-group:hover .subscription-input-form{
    box-shadow: 0 5px 20px rgba(21,19,19,.4);
}
/*custom-input-group*/

/*appsLand-btn*/
.appsLand-btn 
{
    position: absolute;
    top: 0;
    right: 0;
    background: #2189da;
    display: inline-block;
    width: 180px;
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    border-top-right-radius:3px;
    border-bottom-right-radius:3px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition:0.3s ease-in-out;
    -moz-transition:0.3s ease-in-out;
    -o-transition:0.3s ease-in-out;
    transition:0.3s ease-in-out;
}

.appsLand-btn:hover, 
.appsLand-btn:focus, 
.appsLand-btn:active {
    text-decoration: none;
    outline: none;
}
.appsLand-btn:hover {
    box-shadow:0 5px 10px rgba(71,71,71,.4);
    background: #f43032;
}
/*appsLand-btn*/

/*-------------------------------------
        12. Footer
--------------------------------------*/
.footer-menu {padding: 0;}
.footer-menu .navbar-header{padding:0;}
.footer-menu .navbar-header a.navbar-brand,
.footer-menu.footer-menu .navbar-header a.navbar-brand:hover,
.footer-menu .navbar-header a.navbar-brand:focus{
    padding:0;
    height: 0;
}
.footer-menu ul.footer-menu-item{text-align: right;}
.footer-menu ul.footer-menu-item li{display: inline-block;}
.footer-menu ul.footer-menu-item li a {
    color: #859098;
    font-size: 14px;
    padding-left: 40px;
    -webkit-transition:0.3s linear;
    -moz-transition:0.3s linear;
    -o-transition:0.3s linear;
    transition:0.3s linear;
}
.footer-menu ul.footer-menu-item li a:hover
{color: #f43032;}

.hm-footer-copyright {
    padding: 20px 0;
    border-top: 1px solid #e1e5eb;
}

.hm-footer-copyright p,
.hm-footer-copyright a 
{
    color: #afb4bf;
    font-size: 12px;
    font-weight: 400;
}
.footer-social {text-align: right;}
.footer-social .fa-phone:before 
{
    position: relative;
    top: 2px;
}
.footer-social a,
.footer-social span 
{
    display: inline-block;
    color: #afb4bf;
    font-size: 14px;

}
.footer-social a{
    width: 35px;
    height: 35px;
    line-height: 35px;
   
    text-align: center;

}
.footer-social span {margin-right:15px;margin-left: 0;color: #a5adb3;}
.footer-social span:hover{color: #2189da;}
.footer-social a:hover {background:#2189da;color: #fff;}

/*===============================
    Scroll Top
===============================*/
#scroll-Top  .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    background:#2189da;
	border:1px solid #2189da;
	border-radius:50%;
	-webkit-transition: .5s; 
	-moz-transition:.5s; 
	-ms-transition:.5s; 
	-o-transition:.5s;
    transition: .5s;
	z-index: 2;
}
#scroll-Top  .return-to-top:hover {
    background:#f43032;
	border:1px solid #2189da;
}

#scroll-Top  .return-to-top i{
    position:relative;
    bottom:0;

}

#scroll-Top  .return-to-top i{
    position: relative;
    animation-name: example;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration:1s;
}
@keyframes example {
    0%   {bottom:0;}
    100%  {bottom:7px;}
}
/*========================Thank you=================