
/*-----------------------
*	Header
-------------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");
@import url("https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i");

@media (min-width: 992px) {
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 99;
        padding: 0;
    }

        .header-nav .navbar {
            padding: 0;
            /* border-bottom: 1px solid rgba(255, 255, 255, 0.07); */
        }

        .header-nav .navbar-brand .light-logo {
            display: block;
        }

        .header-nav .navbar-brand .dark-logo {
            display: none;
        }

        .header-nav .navbar-nav > li {
            padding: 15px 10px;
            position: relative;
        }

            .header-nav .navbar-nav > li > a:not(.nav-link-btn) {
                color: #62676e;
                display: inline-block;
                vertical-align: middle;
                font-size: 13px;
                font-weight: 600;
                position: relative;
                text-transform: uppercase;
                padding: 0 5px;
            }

                .header-nav .navbar-nav > li > a:not(.nav-link-btn).active {
                    color: #293b91;
                }

            .header-nav .navbar-nav > li > .nav-link-btn {
                padding: 8px 20px;
                border-radius: 3px;
                color: #293b91;
                display: inline-block;
                border: 2px solid #293b91;
                font-weight: 600;
            }

            .header-nav .navbar-nav > li:hover > a:not(.nav-link-btn) {
                color: #ec3237;
            }

            .header-nav .navbar-nav > li.m-dropdown .m-dropdown-menu {
                position: absolute;
                top: 120%;
                left: 0;
                background: #ffffff;
                box-shadow: 0px 10px 21px 0px rgba(0, 0, 0, 0.1);
                width: 200px;
                margin: 0;
                padding: 0;
                list-style: none;
                pointer-events: none;
                -moz-transition: ease all 0.55s;
                -o-transition: ease all 0.55s;
                -webkit-transition: ease all 0.55s;
                transition: ease all 0.55s;
                opacity: 0;
            }

                .header-nav .navbar-nav > li.m-dropdown .m-dropdown-menu > li > a {
                    padding: 10px 15px;
                    display: block;
                    color: #2e3280;
                    font-size: 14px;
                    font-weight: 600;
                    border-left: 3px solid transparent;
                }

                .header-nav .navbar-nav > li.m-dropdown .m-dropdown-menu > li:hover > a {
                    background: rgba(61, 89, 232, 0.08);
                    color: #3d59e8;
                    border-left: 3px solid #3d59e8;
                }

            .header-nav .navbar-nav > li.m-dropdown:hover .m-dropdown-menu {
                opacity: 1;
                top: 100%;
                pointer-events: auto;
            }

        .header-nav.header-white-bg {
            background: #ffffff;
        }

        .header-nav.header-nav:not(.fixed-header) .navbar-nav > li > .nav-link-btn.nav-link-btn-white {
            color: #293b91;
            border-color: #293b91;
        }

        .header-nav.header-nav-white:not(.fixed-header) .navbar-nav > li > a:not(.nav-link-btn) {
            color: rgba(255, 255, 255, 0.8);
        }

            .header-nav.header-nav-white:not(.fixed-header) .navbar-nav > li > a:not(.nav-link-btn) + i {
                color: rgba(255, 255, 255, 0.8);
            }

            .header-nav.header-nav-white:not(.fixed-header) .navbar-nav > li > a:not(.nav-link-btn).active {
                color: #ffffff;
            }

                .header-nav.header-nav-white:not(.fixed-header) .navbar-nav > li > a:not(.nav-link-btn).active + i {
                    color: #ffffff;
                }

        .header-nav.header-nav-white:not(.fixed-header) .navbar-nav > li > .nav-link-btn {
            border-color: #ffffff;
            color: #ffffff;
        }

        .header-nav.header-nav-white:not(.fixed-header) .navbar-nav > li:hover > a:not(.nav-link-btn) {
            color: #ffffff;
        }
}

@media (max-width: 991px) {
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 99;
    }

        .header-nav .navbar-brand .light-logo {
            display: none;
        }

        .header-nav .navbar-toggler {
            width: 30px;
            height: 30px;
            position: relative;
            outline: none !important;
        }

            .header-nav .navbar-toggler span {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                height: 3px;
                background: #000000;
                box-shadow: 0px 9px #000000, 0px -9px #000000;
            }

        .header-nav .navbar-nav {
            padding-top: 15px;
            max-height: 70vh;
            overflow-y: auto;
        }

            .header-nav .navbar-nav > li {
                position: relative;
            }

                .header-nav .navbar-nav > li:not(:last-child) {
                    border-bottom: 1px solid #eee;
                }

                .header-nav .navbar-nav > li > a {
                    color: #2e3280;
                    display: inline-block;
                    vertical-align: middle;
                    font-size: 15px;
                    font-weight: 600;
                    position: relative;
                    padding: 0;
                    line-height: 35px;
                }

                    .header-nav .navbar-nav > li > a.active {
                        color: #3d59e8;
                    }

                    .header-nav .navbar-nav > li > a.nav-link-btn {
                        color: #3d59e8;
                    }

                .header-nav .navbar-nav > li .m-dropdown-toggle {
                    position: absolute;
                    right: 0;
                    height: 35px;
                    width: 35px;
                    text-align: center;
                    line-height: 35px;
                }

                .header-nav .navbar-nav > li.m-dropdown .m-dropdown-menu {
                    margin: 0;
                    padding: 0;
                    border-left: 1px solid #ddd;
                    list-style: none;
                    display: none;
                }

                    .header-nav .navbar-nav > li.m-dropdown .m-dropdown-menu > li > a {
                        display: inline-block;
                        padding: 5px 15px;
                        font-size: 14px;
                        color: #2e3280;
                        font-weight: 500;
                        vertical-align: top;
                    }

                .header-nav .navbar-nav > li.m-dropdown.open-menu-parent .m-dropdown-menu {
                    display: block;
                }
}

@media (min-width: 992px) {
    .header-nav.fixed-header {
        background: #ffffff;
        box-shadow: 0 1px 9px rgba(0, 0, 0, 0.05);
    }

        .header-nav.fixed-header .navbar-brand .light-logo {
            display: none;
        }

        .header-nav.fixed-header .navbar-brand .dark-logo {
            display: block;
        }

        .header-nav.fixed-header .navbar-nav > li + li:not(:last-child):after {
            background: #3d59e8;
        }

        .header-nav.fixed-header .navbar-nav > li > a:not(.nav-link-btn) {
            color: #525254;
        }

            .header-nav.fixed-header .navbar-nav > li > a:not(.nav-link-btn) + i {
                color: #2e3280;
            }

            .header-nav.fixed-header .navbar-nav > li > a:not(.nav-link-btn).active {
                color: #293b91;
            }

                .header-nav.fixed-header .navbar-nav > li > a:not(.nav-link-btn).active + i {
                    color: #3d59e8;
                }

        .header-nav.fixed-header .navbar-nav > li:hover > a:not(.nav-link-btn) {
            color: #ec3237;
        }

            .header-nav.fixed-header .navbar-nav > li:hover > a:not(.nav-link-btn) + i {
                color: #f3a14e;
            }
}

@media (max-width: 991px) {
    .header-nav.fixed-header {
        box-shadow: 0 1px 9px rgba(0, 0, 0, 0.05);
    }
}

/* ------------------------
*	General
------------------------*/
body {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #696969;
    font-smoothing: antialiased;
    overflow-x: hidden;
    font-weight: 400;
}

html {
    overflow-x: hidden;
}

a {
    color: #293b91;
}

    a:hover {
        color: #1b3be1;
        text-decoration: none;
    }

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
}

/*Heading fonts size*/
.h1, h1 {
    font-size: 40px;
}

.h2, h2 {
    font-size: 30px;
}

.h3, h3 {
    font-size: 28px;
}

.h4, h4 {
    font-size: 24px;
}

.h5, h5 {
    font-size: 20px;
}

.h6, h6 {
    font-size: 15px;
}

.font-alt {
    font-family: "Rubik", sans-serif;
}

/*Color*/
.theme-color {
    color: #3d59e8;
}

.theme-color-2nd {
    color: #3d59e8;
}

.dark-color {
    color: #293b91;
}

.black-color {
    color: #000000;
}

.extra-dark-color {
    color: #2e3280;
}

.white-color {
    color: #ffffff;
}

.white-color-light {
    color: rgba(255, 255, 255, 0.5);
}

.pink-color {
    color: #ff2560;
}

.blue-color {
    color: #255cff;
}

.yellow-color {
    color: #ec3237;
}

.green-color {
    color: #293b91;
}

/*Background color*/
.bg-cover {
    background-size: cover;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-center {
    background-position: center;
}

.bg-fixed {
    background-attachment: fixed;
}

.main-bg {
    background-size: 100% auto;
    background-position: 0 100vh;
    background-repeat: repeat-y;
}

.theme-bg {
    background-color: #3d59e8;
}

.theme-after:after {
    background-color: #3d59e8;
}

.theme-before:before {
    background-color: #3d59e8;
}

.gray-bg {
    background: #f5f7fd;
}

.gray-bg-g {
    background: linear-gradient(to bottom, #ffffff 0%, #f7f8ff 90%);
}

.gray-bg-after {
    position: relative;
}

    .gray-bg-after:after {
        content: "";
        position: absolute;
        background: #f5f7fd;
        top: 0;
        left: -80px;
        right: -80px;
        bottom: 0;
        z-index: -1;
        -moz-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

.white-bg {
    background: #ffffff;
}

.help-text {
    font-weight: 600;
    font-size: 15px;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #293b91;
    z-index: 99999;
}

.load-circle {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
}

    .load-circle span {
        display: inline-block;
        width: 64px;
        height: 64px;
    }

        .load-circle span:after {
            content: " ";
            display: block;
            width: 46px;
            height: 46px;
            margin: 1px;
            border-radius: 50%;
            border: 5px solid #ffffff;
            border-color: #ffffff transparent #ffffff transparent;
            animation: lds-dual-ring 1.2s linear infinite;
        }

@keyframes lds-dual-ring {
    0% {
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* ----------------------
*	Buttons
---------------------------*/
.m-btn {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 30px;
    border-radius: 3px;
    border: none;
    display: inline-block;
    cursor: pointer;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    line-height: 50px;
    position: relative;
    text-transform: uppercase;
}
.m-btn {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 1px 23px;
    border-radius: 95px;
    border: none;
    display: inline-block;
    cursor: pointer;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    line-height: 43px;
    position: relative;
    text-transform: uppercase;
}

    .m-btn.m-btn-round {
        border-radius: 40px;
    }

    .m-btn.m-btn-icon {
        padding: 0 60px 0 20px;
    }

        .m-btn.m-btn-icon i {
            position: absolute;
            top: 0;
            right: 8px;
            width: 36px;
            height: 36px;
            border-radius: 3px;
            line-height: 36px;
            bottom: 0;
            margin: auto;
            text-align: center;
            font-size: 10px;
        }

    .m-btn i {
        margin-left: 5px;
    }

    .m-btn:hover {
        /*box-shadow: 0px 20px 24px 0px rgba(0, 0, 0, 0.1);*/
    }

    .m-btn.m-btn-theme {
        background: #293b91;
        color: #ffffff;
        border: 1px solid #293b91;
        color: #ffffff;
        border: 1px solid #293b91;
        color: #ffffff;
        border: 1px solid #35538d;
    }

        .m-btn.m-btn-theme.m-btn-icon i {
            background: #669aff;
            color: #3d59e8;
           
        }

        .m-btn.m-btn-theme:hover {
            background: #ec3237;
            color: #ffffff;
            border-color: #ec3237;
            /*box-shadow: 0px 20px 24px 0px rgba(61, 89, 232, 0.3);*/
        }

    .m-btn.m-btn-yellow {
        background: #ec3237;
        color: #ffffff;
        border: 1px solid #ec3237;
        box-shadow: 0px 20px 24px 0px rgba(255, 188, 92, 0.3);
    }

        .m-btn.m-btn-yellow.m-btn-icon i {
            background: #ffffff;
            color: #ec3237;
        }

        .m-btn.m-btn-yellow:hover {
            background: #ffb243;
            color: #ffffff;
            border-color: #ffb243;
        }

    .m-btn.m-btn-green {
        background: #293b91;
        color: #ffffff;
        border: 1px solid #293b91;
        box-shadow: 0px 20px 24px 0px rgba(30, 222, 228, 0.3);
    }

        .m-btn.m-btn-green.m-btn-icon i {
            background: #ffffff;
            color: #293b91;
        }

        .m-btn.m-btn-green:hover {
            background: #19cad0;
            color: #ffffff;
            border-color: #19cad0;
        }

    .m-btn.m-btn-t-theme {
        background: transparent;
        color: #293b91;
        border: 1px solid #293b91;
    }

        .m-btn.m-btn-t-theme.m-btn-icon i {
            background: #3d59e8;
            color: #ffffff;
        }

        .m-btn.m-btn-t-theme:hover {
            background: #293b91;
            color: #ffffff;
        }

            .m-btn.m-btn-t-theme:hover.m-btn-icon i {
                background: #ffffff;
                color: #3d59e8;
            }

    .m-btn.m-btn-t-white {
        background: transparent;
        color: #ffffff;
        border: 1px solid #ffffff;
    }

        .m-btn.m-btn-t-white.m-btn-icon i {
            background: #ffffff;
            color: #3d59e8;
        }

        .m-btn.m-btn-t-white:hover {
            background: #ffffff;
            color: #2e3280;
        }

            .m-btn.m-btn-t-white:hover.m-btn-icon i {
                background: #3d59e8;
                color: #ffffff;
            }

    .m-btn.m-btn-white {
        background: #ffffff;
        color: #2e3280;
        border: 1px solid #ffffff;
    }

        .m-btn.m-btn-white.m-btn-icon i {
            background: #3d59e8;
            color: #ffffff;
        }

        .m-btn.m-btn-white:hover {
            background: #3d59e8;
            color: #ffffff;
            border-color: #3d59e8;
            box-shadow: 0px 20px 24px 0px rgba(61, 89, 232, 0.3);
        }

            .m-btn.m-btn-white:hover.m-btn-icon i {
                background: #ffffff;
                color: #3d59e8;
            }

.link-btn {
    color: #3d59e8;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    padding-left: 0px;
    display: inline-block;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
}

    .link-btn:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 2px;
        background: #3d59e8;
        width: 0;
        margin: auto;
        bottom: 0;
        -moz-transition: ease all 0.55s;
        -o-transition: ease all 0.55s;
        -webkit-transition: ease all 0.55s;
        transition: ease all 0.55s;
    }

    .link-btn:hover {
        padding-left: 20px;
    }

        .link-btn:hover:after {
            width: 12px;
        }

.more-btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: #3d59e8;
    font-size: 13px;
    line-height: 13px;
    display: inline-block;
    vertical-align: top;
}

    .more-btn:after {
        content: "";
        width: 15px;
        height: 2px;
        position: absolute;
        right: -20px;
        bottom: 0;
        margin: auto;
        background: #3d59e8;
    }

    .more-btn:before {
        content: "";
        width: 7px;
        height: 2px;
        position: absolute;
        right: -20px;
        bottom: 3px;
        margin: 0;
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        background: #3d59e8;
    }

.video-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    color: #3d59e8;
    line-height: 80px;
    font-size: 22px;
    display: inline-block;
    position: relative;
}

    .video-btn:before, .video-btn:after {
        content: "";
        position: absolute;
        border: 1px solid #ffffff;
        border-radius: 50%;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        -moz-transition: ease all 0.55s;
        -o-transition: ease all 0.55s;
        -webkit-transition: ease all 0.55s;
        transition: ease all 0.55s;
    }

    .video-btn:hover:after {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }

    .video-btn:hover:before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }

/* ----------------------
*	Shapes Section
---------------------------*/
.shapes-section {
    position: relative;
    overflow: hidden;
}

    .shapes-section .shapes-box {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        pointer-events: none;
    }

        .shapes-section .shapes-box span {
            position: absolute;
        }

            .shapes-section .shapes-box span b {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                box-shadow: 0px 20px 24px 0px currentColor;
                display: inline-block;
                opacity: 0.5;
            }

                .shapes-section .shapes-box span b.green {
                    color: #293b91;
                    background: #293b91;
                }

                .shapes-section .shapes-box span b.yellow {
                    color: #ec3237;
                    background: #ec3237;
                }

                .shapes-section .shapes-box span b.pink {
                    color: #ff2560;
                    background: #ff2560;
                }

                .shapes-section .shapes-box span b.blue {
                    color: #255cff;
                    background: #255cff;
                }

                .shapes-section .shapes-box span b.theme {
                    color: #3d59e8;
                    background: #3d59e8;
                }

            .shapes-section .shapes-box span:nth-child(1) {
                left: 4.8%;
                top: 4.5%;
            }

            .shapes-section .shapes-box span:nth-child(2) {
                left: 9.6%;
                top: 27.2%;
            }

            .shapes-section .shapes-box span:nth-child(3) {
                left: 8.8%;
                bottom: 16%;
            }

            .shapes-section .shapes-box span:nth-child(4) {
                left: 25%;
                bottom: 21%;
            }

            .shapes-section .shapes-box span:nth-child(5) {
                right: 35%;
                top: 6.6%;
            }

            .shapes-section .shapes-box span:nth-child(6) {
                right: 18%;
                bottom: 30%;
            }

            .shapes-section .shapes-box span:nth-child(7) {
                right: 10%;
                top: 50%;
            }

            .shapes-section .shapes-box span:nth-child(8) {
                right: 11.8%;
                top: 33%;
            }

            .shapes-section .shapes-box span:nth-child(9) {
                right: 15%;
                top: 10%;
            }

            .shapes-section .shapes-box span:nth-child(10) {
                right: 25%;
                bottom: 33%;
            }

/* ----------------------
*	Section
---------------------------*/
.container-large {
    max-width: 1440px;
}

.section {
    padding: 100px 0;
}

@media (max-width: 1200px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.full-screen {
    min-height: 100vh;
}

.section-top-up {
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.max-width-auto {
    max-width: none;
}

@media (max-width: 991px) {
    .max-width-auto {
        max-width: 100%;
    }
}

.bg-effect-section {
    position: relative;
    overflow: hidden;
}

    .bg-effect-section .bg-effect {
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .bg-effect-section .img-effect {
        position: absolute;
        left: -2px;
        right: -2px;
    }

        .bg-effect-section .img-effect img {
            width: 100%;
        }

    .bg-effect-section .bottom {
        bottom: 0;
    }

    .bg-effect-section .top {
        top: 0;
    }

/* ----------------------
*	Page Title
---------------------------*/
.page-title {
    padding: 160px 0 0;
    position: relative;
}

    .page-title:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #3d59e8;
        opacity: 0.6;
    }

@media (max-width: 991px) {
    .page-title {
        padding: 120px 0 0;
    }
}

@media (max-width: 767px) {
    .page-title {
        padding: 90px 0 0;
    }
}

.page-title .pt-title {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .page-title .pt-title h1 {
        color: #ffffff;
        margin: 10px 0 65px;
        font-size: 40px;
        text-align: center;
        font-weight: 400;
    }

@media (max-width: 991px) {
    .page-title .pt-title h1 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .page-title .pt-title h1 {
        font-size: 20px;
        margin: 20px 0 40px;
    }
}

.page-title .cs-breadcrumb {
    padding: 6px 10px;
    margin: 0 0 -20px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 5px 20px -4px rgba(0, 0, 0, 0.27);
}

    .page-title .cs-breadcrumb li {
        font-size: 14px;
        margin: 0 15px;
        position: relative;
        display: inline-block;
        vertical-align: top;
        list-style: none;
    }

@media (max-width: 767px) {
    .page-title .cs-breadcrumb li {
        font-size: 12px;
    }
}

.page-title .cs-breadcrumb li.active {
    color: #3d59e8;
}

.page-title .cs-breadcrumb li:not(:first-child):after {
    width: 5px;
    height: 5px;
    background: #3d59e8;
    left: -18px;
    content: "";
    float: left;
    position: absolute;
    top: 11px;
    border-radius: 50%;
}

.page-title .cs-breadcrumb a {
    color: #2e3280;
    text-decoration: none;
}

/* ------------------------
*	Title
------------------------*/
.section-title label {
    font-weight: 600;
    color: #293b91;
}

.section-title h3 {
    font-size: 45px;
    margin: 0;
    padding: 0;
    position: relative;
    color: #3d59e8!important;
    font-weight: 600;
}

@media (max-width: 991px) {
    .section-title h3 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .section-title h3 {
        font-size: 26px;
    }
}

.section-title p {
    margin: 15px 0 0;
}

    .section-title p.large-text {
        font-size: 17px;
    }

@media (max-width: 991px) {
    .section-title p.large-text {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .section-title p.large-text {
        font-size: 15px;
    }
}

/*---------------------------------
* Faq search box
-----------------------------------*/
.faq-search-box {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .faq-search-box .form-control {
        border-radius: 0;
        height: 50px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: none !important;
        color: #2e3280;
        font-size: 14px;
    }

    .faq-search-box .m-btn {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0;
        width: 50px;
        border-radius: 0;
        height: 50px;
        box-shadow: none;
        line-height: 48px;
    }

/*---------------------------------
* Owl
-----------------------------------*/
.owl-dots {
    text-align: center;
}

    .owl-dots .owl-dot {
        display: inline-block;
        vertical-align: top;
        margin-right: 8px;
    }

        .owl-dots .owl-dot span {
            width: 15px;
            height: 15px;
            display: inline-block;
            border-radius: 50%;
            background: #2e3280;
            -moz-transition: ease all 0.5s;
            -o-transition: ease all 0.5s;
            -webkit-transition: ease all 0.5s;
            transition: ease all 0.5s;
            -moz-transform: scale(0.6);
            -o-transform: scale(0.6);
            -ms-transform: scale(0.6);
            -webkit-transform: scale(0.6);
            transform: scale(0.6);
        }

        .owl-dots .owl-dot.active span {
            background: #3d59e8;
            -moz-transform: scale(1);
            -o-transform: scale(1);
            -ms-transform: scale(1);
            -webkit-transform: scale(1);
            transform: scale(1);
        }

/*---------------------------------
* Shadow
-----------------------------------*/
.hover-shadow:hover {
    box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
}

.box-shadow, .accordion-01 .acco-group {
    box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
}

/* ------------------------
*	Home Banners
------------------------*/
.home-banner h6 {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    display: inline-block;
    vertical-align: top;
    padding: 8px 20px;
    border-radius: 30px;
    background: #ffffff;
}

.home-banner h1 {
    font-size: 36px;
    font-weight: 500;
    margin: 15px 0 25px 0;
}

@media (max-width: 767px) {
    .home-banner h1 {
        font-size: 24px;
        margin: 10px 0 20px 0;
    }
}

.home-banner p {
    font-size: 17px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .home-banner p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

.home-banner .m-btn {
    min-width: 130px;
}

    .home-banner .m-btn + .m-btn {
        margin-left: 10px;
    }

@media (max-width: 991px) {
    .home-banner .hb-text {
        padding-top: 120px;
    }
}

@media (max-width: 767px) {
    .home-banner .hb-text {
        padding-top: 100px;
        padding-bottom: 30px;
    }
}

/*Home Banners 01*/
@keyframes scale {
    0% {
        -moz-transform: scale(1) rotate(0deg);
        -o-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }

    25% {
        -moz-transform: scale(0.8) rotate(45deg);
        -o-transform: scale(0.8) rotate(45deg);
        -ms-transform: scale(0.8) rotate(45deg);
        -webkit-transform: scale(0.8) rotate(45deg);
        transform: scale(0.8) rotate(45deg);
    }

    50% {
        -moz-transform: scale(0.9) rotate(90deg);
        -o-transform: scale(0.9) rotate(90deg);
        -ms-transform: scale(0.9) rotate(90deg);
        -webkit-transform: scale(0.9) rotate(90deg);
        transform: scale(0.9) rotate(90deg);
    }

    75% {
        -moz-transform: scale(0.8) rotate(45deg);
        -o-transform: scale(0.8) rotate(45deg);
        -ms-transform: scale(0.8) rotate(45deg);
        -webkit-transform: scale(0.8) rotate(45deg);
        transform: scale(0.8) rotate(45deg);
    }

    100% {
        -moz-transform: scale(1) rotate(0deg);
        -o-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
}

.home-banner-01 {
    background: #3d59e8;
    position: relative;
    overflow: hidden;
}

    .home-banner-01:after, .home-banner-01:before {
        content: "";
        position: absolute;
        left: -200px;
        bottom: -200px;
        width: 600px;
        height: 600px;
        border-radius: 25%;
        background: #000000;
        opacity: 0.1;
        -moz-transition: ease all 0.5s;
        -o-transition: ease all 0.5s;
        -webkit-transition: ease all 0.5s;
        transition: ease all 0.5s;
        animation: scale 20s linear infinite;
    }

    .home-banner-01:before {
        left: auto;
        top: -200px;
        bottom: auto;
        right: -200px;
    }

    .home-banner-01 .container {
        position: relative;
        z-index: 1;
    }

    .home-banner-01 h1 {
        font-size: 50px;
        font-weight: 300;
        margin: 0 0 25px 0;
        letter-spacing: 2px;
    }

@media (max-width: 767px) {
    .home-banner-01 h1 {
        font-size: 28px;
    }
}

.home-banner-01 p {
    font-size: 16px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .home-banner-01 p {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .home-banner-01 p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

.home-banner-01 .hb-text {
    padding-top: 50px;
}

@media (max-width: 991px) {
    .home-banner-01 .hb-text {
        padding-top: 120px;
    }
}

@media (max-width: 767px) {
    .home-banner-01 .hb-text {
        padding-top: 100px;
    }
}

.home-banner-01 .newsletter-block .help-text {
    font-weight: normal;
}

    .home-banner-01 .newsletter-block .help-text a:hover {
        text-decoration: underline;
        color: #ffffff;
    }

.home-banner-01 .newsletter-block .form {
    position: relative;
    width: 450px;
    max-width: 100%;
    margin-bottom: 10px;
}

.home-banner-01 .newsletter-block .form-control {
    width: calc(100% - 20px);
    height: 55px;
    box-shadow: none;
    border: none;
    border-radius: 5px;
    padding: 10px 18px;
}

.home-banner-01 .newsletter-block .m-btn {
    height: 70px;
    width: 70px;
    text-align: center;
    padding: 0;
    border: 3px solid #ffffff;
    position: absolute;
    top: -10px;
    right: 0;
    background: #3d59e8;
    box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
}

    .home-banner-01 .newsletter-block .m-btn i {
        margin: 0;
    }

/*Home Banners 02*/
.home-banner-02 {
    position: relative;
    overflow: hidden;
}

    .home-banner-02:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        background: rgba(61, 89, 232, 0.92);
    }

    .home-banner-02 .img-effect {
        z-index: 1;
    }

    .home-banner-02 .container {
        position: relative;
        z-index: 1;
    }

    .home-banner-02 .hb-text {
        padding-top: 150px;
    }

@media (max-width: 991px) {
    .home-banner-02 .hb-text {
        padding-top: 120px;
    }
}

@media (max-width: 767px) {
    .home-banner-02 .hb-text {
        padding-bottom: 15px;
    }
}

.home-banner-02 h1 {
    font-size: 50px;
    font-weight: 500;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .home-banner-02 h1 {
        margin: 0 0 10px 0;
        font-size: 28px;
    }
}

.home-banner-02 p {
    font-size: 17px;
    margin-bottom: 25px;
    width: 600px;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 767px) {
    .home-banner-02 p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

/*Home Banners 03*/
.home-banner-03 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff 0%, #f1f5ff 60%);
}

    .home-banner-03 .effect {
        position: absolute;
        left: -2px;
        right: -2px;
    }

        .home-banner-03 .effect img {
            width: 100%;
        }

    .home-banner-03 .effect-1 {
        bottom: 0;
    }

    .home-banner-03 .effect-2 {
        top: 0;
        opacity: 0.3;
    }

    .home-banner-03 .container {
        position: relative;
        z-index: 1;
    }

    .home-banner-03 h1 {
        font-size: 40px;
        font-weight: 600;
        margin: 0 0 20px 0;
        letter-spacing: 1px;
    }

@media (max-width: 767px) {
    .home-banner-03 h1 {
        font-size: 28px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
}

.home-banner-03 p {
    font-size: 16px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .home-banner-03 p {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .home-banner-03 .hb-text {
        padding-top: 150px;
    }
}

.home-banner-03 .btn-bar label {
    margin: 0 0 0 13px;
}

@media (max-width: 767px) {
    .home-banner-03 .btn-bar label {
        margin: 12px 0 0;
        display: block;
    }
}

/*Home Banners 04*/
.home-banner-04 {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}

    .home-banner-04:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #000000;
        opacity: 0.5;
    }

    .home-banner-04 .effect {
        position: absolute;
        left: -2px;
        right: -2px;
        z-index: 1;
    }

        .home-banner-04 .effect img {
            width: 100%;
        }

    .home-banner-04 .effect-1 {
        bottom: 0;
    }

    .home-banner-04 .full-screen {
        padding: 100px 0;
    }

    .home-banner-04 .container {
        position: relative;
        z-index: 1;
    }

    .home-banner-04 h1 {
        font-size: 50px;
        font-weight: 500;
        margin: 0 0 20px 0;
        letter-spacing: 1px;
    }

@media (max-width: 767px) {
    .home-banner-04 h1 {
        font-size: 28px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
}

.home-banner-04 p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
    .home-banner-04 p {
        margin-bottom: 20px;
        font-size: 16px;
    }
}

.home-banner-04 .btn-bar label {
    margin: 0 0 0 13px;
}

@media (max-width: 767px) {
    .home-banner-04 .btn-bar label {
        margin: 12px 0 0;
        display: block;
    }
}

/*home-banner-05*/
.home-banner-05 .shapes-section {
    z-index: 1;
}

.home-banner-05 h1 {
    font-size:28px;
    font-weight: 500;
    margin: 0 0 9px 0;
    letter-spacing: 0px;
}

@media (max-width: 991px) {
    .home-banner-05 h1 {
        color: #326498;
    }
}

@media (max-width: 767px) {
    .home-banner-05 h1 {
        font-size: 20px;
        margin-bottom: 15px;
        letter-spacing: 0px;
    }
}

.home-banner-05 p {
    font-size: 18px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .home-banner-05 p {
        color: rgb(38, 86, 142);
    }
    
}

@media (max-width: 767px) {
    .home-banner-05 p {
        margin-bottom: 20px;
        font-size: 16px;
    }
    .full-screen {
        min-height: 120vh;
    }
}

.home-banner-05 .btn-bar label {
    margin: 0 0 0 13px;
}

@media (max-width: 991px) {
    .home-banner-05 .btn-bar label {
        color: rgba(255, 255, 255, 0.6);
    }

        .home-banner-05 .btn-bar label a {
            color: #ffffff;
        }
}

@media (max-width: 767px) {
    .home-banner-05 .btn-bar label {
        margin: 12px 0 0;
        display: block;
    }
}

@media (max-width: 991px) {
    .home-banner-05 {
        /*background-position: center;*/
    }

        .home-banner-05 .bg-effect {
            display: none;
        }
}

/*---------------------------------
* Features Box
-----------------------------------*/
.feature-box {
    /* padding: 30px; */
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid rgba(102, 154, 255, 0.39);
    -moz-transition: ease all 0.5s;
    -o-transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    transition: ease all 0.5s;
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    background: #ffffff;
    min-height: 300px;
	
}

@media (max-width: 991px) {
    .feature-box {
        /* padding: 20px; */
        min-height: 271px!important;
		box-sizing: border-box;
    }
}

.feature-box .icon {
    margin-bottom: 20px;
}

    .feature-box .icon i {
        position: relative;
        width: 75px;
        height: 80px;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
        line-height: 77px;
        font-size: 40px;
        background: currentColor;
        border-radius: 5px;
    }

        .feature-box .icon i:after {
            position: absolute;
            top: -119px;
            left: -45px;
            bottom: -40px;
            right: 20px;
            content: "";
            background: rgba(61, 89, 232, 0.1);
            z-index: -1;
            -moz-transition: ease all 0.5s;
            -o-transition: ease all 0.5s;
            -webkit-transition: ease all 0.5s;
            transition: ease all 0.5s;
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .feature-box .icon i:before {
            color: #ffffff;
        }

        .feature-box .icon i.yellow {
            color: #ec3237;
        }

        .feature-box .icon i.green {
            color: #293b91;
        }

        .feature-box .icon i.blue {
            color: #ec3237;
        }

        .feature-box .icon i.red {
            color: #ec3237;
        }
        .feature-box .icon i.pink {
            color: #293b91;
        }
        .feature-box .icon i.lg-green {
            color: #ec3237;
        }
.feature-box h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px;
    position: relative;
    padding: 0 0 15px;
}

    .feature-box h5:after {
        content: "";
        position: absolute;
        left: 0;
        width: 35px;
        height: 2px;
        background: #ddd;
        bottom: 0;
    }

.feature-box p {
    margin: 0;
}

.feature-box .read-more {
    padding-top: 20px;
    font-size: 13px;
    line-height: 13px;
}

.feature-box:hover {
    -moz-transform: scale(1.06);
    -o-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

/*Features 01*/
.feature-box-01 {
    position: relative;
    padding: 35px;
    background: #ffffff;
    box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

    .feature-box-01 .icon {
        position: absolute;
        right: 20px;
        top: 20px;
        opacity: 0.5;
    }

        .feature-box-01 .icon i {
            font-size: 48px;
            color: #3d59e8;
        }

    .feature-box-01 .feature-content h5 {
        font-size: 20px;
        font-weight: 500;
        margin: 0;
        position: relative;
        padding: 0 0 15px;
    }

    .feature-box-01 .feature-content p {
        margin: 0;
    }

    .feature-box-01 .feature-content .read-more {
        padding-top: 20px;
        font-size: 13px;
        line-height: 13px;
    }

/*Features 02*/
.feature-box-02 {
    text-align: center;
    padding: 10% 5%;
    position: relative;
    -moz-transition: ease all 0.5s;
    -o-transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    transition: ease all 0.5s;
    top: 0;
    border-radius: 5px;
    background: #ffffff;
}

    .feature-box-02 a {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .feature-box-02 .icon {
        width: 150px;
        height: 150px;
        position: relative;
        display: inline-block;
        vertical-align: top;
        background: #f5f7fd;
        border-radius: 50%;
        margin-bottom: 20px;
        pointer-events: none;
    }

        .feature-box-02 .icon img {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            max-width: 80%;
            max-height: 80%;
        }

    .feature-box-02 h5 {
        font-weight: 600;
        font-size: 18px;
    }

    .feature-box-02:hover {
        top: -10px;
    }

    .feature-box-02:hover, .feature-box-02.active
    {
        background:#ec3237;
    }

    .feature-box-02:hover h5, .feature-box-02.active h5 
       {
       color: #ffffff;
       }

/*Features 03*/
.feature-box-03 {
    padding: 5%;
    background: #ffffff;
    border-radius: 5px;
    position: relative;
    -moz-transition: ease all 0.5s;
    -o-transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    transition: ease all 0.5s;
    left: 0;
}

    .feature-box-03 .icon {
        -ms-flex: 0 0 80px;
        flex: 0 0 80px;
        max-width: 80px;
    }

        .feature-box-03 .icon i {
            font-size: 40px;
            color: #3d59e8;
        }

    .feature-box-03 h5 {
        font-weight: 600;
        font-size: 18px;
    }

    .feature-box-03 p {
        margin: 0;
    }

    .feature-box-03.active {
        margin-left: 25px;
    }

@media (max-width: 991px) {
    .feature-box-03.active {
        margin-left: 0;
    }
}

.feature-box-03:hover {
    left: -10px;
}

.feature-box-03.active, .feature-box-03:hover {
    background: #3d59e8;
}

    .feature-box-03.active .icon i, .feature-box-03:hover .icon i {
        color: #ffffff;
    }

    .feature-box-03.active h5, .feature-box-03:hover h5 {
        color: #ffffff;
    }

    .feature-box-03.active p, .feature-box-03:hover p {
        color: rgba(255, 255, 255, 0.6);
    }

/*Features 04*/
.feature-box-04 {
    text-align: center;
    padding: 10%;
    border-radius: 5px;
}

    .feature-box-04 .icon {
        width: 120px;
        height: 120px;
        font-size: 40px;
        border-radius: 50%;
        text-align: center;
        line-height: 120px;
        display: inline-block;
        background: #3d59e8;
        color: #ffffff;
        margin-bottom: 20px;
    }

    .feature-box-04.active {
        background: #3d59e8;
    }

        .feature-box-04.active .icon {
            background: #ffffff;
            color: #3d59e8;
        }

        .feature-box-04.active h5 {
            color: #ffffff;
        }

        .feature-box-04.active p {
            color: rgba(255, 255, 255, 0.6);
        }

    .feature-box-04 h5 {
        font-size: 18px;
        font-weight: 500;
        margin: 0 0 10px;
    }

    .feature-box-04 p {
        margin: 0;
        font-size: 16px;
    }

/*Features 05*/
.feature-box-05 {
    text-align: center;
    border-radius: 5px;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    background: #ffffff;
    border: 1px solid #e8edfa;
}

    .feature-box-05:hover {
        box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
    }

    .feature-box-05 .icon {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        display: inline-block;
        vertical-align: top;
        margin: 40px 0 20px;
        position: relative;
        background: #f5f7fd;
    }

        .feature-box-05 .icon img {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            max-width: 70%;
            max-height: 70%;
        }

    .feature-box-05 .feature-content {
        padding: 0 15px 20px 15px;
    }

    .feature-box-05 h5 {
        font-size: 18px;
        color: #2e3280;
        font-weight: 600;
        margin: 0 0 15px;
    }

    .feature-box-05 p {
        margin: 0;
    }

    .feature-box-05 .read-more {
        padding: 15px 20px;
        font-size: 12px;
        border-top: 1px solid #e8edfa;
    }

        .feature-box-05 .read-more a {
            width: 100%;
            display: inline-block;
            vertical-align: top;
            color: #3d59e8;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
        }

            .feature-box-05 .read-more a i {
                position: absolute;
                top: 5px;
                right: 0;
            }

/*feature-box-06*/
.feature-box-06 {
    padding: 40px 30px 40px 110px;
    position: relative;
    border: 1px solid #f5f7fd;
    margin: -1px;
}

    .feature-box-06 .icon {
        position: absolute;
        top: 35px;
        left: 20px;
        font-size: 40px;
        color: #fff;
        width: 70px;
        height: 70px;
        background: #3d59e8;
        border-radius: 100% 50% 50% 100% / 75% 69% 69% 75%;
        text-align: center;
        line-height: 70px;
    }

        .feature-box-06 .icon:after {
            content: "";
            width: 40px;
            height: 40px;
            position: absolute;
            top: -15px;
            left: -5px;
            background: #3d59e8;
            opacity: 0.2;
            border-radius: 50%;
        }

    .feature-box-06 h5 {
        color: #2e3280;
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 500;
    }

    .feature-box-06 p {
        margin: 0;
        font-size: 16px;
    }

/*Side Features*/
.side-feature {
    position: relative;
}

    .side-feature .number {
        position: absolute;
        top: -63px;
        font-size: 120px;
        color: #3d59e8;
        opacity: 0.1;
        left: 0;
    }

@media (max-width: 767px) {
    .side-feature .number {
        top: -43px;
        font-size: 90px;
    }
}

.side-feature .icon {
    margin-bottom: 20px;
}

    .side-feature .icon i {
        position: relative;
        width: 60px;
        height: 60px;
        display: inline-block;
        vertical-align: top;
        text-align: center;
        line-height: 60px;
        font-size: 25px;
        background: currentColor;
        border-radius: 5px;
    }

        .side-feature .icon i:before {
            color: #ffffff;
        }

        .side-feature .icon i.yellow {
            color: #ec3237;
        }

        .side-feature .icon i.green {
            color: #293b91;
        }

        .side-feature .icon i.blue {
            color: #255cff;
        }

        .side-feature .icon i.pink {
            color: #ff2560;
        }

.side-feature .line {
    position: relative;
    padding-top: 20px;
}

    .side-feature .line:after {
        content: "";
        position: absolute;
        left: 0;
        width: 60px;
        height: 1px;
        background: #293b91;
        top: 0;
    }

.side-feature label {
    color: #293b91;
    font-weight: 600;
    padding-bottom: 10px;
    margin: 0;
}

.side-feature h1 {
    font-size:34px;
    margin: 0 0 10px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .side-feature h1 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .side-feature h1 {
        font-size: 26px;
        margin: 0 0 15px;
    }

   
}

.side-feature h2 {
    font-size: 34px;
    margin: 0 0 20px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .side-feature h2 {
        font-size: 22px;
        margin: 0 0 15px;
    }
}

.side-feature p {
    font-size: 16px;
    margin: 0;
}

    .side-feature p + p {
        margin-top: 15px;
    }

    .side-feature p.small {
        font-size: 15px;
    }

.side-feature .read-more {
    padding-top: 30px;
    font-size: 13px;
    line-height: 13px;
}

    .side-feature .read-more a {
        font-size: 15px;
    }

.side-feature .border-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

    .side-feature .border-list li {
        position: relative;
        font-size: 15px;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
        padding: 7px 10px 7px 43px;
        margin-bottom: 15px;
        border-radius: 5px;
        color: #2e3280;
    }

        .side-feature .border-list li:last-child {
            margin-bottom: 0;
        }

        .side-feature .border-list li i {
            position: absolute;
            top: 5px;
            left: 5px;
            background: #ffffff;
            color:  #26558e;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            border-radius: 50%;
        }

.side-feature .check-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

    .side-feature .check-list li {
        position: relative;
        font-size: 15px;
        padding: 0 0 0 30px;
        margin-bottom: 10px;
    }

        .side-feature .check-list li:last-child {
            margin-bottom: 0;
        }

        .side-feature .check-list li i {
            position: absolute;
            top: 9px;
            left: 0;
            color: #293b91;
            width: 13px;
            height: 13px;
            text-align: center;
            line-height: 13px;
        }

/*Features Slider*/
.feature-slider {
    padding: 40px 15px;
    text-align: center;
    box-shadow: 0px 6px 27px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    margin: 10px 8px 25px;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    background: #ffffff;
}

@media (max-width: 500px) {
    .feature-slider {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.feature-slider .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #3d59e8;
    font-size: 45px;
    line-height: 100px;
    display: inline-block;
    vertical-align: top;
    margin: 0 0 30px;
    color: #ffffff;
}

.feature-slider h5 {
    font-size: 18px;
    color: #2e3280;
    font-weight: 600;
    margin: 0 0 15px;
}

.feature-slider p {
    margin: 0;
}

.owl-item .feature-slider {
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.8;
}

.owl-item.center .feature-slider {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

/*---------------------------------
* Video Box
-----------------------------------*/
.video-box {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

    .video-box:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #3d59e8;
        opacity: 0.6;
    }

    .video-box.no-after:after {
        display: none;
    }

    .video-box .icon {
        width: 80px;
        height: 80px;
        line-height: 80px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        margin: auto;
        background: #ffffff;
        color: #3d59e8;
        text-align: center;
        border-radius: 50%;
        font-size: 26px;
        box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.15), 0px 0px 0px 14px rgba(255, 255, 255, 0.11);
        -moz-transition: ease all 0.55s;
        -o-transition: ease all 0.55s;
        -webkit-transition: ease all 0.55s;
        transition: ease all 0.55s;
    }

        .video-box .icon:hover {
            box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.15), 0px 0px 0px 20px rgba(255, 255, 255, 0.11);
        }

/*---------------------------------
* Our Team
-----------------------------------*/
.our-team {
    overflow: hidden;
    border-radius: 5px;
    background: #ffffff;
}

    .our-team .team-img {
        position: relative;
    }

        .our-team .team-img:after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            background: #3d59e8;
            opacity: 0;
            right: 0;
            -moz-transition: ease all 0.55s;
            -o-transition: ease all 0.55s;
            -webkit-transition: ease all 0.55s;
            transition: ease all 0.55s;
        }

    .our-team .social-icons {
        position: absolute;
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100px;
        height: 100px;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        z-index: 1;
        -moz-transition: ease all 0.55s;
        -o-transition: ease all 0.55s;
        -webkit-transition: ease all 0.55s;
        transition: ease all 0.55s;
        opacity: 0;
    }

        .our-team .social-icons:after, .our-team .social-icons:before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            background: #ffffff;
            right: 0;
            margin: auto;
            -moz-transition: ease all 0.55s;
            -o-transition: ease all 0.55s;
            -webkit-transition: ease all 0.55s;
            transition: ease all 0.55s;
            -moz-transform: scale(0);
            -o-transform: scale(0);
            -ms-transform: scale(0);
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        .our-team .social-icons:after {
            width: 100%;
            height: 1px;
        }

        .our-team .social-icons:before {
            height: 100%;
            width: 1px;
        }

        .our-team .social-icons li {
            float: left;
            margin: 5px;
        }

        .our-team .social-icons a {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            display: block;
            color: #ffffff;
        }

    .our-team .team-info {
        padding: 15px;
        text-align: center;
    }

        .our-team .team-info h5 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 5px;
        }

        .our-team .team-info label {
            font-size: 14px;
            margin: 0;
        }

    .our-team:hover .team-img:after {
        opacity: 0.8;
    }

    .our-team:hover .social-icons {
        opacity: 1;
    }

        .our-team:hover .social-icons:after, .our-team:hover .social-icons:before {
            -moz-transform: scale(1);
            -o-transform: scale(1);
            -ms-transform: scale(1);
            -webkit-transform: scale(1);
            transform: scale(1);
        }

/*---------------------------------
* Call to Actions
-----------------------------------*/
.callto-actions.theme-after {
    position: relative;
}

    .callto-actions.theme-after .container {
        position: relative;
        z-index: 1;
    }

    .callto-actions.theme-after:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: "";
        opacity: 0.9;
    }

.callto-actions label {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 0 12px;
    font-size: 12px;
    border-radius: 30px;
    margin: 0 0 20px;
}

.callto-actions p {
    font-size: 17px;
    margin: 0;
}

@media (max-width: 767px) {
    .callto-actions p {
        font-size: 15px;
    }
}

.callto-actions h4 {
    font-size: 28px;
    margin: 0 0 15px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .callto-actions h4 {
        font-size: 20px;
        margin: 0 0 10px;
    }
}

.callto-actions h2 {
    font-size: 38px;
    margin: 0 0 15px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .callto-actions h2 {
        font-size: 24px;
    }
}

.callto-actions .btn-bar {
    margin-top: 25px;
}

@media (max-width: 767px) {
    .callto-actions .btn-bar {
        margin-top: 20px;
    }
}

.callto-actions-down {
    border-bottom: 100px solid #2D323D;
}

    .callto-actions-down .callto-inner {
        margin-bottom: -100px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        padding: 10% 5%;
        border-radius: 10px;
        text-align: center;
    }

        .callto-actions-down .callto-inner:after {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: "";
            background: #3d59e8;
            opacity: 0.9;
            z-index: -1;
        }

        .callto-actions-down .callto-inner h2 {
            font-size: 42px;
            margin: 0 0 15px;
            font-weight: 500;
        }

@media (max-width: 991px) {
    .callto-actions-down .callto-inner h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .callto-actions-down .callto-inner h2 {
        font-size: 30px;
    }
}

.callto-actions-down .callto-inner p {
    font-size: 17px;
    margin: 0;
}

.callto-actions-down .callto-inner .btn-bar {
    margin-top: 25px;
}

/*---------------------------------
* Counter
-----------------------------------*/
.counter-col {
    text-align: center;
    position: relative;
}

    .counter-col:after {
        top: 10px;
        bottom: 10px;
        width: 2px;
        background: #ddd;
        left: -2px;
        content: "";
        position: absolute;
        margin: auto;
    }

    .counter-col h5 {
        font-size: 22px;
        margin: 0;
        font-weight: 600;
    }

    .counter-col .count {
        font-size: 50px;
        line-height: 50px;
        padding: 0 0 15px;
        font-weight: 600;
    }

@media (max-width: 767px) {
    .counter-col .count {
        font-size: 35px;
        line-height: 35px;
        padding: 0 0 10px;
    }
}

.counter-col h6 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 767px) {
    .counter-col h6 {
        letter-spacing: normal;
        font-size: 12px;
    }
}

.counter-col-01 {
    text-align: center;
    position: relative;
    width: 200px;
    height: 200px;
    max-width: 100%;
    border-radius: 10px;
    z-index: 1;
}

    .counter-col-01:after, .counter-col-01:before {
        content: "";
        width: 30px;
        height: 30px;
        background: currentColor;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        border-radius: 50%;
        border: 4px solid #ffffff;
    }

    .counter-col-01:after {
        left: -15px;
    }

    .counter-col-01:before {
        right: -15px;
    }

    .counter-col-01.yellow {
        background: #ec3237;
        color: #ec3237;
    }

    .counter-col-01.pink {
        background: #ff2560;
        color: #ff2560;
    }

    .counter-col-01.blue {
        background: #255cff;
        color: #255cff;
    }

    .counter-col-01.green {
        background: #293b91;
        color: #293b91;
    }

    .counter-col-01 .count {
        font-size: 50px;
        line-height: 50px;
        padding: 0 0 15px;
        font-weight: 600;
        color: #ffffff;
    }

@media (max-width: 767px) {
    .counter-col-01 .count {
        font-size: 35px;
        line-height: 35px;
        padding: 0 0 10px;
    }
}

.counter-col-01 h6 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
    .counter-col-01 h6 {
        letter-spacing: normal;
        font-size: 12px;
    }
}

/*---------------------------------
* Price Table
-----------------------------------*/
.price-table {
    text-align: center;
    background: #ffffff;
    border-radius: 5px;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
    box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
}

    .price-table .icon {
        width: 110px;
        height: 110px;
        margin-top: 30px;
        margin-bottom: 20px;
        display: inline-block;
        vertical-align: top;
        position: relative;
        background: #f5f7fd;
        border-radius: 50%;
        overflow: hidden;
    }

        .price-table .icon img {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            max-width: 70%;
            max-height: 70%;
            margin: auto;
        }

    .price-table h6 {
        font-weight: 600;
        font-size: 17px;
        margin: 0 0 12px;
        padding: 0 0 13px;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .price-table h6:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 40px;
            height: 2px;
            background: #3d59e8;
            margin: auto;
        }

    .price-table .pt-price {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 5px;
    }

        .price-table .pt-price span {
            font-weight: 400;
            font-size: 14px;
        }

    .price-table .pt-btn {
        padding: 30px 0 40px;
    }

    .price-table ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .price-table ul li {
            padding: 4px 0;
        }

            .price-table ul li b {
                font-weight: normal;
            }

    .price-table .pt-body {
        padding: 0 20px;
    }

    .price-table.active {
        position: relative;
        z-index: 1;
        padding: 30px 0 30px;
    }

/*---------------------------------
* Brands
-----------------------------------*/
.brand-logo {
    background: #ffffff;
    text-align: center;
    padding: 5%;
    box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    position: relative;
    top: 0;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
}

    .brand-logo:hover {
        top: -5px;
    }

/*---------------------------------
* Testimonials
-----------------------------------*/
.testimonial {
    text-align: center;
    padding: 40px 20px;
    border-radius: 5px;
    position: relative;
    top: 0;
    background: #ffffff;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
}

    .testimonial .avtar {
        display: inline-block;
        vertical-align: top;
        width: 110px;
        height: 110px;
        margin-bottom: 15px;
        border-radius: 50%;
        overflow: hidden;
    }

    .testimonial .testimonial-content p {
        font-size: 17px;
    }

    .testimonial .name span {
        font-size: 18px;
        font-weight: 600;
        display: block;
    }

    .testimonial .name label {
        margin: 0;
    }

.owl-item .testimonial-01 {
    margin: 20px;
}

.testimonial-01 {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 30px 0px rgba(89, 69, 230, 0.1);
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
}

    .testimonial-01 .user-info {
        margin-bottom: 15px;
    }

        .testimonial-01 .user-info .avtar {
            width: 70px;
            overflow: hidden;
            border: 5px solid #ffffff;
            height: 70px;
            box-shadow: -2px 0px 26px 1px rgba(47, 47, 47, 0.19);
            background: #ffffff;
        }

        .testimonial-01 .user-info .name {
            padding-left: 20px;
        }

            .testimonial-01 .user-info .name span {
                font-weight: 600;
                font-size: 16px;
            }

            .testimonial-01 .user-info .name label {
                margin: 0;
                display: block;
                font-size: 13px;
                line-height: normal;
                color: #696969;
            }

                .testimonial-01 .user-info .name label i {
                    font-weight: 600;
                    font-style: normal;
                }

    .testimonial-01 .testimonial-content {
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }

        .testimonial-01 .testimonial-content p {
            margin: 0;
        }

    .testimonial-01:hover {
        background: #3d59e8;
    }

        .testimonial-01:hover:after {
            background: #3451e7;
        }

        .testimonial-01:hover .user-info .name span {
            color: #ffffff;
        }

        .testimonial-01:hover .user-info .name label {
            color: rgba(255, 255, 255, 0.48);
        }

            .testimonial-01:hover .user-info .name label i {
                color: rgba(255, 255, 255, 0.48);
            }

        .testimonial-01:hover .user-info .social-icon a {
            color: rgba(255, 255, 255, 0.7);
        }

            .testimonial-01:hover .user-info .social-icon a:hover {
                color: #ffffff;
            }

        .testimonial-01:hover .testimonial-content {
            color: rgba(255, 255, 255, 0.6);
        }

/*---------------------------------
* Blog
-----------------------------------*/
.blog-item {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
}

    .blog-item .blog-info {
        padding: 20px;
    }

        .blog-item .blog-info .cat-name {
            line-height: normal;
            position: absolute;
            top: 10px;
            left: 10px;
        }

            .blog-item .blog-info .cat-name a {
                color: #ffffff;
                text-decoration: none;
                font-weight: 600;
                text-transform: uppercase;
                font-size: 10px;
                background: #3d59e8;
                padding: 6px 15px;
                border-radius: 20px;
                display: inline-block;
                vertical-align: top;
            }

                .blog-item .blog-info .cat-name a:hover {
                    color: #ffffff;
                }

        .blog-item .blog-info .blot-title {
            line-height: normal;
            margin: 0 0 10px;
        }

            .blog-item .blog-info .blot-title a {
                color: #2e3280;
                font-size: 16px;
                font-weight: 500;
                line-height: normal;
                letter-spacing: 0.5px;
            }

        .blog-item .blog-info .blot-desc {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 20px;
        }

            .blog-item .blog-info .blot-desc p {
                font-size: 15px;
                margin: 0;
            }

        .blog-item .blog-info .blot-meta .post-date {
            font-size: 14px;
            font-weight: 400;
            color: #696969;
        }

        .blog-item .blog-info .blot-meta .post-author .pa-avtar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-block;
            vertical-align: middle;
            overflow: hidden;
        }

        .blog-item .blog-info .blot-meta .post-author span {
            padding-left: 8px;
            font-size: 14px;
            font-weight: 400;
            color: #696969;
            margin: 0;
            white-space: nowrap;
            max-width: calc(100% - 54px);
            text-overflow: ellipsis;
            display: inline-block;
            overflow: hidden;
            vertical-align: middle;
        }

/*---------------------------------
* Accordion
-----------------------------------*/
.accordion-01 .acco-group {
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

    .accordion-01 .acco-group:last-child {
        margin-bottom: 0px;
    }

    .accordion-01 .acco-group .acco-heading {
        padding: 12px 12px 12px 60px;
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        color: #2e3280;
    }

        .accordion-01 .acco-group .acco-heading i {
            height: 40px;
            width: 40px;
            background: #3d59e8;
            color: #ffffff;
            text-align: center;
            line-height: 40px;
            border-radius: 5px;
            display: inline-block;
            vertical-align: top;
            position: absolute;
            top: 5px;
            left: 5px;
        }

    .accordion-01 .acco-group .acco-des {
        padding: 20px;
    }

    .accordion-01 .acco-group.acco-active .acco-heading {
        background: #3d59e8;
        color: #ffffff;
    }

        .accordion-01 .acco-group.acco-active .acco-heading i {
            color: #3d59e8;
            background: #ffffff;
        }

/*Accordion*/
.accordion-02 .acco-group {
    background: #ffffff;
    overflow: hidden;
    border: 1px dashed #ddd;
    margin-top: -1px;
}

    .accordion-02 .acco-group .acco-heading {
        padding: 12px 12px 12px 60px;
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        color: #2e3280;
        font-weight: 600;
    }

        .accordion-02 .acco-group .acco-heading i {
            height: 30px;
            width: 30px;
            background: #3d59e8;
            color: #ffffff;
            text-align: center;
            line-height: 30px;
            border-radius: 5px;
            display: inline-block;
            vertical-align: top;
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 12px;
            font-style: normal;
        }

    .accordion-02 .acco-group .acco-des {
        padding: 20px;
    }

    .accordion-02 .acco-group.acco-active {
        border-color: #3d59e8;
        margin-bottom: 15px;
    }

        .accordion-02 .acco-group.acco-active .acco-heading {
            background: #3d59e8;
            color: #ffffff;
        }

            .accordion-02 .acco-group.acco-active .acco-heading i {
                color: #3d59e8;
                background: #ffffff;
            }

/*Accordion*/
.accordion-03 .acco-group {
    background: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

    .accordion-03 .acco-group:last-child {
        border-bottom: none;
    }

    .accordion-03 .acco-group .acco-heading {
        padding: 12px 12px 12px 35px;
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        color: #696969;
        font-size: 16px;
    }

        .accordion-03 .acco-group .acco-heading:after {
            content: "";
            width: 7px;
            height: 7px;
            border-top: 1px solid #000000;
            border-left: 1px solid #000000;
            -moz-transition: ease all 0.55s;
            -o-transition: ease all 0.55s;
            -webkit-transition: ease all 0.55s;
            transition: ease all 0.55s;
            -moz-transform: rotate(-135deg);
            -o-transform: rotate(-135deg);
            -ms-transform: rotate(-135deg);
            -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
            position: absolute;
            top: 20px;
            left: 10px;
        }

    .accordion-03 .acco-group .acco-des {
        padding: 15px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }

    .accordion-03 .acco-group.acco-active .acco-heading {
        color: #3d59e8;
    }

        .accordion-03 .acco-group.acco-active .acco-heading:after {
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 24px;
            border-color: #3d59e8;
        }

/*---------------------------------
* Tab Style 1
-----------------------------------*/
.tab-style-1 .nav-link {
    display: block;
    padding: 20px 35px;
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
}

@media (max-width: 767px) {
    .tab-style-1 .nav-link {
        font-size: 12px;
        padding: 10px 15px;
    }
}

.tab-style-1 .nav-link:after {
    width: 0;
    height: 5px;
    position: absolute;
    top: -5px;
    content: "";
    right: 0;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
}

.tab-style-1 .nav-link.active {
    background: #ffffff;
    position: relative;
    z-index: 1;
    box-shadow: 0px -12px 20px rgba(0, 0, 0, 0.12);
}

    .tab-style-1 .nav-link.active:after {
        width: 100%;
        left: 0;
        right: auto;
    }

.tab-style-1 .tab-pane {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
    padding: 60px 40px;
    background: #ffffff;
}

@media (max-width: 991px) {
    .tab-style-1 .tab-pane {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .tab-style-1 .tab-pane {
        padding: 30px 20px;
    }
}

/*tab-style-2*/
.tab-style-2 {
    position: relative;
    z-index: 1;
}

    .tab-style-2:after {
        content: "";
        position: absolute;
        top: 75px;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 5px;
        box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
        background: #ffffff;
        z-index: -1;
    }

    .tab-style-2 .nav .nav-item .nav-link {
        display: inline-block;
        border: 1px solid #3d59e8;
        position: relative;
        padding: 34px 20px 10px 20px;
        border-radius: 4px;
        background: #ffffff;
        z-index: 1;
        cursor: pointer;
        line-height: normal;
    }

@media (max-width: 767px) {
    .tab-style-2 .nav .nav-item .nav-link {
        padding: 0;
    }
}

.tab-style-2 .nav .nav-item .nav-link .icon {
    width: 57px;
    height: 55px;
    display: inline-block;
    line-height: 55px;
    background: #3d59e8;
    color: #ffffff;
    font-size: 18px;
    border: 2px solid #ffffff;
    border-top: none;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -34px;
    cursor: pointer;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .tab-style-2 .nav .nav-item .nav-link .icon {
        position: relative;
        top: auto;
        border-radius: 0;
        border: 1px solid #3d59e8;
        background: #ffffff;
        color: #3d59e8;
    }
}

.tab-style-2 .nav .nav-item .nav-link span {
    width: 100%;
    margin: 0;
    color: #3d59e8;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 767px) {
    .tab-style-2 .nav .nav-item .nav-link span {
        display: none;
    }
}

.tab-style-2 .nav .nav-item .nav-link.active {
    background: #3d59e8;
    box-shadow: 0px 15px 38px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .tab-style-2 .nav .nav-item .nav-link.active .icon {
        background: #3d59e8;
        color: #ffffff;
    }
}

.tab-style-2 .nav .nav-item .nav-link.active span {
    color: #ffffff;
}

.tab-style-2 .tab-pane {
    padding: 30px 50px;
}

@media (max-width: 767px) {
    .tab-style-2 .tab-pane {
        padding: 30px 15px;
    }
}

/*---------------------------------
* Brand Slider
-----------------------------------*/
.brand-slide img {
    opacity: 0.4;
    -moz-transition: ease all 0.55s;
    -o-transition: ease all 0.55s;
    -webkit-transition: ease all 0.55s;
    transition: ease all 0.55s;
}

.brand-slide:hover img {
    opacity: 1;
}

/*---------------------------------
* Portfolio
-----------------------------------*/
.portfolio-cols-3 {
    margin: 0 -20px;
    padding: 0;
}

    .portfolio-cols-3 .portfolio-item {
        padding: 20px;
        width: 33.333333%;
        list-style-type: none;
    }

@media (max-width: 991px) {
    .portfolio-cols-3 .portfolio-item {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .portfolio-cols-3 .portfolio-item {
        width: 100%;
        padding: 15px 0;
    }
}

.portfolio-col {
    position: relative;
}

    .portfolio-col .portfolio-info {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.95);
        padding: 15px;
        opacity: 0;
        -moz-transition: ease all 0.55s;
        -o-transition: ease all 0.55s;
        -webkit-transition: ease all 0.55s;
        transition: ease all 0.55s;
    }

        .portfolio-col .portfolio-info h5 {
            margin: 0 0 5px;
            font-size: 18px;
            font-weight: 500;
        }

            .portfolio-col .portfolio-info h5 a {
                color: #2e3280;
                text-decoration: none;
            }

        .portfolio-col .portfolio-info .gallery-link {
            position: absolute;
            width: 40px;
            height: 40px;
            border: 2px solid #000000;
            background: #ffffff;
            top: 0;
            right: 20px;
            bottom: 0;
            margin: auto;
        }

            .portfolio-col .portfolio-info .gallery-link span {
                width: 16px;
                height: 16px;
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                margin: auto;
            }

                .portfolio-col .portfolio-info .gallery-link span:after, .portfolio-col .portfolio-info .gallery-link span:before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    margin: auto;
                    background: #000;
                }

                .portfolio-col .portfolio-info .gallery-link span:before {
                    width: 2px;
                    height: 100%;
                }

                .portfolio-col .portfolio-info .gallery-link span:after {
                    height: 2px;
                    width: 100%;
                }

    .portfolio-col:hover .portfolio-info {
        opacity: 1;
    }

/*---------------------------------
* Contact Us
-----------------------------------*/
.contact-form {
    padding: 8%;
}

    .contact-form .form-group {
        margin-bottom: 25px;
    }

        .contact-form .form-group label {
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
        }

        .contact-form .form-group .form-control {
            border-radius: 0;
            font-size: 14px;
            box-shadow: none !important;
        }

            .contact-form .form-group .form-control:focus {
                border-color: #3d59e8;
            }

            .contact-form .form-group .form-control:not(textarea) {
                height: 45px;
            }

        .contact-form .form-group textarea.form-control {
            height: 150px;
        }

/*Quote form*/
.get-quote-form {
    width: 400px;
    max-width: 100%;
    padding: 8%;
    border-radius: 5px;
}

    .get-quote-form h2 {
        font-size: 22px;
        font-weight: 500;
        margin: 0 0 20px;
    }

    .get-quote-form .send {
        margin-top: 15px;
    }

    .get-quote-form .form-group label {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0;
    }

    .get-quote-form .form-group textarea.form-control {
        height: 100px;
    }

    .get-quote-form .form-group .form-control {
        border: 1px solid #d4d4d4;
        box-shadow: none !important;
        border-radius: 0;
        font-size: 14px;
        height: 45px;
        border-radius: 5px;
    }

        .get-quote-form .form-group .form-control:focus {
            border: 1px solid #2e3280;
        }

/*---------------------------------
* Blog Details
-----------------------------------*/
.blog-lising .blog-item {
    margin-bottom: 40px;
    height: calc(100% - 30px);
}

.bottom-pagination {
    margin-top: 20px;
}

.sidebar-wrapper {
    padding: 25px;
    background: linear-gradient(to left, #fff 0%, #f1f5ff 110%);
    margin-left: 25px;
    border-left: 1px solid #dde5fb;
    min-height: 100%;
}

@media (max-width: 991px) {
    .sidebar-wrapper {
        margin-left: 0;
    }
}

.sidebar-widget {
    margin-bottom: 40px;
}

    .sidebar-widget p {
        font-size: 15px;
        line-height: normal;
    }

        .sidebar-widget p:last-child {
            margin: 0;
        }

    .sidebar-widget .widget-title {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 20px;
        position: relative;
        padding: 0 0 8px;
        color: #2e3280;
    }

        .sidebar-widget .widget-title:after {
            content: "";
            width: 50px;
            height: 2px;
            position: absolute;
            bottom: -1px;
            left: 0;
        }

    .sidebar-widget ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .sidebar-widget ul li {
            padding: 5px 0 5px 15px;
            position: relative;
            width: 100%;
            line-height: normal;
        }

            .sidebar-widget ul li:after {
                content: "";
                position: absolute;
                width: 7px;
                height: 7px;
                left: 0;
                top: 11px;
                border-top: 2px solid #000;
                border-right: 2px solid #000;
                transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
            }

            .sidebar-widget ul li:not(:first-child) {
                margin-top: 10px;
            }

        .sidebar-widget ul a {
            color: #696969;
            border-bottom: 1px solid transparent;
            text-decoration: none;
            display: inline-block;
            vertical-align: top;
            line-height: normal;
        }

            .sidebar-widget ul a:hover {
                border-bottom: 1px solid rgba(0, 0, 0, 0.2);
            }

.widget-search form {
    position: relative;
}

.widget-search .form-control {
    padding-right: 45px;
    border-radius: 0;
    box-shadow: none;
    height: 45px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.widget-search .m-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    border: none;
    border-radius: 3px;
    padding: 0;
    font-size: 22px;
}

.widget-newsletter .newsletter-box {
    position: relative;
}

    .widget-newsletter .newsletter-box .form-control {
        padding-right: 45px;
        border-radius: 0;
        box-shadow: none;
        height: 45px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 14px;
    }

.widget-newsletter .m-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    border: none;
    border-radius: 3px;
    padding: 0;
}

/*Details page*/
.blog-detail-title {
    padding: 20px 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

    .blog-detail-title h2 {
        margin: 0;
        padding: 0 0 10px;
        font-weight: 500;
        font-size: 24px;
    }

    .blog-detail-title .post-meta {
        line-height: normal;
        font-size: 12px;
    }

        .blog-detail-title .post-meta a {
            color: #666;
        }

        .blog-detail-title .post-meta span {
            display: inline-block;
            vertical-align: middle;
            font-size: 12px;
            text-transform: uppercase;
            margin-right: 10px;
            position: relative;
            padding-right: 10px;
        }

            .blog-detail-title .post-meta span + span:after {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                left: -11px;
                background: #000;
                height: 10px;
                width: 1px;
                margin: auto;
                opacity: 0.5;
            }

.bog-content-area {
    margin-bottom: 30px;
    position: relative;
    background: #fff;
}

    .bog-content-area .first-letter {
        font-size: 30px;
        height: 50px;
        line-height: 22px;
        padding: 15px 0;
        width: 50px;
        font-weight: 500;
        margin-top: 5px;
        margin: 0 15px 0 0;
        text-align: center;
        float: left;
        background: #222;
        color: #fff;
    }

.blog-tag-nav {
    margin-bottom: 40px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

    .blog-tag-nav .social-icons {
        margin: 0;
        padding: 0;
    }

        .blog-tag-nav .social-icons li {
            display: inline-block;
            vertical-align: middle;
            margin-right: 3px;
        }

            .blog-tag-nav .social-icons li a {
                display: block;
                padding: 0;
                color: #2e3280;
                width: 30px;
                height: 30px;
                border: 1px solid rgba(0, 0, 0, 0.1);
                border-radius: 3px;
                text-align: center;
                line-height: 30px;
                border-radius: 0;
                background: transparent;
                -webkit-transition: ease all 0.3s;
                transition: ease all 0.3s;
            }

                .blog-tag-nav .social-icons li a:hover {
                    color: #2e3280;
                    background: #fff;
                    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
                }

.pagination {
    margin: 0px;
}

    .pagination li > a, .pagination li > span {
        background: #f6f7f8;
        text-align: center;
        border-style: solid;
        border-color: rgba(0, 0, 0, 0.1) !important;
        border-width: 1px 1px 3px 1px;
        font-size: 13px;
        color: #3d59e8;
    }

        .pagination li > a:hover, .pagination li > a:focus, .pagination li > span:hover, .pagination li > span:focus {
            background: #fff;
            color: #2e3280;
        }

    .pagination li:first-child > a, .pagination li:first-child > span {
        border-radius: 3px;
    }

    .pagination li:last-child > a, .pagination li:last-child > span {
        border-radius: 3px;
    }

    .pagination li.active > a, .pagination li.active > span, .pagination li.active .page-link {
        background: #293b91;
        color: #ffffff;
    }

        .pagination li.active > a:focus, .pagination li.active > a:hover, .pagination li.active > span:focus, .pagination li.active > span:hover, .pagination li.active .page-link:focus, .pagination li.active .page-link:hover {
            background: #3d59e8;
            color: #ffffff;
        }

.blog-comment-area {
    margin-bottom: 50px;
    position: relative;
    background: #fff;
}

    .blog-comment-area h2 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding: 0;
        color: #2e3280;
    }

.blog-comment {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .blog-comment li {
        padding: 30px 0;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        position: relative;
    }

        .blog-comment li:first-child {
            padding-top: 0;
        }

        .blog-comment li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .blog-comment li .btn-reply {
            float: right;
            border: 1px solid #ededed;
            padding: 0 8px;
            font-size: 10px;
            font-weight: 600;
            position: relative;
        }

        .blog-comment li .person {
            font-weight: 600;
            color: #2e3280;
        }

        .blog-comment li .date {
            font-style: italic;
            display: block;
            font-size: 12px;
            line-height: normal;
            margin-top: 5px;
        }

        .blog-comment li .reply {
            position: absolute;
            top: 0;
            right: 15px;
            font-size: 10px;
            border: 1px solid #2e3280;
            line-height: normal;
            color: #fff;
            padding: 3px 8px;
            text-decoration: none;
            background: #2e3280;
            text-transform: uppercase;
        }

            .blog-comment li .reply:after {
                content: "";
                border-bottom: 9px solid transparent;
                border-left: 8px solid #696969;
                position: absolute;
                bottom: -10px;
                right: 0;
            }

        .blog-comment li p {
            margin: 15px 0 0;
        }

        .blog-comment li ul.child-comment {
            margin-left: 40px;
            list-style: none;
            padding: 0;
        }

            .blog-comment li ul.child-comment li {
                border: none;
                padding-bottom: 0;
                border-top: 1px dashed rgba(0, 0, 0, 0.1);
                margin-top: 30px;
                padding-top: 30px;
            }

.blog-comment-form {
    position: relative;
    background: #fff;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .blog-comment-form h2 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding: 0;
        color: #2e3280;
    }

    .blog-comment-form .form-group label {
        font-weight: 500;
        font-size: 14px;
        line-height: normal;
        color: #2e3280;
    }

    .blog-comment-form .form-group .form-control {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border: 1px solid #dcdcdc;
        color: #000;
    }

blockquote.blockquote-left {
    padding: 0 0 0 50px;
    font-size: 16px;
    margin: 30px 0;
    font-weight: 600;
    font-style: italic;
    position: relative;
}

    blockquote.blockquote-left .quote-icon {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 34px;
    }

        blockquote.blockquote-left .quote-icon .parson {
            font-weight: 600;
            margin: 0;
            color: #111;
        }

.latest-post {
    margin: 0;
    padding: 0;
}

    .latest-post .item {
        width: 100%;
        display: inline-block;
        vertical-align: top;
    }

        .latest-post .item:not(:last-child) {
            padding: 0 0 12px 0;
            margin: 0 0 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .latest-post .item:last-child {
            margin-bottom: 0;
        }

    .latest-post .lp-text h6 {
        display: inline-block;
        max-width: 100%;
        margin: 0 0 8px;
    }

    .latest-post .lp-text a {
        font-size: 15px;
        color: #696969;
        font-weight: 600;
    }

    .latest-post .date {
        font-size: 12px;
    }

        .latest-post .date a {
            font-size: 12px;
        }

.tagcloud {
    margin: 0;
    padding: 0;
}

    .tagcloud a {
        position: relative;
        padding: 6px 12px;
        line-height: 20px;
        font-weight: 400;
        border: 1px solid rgba(0, 0, 0, 0.1);
        margin-right: 4px;
        margin-bottom: 3px;
        display: inline-block;
        vertical-align: top;
        color: #2e3280;
        font-size: 14px !important;
        margin-top: 3px;
        border-radius: 3px;
    }

        .tagcloud a:hover {
            background: #fff;
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            background: #333;
            color: #fff;
            border-color: #333;
        }

/*-----------------------
*	Footer
-------------------------*/
.footer {
    background: #e4e9f5;
    color:#293b91;
}

    .footer .footer-top {
        padding: 40px 0;
        background: #3d59e8;
    }

        .footer .footer-top h2 {
            font-weight: 500;
            font-size: 22px;
            color: #ffffff;
            letter-spacing: 1px;
            margin: 0;
        }

@media (max-width: 991px) {
    .footer .footer-top h2 {
        margin-bottom: 20px;
    }
}

.footer .social-icons {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer .social-icons li {
        display: inline-block;
        margin-right: 10px;
    }

    .footer .social-icons a {
        color:#293b91;
		font-size:19px;
    }

        .footer .social-icons a:hover {
            color:#ec3237;
        }

.footer .footer-middle {
    padding: 45px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
    .footer .footer-middle {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .footer .footer-middle {
        padding: 20px 0;
    }
}

.footer .footer-middle .newsletter-box {
    position: relative;
    margin-right: 15%;
    margin-top: 25px;
}

@media (max-width: 767px) {
    .footer .footer-middle .newsletter-box {
        margin-right: 0;
    }
}

.footer .footer-middle .newsletter-box .form-control {
    border-radius: 0;
    height: 48px;
    border: none;
    box-shadow: none !important;
    background: #ffffff;
    font-size: 14px;
    width: calc(100% - 75px);
    border-radius: 30px;
    padding-left: 25px;
}

.footer .footer-middle .newsletter-box .m-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    width: 60px;
    height: 48px;
    box-shadow: none;
    line-height: 38px;
    border-radius: 25px;
}

    .footer .footer-middle .newsletter-box .m-btn i {
        margin: 0;
    }

.footer .footer-middle h6 {
    color:#293b91;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 0 20px;
    letter-spacing: 1px;
}

.footer .footer-middle .nav li:not(:last-child) {
    margin-bottom: 8px;
}

.footer .footer-middle .nav p {
    color: #98a2aa;
}

    .footer .footer-middle .nav p:last-child {
        margin: 0;
    }

.footer .footer-middle .nav a {
    color: #293b91;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

    .footer .footer-middle .nav a:after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 0px;
        height: 2px;
        left: 0;
        background:rgb(250, 165, 83);
        -moz-transition: ease all 0.55s;
        -o-transition: ease all 0.55s;
        -webkit-transition: ease all 0.55s;
        transition: ease all 0.55s;
    }

    .footer .footer-middle .nav a:hover {
        color: #ec3237;
    }

        .footer .footer-middle .nav a:hover:after {
            width: 100%;
        }

.footer .footer-bottom {
    padding: 5px 0;
}

    .footer .footer-bottom p {
        margin: 0;
        font-size: 14px;
        font-weight: 400;
    }

@media (max-width: 991px) {
    .footer .footer-bottom p {
        margin-bottom: 15px;
    }
}

/* -----------------------------
	Margina Padding
-------------------------------*/
.m-0px {
    margin: 0px;
}

.m-0px-lr {
    margin-left: 0px;
    margin-right: 0px;
}

.m-0px-l {
    margin-left: 0px;
}

.m-0px-r {
    margin-right: 0px;
}

.m-0px-tb {
    margin-top: 0px;
    margin-bottom: 0px;
}

.m-0px-t {
    margin-top: 0px;
}

.m-0px-b {
    margin-bottom: 0px;
}

.p-0px {
    padding: 0px;
}

.p-0px-lr {
    padding-left: 0px;
    padding-right: 0px;
}

.p-0px-l {
    padding-left: 0px;
}

.p-0px-r {
    padding-right: 0px;
}

.p-0px-tb {
    padding-top: 0px;
    padding-bottom: 0px;
}

.p-0px-t {
    padding-top: 0px;
}

.p-0px-b {
    padding-bottom: 0px;
}

.m-5px {
    margin: 5px;
}

.m-5px-lr {
    margin-left: 5px;
    margin-right: 5px;
}

.m-5px-l {
    margin-left: 5px;
}

.m-5px-r {
    margin-right: 5px;
}

.m-5px-tb {
    margin-top: 5px;
    margin-bottom: 5px;
}

.m-5px-t {
    margin-top: 5px;
}

.m-5px-b {
    margin-bottom: 5px;
}

.p-5px {
    padding: 5px;
}

.p-5px-lr {
    padding-left: 5px;
    padding-right: 5px;
}

.p-5px-l {
    padding-left: 5px;
}

.p-5px-r {
    padding-right: 5px;
}

.p-5px-tb {
    padding-top: 5px;
    padding-bottom: 5px;
}

.p-5px-t {
    padding-top: 5px;
}

.p-5px-b {
    padding-bottom: 5px;
}

.m-10px {
    margin: 10px;
}

.m-10px-lr {
    margin-left: 10px;
    margin-right: 10px;
}

.m-10px-l {
    margin-left: 10px;
}

.m-10px-r {
    margin-right: 10px;
}

.m-10px-tb {
    margin-top: 10px;
    margin-bottom: 10px;
}

.m-10px-t {
    margin-top: 10px;
}

.m-10px-b {
    margin-bottom: 10px;
}

.p-10px {
    padding: 10px;
}

.p-10px-lr {
    padding-left: 10px;
    padding-right: 10px;
}

.p-10px-l {
    padding-left: 10px;
}

.p-10px-r {
    padding-right: 10px;
}

.p-10px-tb {
    padding-top: 10px;
    padding-bottom: 10px;
}

.p-10px-t {
    padding-top: 10px;
}

.p-10px-b {
    padding-bottom: 10px;
}

.m-15px {
    margin: 15px;
}

.m-15px-lr {
    margin-left: 15px;
    margin-right: 15px;
}

.m-15px-l {
    margin-left: 15px;
}

.m-15px-r {
    margin-right: 15px;
}

.m-15px-tb {
    margin-top: 15px;
    margin-bottom: 15px;
}

.m-15px-t {
    margin-top: 15px;
}

.m-15px-b {
    margin-bottom: 15px;
}

.p-15px {
    padding: 15px;
}

.p-15px-lr {
    padding-left: 15px;
    padding-right: 15px;
}

.p-15px-l {
    padding-left: 15px;
}

.p-15px-r {
    padding-right: 15px;
}

.p-15px-tb {
    padding-top: 15px;
    padding-bottom: 15px;
}

.p-15px-t {
    padding-top: 15px;
}

.p-15px-b {
    padding-bottom: 15px;
}

.m-20px {
    margin: 20px;
}

.m-20px-lr {
    margin-left: 20px;
    margin-right: 20px;
}

.m-20px-l {
    margin-left: 20px;
}

.m-20px-r {
    margin-right: 20px;
}

.m-20px-tb {
    margin-top: 20px;
    margin-bottom: 20px;
}

.m-20px-t {
    margin-top: 20px;
}

.m-20px-b {
    margin-bottom: 20px;
}

.p-20px {
    padding: 20px;
}

.p-20px-lr {
    padding-left: 20px;
    padding-right: 20px;
}

.p-20px-l {
    padding-left: 20px;
}

.p-20px-r {
    padding-right: 20px;
}

.p-20px-tb {
    padding-top: 20px;
    padding-bottom: 20px;
}

.p-20px-t {
    padding-top: 20px;
}

.p-20px-b {
    padding-bottom: 20px;
}

.m-25px {
    margin: 25px;
}

.m-25px-lr {
    margin-left: 25px;
    margin-right: 25px;
}

.m-25px-l {
    margin-left: 25px;
}

.m-25px-r {
    margin-right: 25px;
}

.m-25px-tb {
    margin-top: 25px;
    margin-bottom: 25px;
}

.m-25px-t {
    margin-top: 25px;
}

.m-25px-b {
    margin-bottom: 25px;
}

.p-25px {
    padding: 25px;
}

.p-25px-lr {
    padding-left: 25px;
    padding-right: 25px;
}

.p-25px-l {
    padding-left: 25px;
}

.p-25px-r {
    padding-right: 25px;
}

.p-25px-tb {
    padding-top: 25px;
    padding-bottom: 25px;
}

.p-25px-t {
    padding-top: 25px;
}

.p-25px-b {
    padding-bottom: 25px;
}

.m-30px {
    margin: 30px;
}

.m-30px-lr {
    margin-left: 30px;
    margin-right: 30px;
}

.m-30px-l {
    margin-left: 30px;
}

.m-30px-r {
    margin-right: 30px;
}

.m-30px-tb {
    margin-top: 30px;
    margin-bottom: 30px;
}

.m-30px-t {
    margin-top: 30px;
}

.m-30px-b {
    margin-bottom: 30px;
}

.p-30px {
    padding: 30px;
}

.p-30px-lr {
    padding-left: 30px;
    padding-right: 30px;
}

.p-30px-l {
    padding-left: 30px;
}

.p-30px-r {
    padding-right: 30px;
}

.p-30px-tb {
    padding-top: 30px;
    padding-bottom: 30px;
}

.p-30px-t {
    padding-top: 30px;
}

.p-30px-b {
    padding-bottom: 30px;
}

.m-35px {
    margin: 35px;
}

.m-35px-lr {
    margin-left: 35px;
    margin-right: 35px;
}

.m-35px-l {
    margin-left: 35px;
}

.m-35px-r {
    margin-right: 35px;
}

.m-35px-tb {
    margin-top: 35px;
    margin-bottom: 35px;
}

.m-35px-t {
    margin-top: 35px;
}

.m-35px-b {
    margin-bottom: 35px;
}

.p-35px {
    padding: 35px;
}

.p-35px-lr {
    padding-left: 35px;
    padding-right: 35px;
}

.p-35px-l {
    padding-left: 35px;
}

.p-35px-r {
    padding-right: 35px;
}

.p-35px-tb {
    padding-top: 35px;
    padding-bottom: 35px;
}

.p-35px-t {
    padding-top: 35px;
}

.p-35px-b {
    padding-bottom: 35px;
}

.m-40px {
    margin: 40px;
}

.m-40px-lr {
    margin-left: 40px;
    margin-right: 40px;
}

.m-40px-l {
    margin-left: 40px;
}

.m-40px-r {
    margin-right: 40px;
}

.m-40px-tb {
    margin-top: 40px;
    margin-bottom: 40px;
}

.m-40px-t {
    margin-top: 40px;
}

.m-40px-b {
    margin-bottom: 40px;
}

.p-40px {
    padding: 40px;
}

.p-40px-lr {
    padding-left: 40px;
    padding-right: 40px;
}

.p-40px-l {
    padding-left: 40px;
}

.p-40px-r {
    padding-right: 40px;
}

.p-40px-tb {
    padding-top: 40px;
    padding-bottom: 40px;
}

.p-40px-t {
    padding-top: 40px;
}

.p-40px-b {
    padding-bottom: 40px;
}

.m-45px {
    margin: 45px;
}

.m-45px-lr {
    margin-left: 45px;
    margin-right: 45px;
}

.m-45px-l {
    margin-left: 45px;
}

.m-45px-r {
    margin-right: 45px;
}

.m-45px-tb {
    margin-top: 45px;
    margin-bottom: 45px;
}

.m-45px-t {
    margin-top: 45px;
}

.m-45px-b {
    margin-bottom: 45px;
}

.p-45px {
    padding: 45px;
}

.p-45px-lr {
    padding-left: 45px;
    padding-right: 45px;
}

.p-45px-l {
    padding-left: 45px;
}

.p-45px-r {
    padding-right: 45px;
}

.p-45px-tb {
    padding-top: 45px;
    padding-bottom: 45px;
}

.p-45px-t {
    padding-top: 45px;
}

.p-45px-b {
    padding-bottom: 45px;
}

.m-50px {
    margin: 50px;
}

.m-50px-lr {
    margin-left: 50px;
    margin-right: 50px;
}

.m-50px-l {
    margin-left: 50px;
}

.m-50px-r {
    margin-right: 50px;
}

.m-50px-tb {
    margin-top: 50px;
    margin-bottom: 50px;
}

.m-50px-t {
    margin-top: 50px;
}

.m-50px-b {
    margin-bottom: 50px;
}

.p-50px {
    padding: 50px;
}

.p-50px-lr {
    padding-left: 50px;
    padding-right: 50px;
}

.p-50px-l {
    padding-left: 50px;
}

.p-50px-r {
    padding-right: 50px;
}

.p-50px-tb {
    padding-top: 50px;
    padding-bottom: 50px;
}

.p-50px-t {
    padding-top: 50px;
}

.p-50px-b {
    padding-bottom: 50px;
}

.m-55px {
    margin: 55px;
}

.m-55px-lr {
    margin-left: 55px;
    margin-right: 55px;
}

.m-55px-l {
    margin-left: 55px;
}

.m-55px-r {
    margin-right: 55px;
}

.m-55px-tb {
    margin-top: 55px;
    margin-bottom: 55px;
}

.m-55px-t {
    margin-top: 55px;
}

.m-55px-b {
    margin-bottom: 55px;
}

.p-55px {
    padding: 55px;
}

.p-55px-lr {
    padding-left: 55px;
    padding-right: 55px;
}

.p-55px-l {
    padding-left: 55px;
}

.p-55px-r {
    padding-right: 55px;
}

.p-55px-tb {
    padding-top: 55px;
    padding-bottom: 55px;
}

.p-55px-t {
    padding-top: 55px;
}

.p-55px-b {
    padding-bottom: 55px;
}

.m-60px {
    margin: 60px;
}

.m-60px-lr {
    margin-left: 60px;
    margin-right: 60px;
}

.m-60px-l {
    margin-left: 60px;
}

.m-60px-r {
    margin-right: 60px;
}

.m-60px-tb {
    margin-top: 60px;
    margin-bottom: 60px;
}

.m-60px-t {
    margin-top: 60px;
}

.m-60px-b {
    margin-bottom: 60px;
}

.p-60px {
    padding: 60px;
}

.p-60px-lr {
    padding-left: 60px;
    padding-right: 60px;
}

.p-60px-l {
    padding-left: 60px;
}

.p-60px-r {
    padding-right: 60px;
}

.p-60px-tb {
    padding-top: 60px;
    padding-bottom: 60px;
}

.p-60px-t {
    padding-top: 60px;
}

.p-60px-b {
    padding-bottom: 60px;
}

.m-65px {
    margin: 65px;
}

.m-65px-lr {
    margin-left: 65px;
    margin-right: 65px;
}

.m-65px-l {
    margin-left: 65px;
}

.m-65px-r {
    margin-right: 65px;
}

.m-65px-tb {
    margin-top: 65px;
    margin-bottom: 65px;
}

.m-65px-t {
    margin-top: 65px;
}

.m-65px-b {
    margin-bottom: 65px;
}

.p-65px {
    padding: 65px;
}

.p-65px-lr {
    padding-left: 65px;
    padding-right: 65px;
}

.p-65px-l {
    padding-left: 65px;
}

.p-65px-r {
    padding-right: 65px;
}

.p-65px-tb {
    padding-top: 65px;
    padding-bottom: 65px;
}

.p-65px-t {
    padding-top: 65px;
}

.p-65px-b {
    padding-bottom: 65px;
}

.m-70px {
    margin: 70px;
}

.m-70px-lr {
    margin-left: 70px;
    margin-right: 70px;
}

.m-70px-l {
    margin-left: 70px;
}

.m-70px-r {
    margin-right: 70px;
}

.m-70px-tb {
    margin-top: 70px;
    margin-bottom: 70px;
}

.m-70px-t {
    margin-top: 70px;
}

.m-70px-b {
    margin-bottom: 70px;
}

.p-70px {
    padding: 70px;
}

.p-70px-lr {
    padding-left: 70px;
    padding-right: 70px;
}

.p-70px-l {
    padding-left: 70px;
}

.p-70px-r {
    padding-right: 70px;
}

.p-70px-tb {
    padding-top: 70px;
    padding-bottom: 70px;
}

.p-70px-t {
    padding-top: 70px;
}

.p-70px-b {
    padding-bottom: 70px;
}

.m-75px {
    margin: 75px;
}

.m-75px-lr {
    margin-left: 75px;
    margin-right: 75px;
}

.m-75px-l {
    margin-left: 75px;
}

.m-75px-r {
    margin-right: 75px;
}

.m-75px-tb {
    margin-top: 75px;
    margin-bottom: 75px;
}

.m-75px-t {
    margin-top: 75px;
}

.m-75px-b {
    margin-bottom: 75px;
}

.p-75px {
    padding: 75px;
}

.p-75px-lr {
    padding-left: 75px;
    padding-right: 75px;
}

.p-75px-l {
    padding-left: 75px;
}

.p-75px-r {
    padding-right: 75px;
}

.p-75px-tb {
    padding-top: 75px;
    padding-bottom: 75px;
}

.p-75px-t {
    padding-top: 75px;
}

.p-75px-b {
    padding-bottom: 75px;
}

.m-80px {
    margin: 80px;
}

.m-80px-lr {
    margin-left: 80px;
    margin-right: 80px;
}

.m-80px-l {
    margin-left: 80px;
}

.m-80px-r {
    margin-right: 80px;
}

.m-80px-tb {
    margin-top: 80px;
    margin-bottom: 80px;
}

.m-80px-t {
    margin-top: 80px;
}

.m-80px-b {
    margin-bottom: 80px;
}

.p-80px {
    padding: 80px;
}

.p-80px-lr {
    padding-left: 80px;
    padding-right: 80px;
}

.p-80px-l {
    padding-left: 80px;
}

.p-80px-r {
    padding-right: 80px;
}

.p-80px-tb {
    padding-top: 80px;
    padding-bottom: 80px;
}

.p-80px-t {
    padding-top: 80px;
}

.p-80px-b {
    padding-bottom: 80px;
}

.m-85px {
    margin: 85px;
}

.m-85px-lr {
    margin-left: 85px;
    margin-right: 85px;
}

.m-85px-l {
    margin-left: 85px;
}

.m-85px-r {
    margin-right: 85px;
}

.m-85px-tb {
    margin-top: 85px;
    margin-bottom: 85px;
}

.m-85px-t {
    margin-top: 85px;
}

.m-85px-b {
    margin-bottom: 85px;
}

.p-85px {
    padding: 85px;
}

.p-85px-lr {
    padding-left: 85px;
    padding-right: 85px;
}

.p-85px-l {
    padding-left: 85px;
}

.p-85px-r {
    padding-right: 85px;
}

.p-85px-tb {
    padding-top: 85px;
    padding-bottom: 85px;
}

.p-85px-t {
    padding-top: 85px;
}

.p-85px-b {
    padding-bottom: 85px;
}

.m-90px {
    margin: 90px;
}

.m-90px-lr {
    margin-left: 90px;
    margin-right: 90px;
}

.m-90px-l {
    margin-left: 90px;
}

.m-90px-r {
    margin-right: 90px;
}

.m-90px-tb {
    margin-top: 90px;
    margin-bottom: 90px;
}

.m-90px-t {
    margin-top: 90px;
}

.m-90px-b {
    margin-bottom: 90px;
}

.p-90px {
    padding: 90px;
}

.p-90px-lr {
    padding-left: 90px;
    padding-right: 90px;
}

.p-90px-l {
    padding-left: 90px;
}

.p-90px-r {
    padding-right: 90px;
}

.p-90px-tb {
    padding-top: 90px;
    padding-bottom: 90px;
}

.p-90px-t {
    padding-top: 90px;
}

.p-90px-b {
    padding-bottom: 90px;
}

.m-95px {
    margin: 95px;
}

.m-95px-lr {
    margin-left: 95px;
    margin-right: 95px;
}

.m-95px-l {
    margin-left: 95px;
}

.m-95px-r {
    margin-right: 95px;
}

.m-95px-tb {
    margin-top: 95px;
    margin-bottom: 95px;
}

.m-95px-t {
    margin-top: 95px;
}

.m-95px-b {
    margin-bottom: 95px;
}

.p-95px {
    padding: 95px;
}

.p-95px-lr {
    padding-left: 95px;
    padding-right: 95px;
}

.p-95px-l {
    padding-left: 95px;
}

.p-95px-r {
    padding-right: 95px;
}

.p-95px-tb {
    padding-top: 95px;
    padding-bottom: 95px;
}

.p-95px-t {
    padding-top: 95px;
}

.p-95px-b {
    padding-bottom: 95px;
}

.m-100px {
    margin: 100px;
}

.m-100px-lr {
    margin-left: 100px;
    margin-right: 100px;
}

.m-100px-l {
    margin-left: 100px;
}

.m-100px-r {
    margin-right: 100px;
}

.m-100px-tb {
    margin-top: 100px;
    margin-bottom: 100px;
}

.m-100px-t {
    margin-top: 100px;
}

.m-100px-b {
    margin-bottom: 100px;
}

.p-100px {
    padding: 100px;
}

.p-100px-lr {
    padding-left: 100px;
    padding-right: 100px;
}

.p-100px-l {
    padding-left: 100px;
}

.p-100px-r {
    padding-right: 100px;
}

.p-100px-tb {
    padding-top: 100px;
    padding-bottom: 100px;
}

.p-100px-t {
    padding-top: 100px;
}

.p-100px-b {
    padding-bottom: 100px;
}

@media (max-width: 1200px) {
    .lg-m-0px {
        margin: 0px;
    }

    .lg-m-0px-lr {
        margin-left: 0px;
        margin-right: 0px;
    }

    .lg-m-0px-l {
        margin-left: 0px;
    }

    .lg-m-0px-r {
        margin-right: 0px;
    }

    .lg-m-0px-tb {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .lg-m-0px-t {
        margin-top: 0px;
    }

    .lg-m-0px-b {
        margin-bottom: 0px;
    }

    .lg-p-0px {
        padding: 0px;
    }

    .lg-p-0px-lr {
        padding-left: 0px;
        padding-right: 0px;
    }

    .lg-p-0px-l {
        padding-left: 0px;
    }

    .lg-p-0px-r {
        padding-right: 0px;
    }

    .lg-p-0px-tb {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .lg-p-0px-t {
        padding-top: 0px;
    }

    .lg-p-0px-b {
        padding-bottom: 0px;
    }

    .lg-m-5px {
        margin: 5px;
    }

    .lg-m-5px-lr {
        margin-left: 5px;
        margin-right: 5px;
    }

    .lg-m-5px-l {
        margin-left: 5px;
    }

    .lg-m-5px-r {
        margin-right: 5px;
    }

    .lg-m-5px-tb {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .lg-m-5px-t {
        margin-top: 5px;
    }

    .lg-m-5px-b {
        margin-bottom: 5px;
    }

    .lg-p-5px {
        padding: 5px;
    }

    .lg-p-5px-lr {
        padding-left: 5px;
        padding-right: 5px;
    }

    .lg-p-5px-l {
        padding-left: 5px;
    }

    .lg-p-5px-r {
        padding-right: 5px;
    }

    .lg-p-5px-tb {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .lg-p-5px-t {
        padding-top: 5px;
    }

    .lg-p-5px-b {
        padding-bottom: 5px;
    }

    .lg-m-10px {
        margin: 10px;
    }

    .lg-m-10px-lr {
        margin-left: 10px;
        margin-right: 10px;
    }

    .lg-m-10px-l {
        margin-left: 10px;
    }

    .lg-m-10px-r {
        margin-right: 10px;
    }

    .lg-m-10px-tb {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .lg-m-10px-t {
        margin-top: 10px;
    }

    .lg-m-10px-b {
        margin-bottom: 10px;
    }

    .lg-p-10px {
        padding: 10px;
    }

    .lg-p-10px-lr {
        padding-left: 10px;
        padding-right: 10px;
    }

    .lg-p-10px-l {
        padding-left: 10px;
    }

    .lg-p-10px-r {
        padding-right: 10px;
    }

    .lg-p-10px-tb {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .lg-p-10px-t {
        padding-top: 10px;
    }

    .lg-p-10px-b {
        padding-bottom: 10px;
    }

    .lg-m-15px {
        margin: 15px;
    }

    .lg-m-15px-lr {
        margin-left: 15px;
        margin-right: 15px;
    }

    .lg-m-15px-l {
        margin-left: 15px;
    }

    .lg-m-15px-r {
        margin-right: 15px;
    }

    .lg-m-15px-tb {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .lg-m-15px-t {
        margin-top: 15px;
    }

    .lg-m-15px-b {
        margin-bottom: 15px;
    }

    .lg-p-15px {
        padding: 15px;
    }

    .lg-p-15px-lr {
        padding-left: 15px;
        padding-right: 15px;
    }

    .lg-p-15px-l {
        padding-left: 15px;
    }

    .lg-p-15px-r {
        padding-right: 15px;
    }

    .lg-p-15px-tb {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .lg-p-15px-t {
        padding-top: 15px;
    }

    .lg-p-15px-b {
        padding-bottom: 15px;
    }

    .lg-m-20px {
        margin: 20px;
    }

    .lg-m-20px-lr {
        margin-left: 20px;
        margin-right: 20px;
    }

    .lg-m-20px-l {
        margin-left: 20px;
    }

    .lg-m-20px-r {
        margin-right: 20px;
    }

    .lg-m-20px-tb {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .lg-m-20px-t {
        margin-top: 20px;
    }

    .lg-m-20px-b {
        margin-bottom: 20px;
    }

    .lg-p-20px {
        padding: 20px;
    }

    .lg-p-20px-lr {
        padding-left: 20px;
        padding-right: 20px;
    }

    .lg-p-20px-l {
        padding-left: 20px;
    }

    .lg-p-20px-r {
        padding-right: 20px;
    }

    .lg-p-20px-tb {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .lg-p-20px-t {
        padding-top: 20px;
    }

    .lg-p-20px-b {
        padding-bottom: 20px;
    }

    .lg-m-25px {
        margin: 25px;
    }

    .lg-m-25px-lr {
        margin-left: 25px;
        margin-right: 25px;
    }

    .lg-m-25px-l {
        margin-left: 25px;
    }

    .lg-m-25px-r {
        margin-right: 25px;
    }

    .lg-m-25px-tb {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .lg-m-25px-t {
        margin-top: 25px;
    }

    .lg-m-25px-b {
        margin-bottom: 25px;
    }

    .lg-p-25px {
        padding: 25px;
    }

    .lg-p-25px-lr {
        padding-left: 25px;
        padding-right: 25px;
    }

    .lg-p-25px-l {
        padding-left: 25px;
    }

    .lg-p-25px-r {
        padding-right: 25px;
    }

    .lg-p-25px-tb {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .lg-p-25px-t {
        padding-top: 25px;
    }

    .lg-p-25px-b {
        padding-bottom: 25px;
    }

    .lg-m-30px {
        margin: 30px;
    }

    .lg-m-30px-lr {
        margin-left: 30px;
        margin-right: 30px;
    }

    .lg-m-30px-l {
        margin-left: 30px;
    }

    .lg-m-30px-r {
        margin-right: 30px;
    }

    .lg-m-30px-tb {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .lg-m-30px-t {
        margin-top: 30px;
    }

    .lg-m-30px-b {
        margin-bottom: 30px;
    }

    .lg-p-30px {
        padding: 30px;
    }

    .lg-p-30px-lr {
        padding-left: 30px;
        padding-right: 30px;
    }

    .lg-p-30px-l {
        padding-left: 30px;
    }

    .lg-p-30px-r {
        padding-right: 30px;
    }

    .lg-p-30px-tb {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .lg-p-30px-t {
        padding-top: 30px;
    }

    .lg-p-30px-b {
        padding-bottom: 30px;
    }

    .lg-m-35px {
        margin: 35px;
    }

    .lg-m-35px-lr {
        margin-left: 35px;
        margin-right: 35px;
    }

    .lg-m-35px-l {
        margin-left: 35px;
    }

    .lg-m-35px-r {
        margin-right: 35px;
    }

    .lg-m-35px-tb {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .lg-m-35px-t {
        margin-top: 35px;
    }

    .lg-m-35px-b {
        margin-bottom: 35px;
    }

    .lg-p-35px {
        padding: 35px;
    }

    .lg-p-35px-lr {
        padding-left: 35px;
        padding-right: 35px;
    }

    .lg-p-35px-l {
        padding-left: 35px;
    }

    .lg-p-35px-r {
        padding-right: 35px;
    }

    .lg-p-35px-tb {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .lg-p-35px-t {
        padding-top: 35px;
    }

    .lg-p-35px-b {
        padding-bottom: 35px;
    }

    .lg-m-40px {
        margin: 40px;
    }

    .lg-m-40px-lr {
        margin-left: 40px;
        margin-right: 40px;
    }

    .lg-m-40px-l {
        margin-left: 40px;
    }

    .lg-m-40px-r {
        margin-right: 40px;
    }

    .lg-m-40px-tb {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .lg-m-40px-t {
        margin-top: 40px;
    }

    .lg-m-40px-b {
        margin-bottom: 40px;
    }

    .lg-p-40px {
        padding: 40px;
    }

    .lg-p-40px-lr {
        padding-left: 40px;
        padding-right: 40px;
    }

    .lg-p-40px-l {
        padding-left: 40px;
    }

    .lg-p-40px-r {
        padding-right: 40px;
    }

    .lg-p-40px-tb {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .lg-p-40px-t {
        padding-top: 40px;
    }

    .lg-p-40px-b {
        padding-bottom: 40px;
    }

    .lg-m-45px {
        margin: 45px;
    }

    .lg-m-45px-lr {
        margin-left: 45px;
        margin-right: 45px;
    }

    .lg-m-45px-l {
        margin-left: 45px;
    }

    .lg-m-45px-r {
        margin-right: 45px;
    }

    .lg-m-45px-tb {
        margin-top: 45px;
        margin-bottom: 45px;
    }

    .lg-m-45px-t {
        margin-top: 45px;
    }

    .lg-m-45px-b {
        margin-bottom: 45px;
    }

    .lg-p-45px {
        padding: 45px;
    }

    .lg-p-45px-lr {
        padding-left: 45px;
        padding-right: 45px;
    }

    .lg-p-45px-l {
        padding-left: 45px;
    }

    .lg-p-45px-r {
        padding-right: 45px;
    }

    .lg-p-45px-tb {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .lg-p-45px-t {
        padding-top: 45px;
    }

    .lg-p-45px-b {
        padding-bottom: 45px;
    }

    .lg-m-50px {
        margin: 50px;
    }

    .lg-m-50px-lr {
        margin-left: 50px;
        margin-right: 50px;
    }

    .lg-m-50px-l {
        margin-left: 50px;
    }

    .lg-m-50px-r {
        margin-right: 50px;
    }

    .lg-m-50px-tb {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .lg-m-50px-t {
        margin-top: 50px;
    }

    .lg-m-50px-b {
        margin-bottom: 50px;
    }

    .lg-p-50px {
        padding: 50px;
    }

    .lg-p-50px-lr {
        padding-left: 50px;
        padding-right: 50px;
    }

    .lg-p-50px-l {
        padding-left: 50px;
    }

    .lg-p-50px-r {
        padding-right: 50px;
    }

    .lg-p-50px-tb {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .lg-p-50px-t {
        padding-top: 50px;
    }

    .lg-p-50px-b {
        padding-bottom: 50px;
    }

    .lg-m-55px {
        margin: 55px;
    }

    .lg-m-55px-lr {
        margin-left: 55px;
        margin-right: 55px;
    }

    .lg-m-55px-l {
        margin-left: 55px;
    }

    .lg-m-55px-r {
        margin-right: 55px;
    }

    .lg-m-55px-tb {
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .lg-m-55px-t {
        margin-top: 55px;
    }

    .lg-m-55px-b {
        margin-bottom: 55px;
    }

    .lg-p-55px {
        padding: 55px;
    }

    .lg-p-55px-lr {
        padding-left: 55px;
        padding-right: 55px;
    }

    .lg-p-55px-l {
        padding-left: 55px;
    }

    .lg-p-55px-r {
        padding-right: 55px;
    }

    .lg-p-55px-tb {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .lg-p-55px-t {
        padding-top: 55px;
    }

    .lg-p-55px-b {
        padding-bottom: 55px;
    }

    .lg-m-60px {
        margin: 60px;
    }

    .lg-m-60px-lr {
        margin-left: 60px;
        margin-right: 60px;
    }

    .lg-m-60px-l {
        margin-left: 60px;
    }

    .lg-m-60px-r {
        margin-right: 60px;
    }

    .lg-m-60px-tb {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .lg-m-60px-t {
        margin-top: 60px;
    }

    .lg-m-60px-b {
        margin-bottom: 60px;
    }

    .lg-p-60px {
        padding: 60px;
    }

    .lg-p-60px-lr {
        padding-left: 60px;
        padding-right: 60px;
    }

    .lg-p-60px-l {
        padding-left: 60px;
    }

    .lg-p-60px-r {
        padding-right: 60px;
    }

    .lg-p-60px-tb {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .lg-p-60px-t {
        padding-top: 60px;
    }

    .lg-p-60px-b {
        padding-bottom: 60px;
    }

    .lg-m-65px {
        margin: 65px;
    }

    .lg-m-65px-lr {
        margin-left: 65px;
        margin-right: 65px;
    }

    .lg-m-65px-l {
        margin-left: 65px;
    }

    .lg-m-65px-r {
        margin-right: 65px;
    }

    .lg-m-65px-tb {
        margin-top: 65px;
        margin-bottom: 65px;
    }

    .lg-m-65px-t {
        margin-top: 65px;
    }

    .lg-m-65px-b {
        margin-bottom: 65px;
    }

    .lg-p-65px {
        padding: 65px;
    }

    .lg-p-65px-lr {
        padding-left: 65px;
        padding-right: 65px;
    }

    .lg-p-65px-l {
        padding-left: 65px;
    }

    .lg-p-65px-r {
        padding-right: 65px;
    }

    .lg-p-65px-tb {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .lg-p-65px-t {
        padding-top: 65px;
    }

    .lg-p-65px-b {
        padding-bottom: 65px;
    }

    .lg-m-70px {
        margin: 70px;
    }

    .lg-m-70px-lr {
        margin-left: 70px;
        margin-right: 70px;
    }

    .lg-m-70px-l {
        margin-left: 70px;
    }

    .lg-m-70px-r {
        margin-right: 70px;
    }

    .lg-m-70px-tb {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .lg-m-70px-t {
        margin-top: 70px;
    }

    .lg-m-70px-b {
        margin-bottom: 70px;
    }

    .lg-p-70px {
        padding: 70px;
    }

    .lg-p-70px-lr {
        padding-left: 70px;
        padding-right: 70px;
    }

    .lg-p-70px-l {
        padding-left: 70px;
    }

    .lg-p-70px-r {
        padding-right: 70px;
    }

    .lg-p-70px-tb {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .lg-p-70px-t {
        padding-top: 70px;
    }

    .lg-p-70px-b {
        padding-bottom: 70px;
    }

    .lg-m-75px {
        margin: 75px;
    }

    .lg-m-75px-lr {
        margin-left: 75px;
        margin-right: 75px;
    }

    .lg-m-75px-l {
        margin-left: 75px;
    }

    .lg-m-75px-r {
        margin-right: 75px;
    }

    .lg-m-75px-tb {
        margin-top: 75px;
        margin-bottom: 75px;
    }

    .lg-m-75px-t {
        margin-top: 75px;
    }

    .lg-m-75px-b {
        margin-bottom: 75px;
    }

    .lg-p-75px {
        padding: 75px;
    }

    .lg-p-75px-lr {
        padding-left: 75px;
        padding-right: 75px;
    }

    .lg-p-75px-l {
        padding-left: 75px;
    }

    .lg-p-75px-r {
        padding-right: 75px;
    }

    .lg-p-75px-tb {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .lg-p-75px-t {
        padding-top: 75px;
    }

    .lg-p-75px-b {
        padding-bottom: 75px;
    }

    .lg-m-80px {
        margin: 80px;
    }

    .lg-m-80px-lr {
        margin-left: 80px;
        margin-right: 80px;
    }

    .lg-m-80px-l {
        margin-left: 80px;
    }

    .lg-m-80px-r {
        margin-right: 80px;
    }

    .lg-m-80px-tb {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .lg-m-80px-t {
        margin-top: 80px;
    }

    .lg-m-80px-b {
        margin-bottom: 80px;
    }

    .lg-p-80px {
        padding: 80px;
    }

    .lg-p-80px-lr {
        padding-left: 80px;
        padding-right: 80px;
    }

    .lg-p-80px-l {
        padding-left: 80px;
    }

    .lg-p-80px-r {
        padding-right: 80px;
    }

    .lg-p-80px-tb {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .lg-p-80px-t {
        padding-top: 80px;
    }

    .lg-p-80px-b {
        padding-bottom: 80px;
    }

    .lg-m-85px {
        margin: 85px;
    }

    .lg-m-85px-lr {
        margin-left: 85px;
        margin-right: 85px;
    }

    .lg-m-85px-l {
        margin-left: 85px;
    }

    .lg-m-85px-r {
        margin-right: 85px;
    }

    .lg-m-85px-tb {
        margin-top: 85px;
        margin-bottom: 85px;
    }

    .lg-m-85px-t {
        margin-top: 85px;
    }

    .lg-m-85px-b {
        margin-bottom: 85px;
    }

    .lg-p-85px {
        padding: 85px;
    }

    .lg-p-85px-lr {
        padding-left: 85px;
        padding-right: 85px;
    }

    .lg-p-85px-l {
        padding-left: 85px;
    }

    .lg-p-85px-r {
        padding-right: 85px;
    }

    .lg-p-85px-tb {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .lg-p-85px-t {
        padding-top: 85px;
    }

    .lg-p-85px-b {
        padding-bottom: 85px;
    }

    .lg-m-90px {
        margin: 90px;
    }

    .lg-m-90px-lr {
        margin-left: 90px;
        margin-right: 90px;
    }

    .lg-m-90px-l {
        margin-left: 90px;
    }

    .lg-m-90px-r {
        margin-right: 90px;
    }

    .lg-m-90px-tb {
        margin-top: 90px;
        margin-bottom: 90px;
    }

    .lg-m-90px-t {
        margin-top: 90px;
    }

    .lg-m-90px-b {
        margin-bottom: 90px;
    }

    .lg-p-90px {
        padding: 90px;
    }

    .lg-p-90px-lr {
        padding-left: 90px;
        padding-right: 90px;
    }

    .lg-p-90px-l {
        padding-left: 90px;
    }

    .lg-p-90px-r {
        padding-right: 90px;
    }

    .lg-p-90px-tb {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .lg-p-90px-t {
        padding-top: 90px;
    }

    .lg-p-90px-b {
        padding-bottom: 90px;
    }

    .lg-m-95px {
        margin: 95px;
    }

    .lg-m-95px-lr {
        margin-left: 95px;
        margin-right: 95px;
    }

    .lg-m-95px-l {
        margin-left: 95px;
    }

    .lg-m-95px-r {
        margin-right: 95px;
    }

    .lg-m-95px-tb {
        margin-top: 95px;
        margin-bottom: 95px;
    }

    .lg-m-95px-t {
        margin-top: 95px;
    }

    .lg-m-95px-b {
        margin-bottom: 95px;
    }

    .lg-p-95px {
        padding: 95px;
    }

    .lg-p-95px-lr {
        padding-left: 95px;
        padding-right: 95px;
    }

    .lg-p-95px-l {
        padding-left: 95px;
    }

    .lg-p-95px-r {
        padding-right: 95px;
    }

    .lg-p-95px-tb {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .lg-p-95px-t {
        padding-top: 95px;
    }

    .lg-p-95px-b {
        padding-bottom: 95px;
    }

    .lg-m-100px {
        margin: 100px;
    }

    .lg-m-100px-lr {
        margin-left: 100px;
        margin-right: 100px;
    }

    .lg-m-100px-l {
        margin-left: 100px;
    }

    .lg-m-100px-r {
        margin-right: 100px;
    }

    .lg-m-100px-tb {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .lg-m-100px-t {
        margin-top: 100px;
    }

    .lg-m-100px-b {
        margin-bottom: 100px;
    }

    .lg-p-100px {
        padding: 100px;
    }

    .lg-p-100px-lr {
        padding-left: 100px;
        padding-right: 100px;
    }

    .lg-p-100px-l {
        padding-left: 100px;
    }

    .lg-p-100px-r {
        padding-right: 100px;
    }

    .lg-p-100px-tb {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .lg-p-100px-t {
        padding-top: 100px;
    }

    .lg-p-100px-b {
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .md-m-0px {
        margin: 0px;
    }

    .md-m-0px-lr {
        margin-left: 0px;
        margin-right: 0px;
    }

    .md-m-0px-l {
        margin-left: 0px;
    }

    .md-m-0px-r {
        margin-right: 0px;
    }

    .md-m-0px-tb {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .md-m-0px-t {
        margin-top: 0px;
    }

    .md-m-0px-b {
        margin-bottom: 0px;
    }

    .md-p-0px {
        padding: 0px;
    }

    .md-p-0px-lr {
        padding-left: 0px;
        padding-right: 0px;
    }

    .md-p-0px-l {
        padding-left: 0px;
    }

    .md-p-0px-r {
        padding-right: 0px;
    }

    .md-p-0px-tb {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .md-p-0px-t {
        padding-top: 0px;
    }

    .md-p-0px-b {
        padding-bottom: 0px;
    }

    .md-m-5px {
        margin: 5px;
    }

    .md-m-5px-lr {
        margin-left: 5px;
        margin-right: 5px;
    }

    .md-m-5px-l {
        margin-left: 5px;
    }

    .md-m-5px-r {
        margin-right: 5px;
    }

    .md-m-5px-tb {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .md-m-5px-t {
        margin-top: 5px;
    }

    .md-m-5px-b {
        margin-bottom: 5px;
    }

    .md-p-5px {
        padding: 5px;
    }

    .md-p-5px-lr {
        padding-left: 5px;
        padding-right: 5px;
    }

    .md-p-5px-l {
        padding-left: 5px;
    }

    .md-p-5px-r {
        padding-right: 5px;
    }

    .md-p-5px-tb {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .md-p-5px-t {
        padding-top: 5px;
    }

    .md-p-5px-b {
        padding-bottom: 5px;
    }

    .md-m-10px {
        margin: 10px;
    }

    .md-m-10px-lr {
        margin-left: 10px;
        margin-right: 10px;
    }

    .md-m-10px-l {
        margin-left: 10px;
    }

    .md-m-10px-r {
        margin-right: 10px;
    }

    .md-m-10px-tb {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .md-m-10px-t {
        margin-top: 10px;
    }

    .md-m-10px-b {
        margin-bottom: 10px;
    }

    .md-p-10px {
        padding: 10px;
    }

    .md-p-10px-lr {
        padding-left: 10px;
        padding-right: 10px;
    }

    .md-p-10px-l {
        padding-left: 10px;
    }

    .md-p-10px-r {
        padding-right: 10px;
    }

    .md-p-10px-tb {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .md-p-10px-t {
        padding-top: 10px;
    }

    .md-p-10px-b {
        padding-bottom: 10px;
    }

    .md-m-15px {
        margin: 15px;
    }

    .md-m-15px-lr {
        margin-left: 15px;
        margin-right: 15px;
    }

    .md-m-15px-l {
        margin-left: 15px;
    }

    .md-m-15px-r {
        margin-right: 15px;
    }

    .md-m-15px-tb {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .md-m-15px-t {
        margin-top: 15px;
    }

    .md-m-15px-b {
        margin-bottom: 15px;
    }

    .md-p-15px {
        padding: 15px;
    }

    .md-p-15px-lr {
        padding-left: 15px;
        padding-right: 15px;
    }

    .md-p-15px-l {
        padding-left: 15px;
    }

    .md-p-15px-r {
        padding-right: 15px;
    }

    .md-p-15px-tb {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .md-p-15px-t {
        padding-top: 15px;
    }

    .md-p-15px-b {
        padding-bottom: 15px;
    }

    .md-m-20px {
        margin: 20px;
    }

    .md-m-20px-lr {
        margin-left: 20px;
        margin-right: 20px;
    }

    .md-m-20px-l {
        margin-left: 20px;
    }

    .md-m-20px-r {
        margin-right: 20px;
    }

    .md-m-20px-tb {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .md-m-20px-t {
        margin-top: 20px;
    }

    .md-m-20px-b {
        margin-bottom: 20px;
    }

    .md-p-20px {
        padding: 20px;
    }

    .md-p-20px-lr {
        padding-left: 20px;
        padding-right: 20px;
    }

    .md-p-20px-l {
        padding-left: 20px;
    }

    .md-p-20px-r {
        padding-right: 20px;
    }

    .md-p-20px-tb {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .md-p-20px-t {
        padding-top: 20px;
    }

    .md-p-20px-b {
        padding-bottom: 20px;
    }

    .md-m-25px {
        margin: 25px;
    }

    .md-m-25px-lr {
        margin-left: 25px;
        margin-right: 25px;
    }

    .md-m-25px-l {
        margin-left: 25px;
    }

    .md-m-25px-r {
        margin-right: 25px;
    }

    .md-m-25px-tb {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .md-m-25px-t {
        margin-top: 25px;
    }

    .md-m-25px-b {
        margin-bottom: 25px;
    }

    .md-p-25px {
        padding: 25px;
    }

    .md-p-25px-lr {
        padding-left: 25px;
        padding-right: 25px;
    }

    .md-p-25px-l {
        padding-left: 25px;
    }

    .md-p-25px-r {
        padding-right: 25px;
    }

    .md-p-25px-tb {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .md-p-25px-t {
        padding-top: 25px;
    }

    .md-p-25px-b {
        padding-bottom: 25px;
    }

    .md-m-30px {
        margin: 30px;
    }

    .md-m-30px-lr {
        margin-left: 30px;
        margin-right: 30px;
    }

    .md-m-30px-l {
        margin-left: 30px;
    }

    .md-m-30px-r {
        margin-right: 30px;
    }

    .md-m-30px-tb {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .md-m-30px-t {
        margin-top: 30px;
    }

    .md-m-30px-b {
        margin-bottom: 30px;
    }

    .md-p-30px {
        padding: 30px;
    }

    .md-p-30px-lr {
        padding-left: 30px;
        padding-right: 30px;
    }

    .md-p-30px-l {
        padding-left: 30px;
    }

    .md-p-30px-r {
        padding-right: 30px;
    }

    .md-p-30px-tb {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .md-p-30px-t {
        padding-top: 30px;
    }

    .md-p-30px-b {
        padding-bottom: 30px;
    }

    .md-m-35px {
        margin: 35px;
    }

    .md-m-35px-lr {
        margin-left: 35px;
        margin-right: 35px;
    }

    .md-m-35px-l {
        margin-left: 35px;
    }

    .md-m-35px-r {
        margin-right: 35px;
    }

    .md-m-35px-tb {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .md-m-35px-t {
        margin-top: 35px;
    }

    .md-m-35px-b {
        margin-bottom: 35px;
    }

    .md-p-35px {
        padding: 35px;
    }

    .md-p-35px-lr {
        padding-left: 35px;
        padding-right: 35px;
    }

    .md-p-35px-l {
        padding-left: 35px;
    }

    .md-p-35px-r {
        padding-right: 35px;
    }

    .md-p-35px-tb {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .md-p-35px-t {
        padding-top: 35px;
    }

    .md-p-35px-b {
        padding-bottom: 35px;
    }

    .md-m-40px {
        margin: 40px;
    }

    .md-m-40px-lr {
        margin-left: 40px;
        margin-right: 40px;
    }

    .md-m-40px-l {
        margin-left: 40px;
    }

    .md-m-40px-r {
        margin-right: 40px;
    }

    .md-m-40px-tb {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .md-m-40px-t {
        margin-top: 40px;
    }

    .md-m-40px-b {
        margin-bottom: 40px;
    }

    .md-p-40px {
        padding: 40px;
    }

    .md-p-40px-lr {
        padding-left: 40px;
        padding-right: 40px;
    }

    .md-p-40px-l {
        padding-left: 40px;
    }

    .md-p-40px-r {
        padding-right: 40px;
    }

    .md-p-40px-tb {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .md-p-40px-t {
        padding-top: 40px;
    }

    .md-p-40px-b {
        padding-bottom: 40px;
    }

    .md-m-45px {
        margin: 45px;
    }

    .md-m-45px-lr {
        margin-left: 45px;
        margin-right: 45px;
    }

    .md-m-45px-l {
        margin-left: 45px;
    }

    .md-m-45px-r {
        margin-right: 45px;
    }

    .md-m-45px-tb {
        margin-top: 45px;
        margin-bottom: 45px;
    }

    .md-m-45px-t {
        margin-top: 45px;
    }

    .md-m-45px-b {
        margin-bottom: 45px;
    }

    .md-p-45px {
        padding: 45px;
    }

    .md-p-45px-lr {
        padding-left: 45px;
        padding-right: 45px;
    }

    .md-p-45px-l {
        padding-left: 45px;
    }

    .md-p-45px-r {
        padding-right: 45px;
    }

    .md-p-45px-tb {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .md-p-45px-t {
        padding-top: 45px;
    }

    .md-p-45px-b {
        padding-bottom: 45px;
    }

    .md-m-50px {
        margin: 50px;
    }

    .md-m-50px-lr {
        margin-left: 50px;
        margin-right: 50px;
    }

    .md-m-50px-l {
        margin-left: 50px;
    }

    .md-m-50px-r {
        margin-right: 50px;
    }

    .md-m-50px-tb {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .md-m-50px-t {
        margin-top: 50px;
    }

    .md-m-50px-b {
        margin-bottom: 50px;
    }

    .md-p-50px {
        padding: 50px;
    }

    .md-p-50px-lr {
        padding-left: 50px;
        padding-right: 50px;
    }

    .md-p-50px-l {
        padding-left: 50px;
    }

    .md-p-50px-r {
        padding-right: 50px;
    }

    .md-p-50px-tb {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .md-p-50px-t {
        padding-top: 50px;
    }

    .md-p-50px-b {
        padding-bottom: 50px;
    }

    .md-m-55px {
        margin: 55px;
    }

    .md-m-55px-lr {
        margin-left: 55px;
        margin-right: 55px;
    }

    .md-m-55px-l {
        margin-left: 55px;
    }

    .md-m-55px-r {
        margin-right: 55px;
    }

    .md-m-55px-tb {
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .md-m-55px-t {
        margin-top: 55px;
    }

    .md-m-55px-b {
        margin-bottom: 55px;
    }

    .md-p-55px {
        padding: 55px;
    }

    .md-p-55px-lr {
        padding-left: 55px;
        padding-right: 55px;
    }

    .md-p-55px-l {
        padding-left: 55px;
    }

    .md-p-55px-r {
        padding-right: 55px;
    }

    .md-p-55px-tb {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .md-p-55px-t {
        padding-top: 55px;
    }

    .md-p-55px-b {
        padding-bottom: 55px;
    }

    .md-m-60px {
        margin: 60px;
    }

    .md-m-60px-lr {
        margin-left: 60px;
        margin-right: 60px;
    }

    .md-m-60px-l {
        margin-left: 60px;
    }

    .md-m-60px-r {
        margin-right: 60px;
    }

    .md-m-60px-tb {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .md-m-60px-t {
        margin-top: 60px;
    }

    .md-m-60px-b {
        margin-bottom: 60px;
    }

    .md-p-60px {
        padding: 60px;
    }

    .md-p-60px-lr {
        padding-left: 60px;
        padding-right: 60px;
    }

    .md-p-60px-l {
        padding-left: 60px;
    }

    .md-p-60px-r {
        padding-right: 60px;
    }

    .md-p-60px-tb {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .md-p-60px-t {
        padding-top: 60px;
    }

    .md-p-60px-b {
        padding-bottom: 60px;
    }

    .md-m-65px {
        margin: 65px;
    }

    .md-m-65px-lr {
        margin-left: 65px;
        margin-right: 65px;
    }

    .md-m-65px-l {
        margin-left: 65px;
    }

    .md-m-65px-r {
        margin-right: 65px;
    }

    .md-m-65px-tb {
        margin-top: 65px;
        margin-bottom: 65px;
    }

    .md-m-65px-t {
        margin-top: 65px;
    }

    .md-m-65px-b {
        margin-bottom: 65px;
    }

    .md-p-65px {
        padding: 65px;
    }

    .md-p-65px-lr {
        padding-left: 65px;
        padding-right: 65px;
    }

    .md-p-65px-l {
        padding-left: 65px;
    }

    .md-p-65px-r {
        padding-right: 65px;
    }

    .md-p-65px-tb {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .md-p-65px-t {
        padding-top: 65px;
    }

    .md-p-65px-b {
        padding-bottom: 65px;
    }

    .md-m-70px {
        margin: 70px;
    }

    .md-m-70px-lr {
        margin-left: 70px;
        margin-right: 70px;
    }

    .md-m-70px-l {
        margin-left: 70px;
    }

    .md-m-70px-r {
        margin-right: 70px;
    }

    .md-m-70px-tb {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .md-m-70px-t {
        margin-top: 70px;
    }

    .md-m-70px-b {
        margin-bottom: 70px;
    }

    .md-p-70px {
        padding: 70px;
    }

    .md-p-70px-lr {
        padding-left: 70px;
        padding-right: 70px;
    }

    .md-p-70px-l {
        padding-left: 70px;
    }

    .md-p-70px-r {
        padding-right: 70px;
    }

    .md-p-70px-tb {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .md-p-70px-t {
        padding-top: 70px;
    }

    .md-p-70px-b {
        padding-bottom: 70px;
    }

    .md-m-75px {
        margin: 75px;
    }

    .md-m-75px-lr {
        margin-left: 75px;
        margin-right: 75px;
    }

    .md-m-75px-l {
        margin-left: 75px;
    }

    .md-m-75px-r {
        margin-right: 75px;
    }

    .md-m-75px-tb {
        margin-top: 75px;
        margin-bottom: 75px;
    }

    .md-m-75px-t {
        margin-top: 75px;
    }

    .md-m-75px-b {
        margin-bottom: 75px;
    }

    .md-p-75px {
        padding: 75px;
    }

    .md-p-75px-lr {
        padding-left: 75px;
        padding-right: 75px;
    }

    .md-p-75px-l {
        padding-left: 75px;
    }

    .md-p-75px-r {
        padding-right: 75px;
    }

    .md-p-75px-tb {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .md-p-75px-t {
        padding-top: 75px;
    }

    .md-p-75px-b {
        padding-bottom: 75px;
    }

    .md-m-80px {
        margin: 80px;
    }

    .md-m-80px-lr {
        margin-left: 80px;
        margin-right: 80px;
    }

    .md-m-80px-l {
        margin-left: 80px;
    }

    .md-m-80px-r {
        margin-right: 80px;
    }

    .md-m-80px-tb {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .md-m-80px-t {
        margin-top: 80px;
    }

    .md-m-80px-b {
        margin-bottom: 80px;
    }

    .md-p-80px {
        padding: 80px;
    }

    .md-p-80px-lr {
        padding-left: 80px;
        padding-right: 80px;
    }

    .md-p-80px-l {
        padding-left: 80px;
    }

    .md-p-80px-r {
        padding-right: 80px;
    }

    .md-p-80px-tb {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .md-p-80px-t {
        padding-top: 80px;
    }

    .md-p-80px-b {
        padding-bottom: 80px;
    }

    .md-m-85px {
        margin: 85px;
    }

    .md-m-85px-lr {
        margin-left: 85px;
        margin-right: 85px;
    }

    .md-m-85px-l {
        margin-left: 85px;
    }

    .md-m-85px-r {
        margin-right: 85px;
    }

    .md-m-85px-tb {
        margin-top: 85px;
        margin-bottom: 85px;
    }

    .md-m-85px-t {
        margin-top: 85px;
    }

    .md-m-85px-b {
        margin-bottom: 85px;
    }

    .md-p-85px {
        padding: 85px;
    }

    .md-p-85px-lr {
        padding-left: 85px;
        padding-right: 85px;
    }

    .md-p-85px-l {
        padding-left: 85px;
    }

    .md-p-85px-r {
        padding-right: 85px;
    }

    .md-p-85px-tb {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .md-p-85px-t {
        padding-top: 85px;
    }

    .md-p-85px-b {
        padding-bottom: 85px;
    }

    .md-m-90px {
        margin: 90px;
    }

    .md-m-90px-lr {
        margin-left: 90px;
        margin-right: 90px;
    }

    .md-m-90px-l {
        margin-left: 90px;
    }

    .md-m-90px-r {
        margin-right: 90px;
    }

    .md-m-90px-tb {
        margin-top: 90px;
        margin-bottom: 90px;
    }

    .md-m-90px-t {
        margin-top: 90px;
    }

    .md-m-90px-b {
        margin-bottom: 90px;
    }

    .md-p-90px {
        padding: 90px;
    }

    .md-p-90px-lr {
        padding-left: 90px;
        padding-right: 90px;
    }

    .md-p-90px-l {
        padding-left: 90px;
    }

    .md-p-90px-r {
        padding-right: 90px;
    }

    .md-p-90px-tb {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .md-p-90px-t {
        padding-top: 90px;
    }

    .md-p-90px-b {
        padding-bottom: 90px;
    }

    .md-m-95px {
        margin: 95px;
    }

    .md-m-95px-lr {
        margin-left: 95px;
        margin-right: 95px;
    }

    .md-m-95px-l {
        margin-left: 95px;
    }

    .md-m-95px-r {
        margin-right: 95px;
    }

    .md-m-95px-tb {
        margin-top: 95px;
        margin-bottom: 95px;
    }

    .md-m-95px-t {
        margin-top: 95px;
    }

    .md-m-95px-b {
        margin-bottom: 95px;
    }

    .md-p-95px {
        padding: 95px;
    }

    .md-p-95px-lr {
        padding-left: 95px;
        padding-right: 95px;
    }

    .md-p-95px-l {
        padding-left: 95px;
    }

    .md-p-95px-r {
        padding-right: 95px;
    }

    .md-p-95px-tb {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .md-p-95px-t {
        padding-top: 95px;
    }

    .md-p-95px-b {
        padding-bottom: 95px;
    }

    .md-m-100px {
        margin: 100px;
    }

    .md-m-100px-lr {
        margin-left: 100px;
        margin-right: 100px;
    }

    .md-m-100px-l {
        margin-left: 100px;
    }

    .md-m-100px-r {
        margin-right: 100px;
    }

    .md-m-100px-tb {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .md-m-100px-t {
        margin-top: 100px;
    }

    .md-m-100px-b {
        margin-bottom: 100px;
    }

    .md-p-100px {
        padding: 100px;
    }

    .md-p-100px-lr {
        padding-left: 100px;
        padding-right: 100px;
    }

    .md-p-100px-l {
        padding-left: 100px;
    }

    .md-p-100px-r {
        padding-right: 100px;
    }

    .md-p-100px-tb {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .md-p-100px-t {
        padding-top: 100px;
    }

    .md-p-100px-b {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .sm-m-0px {
        margin: 0px;
    }

    .sm-m-0px-lr {
        margin-left: 0px;
        margin-right: 0px;
    }

    .sm-m-0px-l {
        margin-left: 0px;
    }

    .sm-m-0px-r {
        margin-right: 0px;
    }

    .sm-m-0px-tb {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .sm-m-0px-t {
        margin-top: 0px;
    }

    .sm-m-0px-b {
        margin-bottom: 0px;
    }

    .sm-p-0px {
        padding: 0px;
    }

    .sm-p-0px-lr {
        padding-left: 0px;
        padding-right: 0px;
    }

    .sm-p-0px-l {
        padding-left: 0px;
    }

    .sm-p-0px-r {
        padding-right: 0px;
    }

    .sm-p-0px-tb {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .sm-p-0px-t {
        padding-top: 0px;
    }

    .sm-p-0px-b {
        padding-bottom: 0px;
    }

    .sm-m-5px {
        margin: 5px;
    }

    .sm-m-5px-lr {
        margin-left: 5px;
        margin-right: 5px;
    }

    .sm-m-5px-l {
        margin-left: 5px;
    }

    .sm-m-5px-r {
        margin-right: 5px;
    }

    .sm-m-5px-tb {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .sm-m-5px-t {
        margin-top: 5px;
    }

    .sm-m-5px-b {
        margin-bottom: 5px;
    }

    .sm-p-5px {
        padding: 5px;
    }

    .sm-p-5px-lr {
        padding-left: 5px;
        padding-right: 5px;
    }

    .sm-p-5px-l {
        padding-left: 5px;
    }

    .sm-p-5px-r {
        padding-right: 5px;
    }

    .sm-p-5px-tb {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .sm-p-5px-t {
        padding-top: 5px;
    }

    .sm-p-5px-b {
        padding-bottom: 5px;
    }

    .sm-m-10px {
        margin: 10px;
    }

    .sm-m-10px-lr {
        margin-left: 10px;
        margin-right: 10px;
    }

    .sm-m-10px-l {
        margin-left: 10px;
    }

    .sm-m-10px-r {
        margin-right: 10px;
    }

    .sm-m-10px-tb {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .sm-m-10px-t {
        margin-top: 10px;
    }

    .sm-m-10px-b {
        margin-bottom: 10px;
    }

    .sm-p-10px {
        padding: 10px;
    }

    .sm-p-10px-lr {
        padding-left: 10px;
        padding-right: 10px;
    }

    .sm-p-10px-l {
        padding-left: 10px;
    }

    .sm-p-10px-r {
        padding-right: 10px;
    }

    .sm-p-10px-tb {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .sm-p-10px-t {
        padding-top: 10px;
    }

    .sm-p-10px-b {
        padding-bottom: 10px;
    }

    .sm-m-15px {
        margin: 15px;
    }

    .sm-m-15px-lr {
        margin-left: 15px;
        margin-right: 15px;
    }

    .sm-m-15px-l {
        margin-left: 15px;
    }

    .sm-m-15px-r {
        margin-right: 15px;
    }

    .sm-m-15px-tb {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .sm-m-15px-t {
        margin-top: 15px;
    }

    .sm-m-15px-b {
        margin-bottom: 15px;
    }

    .sm-p-15px {
        padding: 15px;
    }

    .sm-p-15px-lr {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sm-p-15px-l {
        padding-left: 15px;
    }

    .sm-p-15px-r {
        padding-right: 15px;
    }

    .sm-p-15px-tb {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .sm-p-15px-t {
        padding-top: 15px;
    }

    .sm-p-15px-b {
        padding-bottom: 15px;
    }

    .sm-m-20px {
        margin: 20px;
    }

    .sm-m-20px-lr {
        margin-left: 20px;
        margin-right: 20px;
    }

    .sm-m-20px-l {
        margin-left: 20px;
    }

    .sm-m-20px-r {
        margin-right: 20px;
    }

    .sm-m-20px-tb {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .sm-m-20px-t {
        margin-top: 20px;
    }

    .sm-m-20px-b {
        margin-bottom: 20px;
    }

    .sm-p-20px {
        padding: 20px;
    }

    .sm-p-20px-lr {
        padding-left: 20px;
        padding-right: 20px;
    }

    .sm-p-20px-l {
        padding-left: 20px;
    }

    .sm-p-20px-r {
        padding-right: 20px;
    }

    .sm-p-20px-tb {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .sm-p-20px-t {
        padding-top: 20px;
    }

    .sm-p-20px-b {
        padding-bottom: 20px;
    }

    .sm-m-25px {
        margin: 25px;
    }

    .sm-m-25px-lr {
        margin-left: 25px;
        margin-right: 25px;
    }

    .sm-m-25px-l {
        margin-left: 25px;
    }

    .sm-m-25px-r {
        margin-right: 25px;
    }

    .sm-m-25px-tb {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .sm-m-25px-t {
        margin-top: 25px;
    }

    .sm-m-25px-b {
        margin-bottom: 25px;
    }

    .sm-p-25px {
        padding: 25px;
    }

    .sm-p-25px-lr {
        padding-left: 25px;
        padding-right: 25px;
    }

    .sm-p-25px-l {
        padding-left: 25px;
    }

    .sm-p-25px-r {
        padding-right: 25px;
    }

    .sm-p-25px-tb {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .sm-p-25px-t {
        padding-top: 25px;
    }

    .sm-p-25px-b {
        padding-bottom: 25px;
    }

    .sm-m-30px {
        margin: 30px;
    }

    .sm-m-30px-lr {
        margin-left: 30px;
        margin-right: 30px;
    }

    .sm-m-30px-l {
        margin-left: 30px;
    }

    .sm-m-30px-r {
        margin-right: 30px;
    }

    .sm-m-30px-tb {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .sm-m-30px-t {
        margin-top: 30px;
    }

    .sm-m-30px-b {
        margin-bottom: 30px;
    }

    .sm-p-30px {
        padding: 30px;
    }

    .sm-p-30px-lr {
        padding-left: 30px;
        padding-right: 30px;
    }

    .sm-p-30px-l {
        padding-left: 30px;
    }

    .sm-p-30px-r {
        padding-right: 30px;
    }

    .sm-p-30px-tb {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .sm-p-30px-t {
        padding-top: 30px;
    }

    .sm-p-30px-b {
        padding-bottom: 30px;
    }

    .sm-m-35px {
        margin: 35px;
    }

    .sm-m-35px-lr {
        margin-left: 35px;
        margin-right: 35px;
    }

    .sm-m-35px-l {
        margin-left: 35px;
    }

    .sm-m-35px-r {
        margin-right: 35px;
    }

    .sm-m-35px-tb {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .sm-m-35px-t {
        margin-top: 35px;
    }

    .sm-m-35px-b {
        margin-bottom: 35px;
    }

    .sm-p-35px {
        padding: 35px;
    }

    .sm-p-35px-lr {
        padding-left: 35px;
        padding-right: 35px;
    }

    .sm-p-35px-l {
        padding-left: 35px;
    }

    .sm-p-35px-r {
        padding-right: 35px;
    }

    .sm-p-35px-tb {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .sm-p-35px-t {
        padding-top: 35px;
    }

    .sm-p-35px-b {
        padding-bottom: 35px;
    }

    .sm-m-40px {
        margin: 40px;
    }

    .sm-m-40px-lr {
        margin-left: 40px;
        margin-right: 40px;
    }

    .sm-m-40px-l {
        margin-left: 40px;
    }

    .sm-m-40px-r {
        margin-right: 40px;
    }

    .sm-m-40px-tb {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .sm-m-40px-t {
        margin-top: 40px;
    }

    .sm-m-40px-b {
        margin-bottom: 40px;
    }

    .sm-p-40px {
        padding: 40px;
    }

    .sm-p-40px-lr {
        padding-left: 40px;
        padding-right: 40px;
    }

    .sm-p-40px-l {
        padding-left: 40px;
    }

    .sm-p-40px-r {
        padding-right: 40px;
    }

    .sm-p-40px-tb {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sm-p-40px-t {
        padding-top: 40px;
    }

    .sm-p-40px-b {
        padding-bottom: 40px;
    }

    .sm-m-45px {
        margin: 45px;
    }

    .sm-m-45px-lr {
        margin-left: 45px;
        margin-right: 45px;
    }

    .sm-m-45px-l {
        margin-left: 45px;
    }

    .sm-m-45px-r {
        margin-right: 45px;
    }

    .sm-m-45px-tb {
        margin-top: 45px;
        margin-bottom: 45px;
    }

    .sm-m-45px-t {
        margin-top: 45px;
    }

    .sm-m-45px-b {
        margin-bottom: 45px;
    }

    .sm-p-45px {
        padding: 45px;
    }

    .sm-p-45px-lr {
        padding-left: 45px;
        padding-right: 45px;
    }

    .sm-p-45px-l {
        padding-left: 45px;
    }

    .sm-p-45px-r {
        padding-right: 45px;
    }

    .sm-p-45px-tb {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .sm-p-45px-t {
        padding-top: 45px;
    }

    .sm-p-45px-b {
        padding-bottom: 45px;
    }

    .sm-m-50px {
        margin: 50px;
    }

    .sm-m-50px-lr {
        margin-left: 50px;
        margin-right: 50px;
    }

    .sm-m-50px-l {
        margin-left: 50px;
    }

    .sm-m-50px-r {
        margin-right: 50px;
    }

    .sm-m-50px-tb {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .sm-m-50px-t {
        margin-top: 50px;
    }

    .sm-m-50px-b {
        margin-bottom: 50px;
    }

    .sm-p-50px {
        padding: 50px;
    }

    .sm-p-50px-lr {
        padding-left: 50px;
        padding-right: 50px;
    }

    .sm-p-50px-l {
        padding-left: 50px;
    }

    .sm-p-50px-r {
        padding-right: 50px;
    }

    .sm-p-50px-tb {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .sm-p-50px-t {
        padding-top: 50px;
    }

    .sm-p-50px-b {
        padding-bottom: 50px;
    }

    .sm-m-55px {
        margin: 55px;
    }

    .sm-m-55px-lr {
        margin-left: 55px;
        margin-right: 55px;
    }

    .sm-m-55px-l {
        margin-left: 55px;
    }

    .sm-m-55px-r {
        margin-right: 55px;
    }

    .sm-m-55px-tb {
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .sm-m-55px-t {
        margin-top: 55px;
    }

    .sm-m-55px-b {
        margin-bottom: 55px;
    }

    .sm-p-55px {
        padding: 55px;
    }

    .sm-p-55px-lr {
        padding-left: 55px;
        padding-right: 55px;
    }

    .sm-p-55px-l {
        padding-left: 55px;
    }

    .sm-p-55px-r {
        padding-right: 55px;
    }

    .sm-p-55px-tb {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .sm-p-55px-t {
        padding-top: 55px;
    }

    .sm-p-55px-b {
        padding-bottom: 55px;
    }

    .sm-m-60px {
        margin: 60px;
    }

    .sm-m-60px-lr {
        margin-left: 60px;
        margin-right: 60px;
    }

    .sm-m-60px-l {
        margin-left: 60px;
    }

    .sm-m-60px-r {
        margin-right: 60px;
    }

    .sm-m-60px-tb {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .sm-m-60px-t {
        margin-top: 60px;
    }

    .sm-m-60px-b {
        margin-bottom: 60px;
    }

    .sm-p-60px {
        padding: 60px;
    }

    .sm-p-60px-lr {
        padding-left: 60px;
        padding-right: 60px;
    }

    .sm-p-60px-l {
        padding-left: 60px;
    }

    .sm-p-60px-r {
        padding-right: 60px;
    }

    .sm-p-60px-tb {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .sm-p-60px-t {
        padding-top: 60px;
    }

    .sm-p-60px-b {
        padding-bottom: 60px;
    }

    .sm-m-65px {
        margin: 65px;
    }

    .sm-m-65px-lr {
        margin-left: 65px;
        margin-right: 65px;
    }

    .sm-m-65px-l {
        margin-left: 65px;
    }

    .sm-m-65px-r {
        margin-right: 65px;
    }

    .sm-m-65px-tb {
        margin-top: 65px;
        margin-bottom: 65px;
    }

    .sm-m-65px-t {
        margin-top: 65px;
    }

    .sm-m-65px-b {
        margin-bottom: 65px;
    }

    .sm-p-65px {
        padding: 65px;
    }

    .sm-p-65px-lr {
        padding-left: 65px;
        padding-right: 65px;
    }

    .sm-p-65px-l {
        padding-left: 65px;
    }

    .sm-p-65px-r {
        padding-right: 65px;
    }

    .sm-p-65px-tb {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .sm-p-65px-t {
        padding-top: 65px;
    }

    .sm-p-65px-b {
        padding-bottom: 65px;
    }

    .sm-m-70px {
        margin: 70px;
    }

    .sm-m-70px-lr {
        margin-left: 70px;
        margin-right: 70px;
    }

    .sm-m-70px-l {
        margin-left: 70px;
    }

    .sm-m-70px-r {
        margin-right: 70px;
    }

    .sm-m-70px-tb {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .sm-m-70px-t {
        margin-top: 70px;
    }

    .sm-m-70px-b {
        margin-bottom: 70px;
    }

    .sm-p-70px {
        padding: 70px;
    }

    .sm-p-70px-lr {
        padding-left: 70px;
        padding-right: 70px;
    }

    .sm-p-70px-l {
        padding-left: 70px;
    }

    .sm-p-70px-r {
        padding-right: 70px;
    }

    .sm-p-70px-tb {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .sm-p-70px-t {
        padding-top: 70px;
    }

    .sm-p-70px-b {
        padding-bottom: 70px;
    }

    .sm-m-75px {
        margin: 75px;
    }

    .sm-m-75px-lr {
        margin-left: 75px;
        margin-right: 75px;
    }

    .sm-m-75px-l {
        margin-left: 75px;
    }

    .sm-m-75px-r {
        margin-right: 75px;
    }

    .sm-m-75px-tb {
        margin-top: 75px;
        margin-bottom: 75px;
    }

    .sm-m-75px-t {
        margin-top: 75px;
    }

    .sm-m-75px-b {
        margin-bottom: 75px;
    }

    .sm-p-75px {
        padding: 75px;
    }

    .sm-p-75px-lr {
        padding-left: 75px;
        padding-right: 75px;
    }

    .sm-p-75px-l {
        padding-left: 75px;
    }

    .sm-p-75px-r {
        padding-right: 75px;
    }

    .sm-p-75px-tb {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .sm-p-75px-t {
        padding-top: 75px;
    }

    .sm-p-75px-b {
        padding-bottom: 75px;
    }

    .sm-m-80px {
        margin: 80px;
    }

    .sm-m-80px-lr {
        margin-left: 80px;
        margin-right: 80px;
    }

    .sm-m-80px-l {
        margin-left: 80px;
    }

    .sm-m-80px-r {
        margin-right: 80px;
    }

    .sm-m-80px-tb {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .sm-m-80px-t {
        margin-top: 80px;
    }

    .sm-m-80px-b {
        margin-bottom: 80px;
    }

    .sm-p-80px {
        padding: 80px;
    }

    .sm-p-80px-lr {
        padding-left: 80px;
        padding-right: 80px;
    }

    .sm-p-80px-l {
        padding-left: 80px;
    }

    .sm-p-80px-r {
        padding-right: 80px;
    }

    .sm-p-80px-tb {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .sm-p-80px-t {
        padding-top: 80px;
    }

    .sm-p-80px-b {
        padding-bottom: 80px;
    }

    .sm-m-85px {
        margin: 85px;
    }

    .sm-m-85px-lr {
        margin-left: 85px;
        margin-right: 85px;
    }

    .sm-m-85px-l {
        margin-left: 85px;
    }

    .sm-m-85px-r {
        margin-right: 85px;
    }

    .sm-m-85px-tb {
        margin-top: 85px;
        margin-bottom: 85px;
    }

    .sm-m-85px-t {
        margin-top: 85px;
    }

    .sm-m-85px-b {
        margin-bottom: 85px;
    }

    .sm-p-85px {
        padding: 85px;
    }

    .sm-p-85px-lr {
        padding-left: 85px;
        padding-right: 85px;
    }

    .sm-p-85px-l {
        padding-left: 85px;
    }

    .sm-p-85px-r {
        padding-right: 85px;
    }

    .sm-p-85px-tb {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .sm-p-85px-t {
        padding-top: 85px;
    }

    .sm-p-85px-b {
        padding-bottom: 85px;
    }

    .sm-m-90px {
        margin: 90px;
    }

    .sm-m-90px-lr {
        margin-left: 90px;
        margin-right: 90px;
    }

    .sm-m-90px-l {
        margin-left: 90px;
    }

    .sm-m-90px-r {
        margin-right: 90px;
    }

    .sm-m-90px-tb {
        margin-top: 90px;
        margin-bottom: 90px;
    }

    .sm-m-90px-t {
        margin-top: 90px;
    }

    .sm-m-90px-b {
        margin-bottom: 90px;
    }

    .sm-p-90px {
        padding: 90px;
    }

    .sm-p-90px-lr {
        padding-left: 90px;
        padding-right: 90px;
    }

    .sm-p-90px-l {
        padding-left: 90px;
    }

    .sm-p-90px-r {
        padding-right: 90px;
    }

    .sm-p-90px-tb {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .sm-p-90px-t {
        padding-top: 90px;
    }

    .sm-p-90px-b {
        padding-bottom: 90px;
    }

    .sm-m-95px {
        margin: 95px;
    }

    .sm-m-95px-lr {
        margin-left: 95px;
        margin-right: 95px;
    }

    .sm-m-95px-l {
        margin-left: 95px;
    }

    .sm-m-95px-r {
        margin-right: 95px;
    }

    .sm-m-95px-tb {
        margin-top: 95px;
        margin-bottom: 95px;
    }

    .sm-m-95px-t {
        margin-top: 95px;
    }

    .sm-m-95px-b {
        margin-bottom: 95px;
    }

    .sm-p-95px {
        padding: 95px;
    }

    .sm-p-95px-lr {
        padding-left: 95px;
        padding-right: 95px;
    }

    .sm-p-95px-l {
        padding-left: 95px;
    }

    .sm-p-95px-r {
        padding-right: 95px;
    }

    .sm-p-95px-tb {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .sm-p-95px-t {
        padding-top: 95px;
    }

    .sm-p-95px-b {
        padding-bottom: 95px;
    }

    .sm-m-100px {
        margin: 100px;
    }

    .sm-m-100px-lr {
        margin-left: 100px;
        margin-right: 100px;
    }

    .sm-m-100px-l {
        margin-left: 100px;
    }

    .sm-m-100px-r {
        margin-right: 100px;
    }

    .sm-m-100px-tb {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .sm-m-100px-t {
        margin-top: 100px;
    }

    .sm-m-100px-b {
        margin-bottom: 100px;
    }

    .sm-p-100px {
        padding: 100px;
    }

    .sm-p-100px-lr {
        padding-left: 100px;
        padding-right: 100px;
    }

    .sm-p-100px-l {
        padding-left: 100px;
    }

    .sm-p-100px-r {
        padding-right: 100px;
    }

    .sm-p-100px-tb {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .sm-p-100px-t {
        padding-top: 100px;
    }

    .sm-p-100px-b {
        padding-bottom: 100px;
    }
}

/*# sourceMappingURL=master.css.map */
.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem!important;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

#back2Top {
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    position: fixed;
    bottom: 5px;
    right: 0;
    background-color: #293b91;
    color: #ec3237;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
}

    #back2Top:hover {
        background-color: #ec3237;
        color: #fff;
    }

.banner-img
{
/*max-width:650px;*/
height:auto;
}

/*************************Media Query******/
@media (max-width:576px) {

    .navbar-brand img{
        width:150px;
    }
    .navbar-brand {
        padding-top: 1rem !important;
        
   }

    .banner-img {
        /*max-width:380px !important;*/
        height: auto;
    }

    .full-screen {
        min-height: 72vh;
    }

    .side-feature p
    {
        text-align:justify;
        font-size:14px;
    }

    .home-banner .hb-text {
        padding-top: 140px;
       
    }

   }


@media (max-width:375px) {
    .banner-img {
        /*max-width: 300px !important;*/
        height: auto;
    }
}
   

@media (max-width:1024px) {
        /*.banner-img {
            max-width: 569px;
        }*/

        .full-screen {
            min-height: 45vh
        }

    .section
    {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
                     
 }
    
/*-----------End of code-------*/

/*-----------Custom Code-------*/


.copyright a {
    color: #000;
    font-weight: 500;
    transition: 0.5s;
}



/* Download serction */

.bg-col {
    background-color: #e4eef7;
    padding: 80px 0;
}

.play{opacity:0.8;}
.play:hover{opacity:1;}

#client-section {
    padding-top: 80px;
    padding-bottom: 80px;
	    background: #f2f2f2;
}


