* {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}
  
html, body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #3E3E3E;
}

.header {
    position: relative;
    width: 100%;
    padding: 32px 0 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header  .inner {
    width: 100%;
    max-width: 1040px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
}

.header h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    color: #3E3E3E;
    position: relative;
    margin: 60px  0;
}

.header h1:after {
    content: ' ';
    position: absolute;
    width: 40px;
    height: 4px;
    left: 50%;
    background-color: #169FF2;
    border-radius: 2px;
    bottom: -24px;
    margin-left: -20px;
}

.header p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
    color: #3E3E3E;
    max-width: 872px;
    margin: 0 0 60px 0;
}

.benefits {
    position: relative;
    width: 100%;
    padding: 12px 32px 32px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits::before {
    content: ' ';
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background: linear-gradient(134.71deg, rgba(224, 245, 255, 0.977355) -0.5%, #F6EEFF 76.8%, #E8D5FF 98.45%);
    opacity: 0.5;
}

.benefits .inner {
    width: 100%;
    max-width: 1040px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.benefits .inner ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.benefits .inner ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 25%;
    height: 220px;
    margin-top: 20px;
}

.benefits .inner ul li h4 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #3E3E3E;
    margin: 0;
}

.benefits .inner ul li > div {
    flex: 0 0 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 
.jobs {
    position: relative;
    width: 100%;
    padding: 32px 0 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.jobs .inner {
    width: 100%;
    max-width: 1040px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
}

.jobs h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    color: #3E3E3E;
    position: relative;
    margin: 60px  0;
}

.jobs h1:after {
    content: ' ';
    position: absolute;
    width: 40px;
    height: 4px;
    left: 50%;
    background-color: #169FF2;
    border-radius: 2px;
    bottom: -24px;
    margin-left: -20px;
}

.jobs .cards {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style: none;
    width: 100%;
    gap: 20px;
    margin: 40px 0 120px 0;
    flex-wrap: wrap;
}

.jobs .cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 332px;
    height: 296px;
    background: #FFFFFF;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    box-sizing: border-box;
    padding: 44px 28px;
    position: relative;
    text-decoration: none;    
    transition: .2s;

}

.jobs .cards .card:hover{
    transform: scale(1.05);
    transition: .2s;
}


.jobs .cards .card:after {
    content: ' ';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12px;
    border-radius: 0px 0px 7px 7px;
    background: linear-gradient(134.71deg, rgba(0, 176, 255, 0.977355) -0.5%, #861FFC 76.33%, #861FFC 98.45%);
}

.jobs .cards h4 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #3E3E3E;
    margin: 0 0 40px 0;
    cursor: pointer;
    min-height: 66px;
    /* min-height: 40px; */
}

.jobs .cards .card > div {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
    margin: 0 0 12px 0;
}

.jobs .cards label {
    display: flex;
    flex-direction: row;
    line-height: 28px;
    align-items: flex-start;
    flex: 1 1 50%;
    color: #3E3E3E;
    cursor: pointer;
}

.jobs .cards label > svg {
    flex: 0 0 auto;
    margin: 0 8px 0 0;
    position: relative;
    top: 4px;
}

@media only screen and (max-width: 1200px) {
    
    .header .inner,
    .benefits .inner,
    .jobs .inner {
        padding: 0 32px 0 32px;
    }
}

@media only screen and (max-width: 732px) {



    .header .inner h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;    
        color: #3E3E3E;
        text-align: left;
        width: 100%;
    }

    .header .inner h1::after {
        width: 32px;
        height: 4px;
        left: 20px;
        bottom: -16px;
    }

    
    .header p  {
        width: 100%;
        text-align: left;
    }

    .benefits {
       padding: 48px 32px;
    }

    .benefits .inner ul {
        flex-direction: column;
        gap: 40px;
    }
    
    .jobs .inner h1 {
        font-family: 'Open Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 33px;    
        color: #3E3E3E;
        text-align: left;
        width: 100%;
    }

    .jobs .inner h1::after {
        width: 32px;
        height: 4px;
        margin: 0;
        left: 0;
    }

    .jobs .cards {
        flex-direction: column;
        gap: 28px;
        margin: 40px 0 60px 0;
    }
}