@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
/*font-family: 'Open Sans', sans-serif;*/


*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
    padding: 0;
}

html {
    font-size: 15px;
}

body {
    font-size: 100%;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    margin-top: 78px;
}

body a {
    text-decoration: none !important;
    color: #ce1b28;
}

body a:hover,
body a:focus {
    color: #ce1b28;
}

section {
    padding: 70px 0;
}

.section_title {
    font-size: 200%;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section_title span {
    display: block;
    color: #ce1b28;
}

.section_title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #2d3559;
}

.section_title::after {
    content: '';
    position: absolute;
    left: 65px;
    bottom: 0;
    width: 10px;
    height: 3px;
    background-color: #2d3559;
}

.section_title.text-center::before {
    left: 50%;
    transform: translateX(-50%);
}

.section_title.text-center::after {
    left: calc(50% + 35px);
}

.has_shadow {
    box-shadow: 9.899px 9.899px 30px 0 rgba(0, 0, 0, .1);
}

.bg_img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg_attached {
    background-attachment: fixed;
}

.bg_grey {
    background-color: #f5f5f5;
}

.w-100 {
    width: 100%;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-0 {
    padding-top: 0;
}

.web_content p {
    margin-bottom: 10px;
}

.web_content p:last-child {
    margin-bottom: 0;
}

.web_content .title {
    font-size: 120%;
    font-weight: 700;
}

.web_content li {
    margin-bottom: 10px;
}

/*icon list*/

.icon_list {
    list-style: none;
}

.icon_list li {
    position: relative;
    margin-bottom: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
}

.icon_list li::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #ce1b28;
    display: inline-block;
    content: '\f00c';
    font-family: fontAwesome;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.icon_list li span {
/*    padding-left: 15px;*/
    font-size: 120%;
    font-weight: 700;
}

/*//icon list*/

/*web btn*/

.web_btn {
    color: #fff;
    padding: 12px 30px;
    display: inline-block;
    cursor: pointer;
    border-color: transparent;
    background-color: #2d3559;
    border: 2px solid #2d3559;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 30px;
    text-decoration: none !important;
    font-weight: 700;
    text-transform: capitalize;
}

.web_btn::after {
    background-color: #fff;
    content: "";
    height: 100%;
    left: 0;
    opacity: .1;
    position: absolute;
    top: 0;
    transform: skewX(25deg);
    transition: all .5s ease 0s;
    width: 0;
    z-index: -1;
}

.web_btn:hover,
.web_btn:focus {
    color: #fff;
    background-color: #2d3559;
}

.web_btn:hover::after,
.web_btn:focus::after {
    left: 5%;
    width: 90%;
    z-index: 1;
}

.ghost_btn {
    background-color: transparent;
    color: #000;
}

.ghost_btn:hover {
    background-color: #000;
}

.white_btn {
    border-color: #fff;
    background-color: #fff;
    color: #2d3559;
}

.white_btn:hover,
.white_btn:focus {
    background-color: transparent;
    color: #fff;
}

.small_btn {
    padding: 10px 15px;
    font-size: 90%;
    margin-top: 15px;
}

.big_btn {
    padding: 15px 40px;
    font-size: 110%;
}

.btn_danger {
    background-color: #ce1b28;
    border-color: #ce1b28;
}

.btn_danger:hover,
.btn_danger:focus {
    color: #fff;
    background-color: #ce1b28;
}

/*pulse animation*/

.flash_btn {
    box-shadow: 0 0 0 0 rgba(12, 113, 195, .7);
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.flash_btn:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

/*//pulse animation*/


/*//web btn*/


/* owl carousel */

/* fix blank or flashing items on carousel */

.owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}

/* end fix */

.owl-nav > div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    background: #ce1b28;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 2px;
}

.owl-nav i {
    font-size: 100%;
}

.owl-nav .owl-prev {
    left: -50px;
}

.owl-nav .owl-next {
    right: -50px;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-carousel .owl-dot {
    display: inline-block;
    margin-right: 10px;
}

.owl-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #ddd;
    border-radius: 50%;
    transition: all .5s;
}

.owl-carousel .owl-dot.active span {
    background-color: #231F20;
    width: 20px;
    border-radius: 10px;
}

.owl-carousel .owl-stage {
    padding: 20px 0;
}

/* //owl carousel */

/*web modal*/

.web_modal .modal-body {
    padding: 30px;
}

#calcModal.web_modal .modal-body {
    height: 70vh;
    overflow-y: auto;
}

.web_modal .modal-content {
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

.web_modal .modal-content .modal-header {
    background-color: #ce1b28;
    border: 0;
}

.web_modal .modal-content .modal-header .modal-title {
    color: #fff;
    font-size: 150%;
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
}

.web_modal .modal-header .close {
    font-size: 200%;
    color: #fff;
    opacity: 1;
}

.web_modal .modal-footer {
    text-align: center;
}

/*//web modal*/

/* navbar */

.navbar {
    margin-bottom: 0;
    box-shadow: 0 15px 40px -20px rgba(40, 44, 63, .15);
    background-color: #fff;
    border-radius: 0;
    border: 0;
}

.navbar-nav > li > a {
    color: #000;
    font-size: 110%;
    font-weight: 600;
}

.nav > li > a:hover,
.nav > li > a:focus {
    background-color: transparent;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: transparent;
}

.navbar-toggle {
    border-color: transparent;
}

.navbar-toggle .icon-bar {
    background-color: #000;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand > img {
    height: 50px;
}

.web_logo {
    font-weight: 700;
}

.web_logo img {
    width: 48px;
}

.web_logo .title {
    font-size: 120%;
}

.web_logo .title span {
    color: #000;
}

.nav_contact span {
    display: block;
}

.nav_contact .title {
    font-size: 80%;
}

.nav_contact .desc {
    font-size: 110%;
    font-weight: 700;
    color: #ce1b28;
}

/* //navbar */

/*home*/

#mail_sent {
    margin-bottom: 0;
    background-color: #f9f9f9;
    color: #ce1b28;
    font-size: 110%;
}

/*full height banner*/

.banner_box {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

.home_banner .title {
    font-size: 200%;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    margin-top: -30px;
}

.banner_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.banner_content,
.banner_form {
    width: 50%;
    padding: 70px 50px 70px;
}

.banner_form {
    background-color: #ce1b28;
}

.banner_icon_wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

.banner_icon_box {
    width: calc(100%/3 - 10px);
    margin-right: 10px;
    margin-top: 30px;
    padding: 15px;
    border: 1px dashed #ce1b28;
    text-align: center;
    border-radius: 5px;
}

.banner_icon_box img {
    width: 64px;
}

.banner_icon_box .box_title {
    font-size: 110%;
    color: #fff;
    margin-top: 10px;
}

.banner_form form {
    margin-top: 30px;
}

.banner_form label {
    color: #fff;
}

/*//full height banner*/

/*icon box*/

.icon_box {
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 9.899px 9.899px 30px 0 rgba(0, 0, 0, .1);
    border-radius: 5px;
}

.icon_box .title {
    margin-top: 10px;
    font-weight: 600;
    font-size: 110%;
}

.icon_box .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
    background-color: #ce1b28;
}

.icon_box .icon img {
    width: 40px;
}

/*//icon box*/

/*quotes*/

.quote_box {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

.quote_box img {
    width: 100%;
}

.quote_box > div {
    width: 50%;
}

.quote_box.reverse {
    flex-direction: row-reverse;
}

.quote_box .content {
    padding: 50px;
    background-color: #f5f5f5;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    justify-content: center;
}

.quote_box .content .title {
    font-size: 250%;
    font-weight: 700;
}

.quote_box .content i {
    font-size: 300%;
    position: absolute;
    left: 15px;
    top: 15px;
    color: #ce1b28;
}

.quote_box.reverse .content {
    background-color: rgba(206, 27, 40, 0.1);
}

/*//quotes*/

/*services*/

.services_box {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 9.899px 9.899px 30px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
}

.services_box .img img {
    width: 100%;
}

.services_box .title img {
    width: 32px !important;
    margin-right: 10px;
    display: inline-block !important;
}

.services_box > .content > .title {
    font-size: 120%;
    font-weight: 700;
}

.services_box > .content > .title {
    padding: 15px;
    width: 100%;
    background-color: #ce1b28;
    text-align: center;
    color: #fff;
    transition: all .5s;
}

.services_box .box_content {
    padding: 15px;
    padding-bottom: 70px;
    text-align: center;
    min-height: 300px;
    position: relative;
}

.services_box .box_content .web_btn {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
}

/*.services_box .overlay {
    padding: 30px;
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    transition: all .5s;
}

.services_box .overlay .title {
    margin-bottom: 15px;
}

.services_box:hover .content {
    bottom: -100%;
}

.services_box:hover .overlay {
    bottom: 0;
}*/

/*//services*/

/*features*/

.features_box {
    margin-bottom: 30px;
}

.features_box .title {
    font-size: 120%;
    font-weight: 700;
    margin-bottom: 15px;
}

.features_box .content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

.features_box .content .icon {
    /*width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #2d3559;*/
}

.features_box .content .icon img {
    width: 60px;
}

.features_box .content .web_content {
    width: calc(100% - 75px);
    margin-left: 15px;
}

/*//features*/

/*contact*/

.contact_wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 9.899px 9.899px 30px 0 rgba(0, 0, 0, .1);
}

.contact_box {
    padding: 50px;
    width: 50%;
    text-align: center;
    position: relative;
    padding-bottom: 150px;
}

.contact_box .call_on {
    font-size: 120%;
}

.contact_box .call_on a {
    display: block;
    padding: 10px;
    background-color: #2d3559;
    color: #fff;
    width: 200px;
    margin: 0 auto;
    margin-top: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 90px;
}

.contact_box .icon {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-color: #ce1b28;
    padding: 10px;
}

.contact_box .icon img {
    width: 48px;
}

/*//contact*/

/*//home*/

/*form*/

label {
    font-weight: normal;
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #eee;
    height: 50px;
    font-size: 100%;
    vertical-align: middle;
    border-radius: 0;
    box-shadow: none;
}

textarea.form-control {
    height: 125px;
    resize: none;
}

.form-control:focus {
    border-color: #ddd;
    box-shadow: none;
}

/*//form*/

/* footer */

.footer_box {
    margin-bottom: 30px;
}

.footer_box:last-child {
    margin-bottom: 0;
}

.footer_box .title {
    font-size: 120%;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer_box img {
    width: 50px;
    padding: 10px;
    background-color: #2d3559;
    margin-right: 10px;
}

.footer_links {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.footer_links li {
    width: calc(100%/4 - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
}

#copyright {
    background-color: #ce1b28;
}

#copyright p {
    text-align: center;
    padding: 20px 0;
    color: #fff;
}

#copyright a {
    color: #fff;
}

/* footer */