/* =========================================================
   OUR SERVICES - COMMON
========================================================= */

.services-section {
    padding: 0 0 50px;
    background: #ffffff;
    opacity: 0;
    transform: translateY(60px);
    animation: servicesFadeUp 1.2s ease-out forwards;
}

@keyframes servicesFadeUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.services-section .container {
    max-width: 1200px;
}

/* Section title */
.services-section .browse-btn2 {
    margin-top: 30px;
    margin-bottom: 35px;
}

.services-section .border-btn2 {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #FFC904;
    border-radius: 30px;
    color: #1f2b7b;
    background: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    left:40px
}

.services-section .border-btn2:hover {
    background: #1f2b7b;
    border-color: #1f2b7b;
    color: #ffffff;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.services-section .single-services {
    position: relative;

    height: 180px;
    padding: 25px 15px 20px;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(31, 43, 123, 0.08);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 1.3s ease-out,
        transform 1.3s ease-out;
}

.services-section.fade-up .single-services {
    opacity: 1;
    transform: translateY(0);
}


/* Yellow top accent */
.services-section .single-services::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 45px;
    height: 4px;

    background: #FFC904;

    border-radius: 0 0 5px 5px;

    transform: translateX(-50%);
}


/* Hover */
.services-section .single-services:hover {
    transform: translateY(-7px);

    border-color: #FFC904;

    box-shadow: 0 12px 30px rgba(31, 43, 123, 0.15);
}


/* =========================================================
  SERVICES ICONS
========================================================= */

.services-section .services-ion {
    width: 65px;
    height: 65px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff8d6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.services-section .services-ion img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.services-section .single-services:hover .services-ion {
    background: #2a3366;
}

.services-section .single-services:hover .services-ion img {
    transform: scale(1.1);
}


/* =========================================================
   TEXT
========================================================= */

.services-section .services-cap {
    text-align: center;
}

.services-section .services-cap h5 {
    margin: 0;

    font-size: 16px;
    line-height: 1.5;

    font-weight: 700;
}

.services-section .services-cap h5 a {
    color: #1f2b7b !important;
    text-decoration: none;

    transition: color 0.3s ease;
}

.services-section .single-services:hover .services-cap h5 a {
    color: #1f2b7b !important;
}

.services-section .services-cap h5 span {
    display: inline-block;

    margin-top: 3px;

    color: #d9a900 !important;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   REMOVE DEFAULT EXCESS MARGIN
========================================================= */

.services-section .mb-30 {
    margin-bottom: 25px;
}


/* =========================================================
   LARGE PC
   1200px+
========================================================= */

@media (min-width: 1200px) {

    .services-section {
        padding-bottom: 60px;
    }

    .services-section .container {
        max-width: 1200px;
    }

    .services-section .row {
        row-gap: 10px;
    }

    .services-section .single-services {
        height: 185px;
        padding: 25px 20px;
    }

    .services-section .services-ion {
        width: 68px;
        height: 68px;
    }

    .services-section .services-ion img {
        width: 48px !important;
        height: 48px !important;
    }

    .services-section .services-cap h5 {
        font-size: 17px;
    }

    .services-section .services-cap h5 span {
        font-size: 14px;
    }
}

/* =========================================================
   PC / LAPTOP
   992px - 1199px
========================================================= */

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .services-section {
        padding-bottom: 50px;
    }

    .services-section .container {
        max-width: 960px;
    }

    .services-section .single-services {
        height: 175px;
        padding: 22px 12px;
    }

    .services-section .services-ion {
        width: 62px;
        height: 62px;
    }

    .services-section .services-ion img {
        width: 44px !important;
        height: 44px !important;
    }

    .services-section .services-cap h5 {
        font-size: 15px;
    }

    .services-section .services-cap h5 span {
        font-size: 13px;
    }
    .services-section .border-btn2 {
        left : 40px;
    }
}

/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .services-section {
        padding: 0 15px 45px;
    }

    .services-section .browse-btn2 {
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .services-section .border-btn2 {
        padding: 9px 20px;
        font-size: 15px;
    }

    .services-section .single-services {
        height: 170px;
        padding: 20px 10px;
        border-radius: 10px;
    }

    .services-section .services-ion {
        width: 58px;
        height: 58px;

        margin-bottom: 10px;
    }

    .services-section .services-ion img {
        width: 40px !important;
        height: 40px !important;
    }

    .services-section .services-cap h5 {
        font-size: 14px;
        line-height: 1.4;
    }

    .services-section .services-cap h5 span {
        font-size: 12px;
    }
      .services-section .border-btn2 {
        left : 0px;
    }
}

/* =========================================================
   MOBILE
   767px and below
========================================================= */

@media (max-width: 767px) {

    .services-section {
        padding: 0 10px 35px;
    }

    .services-section .browse-btn2 {
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .services-section .border-btn2 {
        padding: 8px 16px;

        font-size: 13px;
        letter-spacing: 0;

        border-width: 1.5px;
    }

    .services-section .single-services {
        height: 160px;

        padding: 18px 8px;

        border-radius: 10px;

        box-shadow: 0 4px 15px rgba(31, 43, 123, 0.08);
    }

    .services-section .services-ion {
        width: 52px;
        height: 52px;

        margin-bottom: 8px;
    }

    .services-section .services-ion img {
        width: 36px !important;
        height: 36px !important;
    }

    .services-section .services-cap h5 {
        font-size: 13px;
        line-height: 1.35;
    }

    .services-section .services-cap h5 span {
        font-size: 11px;
        margin-top: 2px;
    }

    .services-section .mb-30 {
        margin-bottom: 15px;
    }

    .services-section .single-services::before {
        width: 35px;
        height: 3px;
    }

      .services-section .border-btn2 {
        left : 0px;
    }
}

/* =========================================================
   SMALL MOBILE
   Below 400px
========================================================= */

@media (max-width: 400px) {

    .services-section {
        padding-left: 8px;
        padding-right: 8px;
    }

    .services-section .single-services {
        height: 150px;
        padding: 15px 5px;
    }

    .services-section .services-ion {
        width: 48px;
        height: 48px;
    }

    .services-section .services-ion img {
        width: 33px !important;
        height: 33px !important;
    }

    .services-section .services-cap h5 {
        font-size: 12px;
    }

    .services-section .services-cap h5 span {
        font-size: 10px;
    }

      .services-section .border-btn2 {
        left : 0px;
    }
}


/* =========================================================
   ONLINE CV / BACKGROUND IMAGE
========================================================= */

.onlineCV-about {
    position: relative;
    width: 100%;
    height: 450px;
    min-height: 400px;
    overflow: hidden;
    padding: 0 !important;
}


/* =========================================================
   BACKGROUND IMAGE CONTAINER
========================================================= */

.onlineCV-about .backgroundmage-container {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.onlineCV-about .background-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain;
    object-position: center;
     opacity: 0.75;
}


/* =========================================================
   TEXT CONTAINER
========================================================= */

.onlineCV-about .text-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 2;
}


/* =========================================================
   CONTENT
========================================================= */

.onlineCV-about .cv-caption {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.onlineCV-about .pera2 {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 25px;
    padding: 10px 20px;
    text-align: center;
    color: #ffffff;
    /* background: rgba(31, 43, 123, 0.70); */
    background: rgba(89, 90, 92, 0.70);
    border-radius: 10px;
    font-size: 20px !important;
    line-height: 1.8;
    font-weight: 500;
    overflow: hidden;
    border-right: none;
    
}


/* Highlighted text */

.onlineCV-about .pera2 span {
    color: #FFC904 !important;
    font-weight: 700;
}


/* =========================================================
   REGISTER BUTTON
========================================================= */

.onlineCV-about .border-btn4 {
    display: inline-block;
    margin: 0 auto;
    left:20px;
    padding: 12px 35px;
    color: #ffffff !important;
    background: #FFC904;
    border: 2px solid #FFC904;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
}


.onlineCV-about .border-btn4:hover {
    color: #ffffff !important;
    background: #1f2b7b !important;
    border-color: #1f2b7b !important;
}

/* Initial state */
.onlineCV-about .pera2,
.onlineCV-about .border-btn4 {
    opacity: 0;
    transform: translateY(60px);
}


/* When section enters pera fade up */
.onlineCV-about.fade-up .pera2 {
    animation: onlineCVFadeUp 0.8s ease-out forwards;
}


/* Button comes slightly after pera fade up */
.onlineCV-about.fade-up .border-btn4 {
    animation: onlineCVFadeUp 0.8s ease-out 0.3s forwards;
}

@keyframes onlineCVFadeUp {

    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
   BLACK OVERLAY
========================================================= */

.onlineCV-about::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #1f2b7b;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}


.onlineCV-about .desktop-bg {
    display: block !important;
}

/* Mobile image hidden by default */
.onlineCV-about .mobile-bg {
    display: none !important;
}



/* =========================================================
   TABLET (768px - 991px)
========================================================= */

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .onlineCV-about {
        height: 320px;
        min-height: 320px;
    }

    .onlineCV-about .backgroundmage-container {
        height: 100% !important;
    }

    .onlineCV-about .background-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
    }

    .onlineCV-about .text-container {
        padding: 25px;
    }

    .onlineCV-about .cv-caption {
        max-width: 700px;
    }

    .onlineCV-about .pera2 {
        font-size: 14px !important;
        line-height: 1.7;
        padding: 10px 18px;
        margin-bottom: 22px;
    }

    .onlineCV-about .border-btn4 {
        padding: 11px 30px;
        font-size: 13px;
        left:-3px
    }
}


/* =========================================================
   MOBILE (767px and below)
========================================================= */

@media (max-width: 767px) {

    .onlineCV-about {
        height: 520px;
        min-height: 520px;
    }

   .onlineCV-about .backgroundmage-container {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* Hide desktop image */
    .onlineCV-about .desktop-bg {
        display: none !important;
    }

    /* Show mobile image */
    .onlineCV-about .mobile-bg {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover;
        object-position: center;
    }

    .onlineCV-about .text-container {
        padding: 20px 15px;
    }

    .onlineCV-about .cv-caption {
        max-width: 100%;
    }

    .onlineCV-about .pera2 {
        font-size: 14px !important;
        line-height: 1.6;
        padding: 10px 15px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .onlineCV-about .border-btn4 {
        padding: 10px 28px;
        font-size: 14px;
        left:-3px
    }
}


/* =========================================================
   SMALL MOBILE (Below 400px)
========================================================= */

@media (max-width: 400px) {

    .onlineCV-about {
        height: 480px;
        min-height: 480px;
    }

    .onlineCV-about .backgroundmage-container {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* Hide desktop image */
    .onlineCV-about .desktop-bg {
        display: none !important;
    }

    /* Show mobile image */
    .onlineCV-about .mobile-bg {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover;
        object-position: center;
    }

    .onlineCV-about .pera2 {
        font-size: 13px !important;
        line-height: 1.55;
        padding: 8px 12px;
    }

    .onlineCV-about .border-btn4 {
        padding: 9px 24px;
        font-size: 13px;
        left:-3px
    }
}


/* =========================================================
   support company/ BACKGROUND IMAGE
========================================================= */

.support-company {
    position: relative;
    width: 100%;
    height: 550px;
    min-height: 550px;
    overflow: hidden;
    padding: 0 !important;
}


/* =========================================================
   BACKGROUND IMAGE CONTAINER
========================================================= */

.support-company .backgroundmage-container {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.support-company .background-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain;
    object-position: center;
     /* opacity: 0.75; */
}


/* =========================================================
   TEXT CONTAINER
========================================================= */

.support-company .text-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 2;
}


/* =========================================================
   CONTENT
========================================================= */

.support-company .cv-caption {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.support-company .pera2 {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 25px;
    padding: 10px 20px;
    text-align: center;
    color: #ffffff;
    background: rgba(89, 90, 92, 0.70);
    border-radius: 10px;
    font-size: 18px !important;
    line-height: 1.8;
    font-weight: 500;
    overflow: hidden;
    border-right: none;
    
}


/* Highlighted text */

.support-company .pera2 span {
    color: #FFC904 !important;
    font-weight: 700;
}


/* =========================================================
   REGISTER BUTTON
========================================================= */

.support-company .border-btn4 {
    display: inline-block;
    margin: 0 auto;
    left:20px;
    padding: 12px 35px;
    color: #ffffff !important;
    background: #FFC904;
    border: 2px solid #FFC904;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
}


.support-company  .border-btn4:hover {
    color: #ffffff !important;
    background: #1f2b7b !important;
    border-color: #1f2b7b !important;
}

/* Initial state */
.support-company .pera2,
.support-company  .border-btn4 {
    opacity: 0;
    transform: translateY(60px);
}


/* When section enters pera fade up */
.support-company.fade-up .pera2 {
    animation: onlineCVFadeUp 0.8s ease-out forwards;
}


/* Button comes slightly after pera fade up */
.support-company.fade-up .border-btn4 {
    animation: onlineCVFadeUp 0.8s ease-out 0.3s forwards;
}

@keyframes onlineCVFadeUp {

    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
   BLACK OVERLAY
========================================================= */

/* .support-company::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #1f2b7b;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
} */


.support-company .desktop-bg {
    display: block !important;
}

/* Mobile image hidden by default */
.support-company  .mobile-bg {
    display: none !important;
}



/* =========================================================
   TABLET (768px - 991px)
========================================================= */

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .support-company {
        height: 320px;
        min-height: 320px;
    }

    .support-company .backgroundmage-container {
        height: 100% !important;
    }

    .support-company .background-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
    }

    .support-company .text-container {
        padding: 25px;
    }

    .support-company .cv-caption {
        max-width: 700px;
    }

    .support-company .pera2 {
        font-size: 14px !important;
        line-height: 1.7;
        padding: 10px 18px;
        margin-bottom: 22px;
    }

    .support-company .border-btn4 {
        padding: 11px 30px;
        font-size: 13px;
        left:-3px
    }
}


/* =========================================================
   MOBILE (767px and below)
========================================================= */

@media (max-width: 767px) {

    .support-company {
        height: 520px;
        min-height: 520px;
    }

   .support-company .backgroundmage-container {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* Hide desktop image */
    .support-company .desktop-bg {
        display: none !important;
    }

    /* Show mobile image */
    .support-company .mobile-bg {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover;
        object-position: center;
    }

    .support-company .text-container {
        padding: 20px 15px;
    }

    .support-company .cv-caption {
        max-width: 100%;
    }

    .support-company .pera2 {
        font-size: 14px !important;
        line-height: 1.6;
        padding: 10px 15px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .support-company .border-btn4 {
        padding: 10px 28px;
        font-size: 14px;
        left:-3px
    }
}


/* =========================================================
   SMALL MOBILE (Below 400px)
========================================================= */

@media (max-width: 400px) {

    .support-company {
        height: 480px;
        min-height: 480px;
    }

    .support-company .backgroundmage-container {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* Hide desktop image */
    .support-company .desktop-bg {
        display: none !important;
    }

    /* Show mobile image */
    .support-company .mobile-bg {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover;
        object-position: center;
    }

    .support-company .pera2 {
        font-size: 13px !important;
        line-height: 1.55;
        padding: 8px 12px;
    }

    .support-company .border-btn4 {
        padding: 9px 24px;
        font-size: 13px;
        left:-3px
    }
}
