@import url("//hello.myfonts.net/count/371d1e");


@font-face {
    font-family: 'montrealbold';
    src: url('/includes/css/fonts/montrealbold-webfont.woff2') format('woff2'),
        url('/includes/css/fonts/montrealbold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticabold';
    src: url('/includes/css/fonts/helvetica-bold-02-webfont.woff2') format('woff2'),
        url('/includes/css/fonts/helvetica-bold-02-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticaregular';
    src: url('/includes/css/fonts/helvetica-01-webfont.woff2') format('woff2'),
        url('/includes/css/fonts/helvetica-01-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}







/*Base*/
html,
body {
    overflow-x: hidden;
    color: #505252;
    font-family: 'Open Sans', sans-serif;
    font-size: 19px;
    line-height: 1.6;
}

ul,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul.margins {
    margin-bottom: 10px;
    padding-left: 30px;
}

li {
    display: list-item;
    list-style-type: none;
}

ul.margins li {
    list-style-type: disc;
}

a:hover {
    text-decoration: none;
    color: #4ba4d1;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #fff;
    opacity: 1;
}



/*General*/
.display-none {
    display: none;
}

.width100 {
    width: 100%;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.img-responsive {
    max-width: 100%;
}

.container-fluid.full {
    padding: 0px;
}


/*Responsive Video*/
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}






/*Paddings*/
.padding10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padding60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.padding80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.padding100 {
    padding-top: 100px;
    padding-bottom: 100px;
}


.padding-all-10 {
    padding: 10px;
}

.padding-all-20 {
    padding: 20px;
}

.padding-all-30 {
    padding: 30px;
}

.padding-all-40 {
    padding: 40px;
}

.padding-all-50 {
    padding: 50px;
}

.padding-all-60 {
    padding: 60px;
}

.padding-all-80 {
    padding: 80px;
}

.padding-all-100 {
    padding: 100px;
}

.margin-bottom-xs {
    margin-bottom: 20px;
}




/*Text*/
.upper {
    text-transform: uppercase;
}

.heading1 {
    font-family: 'montrealbold';
    font-size: 37px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.heading2 {
    font-family: 'montrealbold';
    font-size: 32px;
    margin-bottom: 0px;
    line-height: 1.1;
}

.heading3 {
    font-family: 'montrealbold';
}

.heading4 {
    font-family: 'montrealbold';
}

.text-white {
    color: #fff;
}

.text-primary {
    color: #25aae1 !important;
}

.text-success {
    color: #97d635 !important;
}

.text-info {
    color: #44bfa9 !important;
}

.text-dark {
    color: #212221 !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.7) !important;
}

a.text-primary:hover {
    color: #2393c1 !important;
}

a.text-success:hover {
    color: #86b037 !important;
}






/*Backgrounds*/
.bg-light {
    background: #f0f2f1 !important;
}

.bg-primary {
    background: #25aae1 !important;
}

.bg-success {
    background: #9acb3c !important;
}

.bg-info {
    background: #44bfa9 !important;
}

.bg-dark {
    background: #212221 !important;
}

a.bg-primary:hover {
    background: #2393c1 !important;
    color: white;
}

a.bg-success:hover {
    background: #86b037 !important;
    color: white;
}



/*Buttons*/
.btn {
    transition: all .3s ease;
    border-radius: 3px;
    padding: 5px 15px;
    font-family: 'montrealbold';
    text-transform: uppercase;
}

.btn-lg {
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 24px;
}

.btn-xl {
    padding: 15px 105px;
    border-radius: 15px;
    font-size: 48px;
}


.btn-primary {
    background: #25aae1;
    border: 1px solid #25aae1;
    color: white;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:hover {
    background: #2393c1;
    border: 1px solid #2393c1;
    color: white;
}

.btn-success {
    background: #97d635;
    border: 1px solid #97d635;
    color: white;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active:hover {
    background: #86b037;
    border: 1px solid #86b037;
    color: white;
}

.btn-info {
    background: #44bfa9;
    border: 1px solid #44bfa9;
    color: white;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active:hover {
    background: #3c9d8c;
    border: 1px solid #3c9d8c;
    color: white;
}

.btn-white-info {
    background: #fff;
    border: 1px solid #fff;
    color: #44bfa9;
}

.btn-white-info:hover,
.btn-white-info:focus,
.btn-white-info:active:hover {
    background: #eee;
    border: 1px solid #eee;
    color: #3c9d8c;
}



.btn-white-green {
    background: #fff;
    border: 1px solid #fff;
    color: #97d635;
}

.btn-white-green:hover,
.btn-white-green:focus,
.btn-white-green:active:hover {
    background: #eee;
    border: 1px solid #eee;
    color: #97d635;
}

.btn-white-blue {
    background: #fff;
    border: 1px solid #fff;
    color: #25aae1;
}

.btn-white-blue:hover,
.btn-white-blue:focus,
.btn-white-blue:active:hover {
    background: #eee;
    border: 1px solid #eee;
    color: #25aae1;
}

.btn-white-primary {
    background: #fff;
    border: 1px solid #fff;
    color: #25aae1;
}

.btn-white-primary:hover,
.btn-white-primary:focus,
.btn-white-primary:active:hover {
    background: #eee;
    border: 1px solid #eee;
    color: #25aae1;
}

.btn-white-black {
    background: #fff;
    border: 1px solid #fff;
    color: #212121;
}

.btn-white-black:hover,
.btn-white-black:focus,
.btn-white-black:active:hover {
    background: #eee;
    border: 1px solid #eee;
    color: #212121;
}



/*Top Bar*/
.top-bar {
    background: #212121;
    padding: 10px 0 5px;
}

.top-bar .logo {
    display: inline-block;
}

.top-bar .logo img {
    display: block;
    max-width: 237px;
    margin-left: 10px;
}

.top-bar .menu {
    display: none;
}

.top-bar .menu a {
    color: white;
    text-transform: uppercase;
    padding: 5px 10px;
    border-left: 1px solid #696a69;
    font-size: 16px;
}

.top-bar .menu a.active {
    color: #97d635;
    font-weight: bold;
}

.top-bar .menu a:first-child {
    border-left: none;
}

.top-bar .submenu {
    display: none;
}

.margin-bottom-20-mobile {
    margin-bottom: 20px;
}



/*Mobile Menu*/
.mobile-menu-btn svg {
    color: white;
    font-size: 28px;
    margin-right: 10px;
    margin-top: -4px;
    cursor: pointer;
}

.mobile-menu {
    position: absolute;
    top: 63px;
    left: 0px;
    background: #212121;
    padding: 20px;
    display: none;
    width: 100%;
    z-index: 100000;
}

.mobile-menu a {
    color: white;
    display: block;
    margin-bottom: 10px;
}

.mobile-menu a.active {
    color: #97d635;
    font-weight: bold;
}

.mobile-menu a:last-child {
    margin-bottom: 0px;
}


/*Banner*/
.banner {
    background: url(../img/home-bg.jpg) no-repeat 0px 0px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 60px 0;
}

.banner-title {
    font-family: 'montrealbold';
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.banner-text {
    color: white;
    font-size: 19px;
}

.trees-scn {
    position: relative;
}

.trees-scn:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 402px;
    width: 100%;
    background: #97d635;
}

.trees-scn .trees-title {
    margin-top: 0px;
    color: white;
}

.trees-scn .trees {
    margin-top: 240px;
    max-width: 700px;
}

.home-phone-bg {
    padding-top: 0px;
}



.phone-number-block {
    padding: 20px;
    color: white;
    font-family: 'montrealbold';
    font-size: 21px;
    display: block;
    margin-bottom: 20px;
}

.phone-number-block.ride {
    background: #23aae1;
}

.phone-number-block.drive {
    background: #44bfa9;
}



.light-scn {
    margin-bottom: 60px;
}


.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}


.driver-banner {
    background: url(/includes/img/driver-bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 60px 0;
}

.driver-phone {
    position: relative;
}

.driver-phone .heading1 {
    margin-top: 40px;
}



/*Phone Rider*/
.phone-rider-left {
    padding-right: 80px;
    text-align: right;
    font-size: 26px;
    font-family: 'montrealbold';
}

.phone-rider-right {
    padding-left: 80px;
    font-size: 26px;
    font-family: 'montrealbold';
}

.phone-rider-left p,
.phone-rider-right p {
    position: relative;
}

.phone-rider-left p:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
    height: 2px;
    width: 60px;
    background: #212121;
}

.phone-rider-right p:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -80px;
    height: 2px;
    width: 60px;
    background: #212121;
}




.about-banner {
    background: url(/includes/img/about-bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 120px 0;
}

.text-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.text-box span {
    display: block;
    font-family: 'montrealbold';
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.1;
}



.call-about-banner {
    background: url(/includes/img/call-about-banner.png) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 264px 0;
}

.globe-scn {
    background: url(/includes/img/globe-bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 264px 0;
}

.investor-banner {
    position: relative;
}

.canada-leaf {
    display: none;
    position: absolute;
    bottom: 0px;
}


.social-responsibility .heading1,
.our-roles .heading1 {
    margin-top: 60px;
}

.support-scn-inner {
    padding-top: 60px;
    padding-bottom: 60px;
}










/*Download Badges*/
.download-badges {
    margin-bottom: 10px;
}

.download-badges p {
    font-family: 'helveticabold';
    font-size: 28px;
    margin-bottom: 0px;
}

.download-badges img {
    max-height: 30px;
}



/*Forms*/
.form-group span {
    font-size: 21px;
    font-family: 'montrealbold';
}

.form-group .form-control {
    border: 1px solid #212121;
    padding: 10px 15px;
    font-size: 18px;
}

.form-group .form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: #97d635;
}








.blog-sidebar {
    background: #f0f2f1;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.blog-sidebar .blog-item {
    margin-bottom: 30px;
}

.blog-sidebar .blog-item:last-child {
    margin-bottom: 10px;
}

.blog-sidebar .blog-item p.title {
    font-family: 'helveticabold';
    font-size: 24px;
    margin-bottom: 5px;
}

.blog-sidebar .blog-search input {
    background: white;
    border-color: white;
    box-shadow: none;
    color: #565656;
    font-family: 'helveticabold';
}

.blog-sidebar .blog-search .btn {
    border-color: white;
}

.blog-sidebar .blog-search .btn:hover {
    background: white;
}

.blog-sidebar .blog-categories ul {
    margin-left: 20px;
}

.blog-sidebar .blog-categories ul li {
    list-style-type: square;
    margin-bottom: 5px;
}

.blog-sidebar .blog-categories ul li a {
    color: #565656;
    font-size: 16px;
}

.blog-sidebar .blog-tags ul li {
    display: inline-block;
}

.blog-sidebar .blog-tags ul li a {
    background: white;
    display: block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #565656;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.blog-sidebar .blog-recents .recent-post {
    background: white;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 20px;
}

.blog-sidebar .blog-recents .recent-post svg {
    color: #ccc;
    font-size: 32px;
    float: left;
}

.blog-sidebar .blog-recents .recent-post .post-title {
    margin-bottom: 4px;
    margin-left: 45px;
    font-family: 'helveticabold';
    line-height: 1.3;
    font-size: 16px;
}

.blog-sidebar .blog-recents .recent-post .date {
    margin-bottom: 0px;
    margin-left: 45px;
    font-size: 14px;
}

.blog-sidebar .blog-recents .recent-post:first-child {
    border-radius: 4px 4px 0 0;
}

.blog-sidebar .blog-recents .recent-post:last-child {
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
}

.blog-sidebar .blog-share a {
    display: inline-block;
    background: white;
    border: 1px solid #ddd;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    color: #565656;
    font-size: 24px;
    border-radius: 4px;
    transition: all .3s ease;
}

.blog-sidebar .blog-share a:hover {
    background: #11d4aa;
    color: white;
    border-color: #11d4aa;
}

.blog-sidebar .blog-writter .desc {
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    padding: 20px;
}





.blog-card {
    text-align: left;
    position: relative;
    border: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.blog-card .post-tags {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 10px;
}

.blog-card img {
    border-radius: 4px 4px 0px 0px;
}

.blog-card .post-tags a {
    background: #333;
    color: white;
    display: inline-block;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 14px;
    font-family: 'helveticabold';
    margin-bottom: 5px;
    border: 1px solid #333;
    transition: all .3s ease;
}

.blog-card .post-tags a:hover {
    background: #eee;
    color: #333;
}

.blog-card p.blog-card-title {
    font-family: 'helveticabold';
    font-size: 21px;
    padding: 20px;
}

.blog-card .desc {
    padding-left: 20px;
    padding-right: 20px;
}

.blog-card .author {
    padding-top: 25px;
    padding-left: 20px;
}

.blog-card .author .author-name {
    font-family: 'helveticabold';
}

.blog-card .btn {
    margin-top: 0px;
    margin-left: 20px;
}

.blog-paging {
    margin-bottom: 20px;
}

.blog-paging a {
    height: 30px;
    width: 30px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    font-family: 'helveticabold';
    color: #565656;
    background: white;
    margin-right: 10px;
}

.blog-paging a.active,
.blog-paging a:hover {
    background: #25aae1;
    color: white;
    border-color: #25aae1;
}




/*Blog Post*/
.blog-post-main .post-title {
    font-family: 'helveticabold';
    font-size: 24px;
}

.blog-post-main .post-details {
    margin-bottom: 30px;
}

.blog-post-main .post-details img {
    width: 50px;
    border-radius: 50px;
    margin-right: 10px;
}

.blog-post-main .post-details h4 {
    font-family: 'helveticabold';
    font-size: 16px;
}

.blog-post-main .post-details span {
    margin-right: 10px;
    font-size: 16px;
}

.blog-post-main .post-details span i {
    margin-right: 3px;
}

.blog-post-main .post-img img {
    border-radius: 4px 4px 0 0;
}

.blog-post-main .post-content {
    background: white;
    border: 1px solid #ddd;
    border-radius: 0px 0px 4px 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.blog-post-main .post-bottom-tags {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 0 5px;
}

.blog-post-main .post-bottom-tags p {
    font-family: 'helveticabold';
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0px;
}

.blog-post-main .post-bottom-tags a {
    background: white;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #565656;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}


/* ....cutsom style........ */
.logo_img {
    width: auto;
    height: 50px;
}

.logo_img2 {
    width: auto;
    height: 50px;
}

.bg1 {
    background-image: url('../img/img1.jpg');
    background-position: center;
    background-size: cover;
    padding: 80px;
    transition: background 1s linear;
}

.bg-wht {
    /* border-top: 1px solid #eee; */
    border-top-width: thin;
    width: 50%;
    height: 490px;
    background: #ffff;
    margin-top: -19px;
    padding: 30px;
}

.upButtons {
    border-radius: 1px solid black;
}

.bg-wht a:hover {
    border-bottom: 1px solid black;
    /* or whatever colour you'd prefer */

}

#pills-home-tab {
    background-color: white;
    color: black;


}

.nav-pills a {
    font-size: 14px !important;
    letter-spacing: 1px;
    font-weight: bold !important;
    border-bottom: 2px solid transparent;
}

/* .nav-pills a:hover {
	border-bottom: 2px solid black;
	border-radius: 0px;
  } */
.nav-pills a.active {
    border-bottom: 3px solid black;
    border-radius: 0px;
    color: #97d635 !important;
}

#pills-profile-tab {
    background-color: white;
    color: black;
}

#pills-contact-tab {
    background-color: white;
    color: black;
}

#pills-business-tab {
    background-color: white;
    color: black;
}

.bg-wht h1 {
    color: black;
    padding: 20px 10px 15px 34px;
    font-weight: bold;
}

.bg-wht p {
    padding: 11px 10px 15px 30px;
}

.bg-wht button {
    background-color: black;
    color: white;
    font-weight: bold;
    margin-left: 30px;
    margin-bottom: 20px;
    font-size: small;
    padding: 10px 15px;
}

.bg-wht .mainLink {
    color: black;
    padding: 5px 30px;
    margin-top: 20px;
    border-bottom: 1px solid grey;
    border-bottom-width: thin;
}

.headde {
    position: relative;
    top: 10px;
}

.order_btn_new {
    background-color: #44bfa9;
    color: white;
    font-weight: bold;
    margin-left: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    padding: 10px 15px;
    font-weight: 100;
    border: #44bfa9;
    outline: none;
}

.order_btn_new:hover {
    outline: none;
    color: white;
}

.nav-pills {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
}

.nav-pills .nav-link {
    white-space: nowrap;
}




.mrgn-top {
    margin-top: 8px !important;
    padding: 10px 15px 15px 30px !important;

}

.modal_right_img1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*modal css*/
.modal_right_img {
    width: 100%;
}

.out-border {
    border: 2px solid #221e1e;
    padding: 5px;
    padding-right: 10px;
}

.out-border p {
    font-size: 16px;
    font-weight: lighter;
}

.close-btn {
    position: absolute;
    right: 3px;
    top: -5px;
    color: #fff;
}

.pad-lft {
    margin: 0 0 0 0 !important;
    /* margin-top: 8px !important; */
    padding: 15px 30px 15px 15px !important;
    /*padding: 0px 0px 0px 0px;*/
}

.pad-0 {
    padding: 0px;
}

.read_more_btn {
    background-color: #FFD769;
    color: #000;
    font-weight: bold;
    margin-left: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    padding: 10px 15px;
    font-weight: 100;
    border: #FFD769;
    outline: none;
    margin-left: -1px;
}

.read_more_btn:hover {
    outline: none;
    color: #000;
}

.r_more_div {
    margin-bottom: 18px;
}

/*Footer*/
.footer {
    background: #212121;
    padding: 60px 0;
}

.footer-block {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 28px;
    color: white;
    text-transform: uppercase;
    font-family: 'montrealbold';
}

.footer-subtitle {
    font-size: 18px;
    color: white;
    text-transform: uppercase;
    font-family: 'montrealbold';
}

.footer-content {
    display: block;
    font-size: 18px;
    color: white;
    font-family: 'montrealbold';
}

.copyright-text {
    text-align: center;
    margin-top: 60px;
    color: #fff;
    font-size: 16px;
}

.copyright-text a {
    color: white;
}

.hide {
    display: none;
}

.margn-5 {
    margin-left: 2.5rem !important;
}


@media (min-width: 768px) {

    .download-badges img {
        max-height: 50px;
    }

    .trees-scn:before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        height: 500px;
        width: 100%;
        background: #97d635;
    }

    .trees-scn .trees-title {
        margin-top: 50px;
        color: white;
    }

    .heading1 {
        font-family: 'montrealbold';
        font-size: 47px;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .phone-number-block {
        padding: 20px;
        color: white;
        font-family: 'montrealbold';
        font-size: 21px;
        display: inline-block;
    }

    .driver-phone:before {
        content: url(/includes/img/carbackground.jpg);
        position: absolute;
        bottom: 0px;
        left: 0px;
        max-width: 100%;
    }

    /* .modal_right_img1 {
    width: 99% !important;
    height: 477px;
}*/

    /* .close-btn {
	position: absolute;
	right: 3px;
	top: -7px !important;
	color: #000 !important;
} */



    .modal-dialog {
        max-width: 800px;
        margin: 1.75rem auto;
    }

    .close-btn {
        position: absolute;
        right: -7px;
        top: 3px !important;
        color: #000 !important;
    }



    .mrgn-top {
        margin: 0 0 0 0 !important;
    /* margin-top: 8px !important; */
    padding: 15px 15px 15px 30px !important;
    }

    .modal.show .modal-dialog {
        position: unset;
        transform: none;
    }
}

@media (max-width: 767px) {

    /*
	.modal_right_img1 {
    width: 99% !important;
    height: 477px;
}
*/
    .mrgn-top {
        margin-top: 15px;
        padding: 0px 30px 20px 30px !important;
    }

    */ .close-btn {
        position: absolute;
        right: 3px;
        top: -7px !important;
        color: #000 !important;
    }
}

@media only screen and (max-width: 768px) {

    .bg1 {
        background-image: url(../img/img1.jpg);
        background-position: center;
        background-size: cover;
        padding: 80px 20px 20px;
        transition: background 1s linear;
    }

    .bg-wht h1 {
        width: 100% !important;
        /* margin-bottom: 0px !important;
		padding: 0px 22px !important; */
        padding: 25px 15px !important;
        font-size: 22px;


    }

    .bg-wht {
        margin: 0px !important;
        /* padding: 0px !important; */
        width: 100%;
        height: auto;
    }

    .upButtons > li {
        display: table-cell;
    }

    .bg-wht p {
        /* font-size: 15px;
		padding: 11px 10px 15px 20px; */
        font-size: 15px;
        padding: 5px 10px 5px 17px;
    }

    .order_btn_new {
        background-color: black;
        color: white;
        font-weight: bold;
        margin-left: 20px;
        margin-bottom: 20px;
        font-size: 13px;
        padding: 10px 9px;
        font-weight: 100;
    }

    .out-border {
        padding: 0 !important;
    }

    .pad-lft {
        padding: 0px 8px 0px 14px !important;
    }

    .close-btn {
        position: absolute;
        right: 3px;
        top: 0px !important;
        color: #000 !important;
        font-size: 22px;
    }
}

.bg-white li {
    list-style-type: none !important;
}

.bg-wht .mainLink {
    position: absolute !important;
}

/* .bg1{
	   background-image: none !important; 
	  padding: 0px !important;
  }  */




@media (min-width: 992px) {
    .mrgn-top {
        padding: 7px 14px 16px 30px !important;
        margin-top: 7px !important;

    }



    .margin-bottom-20-mobile {
        margin-bottom: 0px;
    }

    .banner {
        background: url(../img/home-bg.jpg) no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        padding: 60px 0;
    }

    .trees-scn .trees-title {
        margin-top: 50px;
        color: white;
    }

    .text-box {
        text-align: center;
        padding: 20px;
        border: 1px solid #ddd;
        margin-bottom: 0px;
    }


}

@media (min-width: 1200px) {

    .top-bar .menu {
        display: inline-block;
        position: relative;
        display: inline-block;
        top: -4px;
    }

    .mobile-menu-btn {
        display: none;
    }

    .trees-scn .trees-title {
        margin-top: 100px;
        color: white;
    }

    .canada-leaf {
        display: block;
        position: absolute;
        bottom: 0px;
        height: 140px;
    }

}

@media (min-width: 1440px) {}

@media (min-width: 1600px) {

    .social-responsibility .heading1,
    .our-roles .heading1 {
        margin-top: 0px;
    }

    .top-bar {
        background: #212121;
        padding: 0px;
    }

    .top-bar .menu {
        display: inline-block;
        position: relative;
        display: inline-block;
        top: 0px;
    }

    .top-bar .submenu {
        display: block;
    }

    .top-bar .submenu a {
        display: inline-block;
        padding: 25px 40px;
        color: white;
        text-transform: uppercase;
        font-family: 'montrealbold';
        font-size: 24px;
        margin-left: -4px;
    }

    .canada-leaf {
        display: block;
        position: absolute;
        bottom: 0px;
        height: auto;
    }

}

@media only screen and (max-width: 425px) {
   

    .launch_modal {
        font-size: 25px !important;
    }

   .close-btn {
    position: absolute;
    right: 4px;
    top: -1px !important;
    color: #000 !important;
}

    .modal_right_img1 {
        width: 99%;
        height: 100%;
        object-fit: cover;

    }

    .modal.show .modal-dialog {
        position: unset;
        transform: none;
    }
    
    .mrgn-top {
    margin-top: 15px;
    padding: 10px 30px 18px 30px !important;
}
}

@media (max-width:320px) {
    .mrgn-top {
        margin-top: 8px !important;
        padding: 1px 24px 10px 24px !important;
    }

    .close-btn {
        position: absolute;
        right: 17px;
        top: 10px !important;
        color: #000 !important;
    }
    .modal_right_img1 {
    width: 98%;
    height: 100%;
    object-fit: cover;
}
}

/*Margin Resets*/
.margin-bottom-0 {
    margin-bottom: 0px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.margin-bottom-80 {
    margin-bottom: 80px;
}

.margin-bottom-100 {
    margin-bottom: 100px;
}


/*Newly Added for blog posts*/
.blog-search-input {
    background-color: transparent;
    border: none;
    outline: none;
    color: gray;
    position: relative;
    font-size: 17.5px;
    width: 0px;
    left: 0;
    border-bottom-style: solid;
    border-bottom-color: gray;
    border-bottom-width: 1px;
    transition: 0.3s;
    opacity: 0;
}


.blog-category-filter .title-row {
    display: -webkit-box;      
    display: -moz-box;        
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex; 
    flex-direction: row;
    align-items: left;
    margin-bottom: 20px;
    position: relative;
    flex-wrap: wrap;
}

.category-title {
    /* font-family: 'helveticabold'; */
    font-size: 17px;
    display: -webkit-box;      
    display: -moz-box;        
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex; 
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 2px 0px rgb(146, 146, 146);
    width: 180px;
    text-align: center;
    height: 70px;
    border-radius: 10px;
    transition: 0.4s;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    /* margin: 1px 20px 20px 1px; */
}

.category-title:hover, .category-title.active {
    color: white;
    background-color: #16d4aa;
}
.blog-category-filter .search-container {
    position: relative;
    margin-right: 20px;
    margin-left: auto;
}

.categories-container {
    display: -webkit-box;      
    display: -moz-box;        
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex; 
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 50px;
}

/* @media only screen and (max-width: ) */

@media only screen and (max-width: 450px)
{
    .categories-container {
        flex-wrap: wrap;
        overflow-x: auto;
        justify-content: center;
        align-items: stretch;
    }

    .categories-container::-webkit-scrollbar {
        display: none;
    }
    .category-title {
        height: 80px;
        width: 100px;
        min-width: 120px;
        position: relative;
    }
}

/*End newly added for blog posts*/

#facedrive-products {
    display: block!important;
}
#facedrive-products a {
    color: #25aae1;
}
#facedrive-products img {
    width: 150px;
    margin: 0 auto;
}
#facedrive-products .card {
    transition: 0.3s;
}
#facedrive-products .card h5 {
    text-align: center;
    font-weight: 700;
}
#facedrive-products .card ul {
    margin: 20px auto;
    text-align: left;
}
#facedrive-products .card p {
    text-align: left;
}
#facedrive-products .card button {
    width: 100%;
}
#facedrive-products .card:hover {
    background-color: #f1f1f1;
}
#facedrive-products .card:hover {
    background-color: #f1f1f1;
}
#facedrive-products #product-hiride {
    width: 385px;
}

@media screen and (max-width: 1600px) {
    #facedrive-products .col-3 {
        max-width: 50%;
        margin: 10px 0;
        flex: 0 0 50%;
    }
}

@media screen and (max-width: 750px) {
    #facedrive-products .col-3 {
        max-width: 100%;
        margin: 10px auto;
        flex: 0 0 100%;
    }
    #facedrive-products #product-hiride {
        width: 100%;
    }
}
#home-hero .graphic img {
    max-width: 700px;
    margin: 60px 0;
    float: right;
}

#home-hero h1 {
    padding-top: 100px;
}

@media screen and (max-width: 1200px) {
    #home-hero .graphic img {
        max-width: 500px;
    }
    #home-hero h1 {
        padding-top: 60px;
    }
}

@media screen and (max-width: 500px) {
    #home-hero .graphic img {
        max-width: 100%;
    }
    #home-hero h1 {
        padding-top: 40px;
    }
}