/* Content/css/v2/sections/resources-page.css
   Powers Resources.cshtml (HomeController.Resources() [GET], confirmed
   real route per handoff). Ported as-is from
   assets.3.0/css/style.1.0.6.css, in original order, with scoping
   fixes throughout plus two real gaps filled in:

   1. .btn.btn-large's own color/background rule was missing from the
      initial port - only the width modifiers (.btn-w-230/.btn-w-full)
      were pulled in, not the base rule providing the actual button
      color. That's why 'Access the eBook' and 'Download now' had no
      visible styling. Added back in, scoped to .content-text-area/
      .message-area.

   2. .bg-image-half-2:after (the right-side IMAGE background on
      .content-text-area, 'Discover how to grow...' section) was
      missed entirely on the first pass - I ported the wrong sibling
      selector (.bg-half-light-2/.bg-light-half-3, solid colors used
      elsewhere) and skipped this one. Consolidates 3 cascading legacy
      declarations into their final computed result.

   Every previously-bare legacy selector (.btn-w-230/.btn-w-full,
   .account-form/.message-form/.form-row/.form-col/.message-title/
   .btn-register, .service-item/.service-icon/etc) has been scoped to
   its real container on this page (.message-area, .content-text-area,
   .service-style-3) rather than left bare - avoiding the cross-page
   collision that happened earlier in this project (product-page.css/
   about-page.css rules leaking onto Home).

   Also fixed as part of this same pass: integrations-landing-page.css
   had its own bare .service-item/.service-item h4 rules from before
   that lesson was learned, scoped those to .service-area. And
   integration-detail-page.css's .hero-button a was missing
   color:#fff, fixed there too since it's shared by this page's
   'Download E-Book' button.

   Reused from elsewhere, not re-declared here:
   - .hero-resources .hero-title h1/p (about-page.css)
   - .hero-button a / .hero-button a img (integration-detail-page.css)
   - .hero-area { position: relative } (integrations-landing-page.css)
   - .bg-half-light::after base positioning (integrations-landing-page.css) */


/* NEW - missing from the initial port. .btn.btn-large's own color/
   background rule (not just the width modifiers) was never included,
   so "Access the eBook" and "Download now" only got Bootstrap's bare
   default .btn styling - no color, easy to miss entirely. */
.content-text-area .btn.btn-large,
.message-area .btn.btn-large {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 50px;
    color: #fff;
    background: linear-gradient(91deg, #0B6DFF 3.02%, #0364F4 113.58%, #0364F4 113.58%);
}

.custom-container {
    padding-left: 115px;
    padding-right: 115px;
}

.row-gutter-20 {
    margin-right: -10px !important;
    margin-left: -10px !important;
}

.row-gutter-20 .col,
.row-gutter-20 [class*=col-] {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.message-area .btn.btn-w-full::before {
    width: 406px;
}

.content-text-area .btn-w-230,
.message-area .btn-w-full {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
}

.content-text-area .btn-w-230 {
    width: 230px !important;
}

.message-area .btn-w-full {
    width: 100% !important;
    display: block;
}

.bg-blue-3 {
    background: #24487D !important;
}

.pl-20 {
    padding-left: 20px;
}

.pr-50 {
    padding-right: 50px;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-73 {
    padding-top: 73px !important;
}

.pt-107 {
    padding-top: 107px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-73 {
    padding-bottom: 73px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pb-107 {
    padding-bottom: 107px !important;
}

.bg-light-half-3 {
    position: relative;
}

.bg-half-light-2:after,
.bg-light-half-3:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    content: "";
    height: 100%;
}

.bg-half-light-2:after {
    background: #B9DFD8 !important;
}

.bg-light-half-3:after {
    background: #F4F5FA !important;
}

.hero-book {
    height: 100%;
}

.hero-resources .hero-gif img {
    z-index: 2;
    position: relative;
    width: auto;
    height: 85% !important;
    margin: 5% 0 0 20%;
}

.hero-gif {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    max-height: 100%;
}

.hero-gif img {
    width: 100%;
}

.service-style-3 .service-item {
    border: 1px solid #C4C4C4;
    border-radius: 5px;
    padding: 35px 30px;
    height: 271px;
    transition: .3s;
}

.service-style-3 .service-item:hover {
    border-color: #0B6DFF
}

.service-style-3 .service-icon img {
    max-height: 90%; 
}

.service-style-3 .service-icon { 
    text-align: center;
    line-height: 70px;
    margin-bottom: 25px;
}

.service-style-3 .service-icon.light-blue {
    background: #EDF4FA;
}

.service-style-3 .service-item h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #071A2C;
}

.service-style-3 .service-item p {
    line-height: 21px;
}

.service-style-3 .service-icon.light-purple {
    background: #F6EDFA;
}

.service-style-3 .service-icon.light-green {
    background: #EDF9FA;
}

/* NEW - .bg-image-half-2 was missed on the first pass; I'd ported the
   wrong sibling selector (.bg-half-light-2/.bg-light-half-3, solid
   colors) and skipped this one, which is the actual right-side IMAGE
   background used by .content-text-area. Consolidates 3 cascading
   legacy declarations (base positioning + two overrides) into their
   final computed result: left-aligned, 50% width, bg-3.png. */
.bg-image-half-2:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    content: "";
    background: url("../../../../assets.3.0/img/bg-3.png") no-repeat center left / cover !important;
}

.content-text-area {
    position: relative;
}

.ht-box-content .section-title h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #fff;
}

.ht-box-content .section-title {
    margin-bottom: 30px
}

.ht-box-content p {
    color: #D8D8D8;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.message-area .account-form {
    margin-left: -2.5px;
    margin-right: -2.5px;
    overflow: hidden;
}

.message-area .account-form .form-group {
    width: 180px;
    float: left;
    padding-left: 2.5px;
    padding-right: 2.5px;
}

.message-area .account-form .form-group input,
.message-area .account-form .form-group select {
    height: 50px;
    border-radius: 5px;
    border: 0;
    color: black;
    font-weight:600;
    font-size: 13px;
    line-height: 20px;
    padding: 15px; 
}

.message-area .btn-register.btn.btn-large {
    padding: 15px 38px;
    border-radius: 5px;
}

.message-area .account-form .form-group:last-child {
    width: auto;
}

.service-style-3 .service-icon h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 70px;
}

.service-style-3 .service-icon.light-blue h2 {
    color: #0B6DFF;
}

.service-style-3 .service-icon.light-purple h2 {
    color: #7700EE;
}

.service-style-3 .service-icon.light-green h2 {
    color: #39CCCC;
}

.service-style-3 .service-item {
    height: 300px;
    padding-right: 20px;
}

.service-style-3 .custom-container {
    padding-left: 131px;
    padding-right: 131px;
}

.service-style-3 .service-item h4 {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
}

.service-style-3 .service-item p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}

.message-area .account-form.message-form {
    z-index: 2;
    position: relative;
    width: 520px;
    margin-left: 60px;
    margin-right: 0;
}

.message-area .message-form .form-group input,
.message-area .message-form .form-group select {
    border: 1px solid #C4C4C4;
}

.message-area .account-form .form-group input:focus {
    border-color: #2B70D6;
}

.message-area .message-form .form-group {
    width: 100%;
    margin-bottom: 10px;
}

.message-area .account-form .form-group select {
    width: 100%;
    background: #fff;
    color: #33383D;
    appearance: none;
    background-image: url("../img/icon/s-arrow-down.png");
    background-repeat: no-repeat;
    background-position: right 19px center;
    background-size: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    cursor: pointer;
}

.message-area .message-form .form-group:last-child {
    width: 100%;
}

.message-area .btn-register:hover:before {
    transform: translate(-50%, -50%) scale(1.8);
}

.message-area .message-title h2 {
    font-size: 45px;
    line-height: 67.5px;
    font-weight: 700;
    color: #071A2C;
    margin-bottom: 15px;
}

.message-area .message-title p {
    font-size: 16px;
    line-height: 24px;
}

.message-area .message-title {
    margin: 0;
    height: 100%;
    display: flex;
    flex-flow: wrap;
    align-content: center;
}

.message-area .form-row {
    margin-left: -2.5px;
    margin-right: -2.5px;
}

.message-area .form-col {
    padding-left: 2.5px;
    padding-right: 2.5px;
    width: 50%;
    float: left;
}

.message-area .btn-register.btn.btn-w-full::before {
    width: 550px;
}
