:root {
    --color-white-100: hsl(206, 5%, 98%);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
a,
button {
    cursor: pointer;
    border: none;
    box-shadow: none;
}

ul {
    margin: 0 !important;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    background-color: white;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 3.5rem;
    margin: 0 auto;
}
.display-content{
    display: flex;
    width: 30%;
    margin: auto;
}
.w-40{
    width: 370px !important;
}
.angelArrow{
    top: 55%;
    left: 92%;
    font-size: 20px;
}
.set-btn {
    background-color: #e65038;
    padding: 5px;
    color: white;
    border: 2px solid #e65038;
}
.float-right {
    float:right;
}
.angelSearch{
    top: 55%;
    right: 96%;
    font-size: 16px;
}
#angelSearch{
    padding-left: 25px !important;
}
.cursor-pointer,
.cursor-pointer, label{
    cursor:pointer;
}
.set-line{
    height: 2px;
    border: none;
    width: 56px;
    background-color: rgb(221, 226, 228);
    margin: 10px;
}
.mx-auto small{
    font-size: 12px;
    overflow: visible;
    white-space: nowrap;
}
.display-content .text-primary{
    margin-left: 5px;
    font-size: 20px;
}
@media screen and (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: var(--shadow-medium);
        background-color: white;
        transition: all 0.5s ease;
    }

    .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
    .flex-md-column-reverses {
        flex-direction: column-reverse;
    }
}
.card{
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}
.font-weight-normal{
    font-weight:normal;
}
.float-left{
    float:left;
}
.menu-item {
    position: relative;
    display: inline-block;
    margin-left: 1.5rem;
}

.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: black;
    transition: all 0.3s ease-in-out;
}

.menu-link>i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
}

@media only screen and (min-width: 993px) {
    .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 992px) {
    .menu {
        width: 100%;
        height: auto;
        padding: 1rem 0;
    }

    .menu-item {
        display: block;
        margin: 0 auto;
    }

    .menu-link {
        justify-content: space-between;
        padding: 0.5rem 1.25rem;
    }

    #header {
        padding: 0 !important;
    }
}

.submenu {
    position: absolute;
    top: 4.5rem;
    left: -2rem;
    min-width: 13rem;
    height: auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 0 0 0.25rem 0.25rem;
    box-shadow: var(--shadow-medium);
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.submenu-item {
    display: block;
    line-height: 2rem;
}

.submenu-link {
    font-family: inherit;
    font-size: 14px;
    line-height: inherit;
    cursor: pointer;
    padding: 0 15px;
    color: black;
    transition: all 0.35s ease;
}

.submenu-link:hover {
    outline: none;
    /* color: var(--color-pink-500); */
}

@media only screen and (max-width: 992px) {
    .submenu {
        position: relative;
        top: -0.5rem;
        left: 2.5rem;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
    }
}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1.75rem;
    height: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border: none;
    outline: none;
    background: black;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

@media only screen and (max-width: 992px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 992px) {
    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}
.header {
        position: inherit;
    }
    .plus_border {
    border-top: 1px solid #ddd;
    padding: 30px 0 !important;
    background: #252530;
}
.text-light img{
    margin: 5px 0 0 -23px;
}
.mm-navbars-bottom,#bmc-wbtn{
    display: none !important;
}

.bg-banner {
    background: url("../../homesettingbanner/6375b920684da_1668659488_6375b920684de.png");
    /* background: url(../images/home/Queen-Creek-resize.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    height: 58vh;
}


.des_1 p {
    color: white !important;
    font-size: 18px !important;
    padding: 0px !important;
}

div#bussiness_listing .col-lg-4 figure:after {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 5;
    overflow: hidden;
}

div#bussiness_listing .info {
    background: no-repeat;
    text-align: center;
    bottom: 40%;
}

div#bussiness_listing .info h3 {
    font-size: 22px;
}

#row_border {
    padding: 30px 20px 30px 20px;
    height: 220px;
}

#em_height {
    line-height: 2em;
    font-size: 14px;
    padding-top: 10px;
    overflow: auto;
}

.h_class {
    padding-top: 15px;
}

.hs_class {
    padding-top: 40px;
    color: white;
}


.make-content {
    background: #001f57;
    color: white !important;
}

.text-size {
    margin-bottom: 0px !important;
}

.text-object-one {
    margin: 0 auto;
    text-align: center;
    width: 70%;
    height: 100%;
    padding: 4% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-search-input-2 {
    margin: 0 auto;
    border-radius: 33px;
    border: 2px solid #df1f00;
}

/* .custom-search-input-2 .col-lg-9{

} */

.text-object-two {
    margin: 0 auto;
    text-align: center;
    width: 80%;
    height: 100%;
    padding: 4% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grey-object {
    /* background-color: grey; */
    background-image: url('https://www.onlygfx.com/wp-content/uploads/2017/10/grunge-banner-3-9.png');
    color: white;
}

.white-object {
    background-color: white;
}

.my-sizeh {
    font-size: 1.0rem;
    color: white;
}

.my-size-h4 {
    font-size: 13px;
    margin: 5px 0px;
    color: #555;
}

.first {
    background: #fff;
    padding: 20px 10px 10px 10px;
    box-shadow: 0px 0px 7px 0px rgb(1 1 1 / 20%);
    margin: 10px 0px;
}

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

.textleft {
    text-align: left;
}

.main_title_2 {
    margin-bottom: 15px;
}

h1 {
    font-size: 2.75rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.h3-obj-one {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    font-color: #db4040;
}

.p-obj-one {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.7em;
}

.call_section.pattern {
    background: #004dda url(../img/pattern.svg) center center repeat fixed;
}

.box_two {
    padding: 20px 10px 10px 10px;
}

.box_two:hover {
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 5px 0px rgb(255 255 255);
}

.floatright {
    float: right;
}

.foot-lg-3 {
    width: 20%;
    height: 22px;
}

.softwareList {
    border-radius: 4px;
    height: 166px;
    border: 1px solid #cacaca;
}

.softwareCategory p {
    cursor: pointer;
}

.col-md-12 a {
    color: #ff492c;
}

.softwareList i {
    color: #ff492c;
}

.set-btnRow .active {
    color: #ff492c;
    font-weight: 600;
    border-radius: 3px;
    border: 2px solid #ff492c;
}

@media (min-width: 200px) {
    .foot-ssm-15 {
        width: 50%;
        height: 14px;
    }

    .foot-ssm-14 {
        font-size: 10px;
    }

    .foot-foot-12 {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    ul#footer-selector li:last-child {
        margin-top: 0px;
    }

    .header_in #logo img {
        margin: 12px 20px;
        float: right;
    }
}

@media (min-width: 600px) {
    .foot-sm-15 {
        width: 50%;
        height: 20px;
    }

    .foot-sm-14 {
        font-size: 14px;
    }

    .foot-sm-12 {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    header .container {
        height: 65px;
    }

    header .row {
        display: inline-flex !important;
        flex-wrap: unset !important;
    }

    header .row .col-md-8 {
        margin: 17px 0;
    }

    header .row .col-md-4 {
        width: 0%;
        max-width: 0%;
        padding-right: 0;
        margin-top: 0;
    }

    .header_in #logo img {
        margin: 12px 50px;
        float: right;
        height: 35px;
    }

    header img {
        height: 40px;
    }

    .bg-banner {
        background: white;
    }

    .wrapper .mx-auto {
        width: 300px;
    }

    .wrapper .title-text {
        width: 100% !important;
    }

    .custom-search-input-2 {
        width: 100% !important;
    }

    .wrapper .mx-auto h1 {
        font-size: 30px;
    }

    .hero_single .wrapper {
        display: contents;
    }

}

@media (max-width: 550px) {
    .header_in #logo img {
        margin: 12px 20px;
        float: right;
    }
}

@media (min-width: 750px) {
    .foot-smm-15 {
        width: 33%;
        height: 16px;
    }

    .foot-smm-14 {
        font-size: 10px;
    }

    .foot-smm-12 {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .foot-md-15 {
        width: 25%;
        height: 20px;
    }

    .foot-md-14 {
        font-size: 13px;
    }

    .foot-md-12 {
        font-size: 13px;
    }
}

@media (min-width: 1200px) {
    .foot-lg-15 {
        width: 20%;
    }

    .foot-lg-14 {
        font-size: 13px;
    }

    .foot-lg-12 {
        font-size: 13px;
    }
}
@media only screen and (min-width: 992px) {
    .header {
        height: 70px;
        padding: 0;
    }

    .header .container {
        padding-top: 10px;
    }

    .navbar {
        padding: 0;
        line-height: 4.6rem;
    }

    .menu-item {
        padding: 0 20px;
        margin-left: 0px;
    }

    .submenu-item:hover,
    .menu-item:hover {
        background-color: #e8f3f9;
    }
}

fieldset,
label {
    margin: 0;
    padding: 0;
}

.rating {
    border: none;
    float: left;
}

.rating>input {
    display: none;
}

.rating>label:before {
    margin: 1px;
    font-size: 25px;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}
.ratings>label:before {
    margin: 1px;
    font-size: 25px;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}
.ndTab .rating>label:before {
    font-size: 19px;
}
#reviewPricingRating{
    background:white;
    color: black;
    font-size: 20px;
    text-decoration: none;
    padding: 5px 25px !important;
    text-align: center;
    border: 1px solid #4da1a9;
    border-radius: 2px;
    flex: 1 1 0%;
    /* content: "\f0011"; */
}
.iSpmVy1,
.iSreview,
.sc-70342cbc-1 a:hover {
    background: #4da1a9 !important;
    color: white !important;
}
.nav-container  {
    display: none;
}
.font-italic {
   font-style: italic;
}

.jwPASQ,.setLabal{
    width: 465px;
}

.rating>label {
    color: #ddd;
    float: right;
}

.rating>input:checked~label,
.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #ff9800;
}

.rating>input:checked+label:hover,
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
.rating>input:checked~label:hover~label {
    color: #ff9800;
}

.banner-image {
    width: 100%;
    height: 310px;
    position: relative;
}

.bannerImage {
    margin-top: 75px;
}

.product-head__logo {
    border: 1px solid #bdb7b7;
    height: 172px;
    width: 172px;
    margin-left: 30px;
    z-index: 999;
    position: relative;
    margin-top: -40px;
    background: #ffffff;
}

.product-head__logo .top-logo {
    margin: -20px 0 0 128px;
    position: absolute;
    width: 39%;
}

.product-head__logo .center-logo {
    z-index: 999;
    object-fit: cover;
    width: 82%;
    margin: 15px;
}

.name {
    margin: 20px 20px 0 20px;
    font-size: 25px;
}

.name span {
    font-size: 15px;
}

.header-menu ul {
    display: flex;
    margin: 0 0 5px 0;
}

.header-menu ul li {
    font-size: 17px;
    padding: 5px 20px 5px 0;
}

.header-menu ul li a {
    color: black;
}

.set-section {
    border: 1px solid #bdb7b7;
    border-top: 0;
}

.set-section h2,
h3 {
    color: #000;
}

.set-feature {
    border: 1px solid #bdb7b7;
}

.row {
    /* flex-wrap: nowrap !important; */
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.features-text {
    margin-left: 10px;
}

.overview {
    padding: 10px 20px;
}

.question {
    border-bottom: 1px solid #bdb7b7;
}

.col-md-6 {
    padding-left: 0 !important;
}

.plan {
    /* margin: 0 15px; */
    border: 1px solid #bdb7b7;
    /* width: 180px; */
}

.download {
    margin: 0 15px;
    border: 1px solid #bdb7b7;
    width: 260px;
}

.box-p {
    padding: 15px;
}
.plan-name {
    font-size: 12px;
}

.box-price {
    padding: 0 12px;
    white-space: nowrap;
    font-size: 12px;
    text-align: center;
}

.box {
    background-color: #e9e9e9;
    /* height: 90px; */
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    color: black;
    border: 1px solid #bdb7b7;
    -webkit-border-radius: 0 0 0 20px;
}

video {
    position: relative;
}

.set-video {
    margin: 0 20px;
    width: 260px;
}



.access-btn {
    background-color: #5a39a2;
    padding: 5px;
    color: white;
    border: 2px solid #5a39a2;
}


.set-logoMenu,.use-asana,.software-name,.setReview {
    display: flex;
}
p{
    margin-bottom: 3px;
}
.w-70{
    width: 57%;
}
.ml-3{
    margin-left: 18px;
    font-size: 15px;
}

.peg{
    font-size:25px;
    font-weight:700
}
.access-btn{
    width: 100%;
}
.featureTitle{
    white-space: nowrap;
}
@media (min-width:768px) and (max-width:823px){
    .setPrimary{
        height: fit-content;
        margin: auto;
    }
    .btnPrimary{
        display: contents;
    }
}
@media (min-width:971px) and (max-width:1060px){
    iframe {
        width: 285px;
        height: auto;
    }
}
@media (min-width:769px) and (max-width:970px){
    iframe {
        width: 210px;
        height: auto;
    }
}
@media (min-width:426px) and (max-width:768px){
    iframe {
        width: 200px;
        height: auto;
    }
}
@media (max-width:1100px) {
    .col-md-9,.col-md-3{
        width: 100%;
    }
    .access-btn{
        width: max-content;
        display: flex;
    }
}
@media (max-width:425px) {
    iframe{
        width: 265px;
        height: auto;
    }
}
@media (max-width:424px) {
    iframe{
        width: 220px;
        height: auto;
    }
}
@media (max-width:374px) {
    iframe{
        width: 165px;
        height: auto;
    }
}
@media (min-width:320px) and (max-width:488px) {
    .header-menu ul {
        display: block;
    }
    .plan-name {
        font-size: 14px;
    }
    .banner-image {
        height: 200px;
    }
    .peg{
        font-size:15px;
        font-weight:700
    }
    .access-btn{
        width: 100%;
    }
}

@media (min-width:320px) and (max-width:630px) {

    .software-name,
    .setReview,
    .fa-content span,
    .use-asana,
    .set-logoMenu {
        display: block;
    }

    .software-name p,
    .fa-content i,.reviewtitle {
        font-size: 20px !important;
    }
    .software-name button,
    .fa-content span,
    .name span,
    span i,
    .header-menu ul li {
        font-size: 15px;
    }
}
