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


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


/* poppins */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

/* global css  */

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #262533;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
}

*,
*: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: #3b9eee;
}

a:hover {
    color: #002b54;
}

p {
    margin-bottom: 10px;
}

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


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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h1,
.h1 {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 30px;
}

h2,
.h2 {
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 40px;
}

h3,
.h3 {
    font-size: 25px;
    line-height: 26px;
    margin-bottom: 25px;
}

h4,
.h4 {
    font-size: 18px;
    line-height:19px;
}

h5,
.h5 {
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}


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

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

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

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

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

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


/* text colors=== */

.text-grey {
    color: #79787f !important
}

.text-grey-2 {
    color: #868689;
}

.text-primary {
    color: #293e98 !important;
}

a.text-primary:focus,
a.text-primary:hover {
    color: #3b9eee !important;
}

.text-info {
    color: #fcc329  !important;
}


/* backgrounds ==== */

.bg-primary {
    background-color: #293e98 !important;
}

.bg-info {
    background-color: #34489d !important;
}

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

.breadcrumb{border-bottom:1px dashed #d3d3d3; margin:0 0 15px; background-color:transparent;padding:0 0 15px; text-transform:uppercase; font-size:12px;}
.breadcrumb>li+li:before{content:"\00BB";color:#3b9eee; margin:0 10px;}
a{color:#3b9eee;}
a:hover{color:#000;}

/*************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;
}


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

.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;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 25px;
    border: 0;
    border-radius: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.btn-primary {
    background-color: #fcc329;
	 color: #34489d;
}

.btn-info {
    background-color: #fcc329;
    color: #34489d;
}

.btn-info:hover {
    background-color: #032b55;
	color:#fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #3b9eee !important;
    border-color: #3b9eee !important;
    color: #ffffff !important;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input-group .btn {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.container {
    max-width: 1570px;
}


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

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

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


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

.form-control,
input.form-control,
input.form-control:focus {
    height: calc(2.4em + 0.9rem);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #c1c1c1;
    color: #555353;
    font-size: 15px;
    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: 110px;
}


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

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

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

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

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


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

#scroll {
    background: #000;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 99999;
    cursor: pointer;
    width: 45px;
    height: 45px;
    text-indent: -9999px;
    display: none;
    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: #3b9eee;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}


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


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

@media (max-width:991.98px) {
    body{
        font-size: 16px;
        line-height: 24px;
    }
    h2, .h2 {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 25px;
    }
    h3, .h3 {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    h4,
    .h4 {
        font-size: 18px;
        line-height: 20px;
    }
    .fs-35 {
        font-size: 32px  !important;
    }
    .btn{
        padding: 10px 20px;
        font-size: 14px;
    }
    
}



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

@media (max-width:767.98px) {
    h1, .h1 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    h2, .h2 {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .fs-35 {
        font-size: 26px !important;
    }
}

