@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
/*@font-face {
    font-family: 'Material Icons';
    src: url('../fonts/MaterialIcons-Regular.eot');
    src: url('../fonts/MaterialIcons-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MaterialIcons-Regular.woff2') format('woff2'),
        url('../fonts/MaterialIcons-Regular.woff') format('woff'),
        url('../fonts/MaterialIcons-Regular.ttf') format('truetype'),
        url('../fonts/MaterialIcons-Regular.svg#MaterialIcons-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}*/

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
:root {
    --primary: #E71939;
    --secondary: #1A1818;
    --black: #000000;
    --white: #ffffff;
    --lightgray: #EBEFF2;
    --blue: #1c75bc;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
a {
    color: #000000;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    transition:all 0.3s ease-in-out;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}
img{
    vertical-align: middle;
}
input, select {
    vertical-align: middle;
}
input[type=text]:focus, input[type=email]:focus,
input[type=password]:focus, select:focus,
textarea:focus, input[type=submit]:focus,
button:focus{
  outline: 0;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #9CABC4;
    font-size: 16px;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #9CABC4;
    font-size: 16px;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #9CABC4;
    font-size: 16px;
}
:-moz-placeholder { /* Firefox 18- */
    color: #9CABC4;
    font-size: 16px;
}
::selection {
    color: #1A1818;
    background: #FFEEEE;
}
h1{
    font-size: 46px;
    line-height: 60px;
    font-weight: 500;
}
h2{
    font-size: 36px;
    line-height: 42px;
    font-weight: 500;
}
h3{
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
}
h4{
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}
h5{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}
h6{
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}
p{
    font-size: 18px;
    line-height: 28px;
}
html,body{
    height: 100%;
}
body{
    color: var(--secondary);
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    padding-bottom: 0 !important;
    display: flex;
    flex-direction: column!important;
}
footer{
    margin-top: auto!important;
}
.container{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.button{
    display: inline-block;
    color: var(--white);
    background: var(--primary);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    height: 38px;
    line-height: 1.9;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    text-transform: capitalize;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,
    border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.button:hover{
    color: var(--white);
    background: #FC4064;
}
.lg_button{
    padding: 0 40px
}
.md_button{
    padding: 0 25px;
    min-width: 120px;
}
.secondary_button{
    background: var(--blue);
}
.secondary_button:hover{
    color: var(--white);
    background: #1392F8;
}

/*Header*/
header {
    padding: 20px 0;
    background: #fff;
    z-index: 999;
    transition: all 0.5s ease;
    position: fixed;
    width: 100%;
}
header .navbar {
    padding: 0;
    position: relative;
}
header .navbar-brand{
    padding: 0;
}
header .navbar .navbar-brand img {
    transition: all 0.5s ease;
    max-width: 140px;
}
header .navbar .navbar-toggler {
    padding: 0;
}
header .navbar .navbar-toggler .navbar-toggler-icon {
    display: block;
    background: #434443;
    height: 3px;
    margin: 8px 0;
    width: 35px;
    border-radius: 3px;
}
header .navbar .navbar-collapse {
    justify-content: flex-end;
    margin-right: 50px;
}
header .navbar li:not(:last-child) {
    margin-right: 60px;
}
header .navbar li a{
    font-size: 18px;
    color: #434443;
    font-weight: 500;
}
header .navbar li:last-child a,
header .navbar li a:hover{
    color: var(--primary);
}
header.sticky_header{
    box-shadow: 0px 2px 5px rgb(0 0 0 / 5%);
    padding: 15px 0;
}

/*Footer*/
footer{
    padding: 50px 0;
}
.footer_logo{}
.footer_logo img{
    max-width: 180px;
    width: 100%;
}
.footer_links{}
.footer_links ul{
    display: flex;
    flex-wrap: wrap;
}
.footer_links ul li{
    width: 33%;
}
.footer_links ul li:not(:last-child){
    margin-bottom: 20px;
}
.footer_links ul li a{
    font-size: 18px;
    font-weight: 500;
}
.footer_links ul li a:hover{
    color: var(--primary);
}
.social_links{}
.social_links ul{
    display: flex;
    justify-content: flex-end;
}
.social_links ul li{
    margin-left: 20px;
}
.social_links ul li a{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    border-radius: 50%;
    text-align: center;
    display: block;
}
.social_links ul li a svg{
    width: 22px;
    height: 22px;
}
.social_links ul li a:hover{
    background: var(--primary);
    color: var(--white);
}
.copyright{
    text-align: right;
    border-top: 1px solid #B9BFC3;
    padding-top: 30px;
    margin-top: 80px;
    font-weight: 400;
    font-size: 16px;
}

/*Privacy Policy*/
.inner_banner{
    padding: 200px 0 0;
}
.inner_banner h1{
    font-size: 50px;
    border-bottom: 1px solid #B9BFC3;
    padding-bottom: 20px;
}
.default_wrapper{
    padding: 50px 0 100px;
}
.website_copy{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}
.website_copy h2{
    text-align: center;
    margin-bottom: 10px;
    font-weight: 400;
}
.website_copy h5{
    text-align: center;
    margin-bottom: 80px;
    font-size: 16px;
    font-weight: 400;
}
.website_copy p{
    margin-bottom: 50px;
}
.website_copy p:last-child{
    margin-bottom: 0;
}
.featured_resources{
    padding-bottom: 30px;
}
.left_featured_resource{
    padding-right: 50px;
}
.resource_block h3{
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
}
.resource_block h3 a{
    color: var(--secondary);
    font-weight: 500;
}
.resource_block h3 a:hover{
    color: var(--primary);
}
.resource_block p{
    font-size: 18px;
    font-weight: 300;
}
.left_featured_resource p{
    max-width: 700px;
}
.right_featured_resource{
    border-bottom: 1px solid #B9BFC3;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.right_featured_resource:last-child{
    border-bottom: none;
    margin-bottom: 0;
}
.right_featured_resource a{
    color: var(--secondary);
    font-weight: 500;
    font-size: 22px;
}
.right_featured_resource a:hover{
    color: var(--primary);
}
.right_featured_resource p{
    margin-top: 20px;
}
hr{
    border-top: 1px solid #B9BFC3;
    opacity: 1;
}
.all_resources{
    margin-top: 60px;
}
.all_resources .resource_block{
    margin-bottom: 80px;
}

/*Reviews*/
.common_banner{
    padding: 180px 0 0;
}
.review_banner_content{
    background: #FFEEEE;
    border-radius: 25px;
    text-align: center;
    padding: 60px 150px;
}
.review_banner_content_illustration{}
.review_banner_content_illustration img{}
.common_banner h1{
    margin: 40px 0;
}
.common_banner p{
    font-size: 24px;
}
.review_banner_content_btn{}
.reviews_wrapper{
    padding: 100px 0 0;
}
.review_col{
    margin-bottom: 150px; 
}
.review_head{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.review_unser_img{}
.review_unser_img img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}
.review_user_detail{
    width: 100%;
    margin-left: 30px;
}
.review_user_detail h4{
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.review_user_detail h5{
    font-weight: 300;
}
.review_content{}
.review_rating{
    margin-bottom: 30px;
    color: #FFBA00;
}
.review_content p{
    padding-right: 50px;
}

/*Faqs*/
.faq_banner_content{
    background: #F9FBFC;
    border-radius: 25px;
    text-align: center;
    padding: 100px 150px;
}
.faq_content{
    max-width: 900px;
    margin: 0 auto 50px;
}
.accordion-item{
    border: none;
    border-bottom: 1px solid #B9BFC3;
    border-radius: 0;
}
.accordion-button{
    font-size: 24px;
    font-weight: 400;
    padding: 30px 0;
}
.accordion-button:focus{
    box-shadow: none;
    outline: none;
    border: none;
}
.accordion-button:not(.collapsed){
    color: var(--secondary);
    background-color: transparent;
    box-shadow: none;
}
.accordion-button::after{
    background-image: url(../assets/plus-circle.svg);
    background-repeat: no-repeat;
}
.accordion-button:not(.collapsed)::after{
    background-image: url(../assets/minus-circle.svg);
    background-repeat: no-repeat;
    transform: rotate(0deg);
}
.accordion-body {
    padding: 0 0 40px;
    font-size: 18px;
}

/*Press*/
.press_wrapper{}
.featured_press{
    border-bottom: 1px solid #B9BFC3;
    padding-bottom: 80px;
}
.press_col{}
.press_col_img{}
.press_col_img img{
    border-radius: 25px;
}
.press_col_content{}
.press_col_content h5{
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.press_col_content h2{
    font-size: 36px;
    font-weight: 500;
}
.press_col_content h2 a:hover{
    color: var(--primary);
}
.press_col_content p{
    font-size: 18px;
    font-weight: 300;
    margin: 40px 0;
}
.press_col_btn{}
.featured_img img{
    height: 450px;
    width: 100%;
    object-fit: cover;
}
.featured_content{
    padding-left: 100px;
}
.all_press{
    padding: 50px 0;
}
.all_press .press_col_img{
    margin-bottom: 50px;
}
.all_press .press_col_img img{
    height: 270px;
    width: 100%;
    object-fit: cover;
}
.all_press .row,
.releated_press .row{
    margin: 0 -40px;
}
.all_press .col-md-4,
.releated_press .col-md-4{
    padding: 0 40px;
}
.all_press .press_col_content h2{
    font-size: 26px;
    line-height: 36px;
}

/*Press Detail*/
.press_detail_wrapper{
    padding: 200px 0 0;
}
.detail_img{}
.detail_img img{
    border-radius: 25px;
    height: 450px;
    width: 100%;
    object-fit: cover;
}
.detail_content{
    /*padding: 100px 0;*/
    padding-right: 100px;
}
.detail_content h5{
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.detail_content h2{
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 50px;
}
.detail_content p{
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 50px;
}
.detail_content h5,
.detail_content h2, 
.detail_content p{
    /*padding: 0 200px;*/
}
.detail_content img{
    border-radius: 25px;
    margin: 30px 0;
    height: 480px;
    width: 100%;
    object-fit: cover;
}
.releated_press{
    margin-bottom: 100px;
}
.releated_press .press_col_img{
    margin-bottom: 50px;
}
.releated_press .press_col_img img {
    height: 270px;
    width: 100%;
    object-fit: cover;
}
.releated_press .press_col_content h2{
    font-size: 26px;
    line-height: 36px;
}

/*Home*/
.home_banner{
    padding: 250px 0 220px;
    /*overflow: hidden;*/
}
.home_banner .container{
    position: relative;
}
.banner_content{}
.banner_content h1{
    font-size: 50px;
    line-height: 1.4;
}
.banner_content h1 span{
    color: var(--primary);
}
.banner_content p{
    margin: 50px 0;
    padding-right: 60px;
}
.banner_img{
    position: absolute;
    right: -30px;
    top: 0;
    max-width: 800px;
}
.play_icon{
    position: absolute;
    left: 55%;
    top: 40%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.play_icon img{
    width: 90px;
    height: 90px;
    transition: all 0.5s ease;
}
.play_icon img:hover{
    width: 100px;
    height: 100px;
}
.video {
    width: 100%;
}
.playpause {
/*  background-image:url(../assets/play-icon.png);
    background-repeat:no-repeat;
    background-size:contain;
    background-position: center;*/
    width: 100%;
    height: 20%;
    position:absolute;
    left:0%;
    right:0%;
    top:0%;
    bottom:0%;
    margin:auto;
    cursor: pointer;
    text-align: center;
}
.playpause img{
    width: 90px;
    height: 90px;
    transition: all 0.5s ease;
}
/*.playpause img:hover{
    width: 100px;
    height: 100px;
}*/
.malee_offers{
    background: rgb(235 239 242 / 25%);
    padding: 50px 0 50px;
    text-align: center;
}
.malee_offers h2{
    max-width: 1160px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.5;
}
.malee_logo{
    margin: 70px 0;
}
.malee_logo img{
    max-width: 150px;
}
.offers_lists{
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.list_one{
    display: flex;
    align-items: center;
    margin: 80px 0;
}
.list_one li{
    display: flex;
    align-items: center;
    margin: 0 50px;
    
}
.list_one li img{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}
.list_one li h5{
    font-size: 18px;
    font-weight: 500;
    margin-left: 30px;
}


/*.offers_lists ul.list_one{
    animation: marquee 10s linear infinite forwards;
}
.offers_lists ul.list_two{
    animation: marquee2 10s linear infinite forwards;
}
@keyframes marquee{
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-10%, 0, 0);
  }
}
@keyframes marquee2{
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(10%, 0, 0);
  }
}*/


.benefits{
    padding: 50px 0 20px;
    text-align: center;
}
.heading{
    color: var(--secondary);
    margin-bottom: 30px;
}
.benefits .description{
    max-width: 400px;
    margin: 0 auto;
    font-weight: 300;
}
.benfits_content{
    margin-top: 100px;
}
.benfits_content ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.benfits_content li{
    width: calc((75% / 3) - 100px);
    margin: 0 80px;
}
.benfits_content li:not(:last-child){
    margin-bottom: 80px;
}
.benefit_img{
    margin-bottom: 40px;
    overflow: hidden;
}
.benefit_img img{}
.benfits_content li p{
    padding: 0 25px;
}
.customers_tiers{
    background: rgb(235 239 242 / 25%);
    padding: 50px 0 80px;
}
.customers_tiers .heading{
    text-align: center;
    margin-bottom: 80px;
}
.tires_col{}
.tires_col_img{
    margin-bottom: 50px;
}
.tires_col_img img{
    border-radius: 25px;
}
.tires_col_content h4{
    font-weight: 500;
}
.tires_col_content p{
    margin: 20px 0;
}
.tires_col_content h5{
    font-weight: 500;
    padding-right: 100px;
}
.grow_business{
    padding: 50px 0;
    text-align: center;
}
.grow_business_img{
    margin-top: 50px;
}
.features{
    padding: 60px 0 0;
}
.features .heading{
    text-align: center;
    margin-bottom: 100px;
}
.features_col{
    padding: 0 40px;
}
.features_col ul{}
.features_col ul li{
    padding-bottom: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}
.features_col ul li:not(:last-child){
    margin-bottom: 15px;
    border-bottom: 1px solid #C9C9C9;
}
.portal_features_block{
    margin: 100px 0;
}
.portal_features_block_content{}
.portal_features_block_content .heading{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.portal_features_block_content .heading img{
    margin-right: 30px;
    width: 30px;
}
.portal_features_block_img img{
    box-shadow: 0 40px 60px rgb(132 211 225 / 16%);
}
.portal_features_block:nth-child(even) .img_order{
    order: 1;
    text-align: right;
}
.portal_features_block:nth-child(even) .portal_features_block_content{
    padding-right: 80px;
}
.portal_features_block:nth-child(odd) .portal_features_block_content{
    padding-left: 80px;
}
.pricing{
    padding: 50px 0 50px;
}
.pricing h2{
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 100px;
}
.pricing_col{
    text-align: center;
    background: #fff;
    border-radius: 25px;
    padding: 50px 20px;
    box-shadow: 0 40px 60px rgb(132 211 225 / 15%);
}
.pricing_col.active{
    border: 2px solid var(--primary);
}
.pricing_col h2{
    font-size: 50px;
    font-weight: 500;
    margin: 10px 0 10px;
}
.pricing_col h4{
    color: var(--primary);
    font-size: 36px;
    font-weight: 500;
}
.pricing_col h5{
    font-size: 18px;
}
.pricing_col h5 a{
    color: var(--primary);
}
.pricing_col p{
    text-transform: lowercase;
}
.pricing_col ul{
    margin: 50px 0;
}
.pricing_col ul li{}
.pricing_col ul li:not(:last-child){
    margin-bottom: 5px;
}
.pricing_btn{
    margin-top: 60px;
}
.build_package{
    padding: 100px 0;
}
.build_package_head{
    text-align: center;
}
.build_package_head h2{
    color: var(--primary);
    font-weight: 500;
}
.build_package_head h1{
    font-weight: 500;
    margin: 20px 0;
}
.build_package_head p{
    max-width: 750px;
    margin: 0 auto;
}
.build_package_btn{
    margin-top: 50px;
}
.build_package_block{
    border: 1px solid #C9C9C9;
    border-radius: 25px;
    margin-top: 100px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.build_package_block h2{
    font-weight: 500;
    margin: 50px 0 80px;
    font-size: 24px;
}
.package_features{
    width: 36%;
}
.package_output{
    width: 16%;
    border-left: 1px solid #C9C9C9;
}
.build_package_block ul{}
.build_package_block ul li{
    font-weight: 400;
    font-size: 20px;
    padding: 12px 0;
    min-height: 55px;
}
.build_package_block ul li img{
    width: 25px;
}
.build_package_block ul li:not(:last-child){
    border-bottom: 1px solid #C9C9C9;
}
.build_package_block ul li span{
    background: #B9BFC3;
    height: 1px;
    width: 25px;
    display: block;
    margin: 0 auto;
}
.package_features h2{
    padding-left: 50px;
}
.package_features ul li{
    padding-left: 50px;
}

.package_output h2{
    text-align: center;
}
.package_output ul li{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.package_output ul li h4{
    display: none;
}
.package_output .form-check{
    margin-bottom: 0;
}
.package_output .form-check-input{
    width: 1.2em;
    height: 1.2em;
}
.package_output .form-check-input[type=checkbox] {
    border-radius: 50%;
}
.package_output .form-check-input:focus{
    box-shadow: none;
    outline: none;
    border-color: rgba(0,0,0,.25);
}
.package_output .form-check-input:checked{
    background-color: transparent;
    border-color: transparent;
    width: 32px;
    height: 25px;
}
.package_output .form-check-input:checked[type=checkbox]{
    background-image: url(../assets/tick.svg);
    background-repeat: no-repeat;
    border-radius: 0;
}
.lets_start{
    padding: 0 0 80px;
    text-align: center;
}
.lets_start h2{
    font-weight: 300;
}
.custom_build_package_block{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.custom_package_build{
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 40px 60px rgb(132 211 225 / 15%);
    position: relative;
    height: 100%;
    min-height: 500px;
}
.custom_package_build ul{
    padding-bottom: 60px;
}
.custom_package_build ul.parsley-errors-list{
    padding-bottom: 0 !important;
}
.custom_package_build ul li{
    display: flex;
}
.custom_package_build ul li:not(:last-child){
    margin-bottom: 30px;
}
.custom_package_build ul li .custom_package_build_detail{
    margin-left: 30px;
    position: relative;
    width: 100%;
}
.custom_package_build ul li .custom_package_build_detail h5{
    color: var(--primary);
    position: absolute;
    right: 0;
    top: 2px;
}
.custom_package_build ul li .form-check-input {
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.custom_package_build ul li .form-check-input:checked {
    background-color: transparent;
    border: 1px solid rgba(0,0,0,.25);
    width: 25px;
    height: 25px
}
.custom_package_build ul li .form-check-input:checked[type=checkbox] {
    background-image: url(../assets/tick.svg);
    background-repeat: no-repeat;
    background-size: 16px;
}
.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgb(231 25 57 / 25%);
}
.custom_package_build ul li .form-check-input:checked[type=checkbox]:focus{
    box-shadow: none;
}
.custom_package_build ul li p{
    font-size: 16px;
}
.custom_package_col{
    position: relative;
    height: 100%;
}
.custom_package_col ul{
    margin: 50px 0 0;
}
.extra_features{
    margin-top: 50px;
}
.build_package__btn{
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.payment__col h3{
    margin-bottom: 40px;
}
.label{
    font-weight: 500;
    margin-bottom: 5px;
}
.form_group{
    margin-bottom: 30px;
}
.payment__col .order_column p{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment__col .order_column span{
    font-weight: 500;
    font-size: 18px;
}
.payment__col ul{
    margin-top: 10px;
}
.payment__col ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 25px;
}
.payment__col ul li:before{
    content: "";
    background: #B9BFC3;
    width: 10px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%;);
}
.payment__col ul li:not(:last-child){}
.payment__col ul li span{
    display: block;
    font-weight: 400 !important;
    color: #B9BFC3;
}
.payment__col .order_column:last-child{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #B9BFC3;
}
.payment__col .order_column:last-child span{
    font-weight: 700;
    color: var(--primary);
    font-size: 20px;
}
.right__column{
    padding-left: 50px;
}
.card_column{
    margin: 20px 0 70px;
    background: #FFEEEE;
    border-radius: 10px;
    padding: 25px;
}
.card_column h3{
    margin-bottom: 30px;
}
.form-control:focus{
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(231 25 57 / 25%);
}
/*Request Demo*/
.register_img {
    background: url(../assets/banner.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    position: fixed;
    height: 100%;
    top: 0;
}
.register__content {
    padding: 100px 0 !important;
}
.account_half:first-child {
    width: 50%;
    height: 100vh;
}
.account_half:last-child {
    width: 50%;
    margin-left: auto;
    padding: 0;
    position: relative;
}
.authentication_content {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}
.authentication_content h3 {
    font-weight: 400;
    font-size: 30px;
}
.register_copy {
    text-align: center;
    max-width: 550px;
    margin: 100px auto 0;
}
.authentication_links p {
    margin: 0 10px;
    font-weight: 300;
    font-size: 18px;
}
.text_red {
    color: var(--primary);
}
.error_field{
    border: 1px solid #ff5b5b;
}
.error_message{
    font-size: 14px;
    font-weight: 400;
    color: #ff5b5b;
}
.custom_package_col h2{
    margin: 30px 0 30px;
}
.build_package__editbtn{
    position: absolute;
    left: 30px;
    bottom: 30px;
}
/*Contact Us*/
.info_col{
    text-align: center;
}
.info_col h5{
    font-weight: 300;
}
.info_col h4 a{
   color: var(--primary);
   font-weight: 400;
}
.contact_content{
    margin: 120px 0 50px;
}
.contact_content h2{
    text-align: center;
    font-weight: 400;
    margin-bottom: 15px;
}
.contact_content p{
    text-align: center;
}
.contact_form{
    margin: 50px auto 0;
    max-width: 900px;
}
.contact_form label{
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}
.form-control{
    border: 1px solid #B9BFC3;
}
.page_banner{
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page_banner_content h1{}
.note-float-left{
    margin-right: 50px !important;
}
.note-float-right{
    margin-left: 50px !important;
}
/*Archive*/
.detail_img {
    margin-bottom: 50px;
}
.sidebar{
    position: sticky;
    top: 130px;
}
.sidebar_col{
    background: #FFEEEE;
    border-radius: 15px;
    padding: 20px;
}
.sidebar_col h3{
    margin-bottom: 20px;
    border-bottom: 1px solid #B9BFC3;
    padding-bottom: 5px;
}
.sidebar_col ul{}
.sidebar_col ul li{}
.sidebar_col ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
}
.sidebar_col ul li a:hover{
    color: var(--primary);
}
.sidebar_col ul li:not(:last-child){
    margin-bottom: 15px;
}
.sidebar_col ul li span{}
.releated_press{
    margin-top: 100px;
}
.archive_press{
    padding: 0;
    /*padding-right: 50px;*/
}
.all_press.archive_press .row {
    margin: 0 -15px;
}
.all_press.archive_press .col-md-4 {
    padding: 0 15px;
}
.archive_press .press_col {
    margin-bottom: 100px;
}
.archive_press .press_col_content h2 {
    font-size: 24px;
    line-height: 34px;
}
.archive_press .press_col_img img{
    height: 250px;
}
.sidebar_col h4{
    margin-top: 40px;
    font-size: 16px;
}
.sidebar_col h4 a{
    color: var(--primary);
}
.year_col{
    background: #FFEEEE;
    border-radius: 10px;
    padding: 30px 10px;
    margin-bottom: 20px;
    text-align: center;
}
.year_col a{
    display: block;
    font-size: 20px;
    font-weight: 400;
}
.year_col a:hover{
    color: var(--primary);
}
.common_wrapper{
    padding: 50px 0 50px;
}
.common_wrapper_content{}
.common_wrapper_content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 50px;
}
.all_press .press_col{
    margin-bottom: 80px;
}
.text_red:hover,
.text_dark:hover{
    color: var(--primary);
}
.header_top{
    position: relative;
    border-bottom: 1px solid #B9BFC3;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_top h1{
    border-bottom: none !important;
    padding-bottom: 0 !important;
}
.past_releases_link{}
.past_releases_link a{
    color: var(--primary);
    font-weight: 500;
    font-size: 18px;
}
.breadcrumb{
    margin-bottom: 0;
}
.malee_offers .item{
    display: flex;
    align-items: center;
}
.malee_offers .item img{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}
.malee_offers .item h5{
    font-size: 18px;
    font-weight: 500;
    margin-left: 30px;
}
.clients-carousel-1{
    margin-bottom: 100px;
}
.material-icons-outlined{
    vertical-align: middle;
    margin-right: 5px;
}
.required{
    color: var(--primary);
}
.light_font{
    font-weight: 400;
    font-size: .9rem;
}



/*Media Queries*/
@media screen and (max-width: 1680px){
    .container{
        max-width: 1320px;
    }
    h1{
        font-size: 32px;
    }
    h2{
        font-size: 28px;
    }
    .banner_content h1{
        font-size: 36px;
    }
    .banner_img{
        max-width: 650px;
    }
    .home_banner{
        padding: 180px 0 150px;
    }
    .play_icon img{
        max-width: 90px;
    }
    .malee_offers h2{
        max-width: 960px;
    }
    .malee_offers{
        padding: 50px 0 30px;
    }
    .malee_logo {
        margin: 60px 0 30px;
    }
    .benefits{
        padding: 60px 0 30px;
    }
    .benefits .description{
        max-width: 100%;
    }
    .heading{
        margin-bottom: 30px;
    }
    .benfits_content {
        max-width: 900px;
        margin: 60px auto 0;
    }
    .benfits_content li{
        margin: 0 40px;
        width: 24%;
    }
    .benefit_img{
        margin-bottom: 30px;
    }
    .benfits_content li p {
        padding: 0;
    }
    .benfits_content li:not(:last-child) {
        margin-bottom: 50px;
    }
    .customers_tiers{
        padding: 60px 0;
    }
    .customers_tiers .heading{
        margin-bottom: 50px;
    }
    .tires_col_img {
        margin-bottom: 30px;
    }
    .tires_col_content p {
        margin: 15px 0;
    }
    .grow_business{
        padding: 60px 0 0;
    }
    .grow_business_img{
        padding: 0 100px;
        margin-top: 30px;
    }
    .features {
        padding: 50px 0 0;
    }
    .features .heading{
        margin-bottom: 50px;
    }
    .features_col ul li{
        font-size: 18px;
    }
    .portal_features_block{
        margin: 120px 0;
    }
    .portal_features_block_img img{
        max-width: 550px;
    }
    .portal_features_block:nth-child(even) .portal_features_block_content{
        padding-right: 30px;
    }
    .portal_features_block:nth-child(odd) .portal_features_block_content{
        padding-left: 30px;
    }
    .pricing {
        padding: 0 0 60px;
    }
    .pricing h2{
        max-width: 100%;
        margin-bottom: 50px;
    }
    .pricing_col h4{
        font-size: 28px;
    }
    .pricing_col h2{
        font-size: 38px;
        margin: 20px 0;
    }
    .pricing_col ul {
        margin: 40px 0;
    }
    .pricing_btn {
        margin-top: 50px;
    }
    .pricing_col{
        padding: 50px 20px;
    }
    .build_package {
        padding: 70px 0;
    }
    .build_package_head h1{
        margin: 10px 0;
    }
    .build_package_btn {
        margin-top: 40px;
    }
    .build_package_block h2{
        margin: 20px 0 50px;
    }
    .build_package_block ul li{
        padding: 10px 0;
        min-height: 52px;
    }
    .package_features ul li {
        padding-left: 50px;
    }
    .build_package_block{
        margin-top: 60px;
    }
    .lets_start{
        padding: 20px 0 70px;
    }
    .customers_tiers .heading{
        margin-bottom: 60px;
    }
    .footer_logo img{
        max-width: 140px;
    }
    .inner_banner h1{
        font-size: 42px;
        padding-bottom: 20px;
    }
    .inner_banner {
        padding: 180px 0 0;
    }
    .default_wrapper {
        padding: 60px 0;
    }
    .website_copy h5{
        margin-bottom: 60px;
    }
    .faq_banner_content{
        padding: 60px 100px;
    }
    .common_banner h1 {
        margin: 30px 0;
    }
    .accordion-button{
        padding: 20px 0;
    }
    .reviews_wrapper {
        padding: 80px 0 0;
    }
    .review_col {
        margin-bottom: 100px;
    }
    .resource_block h3{
        font-size: 32px;
    }
    .all_resources .resource_block h3 {
        font-size: 26px;
        line-height: 36px;
    }
    .detail_img img{
        height: 450px;
    }
    /*.press_detail_wrapper {
        padding: 50px 0 0;
    }*/
    .detail_content img{
        height: 400px;
    }
    .all_press .press_col_content h2,
    .releated_press .press_col_content h2{
        font-size: 24px;
        line-height: 32px;
    }
    .press_col_content p{
        margin: 30px 0;
    }
    .featured_img img{
        height: 350px;
    }
    .press_col_content h2{
        font-size: 28px;
    }
}
@media screen and (max-width:1440px){
    .container{
        max-width: 1240px;
    }
    h1{
        font-size: 36px;
    }
    h2{
        font-size: 28px;
    }
    .home_banner {
        padding: 200px 0 220px;
    }
    /*.all_press .press_col_content h2,
    .releated_press .press_col_content h2{
        font-size: 28px;
    }*/
    .banner_content h1{
        font-size: 34px;
    }
    .banner_content p{
        margin: 30px 0;
        padding-right: 0;
    }
    .malee_offers h2{
        max-width: 100%;
    }
    .banner_content {
        margin-top: 50px;
    }
    .detail_img img {
        height: 400px;
    }
    .detail_content {
        padding: 50px 0;
    }
    .detail_content h2{
        font-size: 32px;
        margin-bottom: 30px;
    }
    .detail_content h5{
        margin-bottom: 10px;
    }
    .detail_content p{
        font-size: 16px;
        margin-bottom: 25px;
    }
    .review_banner_content_illustration img {
        width: 200px;
    }
    .pricing_col h2{
        margin: 10px 0;
    }
    .pricing_col h4 {
        font-size: 24px;
    }
    .pricing_col ul {
        margin: 30px 0;
    }
    header .navbar .navbar-brand img{
        max-width: 120px;
    }
    .page_banner{
        height: 350px;
    }
    .common_banner h1 {
        margin: 20px 0;
        line-height: 50px;
    }
    .common_banner p {
        font-size: 22px;
    }
    .review_unser_img img{
        width: 65px;
        height: 65px;
    }
    .press_wrapper {
        padding-bottom: 150px !important;
    }
}
@media screen and (max-width:1366px){
    .container {
        max-width: 1170px;
    }
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 24px;
    }
    h4{
        font-size: 18px;
    }
    h5{
        font-size: 16px;
    }
    p{
        font-size: 15px;
        line-height: 26px;
    }
    header .navbar li a{
        font-size: 16px;
    }
    header .navbar li:not(:last-child) {
        margin-right: 50px;
    }
    .button{
        line-height: 2.3;
        font-size: 16px;
    }
    header.sticky_header{
        padding: 10px 0;
    }
    .inner_banner h1{
        font-size: 34px;
        padding-bottom: 10px;
    }
    .default_wrapper {
        padding: 30px 0 100px;
    }
    .website_copy h5 {
        margin-bottom: 30px;
    }
    .website_copy p {
        margin-bottom: 25px;
    }
    .featured_img img{
        height: 350px;
    }
    .all_press .press_col_content h2,
    .releated_press .press_col_content h2{
        font-size: 20px;
        line-height: 28px;
    }
    .featured_content {
        padding-left: 50px;
    }
    .all_press .row {
        margin: 0 -30px;
    }
    .all_press .col-md-4 {
        padding: 0 30px;
    }
    .detail_img img{
        height: 400px;
    }
    .banner_content h1 {
        font-size: 30px;
    }
    .play_icon img{
        max-width: 80px !important;
    }
    .tires_col_content h5{
        padding-right: 0;
    }
    .home_banner {
        padding: 160px 0 180px;
    }
    .lg_button {
        padding: 0 30px;
    }
    .features {
        padding: 60px 0 0;
    }
    .portal_features_block {
        margin: 60px 0;
    }
    .portal_features_block_img img {
        max-width: 450px;
    }
    .pricing h2{
        margin-bottom: 50px;
    }
    .pricing_col h2{
        margin:  0;
        font-size: 32px;
    }
    .pricing_col {
        padding: 25px 20px;
    }
    .pricing_btn {
        margin-top: 30px;
    }
    .build_package {
        padding: 20px 0 50px;
    }
    .pricing {
        padding: 30px 0 80px;
    }
    .malee_logo {
        margin: 50px 0 30px;
    }
    .offers_lists ul{
        margin: 60px 0;
    }
    .resource_block h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .all_resources .resource_block h3 {
        font-size: 22px;
        line-height: 32px;
    }
    .malee_offers .item img{
        width: 50px;
        height: 50px;
    }
    .malee_offers .item h5{
        font-size: 16px;
        margin-left: 20px;
    }
    .jctkr-wrapper{
        margin: 10px 0;
    }
    .benfits_content{
        margin: 40px auto 0;
        max-width: 800px;
    }
    .benefits .heading {
        margin-bottom: 10px;
    }
    .benfits_content li {
        margin: 0 30px;
        width: 25%;
    }
    .benefit_img img {
        max-width: 180px;
    }
    .benefits {
        padding: 30px 0 20px;
    }
    .malee_offers h2{
        padding: 0 100px;
    }
    .customers_tiers {
        padding: 30px 0 60px;
    }
    .customers_tiers .heading {
        margin-bottom: 30px;
    }
    .tires_col {
        padding: 0 15px;
    }
    .tires_col_content p {
        margin: 10px 0;
    }
    .grow_business {
        padding: 30px 0 0;
    }
    .features_col ul li {
        font-size: 16px;
    }
    .features_col ul li:not(:last-child){
        padding-bottom: 10px;
    }
    .pricing_col h4 {
        font-size: 20px;
    }
    .pricing_col ul {
        margin: 20px 0;
    }
    .pricing_col h5 {
        font-size: 16px;
    }
    .build_package_head h1 {
        margin: 0px 0;
    }
    .build_package_btn {
        margin-top: 30px;
    }
    .build_package_block h2{
        margin: 20px 0 30px;
        font-size: 20px;
    }
    .build_package_block ul li{
        font-size: 16px;
        padding: 8px 0;
        min-height: 45px;
    }
    .package_features h2{
        padding-left: 30px;
    }
    .package_features ul li{
        padding-left: 30px;
    }
    .build_package_block ul li img{
        width: 20px;
    }
    .footer_links ul li a{
        font-size: 16px;
    }
    .footer_logo img {
        max-width: 100px;
    }
    .portal_features_block_content .heading img {
        margin-right: 20px;
        width: 24px;
    }
    .portal_features_block_content .heading{    
        margin-bottom: 15px;
    }
    .malee_logo img {
        max-width: 100px;
    }
    .faq_banner_content_illustration img{
        width: 80px;
    }
    .faq_banner_content {
        padding: 50px 80px;
    }
    .common_banner h1 {
        margin: 20px 0;
        line-height: 1.3;
    }
    .accordion-body{
        font-size: 16px;
    }
    .press_col_content p {
        margin: 20px 0;
    }
    .all_press .press_col_img {
        margin-bottom: 30px;
    }
    .all_press .press_col_img img{
        height: 250px;
    }
    .press_col_content h5{
        margin-bottom: 10px;
    }
    .featured_press{
        padding-bottom: 40px;
    }
    /*.press_detail_wrapper {
        padding: 0 0 50px;
    }*/
    .review_unser_img img{
        width: 65px;
        height: 65px;
    }
    .common_banner{
        padding: 180px 0 0;
    }
    .review_rating{
        margin-bottom: 20px;
    }
    .custom_package_build ul li p {
        font-size: 15px;
    }
    .page_banner {
        height: 320px;
    }
    header .navbar .navbar-brand img {
        max-width: 100px;
    }
    .banner_img{
        right: -10px;
    }
    .banner_img img{
        max-width: 620px;
    }
    .benefit_img {
        margin-bottom: 15px;
    }
    .tires_col_img {
        margin-bottom: 15px;
    }
    .detail_content {
        padding: 0;
    }
    .common_wrapper_content h5{
        margin-bottom: 20px;
    }
}
@media screen and (max-width:1280px){}
@media screen and (max-width:1040px){
    .container {
        max-width: 960px;
    }
    h1{
        font-size: 34px;
    }
    h2{
        font-size: 28px;
    }
    .website_copy{
        max-width: 960px;
    }
    header .navbar li:not(:last-child) {
        margin-right: 40px;
    }
    .footer_links ul li a{
        font-size: 16px;
    }
    .resource_block h3{
        font-size: 28px;
    }
    .review_banner_content{
        padding: 60px 60px;
    }
    .review_content p{
        padding-right: 20px;
        font-size: 16px;
    }
    .review_col {
        margin-bottom: 60px;
    }
    .reviews_wrapper {
        padding: 70px 0 0;
    }
    .faq_banner_content{
        padding: 100px 100px;
    }
    .faq_banner_content {
        padding: 50px 50px;
    }
    .featured_content {
        padding-left: 30px;
    }
    .press_col_content h2{
        font-size: 24px;
        line-height: 32px;
    }
    .all_press .press_col_img img,
    .releated_press .press_col_img img{
        height: 220px;
    }
    .all_press .row {
        margin: 0 -15px;
    }
    .all_press .col-md-4 {
        padding: 0 15px;
    }
    .press_col_content p{
        font-size: 16px;
    }
    /*.detail_content h5, .detail_content h2, .detail_content p {
        padding: 0 100px;
    }*/
    .home_banner {
        padding: 200px 0 100px;
    }
    .banner_img {
        max-width: 550px;
        right: -10px;
    }
    .banner_content h1 {
        font-size: 32px;
    }
    .banner_content p {
        padding-right: 50px;
        margin: 30px 0;
    }
    .benfits_content li{
        width: calc((100% / 3) - 100px);
        margin: 0 50px;
    }
    .benfits_content li p {
        padding: 0 0px;
    }
    .features_col {
        padding: 0 20px;
    }
    .features_col ul li{
        font-size: 18px;
    }
    .portal_features_block:nth-child(even) .portal_features_block_content{
        padding-right: 20px;
    }
    .portal_features_block:nth-child(odd) .portal_features_block_content{
        padding-left: 20px;
    }
    .pricing h2{
        max-width: 100%;
    }
    .pricing_col h2{
        font-size: 42px;
    }
    .build_package_head h1{
        margin: 10px 0;
    }
    .build_package_block h2{
        margin: 20px 0 50px;
    }
    .build_package_block ul li{
        font-size: 18px;
    }
    .lets_start{
        padding: 20px 0 80px;
    }
    .portal_features_block_img img {
        max-width: 450px;
    }
    .portal_features_block_content .heading img{
        margin-right: 20px;
    }
    .build_package_block ul li img{
        width: 20px;
    }
    .custom_package_col h4 {
        font-size: 24px;
    }
    .custom_package_col h2 {
        font-size: 34px;
        margin: 5px 0;
    }
    .register__content {
        padding: 200px 30px !important;
    }
    .register_copy {
        max-width: 450px;
    }
    .authentication_content h3 {
        font-size: 24px;
    }
    .banner_content {
        margin-top: 0;
    }
    .malee_offers h2 {
        padding: 0 60px;
    }
    .tires_col {
        padding: 0 0px;
    }
    .detail_img img {
        height: 350px;
    }
    .common_banner {
        padding: 180px 0 0;
    }
    .sidebar_col h3{
        font-size: 20px;
    }
    .all_press .row, .releated_press .row {
        margin: 0 -20px;
    }
    .all_press .col-md-4, .releated_press .col-md-4 {
        padding: 0 20px;
    }
    .clients-carousel-1 {
        margin-bottom: 60px;
    }
}
@media screen and (max-width:991px){
    h2 {
        font-size: 24px;
    }
    h5{
        font-size: 16px;
    }
    header .navbar .nav_right {
        position: fixed;
        right: 90px;
        top: 20px;
    }
    header{
        padding: 10px 0;
        box-shadow: 0px 2px 5px rgb(0 0 0 / 5%);
    }
    header .navbar .navbar-collapse {
        margin-right: 0;
        background: #fff;
    }
    header .navbar li:not(:last-child) {
        margin-right: 0;
    }
    header .navbar li {
        margin: 10px 10px;
    }
    .button{
        font-size: 16px;
        line-height: 2.3;
    }
    .navbar-toggler:focus{
        box-shadow: none;
        outline: none;
    }
    header .navbar .navbar-brand img{
        max-width: 110px;
    }
    .inner_banner {
        padding: 150px 0 0;
    }
    .website_copy{
        padding: 0 15px;
    }
    .navbar-nav{
        padding-top: 20px;
    }
    .copyright{
        font-size: 14px;
    }
    .footer_logo img {
        max-width: 120px;
    }
    .footer_links ul li a {
        font-size: 14px;
    }
    .footer_links ul li:not(:last-child) {
        margin-bottom: 15px;
    }
    .right_featured_resource a{
        font-size: 22px;
        line-height: 32px;
    }
    .left_featured_resource {
        padding-right: 30px;
    }
    .resource_block p{
        font-size: 16px;
    }
    .resource_block h3 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    .all_resources .resource_block h3 {
        font-size: 18px;
        line-height: 24px;
    }
    .review_banner_content_illustration img {
        max-width: 200px;
    }
    .common_banner {
        padding: 150px 0 0;
    }
    .review_unser_img img{
        width: 60px;
        height: 60px;
    }
    .container {
        max-width: 720px;
    }
    .social_links ul li {
        margin-left: 10px;
    }
    .review_banner_content{
        padding: 40px 50px;
    }
    .featured_img img {
        height: 280px;
    }
    .press_col_content h2 {
        font-size: 22px;
        line-height: 28px;
    }
    .press_col_content p{
        margin: 20px 0;
    }
    .all_press .press_col_img img,
    .releated_press .press_col_img img{
        height: 180px;
    }
    .all_press .press_col_img {
        margin-bottom: 30px;
    }
    .all_press .press_col_content h2, .releated_press .press_col_content h2 {
        font-size: 18px;
        line-height: 24px;
    }
    .press_col_content p {
        font-size: 14px;
        margin: 10px 0;
    }
    .detail_img img {
        height: 300px;
    }
    .detail_content {
        padding: 0;
    }
    .detail_content h5, .detail_content h2, .detail_content p {
        padding: 0 10px;
    }
    .detail_content h2{
        font-size: 26px;
        line-height: 32px;
    }
    .detail_content p{
        font-size: 16px;
    }
    .detail_content img{
        height: 350px;
    }
    .banner_img{
        position: relative;
        max-width: 100%;
        right: 0;
        text-align: center;
        padding: 0 50px;
    }
    .home_banner{
        padding: 150px 0 50px;
    }
    .banner_content {
        margin-bottom: 50px;
        text-align: center;
        padding: 0 50px;
    }
    .malee_logo {
        margin: 50px 0;
    }
    .benfits_content li {
        width: calc((100% / 3) - 40px);
        margin: 0 20px;
    }
    .features_col ul li {
        font-size: 16px;
    }
    .portal_features_block_content .heading span{
        margin-right: 20px;
    }
    .pricing_col{
        margin-bottom: 50px;
    }
    .pricing_col h2 {
        max-width: 100%;
    }
    .package_features h2 {
        padding-left: 20px;
    }
    .package_features ul li {
        padding-left: 20px;
    }
    .build_package {
        padding: 0px 0 50px;
    }
    .website_copy {
        max-width: 750px;
    }
    .portal_features_block_img img {
        max-width: 100%;
    }
    .portal_features_block_content .heading{
        margin-bottom: 20px;
    }
    .offers_lists ul {
        margin: 20px 0 60px;
    }
    .features_col {
        padding: 0 0px;
    }
    .portal_features_block {
        margin: 80px 0;
    }
    .portal_features_block_content .heading img{
        width: 20px;
    }
    .banner_content p{
        padding-right: 0;
    }
    .grow_business_img{
        padding: 0 30px;
    }
    .website_copy h5 {
        margin-bottom: 40px;
    }
    .authentication_links p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .authentication_content h3 {
        font-size: 18px;
    }
    .authentication_content p {
        font-size: 14px;
    }
    .register__content {
        padding: 60px 30px !important;
    }
    .malee_offers h2 {
        padding: 0 0px;
    }
    .common_banner p {
        font-size: 20px;
    }
    .accordion-button{
        font-size: 22px;
    }
    .right_featured_resource{
        margin-bottom: 30px;
        margin-top: 30px;
        padding-bottom: 0;
        border-bottom: none;
    }
    .review_banner_content h1{
        font-size: 30px;
        line-height: 1.5;
    }
    .page_banner {
        height: 280px;
    }
    .press_col_img img {
        border-radius: 15px;
    }
    .press_detail_wrapper {
        padding: 150px 0 0;
    }
}
@media screen and (max-width:767px){
    h1{
        font-size: 32px;
    }
    h2{
        font-size: 22px;
    }
    h3{
        font-size: 20px;
    }
    .inner_banner h1 {
        font-size: 32px;
        padding-bottom: 10px;
    }
    .website_copy h3{
        font-size: 28px;
    }
    .footer_logo {
        text-align: center;
    }
    .social_links ul{
        justify-content: center;
    }
    .footer_links{
        margin: 50px 0;
    }
    .copyright {
        text-align: center;
        margin-top: 50px;
    }
    .left_featured_resource {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .resource_block h3 {
        margin-bottom: 20px;
    }
    .right_featured_resource a{
        font-size: 22px;
        line-height: 32px;
    }
    .all_resources .resource_block {
        margin-bottom: 50px;
    }
    .all_resources .resource_block h3 {
        font-size: 22px;
        line-height: 32px;
    }
    .review_banner_content_illustration img {
        max-width: 150px;
    }
    .review_banner_content {
        padding: 30px 15px;
    }
    .common_banner h1{
        font-size: 22px;
        line-height: 1.5;
        margin: 20px 0;
    }
    .default_wrapper {
        padding: 50px 0 0;
    }
    .review_user_detail{
        margin-left: 20px;
    }
    .review_rating{
        margin-bottom: 10px;
    }
    .review_col {
        margin-bottom: 50px;
    }
    .faq_banner_content_illustration img{
        max-width: 50px;
    }
    .common_banner p{
        font-size: 16px;
    }
    .faq_content{
        padding: 0 10px;
    }
    .accordion-button{
        font-size: 20px;
    }
    .accordion-body{
        font-size: 16px;
    }
    .faq_banner_content {
        padding: 30px 15px;
    }
    .featured_img{
        margin-bottom: 30px;
    }
    .featured_content {
        padding-left: 0;
    }
    .all_press .press_col,
    .releated_press .press_col {
        margin-bottom: 80px;
    }
    .all_press .press_col_img img,
    .releated_press .press_col_img img{
        height: 250px;
    }
    .all_press .row {
        margin: 0 -10px;
    }
    .all_press .col-md-4 {
        padding: 0 10px;
    }
    .detail_content h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .detail_content img {
        height: 250px;
    }
    .releated_press .press_col_img {
        margin-bottom: 30px;
    }
    .releated_press {
        margin-bottom: 0px;
    }
    header .navbar .nav_right{
        right: 30px;
        top: 18px;
    }
    .banner_content{
        padding: 0;
    }
    .home_banner{
        padding: 150px 0 50px;
    }
    .play_icon img {
        max-width: 60px;
    }
    .benfits_content li{
        width: calc((100% / 2) - 30px);
        margin: 0 15px;
    }
    .benfits_content li:not(:last-child) {
        margin-bottom: 50px;
    }
    .benefit_img{
        margin-bottom: 20px;
    }
    .tires_col_img {
        margin-bottom: 30px;
    }
    .tires_col_content p {
        margin: 10px 0;
    }
    .tires_col {
        margin-bottom: 60px;
    }
    .heading{
        margin-bottom: 40px;
    }
    .features_col ul li:last-child{
        border-bottom: 1px solid #C9C9C9;
        margin-bottom: 15px;
    }
    .features .heading{
        margin-bottom: 40px;
    }
    .portal_features_block:nth-child(odd) .portal_features_block_content{
        padding-left: 0;
    }
    .portal_features_block:nth-child(even) .portal_features_block_content{
        padding-right: 0;
    }
    .portal_features_block_content .heading{
        margin-bottom: 10px;
    }
    .portal_features_block_img{
        padding: 10px;
        margin-top: 20px;
    }
    .img_order {
        order: 1;
        text-align: center;
    }
    .portal_features_block {
        margin: 60px 0;
    }
    .build_package_btn {
        margin-top: 40px;
    }
    .lets_start {
        padding: 0px 0 40px;
    }
    .malee_offers{
        padding: 50px 0 40px;
    }
    .benefits{
        padding: 50px 0 40px;
    }
    .customers_tiers{
        padding: 50px 0 0px;
    }
    .grow_business{
        padding: 50px 0;
    }
    .features{
        padding: 30px 0 0;
    }
    .pricing {
        padding: 50px 0 50px;
    }
    .pricing_col{
        padding: 40px 20px;
        box-shadow: 0 0px 60px rgb(132 211 225 / 25%);
    }
    .pricing h2{
        margin-bottom: 40px;
    }
    .pricing_col h2{
        margin: 10px 0 10px;
        font-size: 36px;
    }
    .pricing_col h4 {
        font-size: 22px;
    }
    .pricing_col ul {
        margin: 40px 0;
    }
    .pricing_btn {
        margin-top: 40px;
    }
    .offers_lists ul li img{
        width: 48px;
        height: 48px;
    }
    .offers_lists ul li h5{
        font-size: 16px;
        margin-left: 20px;
    }
    .offers_lists ul{
        margin: 30px 0 50px;
    }
    .customers_tiers .heading{
        margin-bottom: 40px;
    }
    .build_package_block{
        border: none;
        border-radius: 0;
        display: block;
    }
    .package_features{
        display: none;
    }
    .package_output{
        width: 100%;
        border-left: none;
        box-shadow: 0 0px 40px rgb(132 211 225 / 15%);
        margin: 20px 0;
        padding: 10px 20px;
    }
    .build_package_block ul li{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .package_output ul li h4{
        display: block;
        font-size: 16px;
        font-weight: 400;
    }
    .build_package_block ul li span{
        height: 2px;
        margin: 0;
    }
    .build_package_block ul{
        display: none;
    }
    .build_package_block h2{
        margin: 0px 0;
        position: relative;
        text-align: left;
    }
    .build_package_block h2::after{
        content: '';
        background-image: url(../assets/keyboard_arrow_down.png);
        width: 18px;
        height: 18px;
        position: absolute;
        right: 0;
        top: 12px;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        transform: rotate(0deg);
        transition: all 0.5s ease-in-out;
    }
    .build_package_block h2.active::after {
        transform: rotate(180deg);
    }
    .container{
        padding: 0 30px;
    }
    .button {
        font-size: 14px;
        line-height: 2.8;
    }
    .md_button{
        min-width: 100px;
    }
    .lg_button {
        padding: 0 15px;
    }
    header .navbar .navbar-brand img {
        max-width: 100px;
    }
    header .navbar li a{
        font-size: 16px;
    }
    .website_copy {
        padding: 0 30px;
    }
    .all_press .press_col_content h2, .releated_press .press_col_content h2 {
        font-size: 18px;
        line-height: 24px;
    }
    .portal_features_block_content .heading img {
        margin-right: 20px;
        width: 20px;
    }
    .malee_logo img {
        max-width: 120px;
    }
    .banner_content h1 {
        font-size: 28px;
    }
    .banner_img{
        padding: 0;
    }
    .build_package_head h1 {
        margin: 0;
    }
    .malee_logo {
        margin: 40px 0;
    }
    .malee_offers .item img{
        width: 48px;
        height: 48px;
    }
    .malee_offers .item h5{
        margin-left: 20px;
    }
    .jctkr-wrapper{
        height: 60px;
    }
    .grow_business_img {
        padding: 0 0px;
    }
    .right_featured_resource{
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .press_detail_wrapper {
        padding: 150px 0 0;
    }
    .detail_img img {
        height: 250px;
    }
    .custom_package_build ul li .custom_package_build_detail h5{
        position: static;
    }
    .custom_package_col{
        height: auto;
    }
    .register_img{
        display: none;
    }
    .account_half:last-child{
        margin-left: 0;
        width: 100%;
    }
    .authentication_content img{
        max-width: 180px;
    }
    .register_copy{
        margin: 80px auto 0;
    }
    .custom_package_build{
        margin-bottom: 50px;
        padding: 20px;
        height: auto;
    }
    .card_column{
        padding: 15px;
        margin: 20px 0 30px;
    }
    .benefit_img img {
        max-width: 100%;
    }
    .inner_banner {
        padding: 120px 0 0;
    }
    .all_press {
        padding: 50px 0 0;
    }
    .custom_package_build ul li .form-check-input{
        width: 20px;
        height: 20px;
    }
    .custom_package_build ul li .custom_package_build_detail{
        margin-left: 15px;
    }
    .build_package__btn{
        position: static;
        text-align: right;
        margin-top: 30px;
    }
    .build_package__editbtn{
        bottom: 20px;
    }
    .page_banner {
        height: 250px;
    }
    .default_wrapper .border-end{
        border-right: none !important;
    }
    .info_col{
        margin-bottom: 20px;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 20px;
    }
    .row .col-md-4:last-child .info_col{
        border-bottom: none;
    }
    .contact_content {
        margin: 20px 0 50px;
    }
    .review_content p{
        padding-right: 0;
    }
    .detail_content h5, .detail_content h2, .detail_content p{
        padding: 0;
    }
    .header_top{
        flex-direction: column;
        align-items: self-start;
    }
    .press_wrapper {
        padding-bottom: 100px !important;
    }
}
@media screen and (max-width:680px){}
@media screen and (max-width: 824px) and (orientation: landscape){
    header .navbar .nav_right{
        right: 110px;
    }
}
@media screen and (max-width: 780px) and (orientation: landscape){
    header .navbar .nav_right{
        right: 90px;
    }
    .tires_col{
        text-align: center;
    }
    .tires_col_content{
        padding: 0 50px;
    }
    .container{
        padding: 0 30px;
    }
    .register__content {
        padding: 60px 30px !important;
    }
    .faq_banner_content_illustration img {
        width: 60px;
    }
}