/*=======================================================================
[Table of contents]
=========================================================================

1. Font Settings
2. Typography Settings
3. Section Title Settings
4. Button Settings
5. Section Settings
*/

/*------------------------------------------------------------------------------
/ 1. Font Settings
------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

body, html{
    margin: 0;
    padding: 0;
}
/* body{
    line-height: 28px;
    color: #666666;
    letter-spacing: 0;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
    -moz-transition: all ease 400ms;
}
 */
/*------------------------------------------------------------------------------
/ 2. Typography Settings
------------------------------------------------------------------------------*/
/* h1, h2, h3, h4, h5, h6{
    color: #222d39;
    font-weight: 700;
    margin: 0 0 15px;
} */
button:focus{
    outline: none;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none; 
    appearance: none;
    -moz-appearance: none;
    margin: 0; 
}
input[type="number"] {
    -moz-appearance: textfield !important;
}
a{
    color: #222d39;
    text-decoration: none;
    transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
    -moz-transition: all ease 400ms;
}
a:hover, a:focus{
    text-decoration: none;
    outline: 0;
}
a:focus{
    color: #fff;
}
ul li{
    margin: 0;
    padding: 0;
    list-style: none;
}

/*------------------------------------------------------------------------------
/ 3. Section Title Settings
------------------------------------------------------------------------------*/
.noPadding{
    padding: 0;
}
.noPaddingRight{
    padding-right: 0;
}
.noPaddingLeft{
    padding-left: 0;
}

/*------------------------------------------------------------------------------
/ 4. Button Settings
------------------------------------------------------------------------------*/
.cor_btn{
    border: none;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(to right, #4c0062, #55007d, #59009b, #5600bb, #4900dd);
    color: #fff;
    height: 50px;
    text-align: center;
    padding: 18px 40.2px;
    display: inline-block;
    line-height: .8;
    letter-spacing: 0;
    position: relative;
    border-radius: 3px;
    z-index: 1;
    cursor: pointer;
    outline: none;
    text-transform: capitalize;
    -webkit-transition: .6s;
    transition: .6s;
}
.cor_btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    border-radius: 3px;
    background: #4900dd;
    z-index: -1;
    -webkit-transition: .4s;
    transition: .4s;
}
.cor_btn::after {
    content: '';
    position: absolute;
    left: 0;
    border-radius: 3px;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #4900dd;
    z-index: -1;
    -webkit-transition: .4s;
    transition: .4s;
}
.cor_btn:hover, .cor_btn:focus {
    color: #fff;
}
.cor_btn:hover::after, .cor_btn:focus::after {
    height: 0;
}
.cor_btn:hover::before, .cor_btn:focus::before {
    height: 0;
}

/*------------------------------------------------------------------------------
/ 5. Section Settings
------------------------------------------------------------------------------*/
.sub_title{
    font-size: 22px;
    line-height: .8;
    color: #4900dd;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.sec_title{
    font-size: 40px;
    line-height: 55px;
    color: #222d39;
    margin: 0 0 21px;
}
.sec_desc{
    margin: 0 0 55px;
}
.white{
    color: #fff;
}
.padd_25{
    padding-left: 25px;
    padding-right: 25px;
}
.paddBottom_27{
    padding-bottom: 27px;
}
.paddTop_145{
    padding-top: 145px;
}
.mt_30{
    margin-top: 30px;
}