/*==================== fonts ======================= */


/*------------ google fonts --------- */


/* Montserrat / poppins*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&family=Zilla+Slab:ital,wght@0,400;0,500;0,600;0,700;1,300&display=swap');

/* Global Styling =============================== */

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #000000;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
	 overflow-x: hidden; 
}

*,
*:focus {
    outline: none !important;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

ul {
    list-style: none;
    padding-left: 0;
}

a {
    text-decoration: none !important;
    color: #c8102e;
}

a:hover {
    color: #c8102e;
}

p {
    margin-bottom: 10px;
}

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


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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
    font-weight: 700;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 87px;
    line-height: 70px;
}

h2,
.h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 25px;
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 17px;
}

h6,
.h6 {
    font-size: 14px;
}

h2.title {
    position: relative;
    padding-bottom: 5px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 5px;
}
h2.hometitle {
    position: relative;
    padding-bottom: 5px;  
    text-align: center;
    margin-bottom: 5px;
	font-weight: 100;
	color:#000;
}

h2.title:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 5px;
    width: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/title-bottom.png) no-repeat center;
}


/******* Helpers ********************************************************************/


/* font families================== */

.font-ibm-flex {
    font-family: 'IBM Plex Sans', sans-serif;
}

.font-zillaslab {
    font-family: 'Zilla Slab', serif;
}

.font-source-sans {
    font-family: 'Source Sans Pro', sans-serif;
}


/* font sizes ================= */

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-17 {
    font-size: 17px !important;
}


.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-25 {
    font-size: 25px !important;
}



.fs-46 {
    font-size: 34px !important;
}


/* text colors=== */

.text-muted {
    color: #606060 !important;
}

.text-muted-2 {
    color: #666666 !important;
}

.text-muted-3 {
    color: #868686 !important;
}

.text-dark {
    color: #000000 !important;
}

.text-dark-2 {
    color: #141414;
}

.text-danger {
    color: #f40011 !important;
}


/* backgrounds ==== */

.bg-danger {
    background-color: #c8102e !important;
}

.bg-light {
    background-color: #f6f6f6 !important;
}

.bg-dark {
    background-color: #000000 !important;
}


/*************Font Weight****************/

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-medium {
    font-weight: 500 !important;
}

.font-weight-semi {
    font-weight: 600 !important;
}

.font-weight-bolder {
    font-weight: 800 !important;
}


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

.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

.letter-spacing-4 {
    letter-spacing: 4px;
}

.letter-spacing-5 {
    letter-spacing: 5px;
}

.letter-spacing-6 {
    letter-spacing: 6px;
}

.letter-spacing-7 {
    letter-spacing: 7px;
}


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

.btn {
    moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 15px;
    padding: 10px 30px;
    border-radius: 0;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-danger {
    background-color: #c8102e;
    border-color: #c8102e;
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: #96192d !important;
    border-color: #96192d !important;
    color: #ffffff !important;
}

.container {
    max-width: 1200px;
}


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

.text-shadow {
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.75);
}


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


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

.form-control,
input.form-control,
input.form-control:focus {
    font-family: 'Source Sans Pro', sans-serif;
    height: calc(2.4em + 0.9rem);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #e1e1e1;
    color: #000000;
    font-size: 14px;
    outline: none;
    font-weight: normal;
    box-shadow: none;
}

select.form-control {
    height: calc(2.4em + 0.9rem);
    border-color: #c1c1c1;
}

textarea.form-control {
    /* font-size: 14px; */
    resize: none;
}

textarea.form-control:not([rows]) {
    height: 140px;
}


/* placeholder color ======== */

.form-control::-webkit-input-placeholder,
::-webkit-input-placeholder {
    /* Edge */
    color: #000;
}

.form-control:-ms-input-placeholder,
 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
}

.form-control::placeholder,
 ::placeholder {
    color: #000;
}

.form-control::-moz-placeholder {
    color: #000;
    opacity: 1;
}


/********** Back To Top Button ***************************************************************************************************/

#scroll {
    background: #00b0f0;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 99999;
    cursor: pointer;
    width: 45px;
    height: 45px;
    text-indent: -9999px;
    display: none;
    webkit-border-radius: 50px;
    border-radius: 50px;
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll:hover {
    background-color: #2aa4d1;
    opacity: 1;
}


/* slider setting  */

.carousel-indicators li {
    background-color: #ffffff;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #7f7f7f;
    opacity: 1;
}

.carousel-indicators li.active {
    background-color: #c8102e;
    border-color: #c8102e;
}


/* ==================== media queries ============= */


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

@media (max-width:1199.98px) {
    h1,
    .h1 {
        font-size: 80px;
        line-height: 1;
    }
    .fs-46 {
        font-size: 30px !important;
    }
}


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

@media (max-width:991.98px) {
    h1,
    .h1 {
        font-size: 60px;
    }
    h2,
    .h2 {
        font-size: 32px;
    }
    h3,
    .h3 {
        font-size: 22px;
    }
}


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

@media (max-width:767.98px) {
	.about-subheading{padding:10px 0px 10px 0px;}
	h2.hometitle {
    font-size: 20px;
}
	
	
	
	
	
    h1,
    .h1 {
        font-size: 40px;
    }
    h2,
    .h2 {
        font-size: 27px;
    }
    h3,
    .h3 {
        font-size: 22px;
    }
    h2.title {
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    .fs-46 {
        font-size: 24px !important;
    }
    .btn {
        padding: 5px 20px;
    }
}
/* ************************************** */
@media (max-width:479px) {
	
	h2.hometitle {
    font-size: 15px;
}
	
	
	
    h1,
    .h1 {
        font-size: 30px;
    }
    h2,
    .h2 {
        font-size: 28px;
    }
    h3,
    .h3 {
        font-size: 22px;
    }
    .fs-46 {
        font-size: 14px !important;
    }
}