* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Nunito, sans-serif;
    color: #000000;
}
.net_wrapping-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(186,241,246);
}
a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.net_wrapping-container .net_our_story .holder {
    height: auto;
}

.net_our_story {
    padding: 80px 0;
    background: rgb(152,192,222,0.5);
    position: relative;
    overflow: hidden;
}

.net_wrapping-container .net_our_story .holder .photo {
    display: block;
    width: 450px;
    height: 450px;
    border-radius: 11px;
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.net_wrapping-container .net_our_story .holder .photo:hover {
    transform: translateY(-50%) scale(1.05);
}

.net_wrapping-container .net_our_story .caption_holder {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 0 50px;
    background: linear-gradient(45deg, rgb(118,144,198), rgb(118,144,198,0.5));
    border-radius: 11px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    padding-right: 0;
}

.net_wrapping-container .net_our_story .style_element {
    background: rgb(152,192,222);
    padding: 40px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.net_wrapping-container .net_our_story h2 {
    color: #ffffff;
    margin-top: 20px;
    font-size: 37px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.net_wrapping-container .net_our_story p {
    color: #ffffff;
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}

@media only screen and (max-width: 1200px) {
    .net_wrapping-container .net_our_story .holder .photo {
        width: 350px;
        height: 350px;
        left: 30px;
        position: static;
        transform: translateY(0);
        margin-top: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .net_wrapping-container .net_our_story .style_element {
        width: 100%;
        padding: 30px;
        box-shadow: none;
        border-radius: 0;
    }
    .net_wrapping-container .net_our_story .holder .photo {
        width: 280px;
        height: 280px;
    }
    .net_wrapping-container .net_our_story .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
        padding: 20px;
        box-shadow: none;
    }
    .net_wrapping-container .net_our_story h2 {
        font-size: 19px;
    }
}.net_contact_panel {
    padding: 100px 0;
    background: rgb(186,241,246);
    font-family: Nunito, sans-serif;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.net_contact_panel::before, .net_contact_panel::after {
    content: "";
    position: absolute;
    background: rgb(118,144,198);
    border-radius: 50%;
    opacity: 0.1;
}
.net_contact_panel::before {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -150px;
}
.net_contact_panel::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -100px;
}
.net_contact_panel .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.net_contact_panel .holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}
.net_contact_panel .info, .net_contact_panel .form {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 48%;
}
.net_contact_panel .info {
    position: relative;
}
.net_contact_panel .info h3 {
    color: rgb(152,192,222);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}
.net_contact_panel .info h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: rgb(152,192,222);
    position: absolute;
    left: 0;
    bottom: -10px;
}
.net_contact_panel .logo_holder {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgb(118,144,198,0.5);
    padding-bottom: 20px;
    position: relative;
}
.net_contact_panel .logo_holder svg, .net_contact_panel .logo_holder img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    fill: rgb(152,192,222);
}
.net_contact_panel .logo_holder span {
    color: rgb(118,144,198);
    font-size: 21px;
}
.net_contact_panel .contact_info {
    padding: 20px 0;
}
.net_contact_panel .contact_info h5 {
    color: rgb(152,192,222);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}
.net_contact_panel .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.net_contact_panel .contact_info svg {
    width: 20px;
    height: 20px;
    fill: rgb(152,192,222);
    margin-right: 10px;
}
.net_contact_panel .contact_info span {
    color: #000000;
    font-weight: 300;
}
.net_contact_panel .form {
    padding: 40px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}
.net_contact_panel .form h3 {
    color: rgb(118,144,198);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}
.net_contact_panel .form h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: rgb(118,144,198);
    position: absolute;
    left: 0;
    bottom: -10px;
}
.net_contact_panel form {
    display: flex;
    flex-direction: column;
}
.net_contact_panel .name_holder {
    display: flex;
    justify-content: space-between;
}
.net_contact_panel .name_holder input {
    width: 48%;
}
.net_contact_panel form input {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgb(118,144,198,0.5);
    padding: 14px 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.net_contact_panel form input:focus {
    border-color: rgb(152,192,222);
    outline: none;
    box-shadow: 0 0 5px rgb(152,192,222,0.5);
}
.net_contact_panel form .button {
    background: rgb(118,144,198);
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    margin-top: 20px;
}
.net_contact_panel form .button:hover {
    background: rgb(152,192,222);
    transform: translateY(-2px);
}
.net_contact_panel .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 12px;
}
.net_contact_panel .agree input[type=checkbox] {
    margin: 0 10px 0 0;
    width: auto;
}
.net_contact_panel .agree label {
    display: flex;
    align-items: center;
    color: #000000;
}
.net_contact_panel .agree a {
    margin-left: 5px;
    color: rgb(152,192,222);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.net_contact_panel .agree a:hover {
    color: rgb(118,144,198);
}
@media only screen and (max-width: 768px) {
    .net_contact_panel .holder {
        flex-direction: column;
    }
    .net_contact_panel .holder > div {
        width: 100%;
        margin-bottom: 20px;
    }
    .net_contact_panel .info,
    .net_contact_panel .form {
        padding: 20px;
    }
}
@media only screen and (max-width: 480px) {
    .net_contact_panel .name_holder {
        flex-direction: column;
    }
    .net_contact_panel .name_holder input {
        width: 100%;
    }
    .net_contact_panel form input,
    .net_contact_panel form .button {
        width: 100%;
        box-sizing: border-box;
    }
}
.net_educational_rewards {
    padding-bottom: 80px;
    padding-top: 80px;
}

.net_educational_rewards .holder {
    display: flex;
    width: 100%;
}

.net_educational_rewards h2 {
    text-align: left;
    margin-bottom: 20px;
}

.net_educational_rewards .photo {
    width: 50%;
    flex-shrink: 0;
}

.net_educational_rewards .text_holder {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.net_educational_rewards ul {
    list-style: none;
}

.net_educational_rewards li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.net_educational_rewards svg, .net_educational_rewards path {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(152,192,222);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .net_educational_rewards {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .net_educational_rewards .holder {
        flex-direction: column;
    }

    .net_educational_rewards .text_holder {
        width: 100%;
    }

    .net_educational_rewards .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}

.net_wrapping-container .net_educational_rewards {
    background: linear-gradient(135deg, rgb(152,192,222,0.5) 0%, rgb(118,144,198,0.5) 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.net_wrapping-container .net_educational_rewards::before {
    content: "";
    width: 300%;
    height: 200px;
    background: #ffffff;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.net_wrapping-container .net_educational_rewards .holder {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.net_wrapping-container .net_educational_rewards .photo {
    width: 40%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.net_wrapping-container .net_educational_rewards .photo:hover {
    transform: scale(1.02);
}

.net_wrapping-container .net_educational_rewards .text_holder {
    width: 50%;
    padding: 40px;
    background: #ffffff;
    border-radius: 0 28px 28px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.net_wrapping-container .net_educational_rewards h2 {
    font-size: 32px;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    color: rgb(152,192,222);
    margin-bottom: 25px;
    text-align: left;
}

.net_wrapping-container .net_educational_rewards ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.net_wrapping-container .net_educational_rewards li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    color: #000000;
}

.net_wrapping-container .net_educational_rewards svg, .net_wrapping-container .net_educational_rewards path {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    fill: rgb(152,192,222);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .net_wrapping-container .net_educational_rewards {
        padding: 50px 0;
    }

    .net_wrapping-container .net_educational_rewards::before {
        height: 100px;
        top: -50px;
    }

    .net_wrapping-container .net_educational_rewards .holder {
        flex-direction: column;
    }

    .net_wrapping-container .net_educational_rewards .photo {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }

    .net_wrapping-container .net_educational_rewards .text_holder {
        width: 100%;
        padding: 20px;
        border-radius: 28px;
    }
}.net_thxArea {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(152,192,222,0.5);
    padding: 60px;
    border-radius: 27px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.net_thxArea::before,
.net_thxArea::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgb(152,192,222,0.5);
    border-radius: 50%;
    opacity: 0.5;
}
.net_thxArea::before {
    top: -50px;
    left: -50px;
}
.net_thxArea::after {
    bottom: -50px;
    right: -50px;
}
.net_thxArea .container {
    background: rgb(186,241,246);
    padding: 50px 70px;
    border-radius: 27px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.net_thxArea .container::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: rgb(118,144,198,0.5);
    border-radius: 50%;
    z-index: 1;
}
.net_thxArea .container::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: rgb(118,144,198,0.5);
    border-radius: 50%;
    z-index: 1;
}
.net_thxArea h2 {
    font-size: 32px;
    color: rgb(152,192,222);
    margin-bottom: 30px;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, rgb(152,192,222), rgb(118,144,198));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 10px 0;
    border-bottom: 2px solid rgb(152,192,222);
    letter-spacing: 1px;
}
.net_thxArea p {
    font-size: 18px;
    color: #000000;
    font-family: Nunito, sans-serif;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    padding: 10px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-left: 4px solid rgb(118,144,198);
    margin: 20px 0 0;
}
@media only screen and (max-width: 800px) {
    .net_thxArea {
        padding: 30px;
    }
    .net_thxArea .container {
        padding: 30px 40px;
    }
    .net_thxArea h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .net_thxArea p {
        font-size: 20px;
        padding: 15px 20px;
    }
}
.net_wrapping-container .net_course_structure {
    padding: 60px 0;
    background: rgb(118,144,198);
    overflow: hidden;
}

.net_wrapping-container .net_course_structure .items {
    display: flex;
    justify-content: center;
}

.net_wrapping-container .net_course_structure .items .course {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(135deg, rgb(152,192,222), rgb(118,144,198));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.net_wrapping-container .net_course_structure .items .course:hover {
    transform: translateY(-5px);
}

.net_wrapping-container .net_course_structure .photo {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.net_wrapping-container .net_course_structure .items .course:hover .photo {
    transform: scale(1.05);
}

.net_wrapping-container .net_course_structure .text_holder {
    padding: 40px;
    width: 100%;
    text-align: center;
}

.net_wrapping-container .net_course_structure .text_holder h3 {
    font-family: Nunito, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.net_wrapping-container .net_course_structure .text_holder p {
    font-family: Nunito, sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.net_wrapping-container .net_course_structure .button {
    display: inline-block;
    padding: 15px 30px;
    background: rgb(152,192,222);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.net_wrapping-container .net_course_structure .button:hover {
    background: rgb(118,144,198);
    transform: translateY(-3px);
}

@media only screen and (max-width: 800px) {
    .net_wrapping-container .net_course_structure .text_holder {
        padding: 20px;
    }
}
.net_stay_informed {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.net_stay_informed .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.net_stay_informed input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(118,144,198,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.net_stay_informed h2 {
    margin-bottom: 20px;
    text-align: center;
}

.net_stay_informed .button {
    background: rgb(118,144,198);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.net_stay_informed .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .net_stay_informed .holder {
        flex-direction: column;
    }

    .net_stay_informed {
        padding: 30px 20px;
    }

    .net_stay_informed input {
        min-width: unset;
    }

    .net_stay_informed .button {
        flex-shrink: unset;
    }

    .net_stay_informed .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .net_stay_informed input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .net_wrapping-container .net_stay_informed .holder h2 {
        font-size: 20px;
    }
}

.net_wrapping-container .net_stay_informed {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(152,192,222) 30%, rgb(118,144,198) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.net_wrapping-container .net_stay_informed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgb(152,192,222) 0%, rgb(152,192,222,0.5) 100%);
    opacity: 0.3;
    z-index: 0;
}

.net_wrapping-container .net_stay_informed .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.net_wrapping-container .net_stay_informed h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #ffffff;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.net_wrapping-container .net_stay_informed .input_holder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

.net_wrapping-container .net_stay_informed input[type="email"] {
    padding: 15px 20px;
    height: auto;
    border-radius: 23px;
    background: #ffffff;
    border: 2px solid rgb(118,144,198);
    font-weight: 400;
    font-size: 15px;
    width: 60%;
    max-width: 400px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.net_wrapping-container .net_stay_informed input[type="email"]:focus {
    border-color: rgb(152,192,222);
    box-shadow: 0 0 15px rgb(152,192,222,0.5);
}

.net_wrapping-container .net_stay_informed .button {
    padding: 15px 30px;
    border-radius: 23px;
    background: rgb(118,144,198);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.net_wrapping-container .net_stay_informed .button:hover {
    background: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 800px) {
    .net_wrapping-container .net_stay_informed {
        padding: 60px 20px;
    }

    .net_wrapping-container .net_stay_informed h2 {
        font-size: 37px;
    }

    .net_wrapping-container .net_stay_informed .input_holder {
        flex-direction: column;
        gap: 15px;
    }

    .net_wrapping-container .net_stay_informed input[type="email"] {
        width: 100%;
    }

    .net_wrapping-container .net_stay_informed .button {
        width: 100%;
    }
}.net_client_comments {
    padding-top: 120px;
    padding-bottom: 120px;
    background: rgb(118,144,198);
    font-family: Nunito, sans-serif;
    color: #ffffff;
}

.net_client_comments h2 {
    color: rgb(152,192,222);
    font-size: 33px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(152,192,222);
    display: inline-block;
    padding-bottom: 10px;
}

.net_client_comments .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.net_client_comments .reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.net_client_comments .review {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgb(118,144,198,0.5);
    border: 1px solid rgb(118,144,198);
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.net_client_comments .photo {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.net_client_comments .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.net_client_comments .review span {
    font-size: 24px;
    font-weight: 600;
    color: rgb(118,144,198);
    margin-bottom: 10px;
}

.net_client_comments .review p {
    font-size: 15px;
    color: #ffffff;
    margin: 0;
}



.net_wrapping-container .net_client_comments .review {
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border: 1px solid rgb(152,192,222);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.net_wrapping-container .net_client_comments .photo {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 50%;
}

.net_wrapping-container .net_client_comments .text {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: calc(100% - 120px);
}

.net_wrapping-container .net_client_comments .review span {
    font-size: 19px;
    font-weight: 400;
    color: rgb(152,192,222);
}

.net_wrapping-container .net_client_comments .review p {
    color: #000000;
    margin-bottom: 10px;
    font-size: 15px;
}

.net_wrapping-container .net_client_comments .holder h2 {
    font-size: 43px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}
@media only screen and (max-width: 900px) {
    .net_client_comments h2 {
        font-size: 24px;
    }

    .net_wrapping-container .net_client_comments {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .net_client_comments .reviews {
        grid-template-columns: 1fr;
    }
}header .main_header {
    background: rgb(118,144,198);
    color: #ffffff;
    padding: 20px 0;
    position: relative;
    border-bottom: 2px solid rgb(152,192,222);
}
header .logo_holder {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 2px solid rgb(152,192,222);
    border-radius: 14px;
    box-shadow: 0 0 15px rgb(152,192,222);
}
header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 60px;
    width: 60px;
    fill: rgb(152,192,222);
}
header .logo_caption {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(152,192,222);
}
header .logo_desc {
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
header .menu {
    display: flex;
    gap: 30px;
}
header .menu a {
    color: rgb(152,192,222);
    font-family: Nunito, sans-serif;
    font-weight: 700;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    border: 2px solid transparent;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgb(152,192,222,0.5);
    transition: all 0.3s ease;
}
header .menu a:before, header .menu a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgb(152,192,222);
    transition: transform 0.3s ease;
}
header .menu a:before {
    top: 0;
    left: 0;
    transform: scaleX(0);
}
header .menu a:after {
    bottom: 0;
    right: 0;
    transform: scaleX(0);
}
header .menu a:hover:before, header .menu a:hover:after {
    transform: scaleX(1);
}
header .menu a.active {
    color: rgb(152,192,222);
    border: 2px solid rgb(152,192,222);
    background: rgba(0, 0, 0, 0.5);
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}
header .header_content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(152,192,222);
}
header .header_content:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(152,192,222);
}
@media only screen and (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    header .menu {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    header .menu a {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid rgb(118,144,198,0.5);
    }
    header .main_header {
        padding: 20px 0;
    }
    header .logo_holder {
        margin-bottom: 20px;
        justify-content: center;
        width: 100%;
    }
}
.net_wrapping-container header .main_header {
    padding: 30px 0;
}
.net_wrapping-container header .header_content {
    padding: 25px 50px;
    justify-content: space-between;
    border-radius: 14px;
    position: relative;
}
.net_wrapping-container header .logo_holder .logotype svg, .net_wrapping-container header .logo_holder .logotype img {
    width: 60px;
    height: 60px;
}
.net_wrapping-container header .menu a {
    font-weight: 700;
    font-size: 16px;
    box-shadow: inset 0 0 10px rgb(152,192,222,0.5);
}
.net_wrapping-container header .header_content:before,
.net_wrapping-container header .header_content:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(152,192,222,0.5);
}
.net_wrapping-container header .header_content:before {
    top: 0;
}
.net_wrapping-container header .header_content:after {
    bottom: 0;
}
@media only screen and (max-width: 800px) {
    .net_wrapping-container header .logo_holder .logotype svg, .net_wrapping-container header .logo_holder .logotype img {
        width: 50px;
        height: 50px;
    }
    .net_wrapping-container header .logo_holder {
        justify-content: center;
        width: 100%;
        position: relative;
        z-index: 95;
    }
    .net_wrapping-container header .menu {
        padding-top: 30px;
        top: 0;
        align-items: center;
    }
}.net_check_it_out_now {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(186,241,246) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-top: 8px solid rgb(152,192,222);
    border-bottom: 8px solid rgb(152,192,222);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.net_check_it_out_now::before, .net_check_it_out_now::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgb(152,192,222,0.5);
    border-radius: 50%;
    filter: blur(50px);
}

.net_check_it_out_now::before {
    top: -100px;
    left: -100px;
}

.net_check_it_out_now::after {
    bottom: -100px;
    right: -100px;
}

.net_check_it_out_now .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 28px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.net_check_it_out_now .holder {
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: none;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.net_check_it_out_now .holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(152,192,222,0.5), rgb(118,144,198,0.5));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.net_check_it_out_now .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.net_check_it_out_now .holder:hover::before {
    opacity: 0.2;
}

.net_check_it_out_now .holder svg, .net_check_it_out_now .holder svg path {
    fill: rgb(152,192,222);
    width: 100px;
    height: 100px;
}

.net_check_it_out_now .holder h2 {
    font-size: 39px;
    margin: 0 0 20px 0;
    font-weight: 700;
    color: rgb(152,192,222);
    position: relative;
    z-index: 1;
    transition: color 0.5s ease-in-out;
}

.net_check_it_out_now .holder h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    background: rgb(118,144,198);
    transition: width 0.5s ease-in-out;
}

.net_check_it_out_now .holder:hover h2 {
    color: rgb(118,144,198);
}

.net_check_it_out_now .holder:hover h2::after {
    width: 100%;
}

.net_check_it_out_now .holder .button {
    padding: 15px 30px;
    background: rgb(152,192,222);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.5s ease-in-out;
    z-index: 1;
    display: inline-block;
    margin-top: 20px;
}

.net_check_it_out_now .holder .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease-in-out;
}

.net_check_it_out_now .holder .button:hover {
    background: rgb(118,144,198);
    box-shadow: 0 10px 20px rgb(118,144,198,0.5);
    transform: translateY(-3px);
}

.net_check_it_out_now .holder .button:hover::before {
    left: 100%;
}

.net_check_it_out_now .holder .button:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1024px) {
    .net_check_it_out_now {
        padding: 80px 0;
    }
    .net_check_it_out_now .holder {
        flex-direction: column;
        padding: 40px;
    }
    .net_check_it_out_now .holder svg, .net_check_it_out_now .holder svg path {
        width: 120px;
        height: 120px;
    }
    .net_check_it_out_now .holder h2 {
        font-size: 36px;
        text-align: center;
    }
    .net_check_it_out_now .holder .button {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: calc(14px * 0.95);
        white-space: normal;
    }
}

@media only screen and (max-width: 600px) {
    .net_check_it_out_now {
        padding: 60px 0;
    }
    .net_check_it_out_now .holder {
        padding: 30px;
    }
    .net_check_it_out_now .holder svg, .net_check_it_out_now .holder svg path {
        width: 80px;
        height: 80px;
    }
    .net_check_it_out_now .holder h2 {
        font-size: 23px;
    }
    .net_check_it_out_now .holder .button {
        padding: 12px 24px;
        font-size: calc(14px * 0.9);
    }
}
.net_advantages_summary .advantages_content h2 {
    color: rgb(118,144,198);
}

.net_advantages_summary .advantage_item svg, .net_advantages_summary .advantage_item svg path {
    fill: rgb(152,192,222);
}

.net_advantages_summary .advantage_item p {
    color: #000000;
}

.net_advantages_summary .advantage_item b {
    color: rgb(152,192,222);
}

.net_advantages_summary {
    padding-top: 80px;
    padding-bottom: 80px;
}

.net_advantages_summary .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.net_advantages_summary .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.net_advantages_summary .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 38px;
    font-weight: 600;
}

.net_advantages_summary .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.net_advantages_summary .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.net_advantages_summary .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.net_advantages_summary .advantage_item svg, .net_advantages_summary .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .net_wrapping-container .net_advantages_summary .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .net_advantages_summary .advantages_content h2 {
        font-size: 30px;
    }

    .net_advantages_summary .advantages_holder {
        flex-direction: column;
    }

    .net_advantages_summary {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .net_wrapping-container .net_advantages_summary .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.net_wrapping-container .net_advantages_summary {
    padding: 100px 0;
    background: rgb(186,241,246);
    color: #ffffff;
    font-family: Nunito, sans-serif;
    overflow: hidden;
}

.net_wrapping-container .net_advantages_summary .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.net_wrapping-container .net_advantages_summary .advantages_content h2 {
    font-size: 38px;
    font-weight: 700;
    color: rgb(118,144,198);
    margin-bottom: 40px;
    background: linear-gradient(to right, rgb(152,192,222), rgb(118,144,198));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.net_wrapping-container .net_advantages_summary .advantages_content h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, rgb(152,192,222), rgb(118,144,198));
    bottom: -10px;
    left: 0;
}

.net_wrapping-container .net_advantages_summary .advantages_description {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 20px;
    color: rgb(118,144,198);
    border-left: 4px solid rgb(118,144,198);
    border-right: 4px solid rgb(118,144,198);
    position: relative;
    z-index: 1;
}

.net_wrapping-container .net_advantages_summary .advantages_holder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.net_wrapping-container .net_advantages_summary .advantage_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 30px);
    background: #ffffff;
    color: #000000;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.net_wrapping-container .net_advantages_summary .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.net_wrapping-container .net_advantages_summary .advantage_image {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(152,192,222), rgb(118,144,198));
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.net_wrapping-container .net_advantages_summary .advantage_image img, .net_wrapping-container .net_advantages_summary .advantage_image svg {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.net_wrapping-container .net_advantages_summary .advantage_item h4 {
    font-weight: 700;
    font-size: 20px;
    margin-top: 20px;
    color: rgb(118,144,198);
}

@media only screen and (max-width: 1200px) {
    .net_wrapping-container .net_advantages_summary .advantages_holder .advantage_item {
        width: calc(50% - 30px);
    }
}

@media only screen and (max-width: 800px) {
    .net_wrapping-container .net_advantages_summary {
        padding: 50px 0;
    }

    .net_wrapping-container .net_advantages_summary .advantages_content h2 {
        font-size: 20px;
    }

    .net_wrapping-container .net_advantages_summary .advantages_holder {
        flex-direction: column;
    }

    .net_wrapping-container .net_advantages_summary .advantages_holder .advantage_item {
        width: 100%;
    }
}footer {
    background: rgb(118,144,198);
    color: #ffffff;
    font-family: Nunito, sans-serif;
    padding: 50px 0;
    position: relative;
    border-top: 3px solid rgb(152,192,222);
}
footer::before,
footer::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, rgb(152,192,222), rgb(118,144,198));
}
footer::before {
    left: 0;
    border-radius: 10px 10px 0 0;
}
footer::after {
    right: 0;
    border-radius: 0 0 10px 10px;
}
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
footer .footer_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
footer .logo_holder {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
footer .logo_holder svg,
footer .logo_holder img {
    height: 60px;
    width: auto;
    fill: rgb(152,192,222);
}
footer h5 {
    color: rgb(152,192,222);
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: rgb(118,144,198);
    border-radius: 10px;
}
footer .menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .menu a {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    padding: 5px 0;
    border-bottom: 1px solid rgb(118,144,198,0.5);
}
footer .menu a:hover {
    color: rgb(152,192,222);
    border-bottom-color: rgb(152,192,222);
}
footer .contact_info {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
}
footer .contact_info div svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}
footer .footer_agreement {
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    margin: 10px 0;
}
footer .copyright {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}
footer .copyright_info {
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
    margin: 0;
}
footer .copyright a {
    color: #ffffff;
    text-decoration: underline;
}
footer .copyright a:hover {
    color: rgb(152,192,222);
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        gap: 15px;
    }
    footer .container {
        padding: 0 15px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_info {
        flex-direction: column;
        align-items: center;
    }
    footer .menu {
        text-align: center;
    }
    footer .contact_info {
        align-items: center;
        text-align: center;
    }
    footer .footer_agreement {
        text-align: center;
    }
}
.net_wrapping-container footer {
    background: rgb(186,241,246);
    padding: 40px 0;
}
.net_wrapping-container footer .menu a {
    color: rgba(0, 0, 0, 0.5);
    border-bottom: none;
}
.net_wrapping-container footer .menu_holder {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.net_wrapping-container footer .copyright_info {
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 800px) {
    .net_wrapping-container footer .menu_holder {
        flex-direction: column;
        align-items: center;
    }
}
.net_title_page .title_page_holder {
    background-size: cover;
    background-position: center !important;
}

.net_title_page .style_element h1 {
    color: rgb(118,144,198);
}

.net_title_page .style_element h3 {
    color: rgb(118,144,198);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.net_title_page .style_element p {
    color: #000000;
    text-align: right;
}

.net_title_page {
    width: 100%;
}

.net_title_page .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.net_title_page .style_element {
    position: absolute;
    right: 0px;
    bottom: -1px;
    background: #ffffff;
    width: 65%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 50px 50px 50px 30%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 680px;
    border-radius: 0;
}

.net_title_page .style_element h1 {
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.net_title_page .style_element p {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .net_title_page .title_page_holder {
        min-height: 320px;
        height: auto;
    }

    .net_title_page .style_element {
        min-width: unset;
        width: 100%;
        clip-path: polygon(100% 100%, 100% -175%, 0 100%);
        padding: 100px 30px 30px 35%;
        text-align: right;
        min-width: unset;
    }

    .net_title_page .style_element h1 {
        font-size: 18px;
    }

    .net_title_page .style_element h3 {
        font-size: 16px;
    }

    .net_title_page .style_element p {
        font-size: 14px;
    }
}

.net_wrapping-container .net_title_page {
    position: relative;
}

.net_wrapping-container .net_title_page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.7;
    z-index: 0;
}

.net_wrapping-container .net_title_page .style_element {
    position: relative;
    clip-path: none;
    margin: auto;
    height: auto;
    background: none;
    display: flex;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 336px;
    justify-content: center;
    max-width: 1200px;
}

.net_wrapping-container .net_title_page .style_element::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #ffffff;
    opacity: 0.7;
    z-index: 1;
}

.net_wrapping-container .net_title_page .title_page_holder {
    display: flex;

}

.net_wrapping-container .net_title_page .style_element h1 {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.net_wrapping-container .net_title_page .style_element h3 {
    color: #000000;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.net_wrapping-container .net_title_page .style_element p {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .net_wrapping-container .net_title_page .title_page_holder {
        padding: 20px;
    }

    .net_wrapping-container .net_title_page .style_element h1 {
        font-size: 30px;
    }

    .net_wrapping-container .net_title_page .style_element {
        padding: 30px 10px;
    }
}.net_privacy_guard {
    padding: 40px;
    width: 100%;
    height: auto;
    background: rgb(118,144,198);
    border: 2px solid rgb(152,192,222);
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: #ffffff;
    box-shadow: 0 0 10px rgb(152,192,222,0.5), inset 0 0 15px rgba(0, 0, 0, 0.5);
}
.net_privacy_guard h1 {
    font-size: 39px;
    font-family: Nunito, sans-serif;
    color: rgb(152,192,222);
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(118,144,198);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.net_privacy_guard h2 {
    font-size: 29px;
    font-family: Nunito, sans-serif;
    color: rgb(118,144,198);
    font-weight: 600;
    text-align: left;
    margin: 0;
    padding-left: 15px;
    border-left: 4px solid rgb(152,192,222);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.net_privacy_guard h3, .net_privacy_guard h4, .net_privacy_guard h5 {
    font-size: 22px;
    color: #ffffff;
}
.net_privacy_guard ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}
.net_privacy_guard li {
    margin-bottom: 10px;
    font-size: 12px;
    font-family: Nunito, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background: rgb(118,144,198,0.5);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgb(152,192,222);
}
.net_privacy_guard div {
    line-height: 1.8;
    font-size: 12px;
    font-family: Nunito, sans-serif;
    color: #000000;
    padding: 20px;
    background: rgb(152,192,222,0.5);
    border-radius: 23px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(118,144,198);
}
.net_privacy_guard p, .net_privacy_guard span {
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 12px;
    color: #ffffff;
    font-family: Nunito, sans-serif;
}
@media only screen and (max-width: 800px) {
    .net_privacy_guard {
        padding: 20px;
    }
    .net_privacy_guard h1 {
        font-size: calc(39px - 4px);
        margin-bottom: 15px;
    }
    .net_privacy_guard h2 {
        font-size: calc(29px - 2px);
        margin-bottom: 10px;
    }
    .net_privacy_guard ul {
        padding-left: 15px;
    }
    .net_privacy_guard li {
        padding: 8px;
        margin-bottom: 8px;
    }
    .net_privacy_guard div {
        padding: 15px;
    }
}.net_developer_experience {
    padding: 100px 0;
    background: #000000;
    color: #ffffff;
    font-family: Nunito, sans-serif;
    position: relative;
    overflow: hidden;
}

.net_developer_experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, rgb(152,192,222,0.5) 25%, transparent 25%, transparent 50%, rgb(152,192,222,0.5) 50%, rgb(152,192,222,0.5) 75%, transparent 75%, transparent);
    background-size: 56px 56px;
    opacity: 0.1;
    transform: translateX(-50%);
    pointer-events: none;
}

.net_developer_experience .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.net_developer_experience .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: rgb(118,144,198,0.5);
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.net_developer_experience .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 22px;
    width: calc(33% - 40px);
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.net_developer_experience .review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    border: 2px solid rgb(152,192,222);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.net_developer_experience .review:hover::before {
    opacity: 1;
}

.net_developer_experience .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.net_developer_experience .photo {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background-position: center;
    position: relative;
    z-index: 1;
}

.net_developer_experience .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(152,192,222,0.5);
    pointer-events: none;
}

.net_developer_experience .worker_description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.net_developer_experience .review .name {
    font-size: 21px;
    font-weight: 700;
    color: rgb(152,192,222);
    margin-bottom: 10px;
}

.net_developer_experience .review span {
    font-size: 18px;
    font-weight: 400;
    color: rgb(118,144,198);
    margin-bottom: 20px;
}

.net_developer_experience .review .quote {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--white-color_opacity);
    border-left: 4px solid rgb(152,192,222);
    padding-left: 15px;
}

@media only screen and (max-width: 1200px) {
    .net_developer_experience .review {
        width: calc(50% - 40px);
    }

    .net_developer_experience .photo {
        height: 200px;
    }
}

@media only screen and (max-width: 800px) {
    .net_developer_experience {
        padding: 60px 0;
    }

    .net_developer_experience .holder {
        padding: 20px;
    }

    .net_developer_experience .review {
        width: 100%;
        margin: 10px 0;
    }

    .net_developer_experience .photo {
        height: 150px;
    }
}

.net_wrapping-container .net_developer_experience {
    background: rgb(152,192,222);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.net_wrapping-container .net_developer_experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, rgb(118,144,198,0.5) 25%, transparent 25%, transparent 50%, rgb(118,144,198,0.5) 50%, rgb(118,144,198,0.5) 75%, transparent 75%, transparent);
    background-size: 56px 56px;
    opacity: 0.05;
    transform: translateX(-50%);
    pointer-events: none;
}

.net_wrapping-container .net_developer_experience .holder {
    background: rgb(118,144,198,0.5);
    border-radius: 22px;
    padding: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
}

.net_wrapping-container .net_developer_experience .review {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 22px;
    position: relative;
    width: 40%;
}

.net_wrapping-container .net_developer_experience .review::before {
    border: 2px solid rgb(118,144,198);
}

.net_wrapping-container .net_developer_experience .review .name,
.net_wrapping-container .net_developer_experience .review .quote {
    color: #ffffff;
}

.net_wrapping-container .net_developer_experience .review .quote {
    color: var(--white-color_opacity);
}

.net_wrapping-container .net_developer_experience .review span {
    font-size: 17px;
    color: rgb(152,192,222);
}

@media only screen and (max-width: 800px) {
    .net_wrapping-container .net_developer_experience .review {
        flex-direction: column;
        align-items: center;
        padding: 30px;
        width: 100%;
        margin: 0;
    }
    .net_wrapping-container .net_developer_experience .holder {
        padding: 0;
    }

    .net_wrapping-container .net_developer_experience .photo {
        margin-bottom: 20px;
        width: 100%;
        height: 200px;
    }

    .net_wrapping-container .worker_description {
        text-align: center;
    }
}
