@import url('https://fonts.googleapis.com/css?family=Poppins:600,700');
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');

/** ************************************* **

	TABLE OF CONTENTS
	---------------------------
		01. ESSENTIALS 
		02. DEFAULTS
		03. FRAMEWORK

        -- PAGE STYLES --
		04. HOME
		05. ABOUT
		06. COACHING
		07. BLOG
		08. 
		09. 
		10. 
		11. 
		12. FOOTER
				
	---------------------------

 ** ************************************* **/


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

 01. ESSENTIALS

-------------------------------- */
html *{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*, *:after, *:before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, 
body{
    height: 100%;
}
body{
    font-size: 100%;
    color: #2a2a2a;
    background-color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}
body.overflow-hidden{
    overflow: hidden;
}
.container{
    max-width: 1150px
}
.no-padding{
    padding: 0;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.padding-resp{
    padding: 0;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
@media screen and (max-width: 992px){
    .padding-resp{
        padding: 0 15px !important;
    }
    .half-padding-right-resp{
        padding-right: 8px;
    }
    .half-padding-left-resp{
        padding-left: 8px;
    }
}

img{
    width: auto;
    max-width: 100%;
    height: auto;
}
a{
    color: #212121;
}
a:hover{
    color: #212121;
}

input:focus{
    outline: none;
}

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

 02. DEFAULTS

-------------------------------- */
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0 0 20px;
    padding: 0;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.25;
}
h3{
    margin: 10px 0 25px;
    padding: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
}
h4{
    margin: 15px 0 5px;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
}
p{
    margin: 0 0 15px;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6f6f6e;
}
strong{
    font-weight: 700;
}
@media screen and (max-width: 992px){
    h2{
        margin: 0 0 12px;
        padding: 0;
        font-size: 24px;
    }
    h3{
        margin: 0 0 15px;
        font-size: 16px;
    }
    h4{
        font-size: 16px;
    }
    p,
    body{
        font-size: 12px;
    }
}

.btn {
    position: relative;
    display: inline-block;
    margin: 10px 0;
    padding: 10px 0;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    overflow: hidden;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    
    text-transform: uppercase;
    border-radius: 0;
}
.btn-1{
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 2px #fff;
}
.btn-1:hover{
    opacity: 0.5;
    color: #fff;
}
.btn-2{
    background: #1E824C;
    color: #fff;
}
.btn-2:hover{
    background: #eeba47;
    color: #fff;
}
.btn-3{
    background: #212121;
    color: #fff;
}
.btn-3:hover{
    background: #2a2a2a;
    color: #fff;
}
.btn-4{
    background: transparent;
    color: #2a2a2a;
    box-shadow: inset 0 0 0 2px #2a2a2a;
}
.btn-4:hover{
    opacity: 0.5;
    color: #2a2a2a;
}
.btn-5{
    background: #eeba47;
    color: #fff;
}
.btn-5:hover{
    background: #E3B142;
    color: #fff;
}
.same-height{
    margin-bottom: -99999px; 
    padding-bottom: 99999px;
}
iframe, object, embed {
    display: block;
    max-width: 100%;
}
@media screen and (max-width: 480px){
   iframe, object, embed {
        max-width: 100%;
        height: auto;
   }    
}

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

 03. FRAMEWORK

-------------------------------- */
#main{
    margin: 0;
    padding: 50px 0;
    background: #fff;
}
.content-wrap ul{
    list-style: disc outside none;
    padding: 5px 10px 10px 25px;
}
.content-wrap ul li{    
    margin: 0 0 15px;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6f6f6e;
}
.content-wrap ul li strong{
    color: #2a2a2a;
}
@media screen and (max-width: 992px) {
    #main{
        padding: 35px 0;
    }
    .content-wrap ul{
        padding-top: 0;
        padding-bottom: 0;
    }
    .content-wrap ul li{
        font-size: 12px;
    }
}

/* PAGE HEADER */
#page-header{
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#page-header .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
}
#page-header h2{
    margin: 0;
    padding: 55px 0;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}
@media screen and (max-width: 992px) {
    #page-header h2{
        padding: 35px 0;
        font-size: 24px;
    }
}

/* BREADCRUMBS */
#breadcrumbs{
    display: inline-block;
    margin: 0;
    padding: 15px 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #F2F2F2;
	font-size: 14px;
    font-weight: 300;
    background: #f8f8f8;
    color: #ADADAD;
}
#breadcrumbs a{
    margin: 0 4px;
    font-weight: 300;
    color: #4a4a4a;
}
#breadcrumbs a:first-child{
    font-size: 0px;
}
#breadcrumbs a:first-child:before {
    font-family: FontAwesome;
    content: "\f015";
    float: left;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1;
}
#breadcrumbs .lastitem{
    display: inline-block;
    margin-left: 4px;
}
@media screen and (max-width: 992px) {
    #breadcrumbs{
        margin: 0;
        padding: 12px 0;
        font-size: 12px;
    }
    #breadcrumbs a:first-child:before {
        font-size: 12px;
    }
}

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

 04. HOME PAGE

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

/* ABOUT US */
#about-us{
    margin: 0;
    padding: 55px 0 50px;
}
#about-us h3{
    color: #053393;
}
#about-us .about-summary{
    margin: 10px 0 0;
}
#about-us .about-summary .item{
    display: inline-block;
    margin: 0 0 20px;
    padding: 0;
    width: 100%;
}
#about-us .about-summary .fa{
    display: inline-block;
    vertical-align: top;
    margin: 2px 0 0;
    width: 25%;
    color: #053393;
    font-size: 34px;
    text-align: center;
}
#about-us .about-summary .wrap{
    display: inline-block;
    vertical-align: top;
    width: 73%;
}
#about-us .about-summary .wrap h2{
    margin: 0 0 10px;
    font-size: 20px;
}
@media screen and (max-width: 992px){
    #about-us{
        padding: 25px 0 20px;
    }
    #about-us .about-summary{
        margin: 25px 0 0;
        padding: 30px 0 0;
        border-top: 1px solid #ededed;
    }
    #about-us .about-summary .item{
        margin: 0 0 8px;
    }
    #about-us .about-summary .fa{
        margin: 2px 20px 0 0;
        color: #053393;
        width: auto;
        font-size: 28px;
        text-align: left;
    }
    #about-us .about-summary .wrap{
        width: 75%;
    }
    #about-us .about-summary .wrap h2{
        margin: 0 0 5px;
        font-size: 16px;
    }
}

/* OUR SERVICES LIST */
#our-services-list{
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
    border-top: 1px solid #ededed;
    text-align: center;
}
#our-services-list .item{
    display: inline-block;
    margin: 0;
    padding: 40px 0;
    width: 100%;
}
#our-services-list .item .fa{
    display: block;
    margin: 0 auto 20px;
    font-size: 48px;
    font-weight: 600;
    color: #053393;
}
#our-services-list .item h2{
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
}
@media screen and (max-width: 992px){
    #our-services-list{
        padding: 20px 0;
    }
    #our-services-list .item{
        padding: 20px 0;
    }
    #our-services-list .item .fa{
        font-size: 38px;
    }
    #our-services-list .item h2{
        font-size: 14px;
    }
}

/* OUR SERVICES */
#our-services{
    position: relative;
    display: block;
    margin: 0;
    padding: 65px 0 105px;
    color: #fff;
    background-image: url(../images/seats.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#our-services .overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.65);
}
#our-services h2{
    margin: 0 0 15px;
    font-size: 52px;
    line-height: 1.2;
}
#our-services .checklist-group{
    display: inline-block;
    margin: 12px 0 0;
    padding: 0;
    width: 100%;
}
#our-services .checklist-group p{
    margin: 0 0 25px;
    color: #fff;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
}
#our-services .checklist-group p .fa{
    margin: 0 12px 0 0;
    height: 25px;
    width: 25px;
    line-height: 25px;
    box-shadow: 0 0 0 2px #ffffff;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
@media screen and (max-width: 992px){
    #our-services{
        padding: 35px 0;
    }
    #our-services h2{
        margin: 0 0 10px;
        font-size: 24px;
        max-width: 300px;
    }
    #our-services .checklist-group{
        margin: 10px 0 0;
    }
    #our-services .checklist-group p{
        margin: 0 0 20px;
        font-size: 14px;
    }
    #our-services .checklist-group p .fa{
        margin: 0 10px 0 0;
        height: 22px;
        width: 22px;
        line-height: 22px;
    }
}

/* BUS PROMO */
#bus-promo{
    position: relative;
    margin: 0;
    padding: 50px 0 65px;
    background: #F2F2F2;
}
#bus-promo .bus-image{
    position: absolute;
    top: -108px;
    left: 50%;
    margin-left: -845px;
    width: 800px;
}
#bus-promo .bus-image img{
    max-width: 100%;
}
#bus-promo h2{
    margin: 0 0 15px;
    font-size: 50px;
    line-height: 1.2;
}
#bus-promo h3{
    font-size: 18px;
    line-height: 1.65;
}
#bus-promo .button-links{
    display: inline-block;
    margin: 15px 0 0;
    padding: 0;
    width: 100%;
}
#bus-promo .button-links a{
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #a3a3a3;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
#bus-promo .button-links a.request-a-quote{
    padding: 12px 32px;
    background: #053393;
    border: 1px solid #053393;
    color: #fff;
}
#bus-promo .checklist-group{
    display: inline-block;
    margin: 10px 0 0;
    padding: 0;
    width: 100%;
    
    display: none;
}
#bus-promo .checklist-group p{
    margin: 0 0 25px;
    color: #212121;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
}
#bus-promo .checklist-group p .fa{
    margin: 0 12px 0 0;
    height: 25px;
    width: 25px;
    line-height: 25px;
    box-shadow: 0 0 0 2px #053393;
    color: #053393;
    text-align: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
@media screen and (max-width: 1200px){
    #bus-promo .bus-image{
        top: -105px;
        margin-left: -840px;
    }
    #bus-promo h2{
        font-size: 46px;
    }
}
@media screen and (max-width: 992px){
    #bus-promo{
        padding: 35px 0 38px;
        text-align: center;
    }
    #bus-promo .bus-image{
        display: none;
    }
    #bus-promo h2{
        margin: 0 0 10px;
        font-size: 24px;
        line-height: 1.2;
    }
    #bus-promo h3{
        font-size: 14px;
        line-height: 1.6;
    }
    #bus-promo .button-links{
        margin: 5px 0 0;
    }
    #bus-promo .button-links a{
        margin: 0 10px 0 0;
        padding: 10px 18px;
        font-size: 12px;
    }
    #bus-promo .button-links a.request-a-quote{
        padding: 10px 18px;
    }
}

/* TESTIMONIALS */
#testimonials{
    position: relative;
    padding: 70px 0 75px;
    text-align: center;
    z-index: 0;
}
#testimonials h2{
    margin: 0;
    padding: 0;
    font-size: 32px;
}
#testimonials .item{
    margin: 0;
    padding: 0;
}
#testimonials .item .promo-image{
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -42px;
    height: 84px;
    width: 84px;
    border: 3px solid #ededed;
    -webkit-box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.05);
    
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    
    display: none;
}
#testimonials .item .item-wrap{
    margin: 25px 0 0;
    padding: 0 35px;
    background: #fff;
  
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
#testimonials p{
    margin: 0 auto 35px;
    padding: 0;
    max-width: 775px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}
#testimonials h4{
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: u
}
@media screen and (max-width: 992px){
    #testimonials{
        padding: 35px 0 25px;
    }
    #testimonials .item{
        margin: 0 0 25px;
    }
    #testimonials .item .item-wrap{
        margin: 10px 0 0;
        padding: 0;
    }
    #testimonials h2{
        font-size: 20px;
    }
    #testimonials p{
        margin: 0 0 15px;
        padding: 0;
        font-size: 14px;
        line-height: 1.7;
    }
    #testimonials h4{
        font-size: 12px;
    }
}

#testimonials .owl-prev,
#testimonials .owl-next{
    position: absolute;
    top: 53px;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 38px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: transparent;
    color: #a3a3a3;
    cursor: pointer;
}
#testimonials .owl-prev{
    left: -50px;
}
#testimonials .owl-next {
    right: -50px;
}
@media screen and (max-width: 992px){
    #testimonials .owl-prev,
    #testimonials .owl-next{
        display: none;
    }
}

#testimonials .owl-dots{
    display: inline-block;
    margin: 75px 0 0;
    
    display: none;
}
#testimonials .owl-dots .owl-dot{
    display: inline-block;
    margin: 0 5px;
    height: 15px;
    width: 15px;
    background: #a3a3a3;
    box-shadow: inset 0 0 0 2px #f8f8f8;
    border: 1px solid #dedede;
    cursor: pointer;
    
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
#testimonials .owl-dots .owl-dot.active{
    background: #053393;
    border-color: #053393;
}

/* PHOTO GALLERY */
#photo-gallery{
    margin: 0;
    padding: 0;
}
#photo-gallery .bus-photos{}
#photo-gallery .bus-photos a{
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
    height: 265px;
    width: 33.3333%;
    overflow: hidden;
    outline: none;
    border: none;
}
#photo-gallery .bus-photos a:nth-child(1){
    -webkit-animation-delay: 0.15s;
    -moz-animation-delay: 0.15s;
    animation-delay: 0.15s;
}
#photo-gallery .bus-photos a:nth-child(2){
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
#photo-gallery .bus-photos a:nth-child(3){
    -webkit-animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    animation-delay: 0.35s;
}
#photo-gallery .bus-photos a:nth-child(4){
    -webkit-animation-delay: 0.45s;
    -moz-animation-delay: 0.45s;
    animation-delay: 0.45s;
}
#photo-gallery .bus-photos a:nth-child(5){
    -webkit-animation-delay: 0.55s;
    -moz-animation-delay: 0.55s;
    animation-delay: 0.55s;
}
#photo-gallery .bus-photos a:nth-child(6){
    -webkit-animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
    animation-delay: 0.65s;
}
#photo-gallery .bus-photos a .promo-image{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    
    /* -webkit-filter: grayscale(100%); 
    filter: grayscale(100%); */

    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
#photo-gallery .bus-photos a:hover .promo-image{
    transform: scale(1.08);
    
    -webkit-filter: grayscale(0%); /* Chrome, Safari, Opera */
    filter: grayscale(0%);
}
#photo-gallery .bus-photos a .promo-image .fa{
    position: absolute;
    top: 0;
    left: 0;
    height: 265px;
    line-height: 265px;
    width: 100%;
    font-size: 0;
    text-align: center;
    color: transparent;
    background: rgba(131,181,79,0.0);
    
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
#photo-gallery .bus-photos a:hover .promo-image .fa{
    background: rgba(0,0,0,0.75);
    font-size: 38px;
    color: #fff;
}
@media screen and (max-width: 768px){
    #photo-gallery .bus-photos a{
        height: 200px;
        width: 50%;
    }
    #photo-gallery .bus-photos a .promo-image .fa{
        height: 200px;
        line-height: 200px;
    }
    #photo-gallery .bus-photos a:hover .promo-image .fa{
        font-size: 34px;
    }
}
@media screen and (max-width: 480px){
    #photo-gallery .bus-photos a{
        height: 150px;
    }
    #photo-gallery .bus-photos a .promo-image .fa{
        height: 150px;
        line-height: 150px;
    }
    #photo-gallery .bus-photos a:hover .promo-image .fa{
        font-size: 26px;
    }
}

/* BOOK A CHARTER */
#book-a-charter{
    display: inline-block;
    margin: 0;
    padding: 60px 0 0;
    width: 100%;
    text-align: center;
}
#book-a-charter h2{
    margin: 0 0 10px;
    padding: 0;
}
#book-a-charter h3{
    margin: 0 auto;
    padding: 0;
    max-width: 600px;
    font-size: 18px;
    color: #6f6f6e;
}
#book-a-charter .book-a-charter-form{
    display: inline-block;
    margin: 40px 0 0;
    padding: 0;
    width: 100%;
    text-align: left;
}
#book-a-charter .contact-icons{}
#book-a-charter .contact-icons a{
    display: inline-block;
    margin: 20px 0 0;
    color: #6f6f6e;
    font-size: 20px;
    text-decoration: none;
    
    display: none;
}
#book-a-charter .contact-icons a.phone:after{
    display: inline-block;
    vertical-align: middle;
    margin: -4px 15px 0;
    content: '';
    height: 24px;
    width: 1px;
    background: #ededed;
}
#book-a-charter .contact-icons a .fa{
    margin: 0 10px 0 0;
}
@media screen and (max-width: 992px){
    #book-a-charter{
        padding: 35px 0 0;
    }
    #book-a-charter h2{
        margin: 0 0 10px;
        padding: 0;
    }
    #book-a-charter h3{
        font-size: 14px;
    }
    #book-a-charter .book-a-charter-form{
        margin: 18px 0 0;
    }
    #book-a-charter .contact-icons{}
    #book-a-charter .contact-icons a{
        font-size: 14px;
    }
    #book-a-charter .contact-icons a.phone:after{
        margin: -2px 8px 0 10px;
        height: 15px;
    }
}

/* CONTACT US */
#contact-us{
    margin: 0;
    padding: 25px 0 75px;
    text-align: center;
}
#contact-us .contact-icons{}
#contact-us .contact-icons a{
    display: inline-block;
    margin: 10px 0 0;
    color: #6f6f6e;
    font-size: 20px;
    text-decoration: none;
}
#contact-us .contact-icons a.phone:after{
    display: inline-block;
    vertical-align: middle;
    margin: -4px 15px 0;
    content: '';
    height: 24px;
    width: 1px;
    background: #ededed;
}
#contact-us .contact-icons a .fa{
    margin: 0 10px 0 0;
}
@media screen and (max-width: 992px){
    #contact-us{
        padding: 10px 0 35px;
    }
    #contact-us .contact-icons{}
    #contact-us .contact-icons a{
        font-size: 14px;
    }
    #contact-us .contact-icons a.phone:after{
        margin: -2px 8px 0 10px;
        height: 15px;
    }
}

/* REQUEST A QUOTE */
#request-a-quote{
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 9999;
}
#request-a-quote a{
    padding: 12px 20px;
    background: #053393;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.25);
    text-decoration: none;
    
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
#request-a-quote a .fa{
    margin: 0 8px 0 0;
}
@media screen and (max-width: 992px){
    #request-a-quote{
        bottom: 30px;
        right: 20px;
    }
    #request-a-quote a{
        padding: 10px 20px;
        font-size: 12px;
    }
}

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

 04. FOOTER

-------------------------------- */
footer{
    margin: 0;
    padding: 50px 0 0;
    background: #fff;
    border-top: 1px solid #ededed;
}
footer h3{
    margin: 0 0 20px;
    padding: 0;
    line-height: 1;
    font-size: 21px;
    font-weight: 900;
}
footer p{
    margin: 0 0 12px;
    padding: 0;
    line-height: 1;
    font-size: 15px;
}
footer p.added-margin{
    margin: 20px 0 10px;
}
footer p.developed-by{
    margin: 135px 0 0;
    padding: 25px 0 35px;
    text-align: left;
}
footer p.developed-by a{
    font-weight: 900;
    color: #212121;
}
footer p a,
footer p a:active{
    color: #053393;
}

/* SOCIAL NETWORKS */
footer .social-networks{
    display: inline-block;
    margin: 15px 0 0;
    padding: 0;
    width: 100%;
}
footer .social-networks a{
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
    padding: 0;
    height: 30px;
    width: 30px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
footer .social-networks a.facebook{
    background: #3b5998;
}
footer .social-networks a.twitter{
    background: #55acee;
}
footer .social-networks a.instagram{
    background: #125688;
}
footer .social-networks a .fa{
    line-height: 30px;
}

/* NEWSLETTER SIGNUP */
footer #newsletter-signup{
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
}
footer #newsletter-signup input{
    float: left;
    margin: 0 0;
    padding: 0 55px 0 15px;
    width: 100%;
    height: 42px;
    line-height: 42px;
    color: #212121;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #ededed;
    outline: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
footer #newsletter-signup button{
    float: left;
    margin: 9px 0 0 -44px;
    padding: 0;
    height: 25px;
    line-height: 25px;
    width: 42px;
    text-indent: none;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    color: #a3a3a3;
    background: transparent;
    border: none;
    border-left: 1px solid #ededed;
    outline: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
@media screen and (max-width: 992px){
    footer{
        padding: 5px 0 0;
    }
    footer h3{
        margin: 45px 0 20px;
        text-align: center;
    }
    footer p,
    footer p.developed-by{
        font-size: 12px;
        text-align: center;
    }
    footer .social-networks{
        text-align: center;
    }
}

@-webkit-keyframes toRightFromLeft {
    49% {
        -webkit-transform: translate(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}
@-moz-keyframes toRightFromLeft {
    49% {
        -moz-transform: translate(100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}