/*------------------------------------------------------
Table of content
--------------------------------------------------------
    1. CSS Imports
    2. Common Styles
    3. Backgrouns Styles
    4. Main Navigation
    5. First Page | Landing | Countdown
    6. Second Page | About
    7. Third Page | Services
    8. Fourth Page | Contact
    9. Fifth Page | Location
    10. Footer Social
    11. Color Switcher
    12. Responsive Styles
------------------------------------------------------
------------------------------------------------------*/

/* -------------- 1. CSS Imports --------------- */
@import url("font-awesome.min.css");
@import url("material-design-iconic-font.min.css");
@import url("linearicons.css");
@import url("animate.css");
@import url("fullpage.css");
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700');
/* ------------- 1. CSS Imports End------------- */

/* ---------------2. Common Styles--------------- */

html, body, div, applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: top;
}
html,
body {
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #303030;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

button,
input,
optgroup,
select,
textarea {
    font-weight: 300;
}

::-moz-selection {
    background: #000;
    color: #fff;
}

::selection {
    background: #000;
    /*color: red !important;*/
    color: #3e4095 !important;
}
a {
	color: #fff;
}
a,
a:hover {
    text-decoration: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

button {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    vertical-align: baseline;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 35px;
    line-height: 1.2;
}

h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 0px;
}

h3 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    line-height: 1.4;
}

h5 {
    font-size: 16px;
    line-height: 1.2;
}

p {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
	font-weight: 300;
}
.about-text a.btn {
    line-height: 44px;
}
.btn {
    height: 50px;
    padding: 0 30px;
    /*background-color: #f44034;
    border: 2px solid #f44034;*/
    background-color: #3e4095;
    border: 2px solid #3e4095;
    border-radius: 50px;
    outline: none;
    transition: all 0.5s ease-out;
    font-size: 18px;
    font-weight: 400;
    color:#fff;
} 
.btn:hover {
    background-color: transparent;
    /*color: #f44034;*/
    color: #3e4095;
}
.btn span {
    line-height: 47px;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: none;
}
/* --------------2. Common Styles End------------- */

/* -------------3. Backgrounds Styles------------- */

.color-background {
    color: #fff;
    background-color: #f15f74;
}

#pp-nav {
    display: none;
}

.color {
    /*color: #f44034;*/
    color: #3e4095;
}


/* -------------3. Backgrounds Styles End----------- */

/* --------------- 4. Main Navigation--------------- */
.section-nav {
    position: fixed;
    opacity: 1;
    z-index: 100;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.section-nav ul li {
    padding: 15px 0;
    list-style: none;
}

.section-nav ul li a .fa,
.section-nav ul li a .zmdi {
    color: #fff;
    height: 33px;
    width: 33px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
    background-color: transparent;
    transition: all 0.5s ease-out;
}

.section-nav ul li a .fa:hover,
.section-nav ul li a .zmdi:hover {
    color: #f44336;
    background-color: #fff;
    border: 2px solid #fff;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        border: 2px solid #f44336;
    }
}

.section-nav ul li.active a .fa,
.section-nav ul li.active a .zmdi {
    color: #f44336;
    background-color: #fff;
    border: 2px solid #fff;
    height: 33px;
    width: 33px;
    padding: 5px;
    font-size: 18px;
}

/* ---------------4. Main Navigation End----------------- */

/*---------- 5. First Page | Landing | Countdown ---------*/

.logo {
    width: 200px;
    margin: 0 auto;
}

.bg .col-md-10 {
    background-color: #fff;
    padding: 30px;
    color: #151515;
    border-radius: 5px;
}

.bg.location .col-md-10 {
    padding: 0;
}

h1.title {
    font-size: 60px;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    margin-top: 30px;
    font-weight: 600;
}

.shortdesc {
    max-width: 900px;
    opacity: 1;
    line-height: 32px;
    font-size: 22px;
    margin: 0 auto;
    font-weight: 300;
}

#countdown {
    padding-left: 0;
    margin: 0;
}

#countdown li {
    list-style: none;
    display: inline-block;
    padding: 0 30px;
    text-align: center;
    margin: 40px 0;
    letter-spacing: 1px;
}

#countdown li span.countnumber {
    font-size: 50px;
    font-weight: 600;
    opacity: 1;
    margin-bottom: 10px !important;
}

.subsform,
.subsbtn {
    display: inline-block;
}

.subsform {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    width: 230px;
    padding: 10px 0;
    color: #fff;
    outline: none;
    height: 50px;
    margin-right: 30px;
    transition: all 0.5s ease-out;
}

.subsform:focus {
    border-bottom: 2px solid rgba(244, 64, 52, 0.70);
}

.subsform::-webkit-input-placeholder {
    color: #fff;
}

.subsform::-moz-placeholder {
    color: #fff;
}

.subsform:-ms-input-placeholder {
    color: #fff;
}

#subscribe-result {
    clear: both;
    font-weight: 200;
    font-size: 12px;
    margin: 20px 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


/*---------- 5. First Page | Landing | Countdown END ---------*/

/*------------------ 6. Second Page | About ------------------*/

.about .aboutimg img {
    border-radius: 5px;
}

.about .aboutimg {
    padding: 0;
}

h3.know-more {
    font-size: 19px;
    margin-bottom: 40px;
}

/*----------------- 6. Second Page | About END ------------------*/

/*----------------- 7. Third Page | Services --------------------*/

.services .section-title {
    margin: 0;
}

#service {
    margin-top: 30px;
}

.carousel-inner {
    height: 250px;
}

.services .service .service-icon span {
    font-size: 70px;
}

.services .carousel-indicators {
    bottom: 0px;
    z-index: 100;
    position: absolute;
}

.services .carousel-indicators li {
    border-color: #f44336;
    background-color: #f44336;
}

.carousel-indicators .active {
    background-color: #f44336;
}

/*--------------- 7. Third Page | Services END --------------*/

/*--------------- 8. Fourth Page | Contact ------------------*/
.contact-form, .contact .conbut {
    margin-top: 15px;
}

.contact-text {
    margin-top: 10px;
    padding-left:27px; 
}

.contact .section-title {
    padding-bottom: 10px;
}

.contact .contact-form .form-control {
    /*border: 1px solid #f5f5f5;*/
    border: 1px solid #dcdcdc;
    background-color: #f5f5f5;
    box-shadow: none;
}

.contact .contact-form .form-control:focus {
    border: 1px solid #f44336;
    box-shadow: 0px 10px 20px 0px rgba(244, 67, 54, 0.1);
}

.contact .contact-form input.form-control {
    height: 45px;
}

.contact .contact-form textarea.form-control {
    height: 100px;
}

.contact .contact-info {
    padding: 0;
}

.contact .contact-info li {
    padding: 8px 0;
    list-style: none;
    font-weight: 300;
    display: flex;
}

.contact .contact-info li i {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    margin-right: 5px;
}
/*-------------- 8. Fourth Page | Contact END ---------------*/

/*-------------- 9.  Fifth Page | Location ------------------*/

.location #map {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

/*------------- 9. Fifth Page | Location END------------------*/

/*---------------- 10. Footer Social Navigation --------------*/

.social-nav {
    position: fixed;
    opacity: 1;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
}

.social-nav ul li {
    list-style: none;
    display: inline-block;
    padding: 0 10px;
}

.social-nav ul li a .fa {
    color: #fff;
    transition: all 0.5s ease-out;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    text-align: center;
    padding: 5px;
    font-size: 16px;
    border: 2px solid transparent;
}

.social-nav ul li a .fa:hover {
    color: #f44034;
    background-color: #fff;
    animation: blinker 1s linear infinite;
}

/*-------------- 10. Footer Social Navigation END ------------*/

/* ------------------ 11. Color Switcher -------------------- */

#style-switcher {
    background: #fff;
    padding: 12px 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    left: 0;
    top: 50%;
    position: fixed;
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 70;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    border-bottom-right-radius: 10px;
}

#style-switcher.active {
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

#style-switcher .toggle-switcher {
    background: #f44336;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    right: -50px;
    top: 0;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#style-switcher .icon {
    color: #fff;
    font-size: 26px;
    left: 12px;
    position: absolute;
    top: 12px;
}
#style-switcher .colors {
    margin: 0px;
}
#style-switcher .colors li {
    display: block;
}

#style-switcher .colors li + li {
    margin-top: 6px;
}

#style-switcher .colors li a {
    border-radius: 50px;
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
}

#style-switcher .style1 {
    background: #f44336;
}

#style-switcher .style2 {
    background: #913ccd;
}

#style-switcher .style3 {
    background: #f15f74;
}

#style-switcher .style4 {
    background: #f76d3c;
}

#style-switcher .style5 {
    background: #f7d842;
}

#style-switcher .style6 {
    background: #2ca8c2;
}

#style-switcher .style7 {
    background: #98cb4a;
}

#style-switcher .style8 {
    background: #5481e6;
}
.call_now, .call_now:hover, .call_now:active, .call_now:focus{
    font-weight: 500;
    font-size: 16px;
    padding: 8px;
    float: right;
    background: #3e4095;
    border-radius: 0 0 5px 5px;
    text-decoration: none;
    color: #fff;
}
footer{
    color: #151515;
    font-weight: 500;
    margin: 10px 0;
}
/* ---------------- 11. Color Switcher END----------------- */

/*-------------------12. Responsive Styles------------------*/

@media (max-width: 1000px) {
    #rpage {
        margin-top: 27px;
    }
    h1.title {
        font-size: 45px;
    }
    .section-nav {
        position: fixed;
        opacity: 1;
        z-index: 100;
        left: 0;
        top: 0;
        transform: none;
        background: rgba(0, 0, 0, 0.4);
        padding: 8px 0;
        border-radius: 5px;
        width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }
    .section-nav ul {
        padding: 0;
    }
    .section-nav ul li {
        list-style: none;
        display: inline-block;
        padding: 0 10px;
    }
    #style-switcher {
	  	top: 22%;
	  	z-index: 9999999;
	}

}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 60px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 30px;
    }
    h4 {
        font-size: 20px;
    }
    h4 {
        font-size: 16px;
    }
    p {
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
    }
    h1.section-title {
        font-size: 25px;
    }
    .section-inner {
        position: relative;
    }
    #countdown li {
        width: 40%;
    }
    .shortdesc {
        font-size: 20px;
    }
    .about-text {
        max-height: 250px;
        overflow-y: scroll;
        margin-top: 30px;
    }
    .about .aboutimg img {
        border-radius: 5px;
        margin: 0 auto;
        height: 250px;
    }
    .carousel-inner {
        height: 100%;
    }
    .services .service .service-icon span {
        font-size: 40px;
    }
    .services .item .col-sm-4 {
        padding-left: 0;
    }
    .services .service .service-title {
        font-size: 18px;
    }
    .services .carousel-indicators {
        bottom: -15px;
    }
    .section-nav ul li a .zmdi,
    .section-nav ul li a .fa {
        height: 30px;
        width: 30px;
        padding: 6px;
        font-size: 15px;
    }
    .section-nav ul li a .zmdi:hover,
    .section-nav ul li a .fa:hover,
    .section-nav ul li.active a .zmdi,
    .section-nav ul li.active a .fa {
        height: 30px;
        width: 30px;
        padding: 6px;
        font-size: 15px;
    }
    .section-nav ul li {
        padding: 0 5px;
    }
    .contact-text {
        margin-top: 50px;
    }
    .mobilesocial {
        position: relative !important;
        text-align: center;
        padding: 0;
    }
    .mobilesocial ul {
        padding: 0;
    }
    .carousel-indicators .active {
        width: 9px;
        height: 9px;
    }
    .carousel-indicators li {
        width: 8px;
        height: 8px;
    }
    .contact .section-inner-4 .contact-form .col-sm-6 {
        padding: 0 !important;
    }
    .social-nav {
        bottom: 15px;
    }
    #style-switcher {
	  	top: 22%;
	  	display: block;
	  	z-index: 9999999;
	}

}

@media (max-width: 480px) {
	h2 {
    	font-size: 30px;
	}
    .services .item .col-sm-4 {
        width: 100%;
    }
    .services .service .service-icon span {
        font-size: 35px;
    }
    .services .service .service-title {
        font-size: 16px;
    }
    .contact-text {
        padding: 0;
    }
    .contact .contact-info li i {
        height: 30px;
        width: 30px;
        font-size: 15px;
        padding: 8px;
    }
    .contact .contact-info li {
        font-size: 13px;
    }
    #countdown li {
        padding: 10px 10px;
        margin: 10px 0;
    }

    #countdown li span.countnumber {
        font-size: 40px;
    }
    .subsform {
        height: 40px;
        margin-right: 10px;
        font-size: 14px;
        text-align: center;
        margin-bottom: 15px;
    }
    h3.know-more {
	    margin-bottom: 20px;
	}
    h1.title {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .shortdesc {
        line-height: 20px;
        font-size: 16px;
    }
    #style-switcher {
    	display: none;
	}
}
/*-----------------12. Responsive Styles END----------------*/