@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

::-moz-selection {
    background: #eb1924;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #eb1924;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #464f82;
}

body {
    font-family: 'Work Sans', sans-serif !important;
    color: #444;
    font-weight: 400;
    overflow-x: hidden !important;
}

body p {
    font-size: 20px;
    line-height: 26px;
    color: #cfd0d5;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}

a {
    color: #222;
    transition: all 0.5s ease 0s
}

a:hover {
    color: #1f4398;
}

ol,
ul {
    list-style: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

hr {
    border-top: 1px solid #eee;
}

/* ============================================
HELPER CLASSES
============================================ */
.bg-white {
    background-color: #fff !important;
}

.bg-black {
    background-color: #232425 !important;
}

.bg-yellow {
    background: #ff9c00;
}

.bg-l-grey {
    background-color: #f5f5f5 !important;
}

.bg-grey {
    background: #eee !important;
}

.bg-light-blue {
    background: #464f82;
    background: -moz-linear-gradient(top, #464f82 0%, #101635 100%);
    background: -webkit-linear-gradient(top, #464f82 0%, #101635 100%);
    background: linear-gradient(to bottom, #464f82 0%, #101635 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#464f82', endColorstr='#101635', GradientType=0);
}
.bg-blue-light {
    background: #464f82;
    background: -moz-linear-gradient(top, #101635 0%, #464f82 100%);
    background: -webkit-linear-gradient(top, #101635 0%, #464f82 100%);
    background: linear-gradient(to bottom, #101635 0%, #464f82 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#464f82', endColorstr='#101635', GradientType=0);
}

.bg-fb {
    background: #3b5998;
}

.bg-twt {
    background: #5ea9dd;
}

.bg-ggl {
    background: #df4b38;
}

.text-white {
    color: #fff !important;
}

.text-d-grey {
    color: #646161 !important;
}
.text-l-grey {
    color: #cfd0d5 !important;
}

.text-black {
    color: #444 !important;
}

.text-d-blue {
    color: #104457 !important;
}

.text-grey {
    color: #979797 !important;
}

.box-shadow {
    box-shadow: 0 0px 30px 0px rgba(0, 0, 0, 0.2);
}

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

.font-reg {
    font-weight: 400 !important;
}
.font-med {
    font-weight: 500 !important;
}
.font-semi {
    font-weight: 600 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.modal-sm {
    max-width: 700px;
    width: 96%;
}

.modal-md {
    max-width: 700px;
    width: 96%;
}

.modal-lg {
    max-width: 900px;
    width: 96%;
}

.bdr-top {
    border-top: 1px solid transparent;
}

.bdr-btm {
    border-bottom: 1px solid transparent;
}

.bdr-lft {
    border-left: 1px solid transparent;
}

.bdr-rt {
    border-right: 1px solid transparent;
}

.bdr-lt {
    border-color: rgba(255, 255, 255, 0.1);
}

.bdr-dark {
    border-color: #e2e2e2;
}

.opacity-50 {
    opacity: 0.5;
}

.btn.focus, .btn:focus {
    box-shadow: none;
}
.btn {
    font-size: 14px;
    border-radius: 25px;
    border: none;
    padding: 0 20px;
    font-weight: 500;
    line-height: 40px;
}

.btn::before {
    border-radius: 30px;
}

.btn::after {
    border-radius: 30px;
}


.btn-lg {
    font-size: 18px;
    border-radius: 30px;
    border: none;
    padding: 0 30px;
    font-weight: 500;
    line-height: 45px;
}

.btn-lg::before {
    border-radius: 30px;
}

.btn-lg::after {
    border-radius: 30px;
}

.btn-red-grad {
    color: #fff;
    border: none;
    text-transform: uppercase;
    box-shadow: none;
    transform: translateY(0);
    position: relative;
    z-index: 2;
    background-color: transparent;
    border: 4px solid rgba(0, 0, 0, 0.15);
    transition: all 0.5s;
}

.btn-red-grad::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(127deg, rgb(253, 39, 39) 0%, rgb(243, 150, 84) 100%);
    background: -moz-linear-gradient(127deg, rgb(253, 39, 39) 0%, rgb(243, 150, 84) 100%);
    background: -webkit-linear-gradient(127deg, rgb(253, 39, 39) 0%, rgb(243, 150, 84) 100%);
    background: -ms-linear-gradient(127deg, rgb(253, 39, 39) 0%, rgb(243, 150, 84) 100%);
    z-index: -2;
    opacity: 1;
    transition: all 0.8s;
}

.btn-red-grad::after {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(127deg, rgb(243, 150, 84) 0%, rgb(253, 39, 39) 100%);
    background: -moz-linear-gradient(127deg, rgb(243, 150, 84) 0%, rgb(253, 39, 39) 100%);
    background: -webkit-linear-gradient(127deg, rgb(243, 150, 84) 0%, rgb(253, 39, 39) 100%);
    background: -ms-linear-gradient(127deg, rgb(243, 150, 84) 0%, rgb(253, 39, 39) 100%);
    opacity: 0;
    z-index: -1;
    transition: all 0.8s;
}

.btn-white {
    color: #222;
    border: none;
    text-transform: uppercase;
    box-shadow: none;
    transform: translateY(0);
    position: relative;
    z-index: 2;
    background-color: transparent;
    border: 4px solid rgba(0, 0, 0, 0.15);
    transition: all 0.5s;
}

.btn-white::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    z-index: -2;
    opacity: 1;
    transition: all 0.8s;
}

.btn-white::after {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background: #222;
    opacity: 0;
    z-index: -1;
    transition: all 0.8s;
}

.btn-red-grad:hover,
.btn-red-grad:focus {
    color: #fff;
}


.btn-red-grad:hover::after,
.btn-red-grad:focus::after {
    opacity: 1;
}


.btn-white:hover,
.btn-white:focus {
    color: #fff;
}


.btn-white:hover::after,
.btn-white:focus::after {
    opacity: 1;
}


.btn-black {
    color: #fff;
    text-transform: uppercase;
    background: #222;
    border: 4px solid rgba(0, 0, 0, 0.2);
    background-color: transparent;
    position: relative;
    transition: all 0.5s;
}

.btn-black::before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background: #222;
    border-radius: 25px;
    transition: all 0.5s;
}

.btn-black:hover,
.btn-black:focus {
    color: #fff;
}

.btn-black:hover::before,
.btn-black:focus::before {
    background: #e33232;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

section {
    float: left;
    width: 100%;
}

.form-control {
    height: 45px;
    color: #222;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0);
    border: 1px solid #ededed;
    transition: all 0.5s;
}

.form-control:focus {
    height: 45px;
    color: #222;
    border-color: #e33232;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.10);
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.5);
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.5);
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.5);
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.5);
}

textarea.form-control {
    height: auto !important;
}

.py-70 {
    padding: 70px 0;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-70 {
    padding-top: 70px;
}

.my-70 {
    margin: 70px 0;
}

.mb-70 {
    margin-bottom: 70px;
}

.mt-70 {
    margin-top: 70px;
}
.rounded-sm {
    border-radius: 10px !important;
}
.rounded-md {
    border-radius: 20px !important;
}

.rounded-lg {
    border-radius: 30px !important;
}
.hover {
    transition: all 0.5s;
    transform: scale(1);
}
.hover:hover {
    box-shadow: 0 0px 30px 0px rgba(0, 0, 0, 0.4);
    transform: scale(1.01);
}
.section-title {
    position: relative;
    display: inline-block;
}
.section-title:before {
    position: absolute;
    content: '';
    left: -15px;
    top: 50%;
    transform: translateX(-100%) translateY(-50%);
    width: 136px;
    height: 17px;
    background: url(../images/title-lft.png) top left no-repeat;
}
.section-title:after {
    position: absolute;
    content: '';
    right: -15px;
    top: 50%;
    transform: translateX(100%) translateY(-50%);
    width: 136px;
    height: 17px;
    background: url(../images/title-rt.png) top left no-repeat;
}

.divider {
    position: relative;
}

.divider:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(left, rgba(30, 87, 153, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(125, 185, 232, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(30, 87, 153, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(125, 185, 232, 0) 100%);
    background: linear-gradient(to right, rgba(30, 87, 153, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(125, 185, 232, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001e5799', endColorstr='#007db9e8', GradientType=1);
}

.user-dashboard h3 {
    line-height: 46px;
}

.feature ul li {
    list-style-image: url(../images/arrow.png);
    margin-left: 25px;
}
.feature ul li p {
    font-weight: 300;
    line-height: 40px;
}

.footer p {
    font-size: 18px;
    color: #000;
    font-weight: 400;
}
.footer a {
    color: #000;
    display:block;
    font-size: 23px;

}
.footer .card-img {
    display: block;
    width: 90px;
    height: 90px;
    left: 50%;
    top: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    content: '';
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 90px;
    font-size: 36px;
    color: #fe2727;
    border: 5px solid #2d345d;
    transition: all 0.5s;
}
.footer .card:hover .card-img {
    border-color: #fe2727;
    border-radius: 20%;
}