/*-----------------------------------------------------------------------------------

    Template Name: VenRider
    Template URI:
    Description: This is html5 template
    Author:
    Author URI:
    Version: 1.0
-----------------------------------------------------------------------------------
    CSS INDEX
    """""""""""""""""""""""""""
	1.default-css here
	2.header-area start
	3.about-area start
	4.gallare-area start
	5.team-area start
	6.event-area start
	7.shop-area start
	8.blog-area start
	9.footer-area start
	10.responsive menu
	11.contact-area start
-----------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------
COLOUR SWATCH

Main blue	#afd4ff		RGB: 175  212  255

Lighter		#c9eeff		RGB: 201  238  255
Lightest	#e2ffff		RGB: 226  255  255
Dark		#96BBE6		RGB: 150  187  230
Darker		#7CA1CC		RGB: 124  161  204
Darkest		#6388B3		RGB: 99  136  179

Shadow		#00224D		RGB: 0  34  77
/*========================================================================================================
                                        default-css here
 ========================================================================================================*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');
@import url('https://fonts.googleapis.com/css?family=Merriweather&display=swap');
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 26px;
    color: #696969;
    font-size: 16px;
    font-weight: 400;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

img {
    max-width: 100%;
    height: auto
}

.fix {
    overflow: hidden
}

p {
    margin: 0px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    margin-top: 0px;
    color: #313131;
    font-family: 'Merriweather', sans-serif;
}

input:focus,
select:focus {
    outline: none;
}

input,
button {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

button {
    cursor: pointer;
}

a {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    text-decoration: none;
    color: #026ce3;
}

a:active,
a:hover,
a:focus {
    outline: none;
    text-decoration: underline;
}

button:focus {
    outline: none;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

:before,
:after {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

div {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

.black-opacity {
    position: relative;
    z-index: 9;
}

.black-opacity:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #242424;
    content: "";
    opacity: .65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.ptb-120 {
    padding: 120px 0;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.bg-1 {
    background: #fafcff;
}

.bg-fff {
    background: #fff;
}

a#scrollUp {
    position: fixed;
    right: 10px;
    bottom: 20px;
    height: 45px;
    width: 45px;
    background: #00224D;
    text-align: center;
    line-height: 45px;
    color: #fff;
    font-size: 12px;
    border:2px solid #e2ffff;
}
a#scrollUp:hover {
    background: #96BBE6 ;
    border-color: #fff;
}
.flex-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}
/*-------header-area start-------*/
.header-area{
    font-family: 'Merriweather', sans-serif;
    left: 0;
    position: absolute;
    top: 85px;
    width: 100%;
    z-index: 1;
}
.mainmenu {
    // background: #107df4;
	background: rgb(175,212,209);
	background: linear-gradient(180deg, rgba(201,238,255,1) 0%, rgba(124,161,204,1) 100%);	
    display: flex;
    justify-content: space-between;
    padding: 0px 25px;
    border-radius: 5px;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    top: -48px;
}
.mainmenu ul li{
    margin: 0px 15px;
    position: relative;
}
.mainmenu ul li> ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 220px;
    background: rgba(113,179,173,.90);
	
	background: linear-gradient(180deg, rgba(124,161,204,1) 100%, rgba(201,238,255,1) 100%);
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform-origin: top;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    z-index: 999;
}
.mainmenu ul li:hover> ul{
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
}
.mainmenu ul li> ul li {
    margin: 0px;
}
.mainmenu ul li> ul li a{
    padding: 5px 0px;
    text-transform: capitalize;
}
.mainmenu ul li> ul li:hover a{
    text-shadow: 0px 0px 4px #00224D;
    padding-left: 5px;
}
.mainmenu ul li> ul li a:before{
    display: none;
}
.mainmenu ul li:first-child{
    margin-left: 0;
}
.mainmenu ul li:last-child{
    margin-right: 0;
}
.mainmenu ul li a{
    display: block;
    padding: 35px 0px;
    text-transform: uppercase;
    color: #fff;
	text-shadow: 0px 0px 4px #00224D;
    position: relative;
}
.mainmenu ul li a:before{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background: #fff;
    content: "";
    width: 0;
}
.mainmenu ul li:hover a:before,
.mainmenu ul li.active a:before{
    width: 100%;
}
/*-----slider-area start-----*/
.slider-area{
    background: url(../images/bg/header-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 270px 0 230px 0;
    position: relative;
    z-index: 0;
}
.slider-area:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3,49,96,.20);
    content: '';
    z-index: -1;

}
.slider-area .header-bottom-shape{
    position: absolute;
    bottom: 0;
    left: 0;
}
.slider-content h2{
    font-size: 50px;
    color: #fff;
    text-transform: uppercase;
    line-height: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0px 0px 4px #000;
	
}
.slider-content p {
    color: #eee;
    font-weight: 400;
    padding: 0px 110px;
    font-size: 20px;
    line-height: 32px;
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 35px;

}
.slider-content ul{
    margin-bottom: 50px;
}
.slider-content ul li a{
    display: inline-block;
    padding: 20px 60px;
	font-family: Roboto, sans-serif;
    font-size: 20px;
	font-weight: bold;
    color: #fff;
	background: linear-gradient(180deg, rgba(201,238,255,1) 0%, rgba(124,161,204,1) 100%);
	border: 2px solid #7CA1CC;
    border-radius: 5px;
    font-weight: 500;
    text-shadow: 0px 0px 4px #00224D;
}
.slider-content ul li a:hover{
    color: #026ce3;
    background: #fff;
	text-shadow: none;
}


/* scrolldown */

.scrl_me_down a {
    display: block;
    height: 40px;
    width: 22px;
    border-radius: 15px;
    -webkit-transition: all 0.5s ease 1.9s;
    -o-transition: all 0.5s ease 1.9s;
    border:2px solid #fff;
    transition: all 0.5s ease 1.9s;
    position: relative;
    margin: 0 auto;
}

.scrl_me_down a:before {
    position: absolute;
    left: 6px;
    top: 8px;
    height: 18px;
    width: 7px;
    background: #fff;
    content: "";
    -webkit-animation: scrooldown 1000ms linear 0s infinite;
    -o-animation: scrooldown 1000ms linear 0s infinite;
    animation: scrooldown 1000ms linear 0s infinite;
    border-radius: 5px;
}

@keyframes scrooldown {
    0% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    50% {
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        -o-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@-webkit-keyframes scrooldown {
    0% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    50% {
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        -o-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

/*-----slider-area end-----*/



/*-----content-area start-----*/


.content-area{
    padding: 60px 0 60px 0;
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(226,255,255,1) 100%); 
	border-bottom: 2px solid #7CA1CC;
}
.content-area .section-title{
    background-color: transparent;
}

.content-area h2 {
	font-size: 28px;
	margin: 0;
	}
.content-area h3 {
	font-size: 24px;
	margin: 1em 0 0 0;
	}
.content-area h4 {
	font-size: 20px;
	margin: 1em 0 0 0;
	}
	
.content-area a,
.content-area a:link,
.content-area a:visited  {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    color: #6388B3;
	text-decoration: underline;
}
.content-area a:hover,
.content-area a:active {
	color: #00224D;
	text-decoration: none;
}

.content-area ul {
	list-style-type: disc;
	padding: 0 0 0 1em;
	}
	.content-area ul li {
		margin: 0.5em 0;
		}

.content-area table {
	}
	.content-area table tr {
		margin: 0;
		padding: 0;
		}
		.content-area table th {
			background: linear-gradient(180deg, rgba(124,161,204,1) 0%, rgba(0,34,77,1) 100%);
			color: #fff;
			padding: 0.5em;
			text-align: center;
		}
		.content-area table td {
			background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(226,255,255,1) 100%); 
			padding: 0.5em;
			text-align: center;
		}

.content-champions th {
	width: 33%;
	}
.content-records th {
	width: 25%;
	}
	
.section-title{
    margin-bottom: 55px;
}
.section-title h2 {
    display: inline-block;
    padding: 0px 55px;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    position: relative;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.section-title h2:before,
.section-title h2:after{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background: #026ce3;
    content: "";
}
.section-title h2:after{
    left: auto;o
    right: 0px;
}
.section-title h2 span{
    color: #6388B3;
    font-weight: 900;
}

.section-title h2 {
    display: inline-block;
    padding: 0px 55px;
    font-size: 40px;
    color: #6388B3;
    font-weight: 900;
    line-height: 50px;
    position: relative;
    margin-bottom: 15px;
    text-transform: capitalize;
}


.section-title{
    margin-bottom: 55px;
}
.section-title h2 {
    display: inline-block;
    padding: 0px 55px;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    position: relative;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.content-area h1:before, .content-area h2:before,
.content-area h1:after, .content-area h2:after {
	content: " — ";
}
.content-area h1, .content-area h2 {
//   display: inline-block;
    padding: 0px 55px;
    font-size: 40px;
    color: #6388B3;
    font-weight: 900;
    line-height: 50px;
//    position: relative;
    margin-bottom: 15px;
 //   text-transform: capitalize;
	text-align: center;
}

.content-area h3 {
    color: #6388B3;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    margin: 40px 0 20px 0;
}
.content-area p{
    margin-bottom: 20px;
}
.btn-style{
    margin-top: 15px;
}
.readmore-btn {
    display: inline-block;
    border-radius: 5px;
    padding: 15px 45px;
	font-family: Roboto, sans-serif;
    font-size: 18px;
	font-weight: bold;
    color: #fff;
    font-weight: 500;
	background: linear-gradient(180deg, rgba(201,238,255,1) 0%, rgba(124,161,204,1) 100%);
	border: 2px solid #7CA1CC;	
    text-shadow: 0px 0px 4px #00224D;
}
.readmore-btn:hover{
    background: #fff;
	border: 2px solid #7CA1CC;
    color: #7CA1CC;
	color: #fff;
	// text-shadow: none;
	background: linear-gradient(180deg, rgba(124,161,204,1) 0%, rgba(0,34,77,1) 100%);
	
}

/*-----content-area end-----*/


/*-----about-area start-----*/
.about-area{
    padding: 60px 0 60px 0;
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(226,255,255,1) 100%); 
	border-bottom: 2px solid #7CA1CC;
}
.about-area .section-title{
    background-color: transparent;
}
.section-title{
    margin-bottom: 55px;
}
.section-title h2 {
    display: inline-block;
    padding: 0px 55px;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    position: relative;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.section-title h2:before,
.section-title h2:after{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background: #026ce3;
    content: "";
}
.section-title h2:after{
    left: auto;
    right: 0px;
}
.section-title h2 span{
    color: #6388B3;
    font-weight: 900;
}
.about-img{
    position: relative;
    z-index: 9;
    height: 580px;
}
.about-img:before {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 97%;
    // border: 8px solid #026ce3;
    content: "";
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    z-index: -9;
    // outline: 8px solid #026ce3;
    // outline-offset: -80px;
}
.about-img img{
    width: 100%;
}
.about-content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}
.about-content p{
    margin-bottom: 20px;
}
.btn-style{
    margin-top: 15px;
}
.readmore-btn {
    display: inline-block;
    border-radius: 5px;
    padding: 15px 45px;
	font-family: Roboto, sans-serif;
    font-size: 18px;
	font-weight: bold;
    color: #fff;
    font-weight: 500;
	background: linear-gradient(180deg, rgba(201,238,255,1) 0%, rgba(124,161,204,1) 100%);
	border: 2px solid #7CA1CC;	
    text-shadow: 0px 0px 4px #00224D;
}
.readmore-btn:hover{
    background: #fff;
	border: 2px solid #7CA1CC;
    color: #7CA1CC;
	color: #fff;
	// text-shadow: none;
	background: linear-gradient(180deg, rgba(124,161,204,1) 0%, rgba(0,34,77,1) 100%);
	
}
/*-----about-area end-----*/

/*-----gallary-area start-----*/
.gallary-area{
    padding:112px 0 90px 0;
}
.gallary-wrap{
    margin-bottom: 30px;
    position: relative;
    z-index: 9;
    border-radius: 10px;
    overflow: hidden;
}
.gallary-wrap:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #026ce350;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
}
.gallary-wrap:hover:before{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}
.gallary-wrap a{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99;
    font-size: 70px;
    font-weight: 700;
    height: 125px;
    width: 125px;
    border-radius: 50%;
    border:5px solid #fff;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
}
.gallary-wrap:hover a{
    visibility: visible;
    opacity: 1;
}
/*-----gallary-area end-----*/

/*-----team-area start-----*/
.team-area.shop-page{
    padding-bottom: 120px;
}
.team-area{	
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(226,255,255,1) 100%); 
	border-bottom: 2px solid #7CA1CC;
    padding: 60px 0 60px 0;
}
.team-area.team-page{
    padding-bottom: 90px;
}
.team-area.team-page .team-wrap {
    margin-bottom: 80px;
}
.team-wrap{
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
}
.team-wrap img{
    width: 100%;
}
.team-wrap:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    // background: #026ce350;
    content: "";
    visibility: hidden;
    opacity: 0;
}
.team-wrap ul{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    text-align: center;
    width: 100%;
    visibility: hidden;
    opacity: 0;
}
.team-wrap:hover:before,
.team-wrap:hover ul{
    visibility: visible;
    opacity: 1;
}
.team-wrap ul li{
    display: inline-block;
    margin: 0px 10px;
}
.team-wrap ul li a:hover{
    color: #026CE3;
}
.team-wrap ul li a{
    display: block;
    color: #fff;
    font-size: 24px;
    transition: .3s ease-in;
}
.team-content{
    position: absolute;
    left: 10%;
    padding: 25px 0 23px 0;
    background: #fff;
    z-index: 999;
    width: 80%;
    bottom: -50px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgba(3,49,96,.70);
    z-index: 2;
}
.team-content h4{
    font-size: 22px;
    margin-bottom: 0px;
    font-weight: 700;
}
.team-content span{
    display: block;
    font-size: 17px;
    font-style: italic;
}
/*-----team-area end-----*/

/*-----event-area start-----*/
.event-area{
    padding: 110px 0px 90px;
}
.event-wrap{
    margin-bottom: 30px;
}
.event-wrap h3{
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}
.event-wrap p{
    margin-bottom: 15px;
}
.event-img{
    position: relative;
    margin-bottom: 30px;
}
.event-img img{
    width: 100%;
}
.event-content{
    position: absolute;
    left: 5%;
    top: 5%;
    width: 90%;
    height: 90%;
    background: #026ce3;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
}
.event-img:hover .event-content{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    visibility: visible;
    opacity: 1;
}
.event-content h3{
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}
.event-content span{
    display: block;
    margin-bottom: 15px;
    font-size: 15px;
}
.event-content p{
    font-weight: 300;
}
/*-----event-area end-----*/

/*-----shop-area start-----*/
.shop-area{
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(226,255,255,1) 100%); 
	border-bottom: 2px solid #7CA1CC;
    padding: 60px 0px 60px 0px;
}
.shop-area .btn-style{
    margin-top: 10px;
}
.shop-wrap {
	background: #fff;
    position: relative;
    margin-bottom: 30px;
    border:2px solid #b8d9fe;
    padding: 30px 10px;
    border-radius: 10px;
}
.shop-content {
    position: absolute;
    left: 5%;
    top: 5%;
    background: rgba(113,179,173,.70);
    width: 90%;
    height: 90%;
    text-align: center;
    border-radius: 10px;
    visibility: hidden;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
}
.shop-wrap:hover .shop-content{
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
} 
.shop-content ul li{
    display: inline-block;
    margin: 0px 5px;
}
.shop-content ul li a{
	
    background: #026ce3 !important;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff !important;
    display: block;
    width: 100px;
    height: 45px;
    font-weight: 700;
    line-height: 45px;
    text-transform: uppercase;
		text-decoration: none !important;
}
.shop-content ul li a:hover{
    background: #fff !important;
    color: #026ce3 !important;
}
.shop-content ul li a i{
    font-size: 20px;
}
/*-----shop-area end-----*/

/*-----blog-area start-----*/
.blog-area.blog-page{
    padding-top: 120px;
}
.blog-details{
    padding-bottom: 120px !important;
}
.blog-area{
    padding: 112px 0px 90px;
}
.blog-wrap{
    box-shadow: 0px 2px 10px #00000010;
    background: #fafcff;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s ease-in;
}
.blog-wrap:hover{
    box-shadow: 0px 2px 35px #00000010;
}
.blog-wrap .blog-img img{
    transition: .3s ease-in;
}
.blog-wrap:hover .blog-img img{
    filter: grayscale(100%);
}
.blog-content{
    padding: 25px 30px 22px 30px;
}
.blog-content h3 a{
    color: #313131;
    transition: .3s ease-in;
}
.blog-content h3 a:hover{
    color: #026ce3;
}
.blog-content h3{
    line-height: 26px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.blog-content p{
    margin-bottom: 15px;
    font-size: 15px;
}
.blog-btn {
    font-weight: 700;
}
.blog-btn i{
    font-weight: 700;
    margin-left: 3px;
    font-size: 18px;
}
/*-----blog-area end-----*/

/*-----footer-area start-----*/
.footer-area{
    color: #fff;
    // background: #026ce3 url(../images/bg/footer.jpg)no-repeat center center / cover;
	// background: linear-gradient(180deg, rgba(99,136,179,1) 0%, rgba(0,34,77,1) 100%); 
	background: #00224D;
}
.footer-top{
    padding: 100px 0px 52px;
}
.footer-widget {
    margin-bottom: 40px;
}
.footer-widget h2{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-transform: capitalize;
}
.footer-logo img{
    margin-bottom: 25px;
}
.footer-logo p{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #e5e5e5;
}
.footer-menu ul li{
    margin-bottom: 10px;
}
.footer-menu ul li:last-child{
    margin-bottom: 0;
}
.footer-menu ul li a:hover{
    color: #fff;
}
.footer-menu ul li a{
    color: #e5e5e5;
    transition: .3s ease-in;
}
.newsletter p{
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 25px;
    color: #e5e5e5;
}
.newsletter form{
    position: relative;
}
.newsletter input{
    height: 55px;
    width: 100%;
    border: none;
    background: #0563cc;
    border-radius: 30px;
    padding: 0px 120px 0px 30px;
    color: #fff;
}
.newsletter input::placeholder{
    color: #e5e5e5;
    font-size: 15px;
    font-weight: 300;
    opacity: 1;
}
.newsletter button:hover{
    background-color: #121212;
}
.newsletter button{
    position: absolute;
    right: 0;
    top: 5px;
    right: 5px;
    height: 45px;
    border-radius: 30px;
    border: none;
    background: #026ce3;
    color: #fff;
    width: 105px;
    transition: .3s ease-in;
}
.footer-bottom .copyright{
    color: #e5e5e5;
}
.footer-bottom{
    padding: 24px 0px;
    text-align: center;
    border-top: 1px solid #5a9fed;
}
/*-----footer-area end-----*/

/*responsive menu*/
.menu {
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    float: right;
    z-index: 99;
    padding: 8px 0px;
    position: relative;
}

.menu li {
    height: 2px;
    width: 25px;
    background: #fff;
    margin-bottom: 2px;
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
}
.menu.active li.third {
    margin-bottom: 0;
}
.responsive-menu-area {
	font-family: Roboto, sans-serif;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #7CA1CC;
    top: 100%;
    padding: 20px 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform-origin: top;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
}

.responsive-menu-area.active {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.metismenu li {
    margin-bottom: 5px;
	
	line-height: 1.5em;
}

.metismenu li a {
    color: #fff;
    display: block;
}

.metismenu .has-arrow:after {
    right: 0;
}

.metismenu li>ul {
    padding-left: 20px;
}

.breadcrumb-area{
    background: url(../images/bg/1.jpg);
    background-size: cover;
    background-position: center;
    padding: 270px 0 230px 0;
    position: relative;
    z-index: 0;
}

.breadcrumb-area:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3,49,96,.20);
    content: '';
    z-index: -1;

}
.breadcrumb-area.gallery-page{
    padding-bottom: 95px;
}
.breadcrumb-area{
    padding: 321px 0 92px 0;
}
.breadcrumb-area h1 {
    font-size: 3em;
    font-weight: 600;
    margin: 0 0 0 50px;
    color: #fff;
	text-align: center;
	text-shadow: 0 0 20px #000;
	width: 100%;
}
.breadcrumb-area h2{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #fff;
}
.breadcrumb-area ul li{
    display: inline-block;
    color: #f5f2f2;
}
.breadcrumb-area ul li:before{
    content: "/";
    margin: 0px 3px 0px 5px;
}
.breadcrumb-area ul li:first-child:before{
    display: none;
}
.breadcrumb-area ul li a{
    display: block;
    color: #fff;
}
.video-area{
    padding: 112px 0px 120px 0;
}
.vide-wrap{
    position: relative;
}
.vide-wrap a{
    font-size: 100px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    border: 10px solid #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 175px;
    width: 175px;
    text-align: center;
}
.team-menu{
    width: 100%;
    background: #026ce3;
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 20px;
}
.team-menu li{
    width: 100%;
}
.team-menu li a{
    display: block;
    height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    color: #fff;
    border-radius: 5px;
}
.team-menu li a.active{
    background: #1282ff;
}
.widget{
    padding: 36px 30px 32px 30px;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    background: #fafcff;
    margin-bottom: 35px;
}
.widget.tag{
    padding-bottom: 25px;
}
.widget.tag h3{
    margin-bottom: 30px;
}
.widget h3{
    font-size: 22px;
    line-height: 25px;
    color: #313131;
    margin-bottom: 23px;
}
.widget.latest-article h3{
    margin-bottom: 20px;
}
.cetagory ul li{
    margin-bottom: 10px;
}
.cetagory ul li span{
    float: right;
}
.cetagory ul li a{
    display: block;
    color: #808080;
}
.cetagory ul li:hover a{
    color: #026ce3;
}
.cetagory ul li:last-child{
    margin-bottom: 0;
}
.tag ul li{
    display: inline-block;
    margin: 0px 5px;
    margin-bottom: 15px;
}
.tag ul li a{
    display: block;
    width: 130px;
    height: 45px;
    line-height: 45px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 1px 20px #00000010;
}
.fllow ul li{
    display: inline-block;
    font-size: 16px;
    margin: 0 5px;
}
.fllow ul li:first-child{
    margin-left: 0;
}
.fllow ul li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #eeeeee;
    text-align: center;
    line-height: 40px;
    transition: .3s ease-in;
}
.fllow ul li a:hover{
    background-color: #026CE3;
    color: #fff;
}
.widget.fllow{
    padding-bottom: 38px;
}
.pagination{
    margin-top: 20px;
    margin-bottom: 30px;
}
.pagination li{
    margin-right: 20px;
    display: inline-block;
}
.pagination li:last-child{
    margin-right: 0;
}
.pagination li a:hover{
    background-color: #026ce3;
    color: #fff;
}
.pagination li a,
.pagination li span{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fafcff;
    border: 1px solid #eee;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
    font-size: 21px;
}
.pagination li a i{
    font-weight: 700;
}
.pagination li span{
    background: #026ce3;
    color: #fff;
    border-color: #026ce3;
}
.blog-details-wrap{
    padding: 30px 30px;
    background: #fafcff;
    border: 1px solid #eee;
    margin-bottom: 40px;
    padding-top: 25px;
}
.comment-wrap{
    padding: 53px 30px 60px 30px;
    background: #fafcff;
    border: 1px solid #eee;
}
.blog-details-wrap ul{
    overflow: hidden;
    margin-bottom: 8px;  
}
.blog-details-wrap ul li{
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    margin-right: 20px;
}
.blog-details-wrap ul li:last-child{
    margin-right: 0;
}
.blog-details-wrap ul li i{
    margin-right: 5px;
}
.blog-details-wrap h3{
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}
.blog-details-wrap p{
    margin-bottom: 20px;
    font-size: 15px;
}
.blog-details-img {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 10px;
}
.blog-details-img img{
    width: 100%;
}
.comment-wrap h3{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
}
.comment-wrap input,
.comment-wrap textarea{
    width: 100%;
    padding-left: 30px;
    height: 75px;
    border:1px solid #026ce3;
    margin-bottom: 30px;
}
.comment-wrap textarea{
    padding-top: 30px;
    height: 220px;
}
.comment-wrap button{
    padding: 15px 50px;
    color: #fff;
    border:none;
    background: #026ce3;
    font-size: 18px;
    font-weight: 600;
    border:2px solid #026ce3;
}
.comment-wrap button:hover{
    background: transparent;
    color: #026ce3;
}

/*------contact-area start------*/
.contact-area{
    padding: 112px 0px 80px;
}
.contact-info{
    background: #179fff;
    padding: 42px 40px 40px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    z-index: 9;
    margin-bottom: 50px;
}
.contact-info2{
    background: #17ebdf;
}
.contact-info i{
    position: absolute;
    left: 5px;
    font-size: 146px;
    top: 0;
    color: #fff;
    opacity: .09;
}
.contact-info2 i{
    opacity: .22;
}
.contact-info p{
    color: #fff;
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
}
.form-style input,
.form-style textarea,
.form-style button{
    height: 80px;
    width: 100%;
    border: 1px solid #ebebeb;
    padding-left: 30px;
    margin-bottom: 40px;
    border-radius: 5px;
}
.form-style textarea{
    height: 320px;
    padding-top: 40px;
}
.form-style button {
    font-size: 24px;
    font-weight: 500;
    background: #026ce3;
    border: 2px solid #026ce3;
    color: #fff;
    padding: 0px;
}
.form-style button:hover{
    background: transparent;
    color: #026ce3;
}
#googleMap{
    height: 520px;
    width: 100%;
}
/*------contact-area end------*/
.login-area{
    padding: 112px 0px 117px 0;
}
.login-wrap{
    padding: 60px 95px;
    background: #fafafa;
    border-radius: 10px;
    margin-bottom: 32px;
}
.login-wrap input{
    width: 100%;
    height: 65px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding-left: 30px;
    margin-bottom: 30px;
}
.login-wrap button{
    width: 100%;
    height: 70px;
    background: #026ce3;
    border: 2px solid #026ce3;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 5px;
}
.login-wrap button:hover{
    background: transparent;
    color: #026ce3;
}
.login-btn p{
    font-size: 18px;
    font-weight: 500;
}
.login-btn p a{
    color: #026ce3;
}
.mb-50{
    margin-bottom: 50px;
}
.preloader-wrap{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #026ce3;
    z-index: 999999;
}
.spinner {
  width: 40px;
  height: 40px;

  position: relative;
  margin: 100px auto;
}

.double-bounce1,
 .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
.input-field.borderd:focus {
    border: 1px solid #026ce3;
    outline: none;
}
.input-field.error {
    border: 1px solid #dc3545;
}
.input-field.error::-webkit-input-placeholder {
    color: #dc3545;
}
.input-field.error:-moz-placeholder {
    color: #dc3545;
}
.input-field.error::-moz-placeholder {
    color: #dc3545;
}
.input-field.error:-ms-input-placeholder {
    color: #dc3545;
}
.input-field.error:focus {
    border-color: #dc3545;
}
span.alert.alert-danger.email-success {
    width: 100%;
    display: block;
    text-align: center;
}
.brand-wrap {
    padding: 20px;
    border: 1px solid #e5e5e5;
}
.brand-area {
    padding: 110px 0 120px 0;
}
.white-bg{
    background-color: #fff;
}