/* Banner Section */
.bannerSec {
    position: relative;
    width: 100%;
    float: left;
    padding-top: 160px;
    padding-bottom: 50px;
}

.bannerSec::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url(../images/banner-background-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
    background-position: center;
}

.bannerSec .leftCol {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.bannerSec .leftCol h1 {
    font-size: 62px;
    color: #ffffff;
    font-weight: 300;
}

.bannerSec .leftCol h1 strong {
    font-weight: bold;
}

.bannerSec .leftCol span {
    font-size: 21px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.bannerSec .leftCol p {
    font-size: 18px;
    line-height: 32px;
    color: rgb(255 255 255 / 80%);
    margin-bottom: 25px;
}

.bannerSec .leftCol .bookBtn {
    display: inline-block;
    font-size: 18px;
    line-height: 27px;
    color: #ffffff;
    font-weight: 700;
    border-radius: 27px;
    padding: 14px 36px;
    background-color: #007ba9;
    box-shadow: none;
    transition: all .3s ease-in-out;
}

.bannerSec .leftCol .bookBtn:hover {
    background-color: #f47633;
}

.bannerSec .rightCol {
    position: relative;
    max-width: 484px;
    width: 100%;
    float: right;
    padding: 0 30px 30px 30px;
}

.bannerSec .rightCol::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 215px;
    height: 200px;
    background-image: url(../images/banner-design.png);
    background-repeat: no-repeat;
}

.bannerSec .rightCol::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 240px;
    height: 305px;
    background-color: #007ba9;
}

.bannerSec .rightCol img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 10px;
    z-index: 1;
}

.middle {
    width: 100%;
    float: left;
}

/* Connect Tools Section */
.connectToolsSec {
    position: relative;
    width: 100%;
    float: left;
    padding: 100px 0;
}

.connectToolsSec::after {
    content: '';
    position: absolute;
    bottom: -135px;
    right: 0;
    width: 177px;
    height: 475px;
    background-image: url(../images/connectToolsRightDesign.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}

.connectToolsSec::before {
    position: absolute;
    top: 80%;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    content: "";
    background-image: url(../images/connect-tools-banner.png);
    background-repeat: no-repeat;
}

.connectToolsSec h2 {
    position: relative;
    font-size: 50px;
    line-height: 55px;
    color: #000000;
    font-weight: 300;
    padding-bottom: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.connectToolsSec h2::before {
    position: absolute;
    bottom: 0;
    left: 43%;
    transform: translateX(-50%);
    content: '';
    width: 80px;
    height: 4px;
    background-color: #f9a981;
}

.connectToolsSec h2 strong {
    font-weight: 700;
}

.connectToolsSec .leftCol {
    width: 100%;
    float: left;
}

.connectToolsSec .leftCol img {
    width: 100%;
    height: auto;
}

.connectToolsSec .rightCol {
    width: 100%;
    float: left;
}

.connectToolsSec .rightCol p {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 25px;
}

.connectToolsSec ul {
    width: 100%;
    float: left;
    padding: 0 0 0 25px;
}

.connectToolsSec ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 20px;
}

.connectToolsSec ul li:last-child {
    margin-bottom: 0;
}

.connectToolsSec ul li img {
    width: 19px;
    height: auto;
}

/* Integration Section */
.integrationSec {
    position: relative;
    width: 100%;
    float: left;
    padding-bottom: 105px;
}

.integrationSec h2 {
    position: relative;
    font-size: 50px;
    line-height: 60px;
    color: #000000;
    font-weight: 300;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.integrationSec h2 strong {
    font-weight: 700;
}

.integrationSec h2::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 80px;
    height: 4px;
    background-color: #f9a981;
}

.integrationSec .row {
    justify-content: center;
}

.integrationSec .integrationBox {
    position: relative;
    width: calc(100% - 40px);
    float: left;
    height: calc(100% - 40px);
    border-radius: 15px;
    padding: 30px 20px;
    margin-left: 40px;
    margin-bottom: 40px;
    border: 1px solid #e0e2eb;
    transition: all .4s ease-in-out;
}

.integrationSec .integrationBox:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
}

.integrationSec .integrationBox .left-logo {
    position: absolute;
    left: -40px;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: #f5f5f5;
}

.integrationSec .integrationBox .left-logo img {
    width: 57px;
    height: auto;
}

.integrationSec .integrationBox .right-info {
    width: 100%;
    float: left;
    padding-left: 40px;
}

.integrationSec .integrationBox .right-info h4 {
    font-size: 25px;
    line-height: 30px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all .4s ease-in-out;
}

.integrationSec .integrationBox:hover .right-info h4 {
    color: #f47a40;
}

.integrationSec .integrationBox .right-info p {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
}


/* AppleCalendar Section */
.bg-color {
    background-color: #fcfcfd;
}

.appleCalendarSec {
    position: relative;
    width: 100%;
    float: left;
    padding: 70px 0 60px;
}

.appleCalendarSec .imgBox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.appleCalendarSec .imgBox h6 {
    font-size: 25px;
    line-height: 29px;
    color: #000000;
    font-weight: 700;
}

.appleCalendarSec .imgBox .imgCol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: #f5f5f5;
}

.appleCalendarSec .imgBox .imgCol img {
    width: auto;
    height: auto;
}

.appleCalendarSec h2 {
    position: relative;
    font-size: 50px;
    line-height: 60px;
    color: #000000;
    font-weight: 300;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 55px;
}

.appleCalendarSec h2 strong {
    font-weight: 700;
}

.appleCalendarSec h2::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 60px;
    height: 3px;
    background-color: #f9a981;
}

.appleCalendarSec .leftCol {
    width: 100%;
    float: left;
}

.appleCalendarSec .leftCol img {
    position: relative;
    width: auto;
    height: auto;
    z-index: 1;
}

.appleCalendarSec .rightCol {
    width: 100%;
    float: left;
}

.appleCalendarSec .rightCol h5 {
    font-size: 25px;
    line-height: 28px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 15px;
}

.appleCalendarSec .rightCol p {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 20px;
}

.appleCalendarSec .rightCol ul {
    width: 100%;
    padding: 0 0 20px 25px;
}

.appleCalendarSec .rightCol ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 15px;
}

.appleCalendarSec .rightCol ul li img {
    width: 19px;
    height: auto;
}

.bg-white {
    background-color: #fff !important;
}

.left-blue-circule::after {
    content: '';
    position: absolute;
    bottom: -310px;
    left: 0;
    width: 190px;
    height: 550px;
    background-image: url(../images/email-design.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* z-index: 1; */
}

.right-blue-circule::after {
    content: '';
    position: absolute;
    bottom: -310px;
    right: 0;
    width: 190px;
    height: 550px;
    background-image: url(../images/connectToolsRightDesign.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.left-orange-circule::before {
    content: '';
    position: absolute;
    bottom: -180px;
    left: 0;
    width: 177px;
    height: 475px;
    background-image: url(../images/e-prescribe-bottom-design.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 1;
}

.topImgAqua {
    position: relative;
    max-width: 610px;
    padding: 30px 40px 20px 20px;
}

.topImgAqua img {
    border-radius: 12px;
}

.topImgAqua::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 195px;
    height: 213px;
    background-image: url(../images/top-img-design.png);
    background-repeat: no-repeat;
}

.topImgAqua::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 437px;
    height: 400px;
    background-color: #d5f2fe;
}

.topImg {
    position: relative;
    max-width: 530px;
    padding: 40px 20px 20px 20px;
}

.appleCalendarSec .topImg img {
    width: 100%;
    border-radius: 12px;
}

.topImg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    width: 195px;
    height: 213px;
    background-image: url(../images/top-img-design.png);
    background-repeat: no-repeat;
}

.topImg::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 437px;
    height: 400px;
    background-color: #fae1d5;
}

.twilio::before {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    content: "";
    background-image: url(../images/connect-tools-banner.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.constant-contact::before {
    position: absolute;
    top: 85%;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    content: "";
    background-image: url(../images/connect-tools-banner.png);
    background-repeat: no-repeat;
    z-index: 0;
}

/* Become Section */
.becomeSec {
    width: 100%;
    float: left;
    margin-bottom: 70px;
    margin-top: 100px;
}

.becomeSec .partnerBox {
    width: 100%;
    float: left;
    padding: 75px 70px;
    border-radius: 15px;
    background-color: #287cab;
}

.becomeSec .partnerBox .partnerTopBox {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.becomeSec .partnerBox .partnerTopBox .leftCol {
    width: 75%;
    float: left;
    padding-right: 10px;
}

.becomeSec .partnerBox .partnerTopBox .leftCol h2 {
    position: relative;
    font-size: 37px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 300;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.becomeSec .partnerBox .partnerTopBox .leftCol h2::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 70px;
    height: 3px;
    background-color: #f47a40;
}

.becomeSec .partnerBox .partnerTopBox .leftCol h2 strong {
    font-weight: 700
}

.becomeSec .partnerBox .partnerTopBox .leftCol p {
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
}

.becomeSec .partnerBox .partnerTopBox .rightCol {
    width: 25%;
    float: left;
    text-align: right;
}

.becomeSec .partnerBox .partnerTopBox .rightCol a.becomeBtn {
    display: inline-block;
    font-size: 22px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 500;
    border-radius: 35px;
    padding: 20px 44px;
    box-shadow: none;
    background-color: #e9650f;
    transition: all .3s ease-in-out;
}

.becomeSec .partnerBox .partnerTopBox .rightCol a.becomeBtn:hover {
    color: #e9650f;
    background-color: #ffffff;
}

.becomeSec .partnerBox .partnerBottomBox {
    width: 100%;
    float: left;
}

.becomeSec .partnerBox .partnerBottomBox h3 {
    font-size: 25px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.becomeSec .partnerBox .partnerBottomBox .partnerContactInfo {
    width: 100%;
    display: flex;
    align-items: center;
}

.becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .leftCol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    background-color: #ffffff;
}

.becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .leftCol img {
    width: 35px;
    height: auto;
}

.becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .rightCol {
    width: calc(100% - 65px);
    padding-left: 15px;
}

.becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .rightCol h4 {
    font-size: 21px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 700;
}

.becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .rightCol a {
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    transition: all .3s ease-in-out;
}

.becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .rightCol a:hover {
    color: #28b8ef;
}

#google-calendar {
    padding-bottom: 30px;
}

#twilio {
    padding-top: 40px;
}

#highlevel {
    padding-bottom: 30px;
}

#salesforce {
    padding-top: 40px;
}

@media only screen and (min-width: 1601px) and (max-width: 2500px) {}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {}

@media only screen and (min-width: 1441px) and (max-width: 1500px) {}

@media only screen and (min-width: 1367px) and (max-width: 1440px) {}

@media only screen and (min-width: 1200px) and (max-width: 1366px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    /* Banner Section */
    .bannerSec {
        padding-top: 120px;
    }

    .bannerSec .leftCol h1 {
        font-size: 50px;
    }

    .bannerSec .rightCol::before {
        width: 140px;
        height: 175px;
    }

    .bannerSec .rightCol::after {
        width: 210px;
        height: 260px;
    }

    /* Connect Tools Section */
    .connectToolsSec {
        padding: 70px 0;
    }

    .connectToolsSec h2 {
        font-size: 38px;
        line-height: 50px;
        padding-bottom: 10px;
        margin-bottom: 40px;
    }

    .connectToolsSec::before,
    .connectToolsSec::after {
        display: none;
    }

    .constant-contact::before,
    .twilio::before {
        display: none;
    }

    .left-orange-circule::before,
    .left-blue-circule::after {
        display: none;
    }

    .right-blue-circule::after {
        display: none;
    }

    .topImg::after {
        width: 355px;
        height: 330px;
    }

    .topImgAqua::after {
        width: 325px;
        height: 290px;
    }

    .integrationSec {
        padding-bottom: 70px;
    }

    .integrationSec .integrationBox {
        height: calc(100% - 30px);
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .integrationSec .integrationBox .right-info h4 {
        margin-bottom: 10px;
    }

    .appleCalendarSec h2 {
        font-size: 38px;
        line-height: 50px;
        padding-bottom: 10px;
        margin-bottom: 40px;
    }

    .appleCalendarSec .leftCol img {
        width: 100%;
        object-fit: contain;
    }

    /* Become Section */
    .becomeSec {
        margin-top: 70px;
    }

    .becomeSec .partnerBox {
        padding: 50px;
    }

    .becomeSec .partnerBox .partnerTopBox {
        margin-bottom: 40px;
    }

    .becomeSec .partnerBox .partnerTopBox .leftCol h2 {
        font-size: 38px;
        line-height: 50px;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .becomeSec .partnerBox .partnerTopBox .rightCol a.becomeBtn {
        font-size: 18px;
        line-height: 24px;
        padding: 18px 34px;
    }

    .becomeSec .partnerBox .partnerBottomBox h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .leftCol {
        width: 55px;
        height: 55px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .rightCol {
        width: calc(100% - 55px);
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .leftCol img {
        width: 30px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .rightCol h4 {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* Banner Section */
    .bannerSec {
        padding-top: 120px;
    }

    .bannerSec .leftCol h1 {
        font-size: 45px;
    }

    .bannerSec .rightCol::before {
        width: 150px;
        height: 165px;
    }

    .bannerSec .rightCol::after {
        width: 190px;
        height: 240px;
    }

    /* Connect Tools Section */
    .connectToolsSec {
        padding: 50px 0;
    }

    .connectToolsSec::before,
    .connectToolsSec::after {
        display: none;
    }

    .connectToolsSec h2 {
        font-size: 35px;
        line-height: 45px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .connectToolsSec .rightCol p {
        line-height: 26px;
        margin-bottom: 15px;
    }

    .connectToolsSec ul {
        padding: 0 0 0 15px;
    }

    .left-orange-circule::before {
        display: none;
    }

    .left-blue-circule::after,
    .right-blue-circule::after {
        display: none;
    }

    .twilio::before {
        display: none;
    }

    .constant-contact::before {
        display: none;
    }

    .topImg::after {
        width: 260px;
        height: 230px;
    }

    .topImgAqua::after {
        width: 245px;
        height: 230px;
    }

    .integrationSec {
        padding-bottom: 50px;
    }

    .integrationSec h2 {
        font-size: 35px;
        line-height: 45px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .integrationSec .integrationBox {
        height: calc(100% - 30px);
        padding: 20px 20px;
        margin-bottom: 30px;
    }

    .integrationSec .integrationBox .right-info h4 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .appleCalendarSec {
        padding: 50px 0;
    }

    .appleCalendarSec .imgBox h6 {
        font-size: 22px;
        line-height: 26px;
    }

    .appleCalendarSec h2 {
        font-size: 35px;
        line-height: 45px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .appleCalendarSec .leftCol img {
        width: 100%;
        object-fit: contain;
    }

    .appleCalendarSec .rightCol p {
        line-height: 26px;
        margin-bottom: 15px;
    }

    /* Become Section */
    .becomeSec {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .becomeSec .partnerBox {
        padding: 40px 40px 20px 40px;
    }

    .becomeSec .partnerBox .partnerTopBox {
        margin-bottom: 30px;
    }

    .becomeSec .partnerBox .partnerTopBox .leftCol {
        width: 70%;
    }

    .becomeSec .partnerBox .partnerTopBox .leftCol h2 {
        font-size: 35px;
        line-height: 45px;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .becomeSec .partnerBox .partnerTopBox .leftCol p {
        line-height: 26px;
    }

    .becomeSec .partnerBox .partnerTopBox .rightCol {
        width: 30%;
    }

    .becomeSec .partnerBox .partnerTopBox .rightCol a.becomeBtn {
        font-size: 16px;
        line-height: 24px;
        padding: 14px 25px;
    }

    .becomeSec .partnerBox .partnerBottomBox h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo {
        margin-bottom: 20px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .leftCol {
        width: 60px;
        height: 60px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .rightCol {
        width: calc(100% - 60px);
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .leftCol img {
        width: 30px;
    }
}

@media only screen and (max-width: 767px) {

    /* Banner Section */
    .bannerSec {
        padding-top: 80px;
    }

    .bannerSec .leftCol {
        margin-bottom: 30px;
    }

    .bannerSec .leftCol h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .bannerSec .rightCol::before {
        width: 114px;
        height: 160px;
    }

    .bannerSec .rightCol::after {
        width: 160px;
        height: 220px;
    }

    /* AppleCalendar Section */
    .connectToolsSec {
        padding: 40px 0;
    }

    .connectToolsSec::before,
    .connectToolsSec::after {
        display: none;
    }

    .connectToolsSec h2 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .connectToolsSec .leftCol {
        margin-bottom: 30px;
    }

    .connectToolsSec ul {
        padding: 0 0 0 10px;
    }

    .connectToolsSec ul li {
        margin-bottom: 15px;
    }

    .constant-contact::before,
    .twilio::before {
        display: none;
    }

    .left-blue-circule::after,
    .right-blue-circule::after,
    .left-orange-circule::before {
        display: none;
    }

    .twilio::before {
        display: none;
    }

    .topImg {
        padding: 20px 20px 20px 20px;
    }

    .topImg::after {
        width: 230px;
        height: 240px;
    }

    .topImg::before {
        width: 155px;
        height: 165px;
    }

    .integrationSec {
        padding-bottom: 30px;
    }

    .integrationSec h2 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .integrationSec .integrationBox .right-info {
        padding-left: 35px;
    }

    .integrationSec .integrationBox .right-info h4 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .integrationSec .integrationBox {
        width: calc(100% - 30px);
        height: calc(100% - 20px);
        padding: 20px 15px;
        margin-left: 30px;
        margin-bottom: 20px;
    }

    .integrationSec .integrationBox .left-logo {
        left: -30px;
        width: 60px;
        height: 60px;
    }

    .integrationSec .integrationBox .left-logo img {
        width: 35px;
    }

    .appleCalendarSec {
        padding: 30px 0;
    }

    .appleCalendarSec .imgBox .imgCol {
        width: 60px;
        height: 60px;
    }

    .appleCalendarSec .imgBox .imgCol img {
        width: 35px;
    }

    .appleCalendarSec .imgBox h6 {
        font-size: 22px;
        line-height: 26px;
    }

    .appleCalendarSec h2 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .appleCalendarSec .leftCol img {
        width: 100%;
    }

    .appleCalendarSec .rightCol h5 {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .appleCalendarSec .rightCol ul {
        padding: 0 0 15px 10px;
    }

    .appleCalendarSec .rightCol ul li {
        margin-bottom: 10px;
    }

    .appleCalendarSec .leftCol {
        margin-bottom: 30px;
    }

    #google-calendar .row,
    #md-toolbox .row,
    #cherry .row,
    #highlevel .row,
    #webhooks .row {
        flex-direction: column-reverse;
    }

    .topImgAqua::after {
        width: 240px;
        height: 215px;
    }

    .topImgAqua::before {
        width: 175px;
        height: 165px;
    }

    /* Become Section */
    .becomeSec {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .becomeSec .partnerBox {
        padding: 25px 25px 10px 25px;
    }

    .becomeSec .partnerBox .partnerTopBox {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .becomeSec .partnerBox .partnerTopBox .leftCol {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .becomeSec .partnerBox .partnerTopBox .leftCol h2 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .becomeSec .partnerBox .partnerTopBox .leftCol p {
        line-height: 26px;
    }

    .becomeSec .partnerBox .partnerTopBox .rightCol {
        width: 100%;
        text-align: center;
    }

    .becomeSec .partnerBox .partnerTopBox .rightCol a.becomeBtn {
        font-size: 16px;
        line-height: 20px;
        padding: 15px 30px;
    }

    .becomeSec .partnerBox .partnerBottomBox h3 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo {
        margin-bottom: 20px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .leftCol {
        width: 50px;
        height: 50px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .leftCol img {
        width: 28px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .rightCol {
        width: calc(100% - 55px);
        padding-left: 10px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .rightCol h4 {
        font-size: 18px;
        line-height: 26px;
    }

    .becomeSec .partnerBox .partnerBottomBox .partnerContactInfo .rightCol a {
        font-size: 15px;
    }





}

@media only screen and (min-width: 480px) and (max-width: 767px) {}