:root {
    --col1white: #FFFFFF;
    --col1whiteTr75: rgb(255, 255, 255, 0.75);
    --col2black: #000000;
    --col3PDLred: #FF0033;
    --col3PDLredTr50: rgba(255, 0, 51, 0.1);
    --col3PDLredTr25: rgba(255, 0, 51, 0.25);
}


* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

/* ANC-GENERAL */
/* ANC-NAV */
/* ANC-HERO */
/* ANC-Services */
/* ANC-Partners */
/* ANC-Experience */
/* ANC-News */
/* ANC-Licances */
/* ANC-FOOTER */


/* ANC-GENERAL */

body {
    margin: 0 auto;
    max-width: 1920px;
    overflow-x: hidden;
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--col2black);
}

h1 {
    font-size: 32px;
    text-align: center;
}

hr {
    border: 2px solid var(--col3PDLred);
    margin-block: 16px;
}

button {
    height: 40px;
    border-radius: 8px;
    border: none;
    padding-inline: 16px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-none {
    background-color: transparent;
    border: 1px solid transparent;
    transition: 0.3s;
}

.btn-none img {
    width: 26px;
    height: auto;
    transition: 0.3s;
}

.btn-none:hover {
    color: var(--col3PDLred);
    transition: 0.3s;
}

.btn-none:hover img {
    translate: 8px;
    transition: 0.3s;
}

.btn-red {
    background-color: var(--col3PDLred);
    color: var(--col1white);
    transition: 0.3s;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}

.btn-red:hover {
    background-color: var(--col2black);
    transition: 0.3s;
    transform: scale(110%);
}

/* ANC-NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    background-color: var(--col1white);
    height: 80px;
    padding-inline: 64px;
    box-sizing: border-box;
    filter: drop-shadow(0px 0px 2px var(--col3PDLred));
    position: fixed;
    z-index: 3;
    top: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: relative;
}

.mobile-menu {
    display: none;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 16px;
    flex-direction: column;
    z-index: 3;
    position: fixed;
    background-color: var(--col1white);
    width: 100vw;
    top: 80px;
    right: 0;
    padding: 40px;
    box-sizing: border-box;
    filter: drop-shadow(0px 0px 2px var(--col3PDLred));
}

.menu li a, .mobile-menu li a {
    transition: 0.3s;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.menu li a img, .mobile-menu li a img {
    width: 24px;
    height: 24px;
}

.menu li a:hover, .mobile-menu li a:hover {
    transition: 0.3s;
    background-color: var(--col3PDLred);
    color: var(--col1white);
    font-weight: bold;
}

.active-nav-service {
    transition: 0.3s;
    background-color: var(--col3PDLred);
    color: var(--col1white);
    font-weight: bold;
}

#nav-service-hover img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

#nav-service-hover:hover img {
    transform: rotate(-90deg);
    filter: brightness(0) invert(1); /* makes it pure white */
}

.nav-services {
    position: absolute;
    background-color: var(--col1white);
    top: 60px;
    padding: 16px;
    left: 110px;
    border-radius: 0 0 16px 16px;
    width: 300px;
    display: none;
}

.lang {
    position: relative;
}

.lang a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 4px 8px 4px 4px;
    border-radius: 4px;
    transition: 0.3s;
}

.lang a:hover {
    background-color: var(--col3PDLredTr50);
    transition: 0.3s;
}

.lang a img {
    height: 24px;
    width: auto;
}

.lang-dropdown {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    flex-direction: column;
    padding: 16px;
    border-radius: 0px 0px 8px 8px;
    top: 48px;
    left: -16px;
    background-color: var(--col1white);
    gap: 4px;
}

.lang-dropdown.active {
    transform: translateY(0);
    pointer-events: auto;
    display: flex;
    opacity: 1;
}

/* ANC-HERO */

.hero {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 64px;
    width: 100%;
    background-image: url('img/hero-bg.svg');
    aspect-ratio: 1440 / 500;
    background-repeat: no-repeat;
    box-sizing: border-box;
}


.hero-left {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    max-width: 590px;
    gap: 36px;
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease;
    overflow-x: visible !important;
}

.hero-left h1 {
    font-size: 48px !important;
    text-align: start !important;
}

.hero-left p {
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.hero-right img {
    height: 400px;
    width: auto;
    border-radius: 16px;
}

.hero-right {
    opacity: 0;
    transform: translateX(200px);
    transition: all 0.8s ease;
    overflow: hidden;
}

.hero-left.animate-left {
    transform: translateX(0);
}

.hero-right.animate-right {
    transform: translateX(0);
}

.hero-left.visible,
.hero-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ANC-ABOUT-US */

.about-us {
    position: relative; /* Needed for absolute positioning of children */
    width: 100%;
    overflow: hidden; /* Prevents any overflow from the absolutely positioned image */
    margin-top: 32px;
}

.about-us h1 {
    position: absolute;
    width: 100%;
    margin-top: 32px;
    background-color: var(--col1whiteTr75);
}

.about-bg-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1920/800; /* Maintains the aspect ratio */
    display: block; /* Removes default img spacing */
    object-fit: cover; /* Ensures the image covers the area while maintaining aspect ratio */
    border-radius: 28px;
}

.about-content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    right: 32px;
    top: 0;
    width: 100%;
    background-color: var(--col1whiteTr75);
    padding: 40px;
    border-radius: 16px;
    max-width: 755px;
    gap: 20px;
    translate: 0 40%;
}

.about-content p {
    font-size: 20px;
}

.button-lefter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

/* ANC-Specilization */

.hexagon-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 hexes per full row */
    gap: 20px;
    justify-items: center;
    max-width: 800px;
    margin: auto;
}

.hexagon-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 142px;
    height: 142px;
    position: relative;
    text-align: center;
    background: none;
}

.hexagon-parent p {
    font-size: 14px;
    max-width: 120px;
    z-index: 1;
}

.hexagon {
    width: 142px;
    height: 142px;
    background: none;
    transition: 0.3s;
    position: absolute;
    border: 1px solid red dashed;
}

.hexagon:hover {
    filter: drop-shadow(0px 0px 5px var(--col3PDLredTr50));
    
}

.hexagon-parent:nth-child(1),
.hexagon-parent:nth-child(2),
.hexagon-parent:nth-child(3) {
    margin-top: 0px; /* half height of the hexagon */
}






/* ANC-Specialization */



.general-section-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-block: 48px;
}

.general-section-header h1 {
    background-color: var(--col1white);
    z-index: 2;
    padding-inline: 32px;
}

.general-section-header hr {
    width: 90vw !important;
    position: absolute;
    box-sizing: border-box !important;
}

.spec-parent {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: auto;
    padding-inline: 64px;
    gap: 64px;
}

.specialization-left {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 755px;
    gap: 20px;
}

.specialization-left p {
    font-size: 20px;
}

.bold {
    font-weight: bold !important;
    font-size: 20px;
}

.specialization-right img {
    width: 700px;
    height: auto;
}

/* ANC-Services */

.services {
    padding-inline: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    box-sizing: border-box;
    margin-block: 64px;
}

.service-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
}

.service {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 160px;
    height: 160px;
    border-radius: 8px;
    background-color: var(--col1white);
    filter: drop-shadow(0px 0px 1px var(--col3PDLred));
    transition: 0.3s;
}

.service:hover {
    filter: drop-shadow(0px 0px 4px var(--col3PDLred));
    transform: scale(110%);
    transition: 0.3s;
}

.service img {
    width: 80px;
    height: 80px;
    padding-block: 14px;
}

.service h3 {
    font-size: 20px;
}

.service h2 {
    font-size: 20px !important;
}

/* ANC-Partners */

.partners-head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-direction: column;
    width: 100%;
}


.partner-head-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    font-size: 20px;
    flex-direction: column;
    width: 100%;
}

.partner-head-buttom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

.partner-element {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 244px;
    gap: 40px;
}

.partner-element-devider {
    width: 2px;
    height: 135px;
    background-color: var(--col3PDLred);
}

.partner-element-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.partner-element-head img {
    width: 32px;
    height: 32px;
}

.partner-element-head h2 {
    font-size: 20px;
}

.partners {
    padding-inline: 64px;
    margin-bottom: 64px;
}

.partners-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-block: 32px;
}

.brend {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 150px;
    height: 80px;
    background-color: var(--col3PDLredTr50);
    border-radius: 8px;
    padding-inline: 64px;
    filter: grayscale(1);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 rgba(0,0,0,0);
    cursor: pointer;
}

.brend img {
    width: auto;
    height: 64px;
}

.brend:hover {
    filter: grayscale(0);
    box-shadow: inset 0 0 4px var(--col3PDLred), inset 0 0 4px rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    background-color: var(--col1white);
}


/* ANC-Experience */

.experience {
    width: 100%;
    box-sizing: border-box;
    background-color: var(--col2black);
    padding-block: 32px;
    border-radius: 32px;
}

.experience h1 {
    color: var(--col1white);
    margin-bottom: 32px;
}

.experience-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 64px;
    gap: 32px;
    flex-wrap: wrap;
}

.experience-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--col1white);
    height: 96px;
    padding-inline: 8px;
    border-radius: 48px;
    gap: 16px;
    width: 320px;
}

.experience-item img {
    width: 56px;
    height: 56px;
}

.experience-item-texts {
    height: 100%;
    padding-block: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exp-img-container {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background-color: var(--col3PDLredTr50);
}

.exp-txt {
    font-size: 20px;
}

.exp-num {
    font-size: 24px;
    font-weight: bold;
}


/* ANC-Key-Advantages */

.our-key-advantages-body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
    flex-wrap: wrap;
}

.our-key-advantages-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background-color: var(--col3PDLredTr50);
    max-width: 420px;
    padding: 32px;
    border-radius: 28px;
    gap: 32px;
    transition: 0.3s;
}

.our-key-advantages-item:hover {
    box-shadow: 0px 0px 4px var(--col3PDLred);
    transition: 0.3s;
    scale: 102%;
}

.our-hey-advantages-head {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.our-hey-advantages-head p {
    font-size: 20px;
}

.our-key-advantages-item-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
}

.our-key-advantages-item-head img {
    width: 96px;
    height: 96px;
}

.our-key-advantages-item-head h3 {
    font-size: 20px;
}

/* ANC-News */

.news-and-licence {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 64px;
    padding-block: 64px;
}

.news-parent {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-inline: 64px;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
}

.news-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--col1white);
    filter: drop-shadow(0px 0px 2px var(--col3PDLred));
    flex-direction: column;
    border-radius: 8px;
    width: 316px;
    box-sizing: border-box;
    transition: 0.3s;
}

.news-item:hover {
    transform: scale(102%);
    transition: 0.3s;
    filter: drop-shadow(0px 0px 4px var(--col3PDLred));
}

.news-item img {
    width: 316px;
    height: 200px;
    border-radius: 8px 8px 0 0;
}

.news-details {
    padding: 16px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    height: 156px;
}

.news-date-cat {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    opacity: 0.75;
}

.news-details h2 {
    font-size: 16px;
    min-height: 57px;
}

.news-description {
    opacity: 0.5;
    font-size: 14px;
}

/* ANC-Licances */

.licence-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 64px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 32px;
}

.licance-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 470px;
    width: 100%;
    flex-direction: column;
    gap: 22px;
    border-radius: 8px;
    padding: 16px;
    transition: 0.3s;
    background-color: var(--col1white);
}

.licance-item h2 {
    font-size: 20px;
}

.licance-item p {
    font-size: 16px;
    opacity: 0.5;
}

.licance-item button {
    padding-inline: 0 !important;
}

.licance-item:hover {
    filter: drop-shadow(0px 0px 2px var(--col3PDLred));
    transition: 0.3s;
}

.licence-item-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}


/* ANC-FOOTER */

footer {
    background-color: var(--col2black);
    border-radius: 32px 32px 0 0;
    padding: 64px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 64px;
}

.logo-sub, .contact-info, .links, .map, .social-media {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

footer h2 {
    font-size: 20px;
}

footer a {
    display: flex;
    color: var(--col1whiteTr75);
    transition: 0.3s;
    max-width: 200px;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.footer-a-wrap {
    align-items: flex-start;
}

footer h2 {
    color: var(--col1white);
}

footer a:hover {
    transform: scale(102%);
    color: var(--col1white);
    transition: 0.3s;
}

footer ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
}

.footer-logo img {
    width: auto;
    height: 64px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(232deg) brightness(105%) contrast(102%);
}

.subscribe {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.subscribe-input {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe label {
    color: var(--col1white);
    font-size: 16px;
    max-width: 280px;
    font-weight: bold;
}

.subscribe-input input {
    height: 40px;
    border: 0;
    border-radius: 8px 0 0 8px;
    padding-inline: 8px;
}

.subscribe-input input:focus {
    outline: none;
}

.subscribe-input button {
    border-radius: 0 8px 8px 0;
    border: 1px solid var(--col3PDLred);
}

.subscribe-input button:hover {
    border: 1px solid var(--col1white);
    transition: 0.3s;
    transform: scale(100%);
}

#map {
    width: 380px;
    height: 285px;
    padding-bottom: 40px;
}

.map {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.map-wrapper {
    border-radius: 16px;
    width: 380px;
    height: 285px;
    overflow: hidden;
}

.social-media ul {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 550px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.social-media img {
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border-radius: 20px;
    border: 2px solid transparent;
}

.social-media img:hover {
    border: 2px solid red;
    border-radius: 20px;
    transition: 0.3s;
}


/* -------------------------------------------------------------READ */

.read-container-parent {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 32px;
}

.read-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
    width: 100%;
    padding: 24px;
    flex-direction: column;
    box-shadow: 0 0 2px var(--col2black);
    border-radius: 28px;
    gap: 24px;
    margin-inline: 8px;
    box-sizing: border-box;
}

.read-head-h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.read-head-h1 h1 {
    font-size: 32px;
}

.read-head-h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
}

.read-head-h2 h2 {
    font-size: 24px;
}

.read-list-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.read-list-container ul {
    max-width: 589px;
    margin-left: 40px;
    box-sizing: border-box;
    gap: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.read-list-container ul li {
    list-style: disc;
}

.read-list-container ul li::marker {
    color: var(--col3PDLred);
}

.read-list-container img {
    width: 100%;
    max-width: 355px;
    height: auto;
    border-radius: 16px;
}

.read-text-container {
    width: 100%;
    padding-left: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.read-black {
    background-color: var(--col2black);
    padding-inline: 24px;
    border-radius: 28px;
    width: 100%;
    margin-left: -24px;
    padding-bottom: 32px;
    margin-bottom: -32px;
}

.read-black.middle {
    margin-bottom: 0px;
}

.read-black h2 {
    font-size: 24px;
    color: var(--col1white);
    text-align: center;
    margin-block: 32px;
}

.read-black-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.read-black-item {
    background-color: var(--col1white);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    max-width: 410px;
    width: 100%;
    border-radius: px;
    padding: 16px;
    height: 128px;
    border-radius: 64px;
    box-sizing: border-box;
}

.read-black-img {
    background-color: var(--col3PDLredTr50);
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 48px;
    flex-shrink: 0;
    flex-grow: 0;
}

.read-black-img img {
    width: 64px;
    height: 64px;
}

.read-black-item h3 {
    font-size: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.read-big-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.read-big-img-container img {
    max-width: 100%;
    border-radius: 28px;
    height: auto;
    max-height: 500px;
    box-shadow: 0 2px 4px black;
}

.read-content-lisance-img {
    width: 100%;
}

.read-form-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.form-main {
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-inline: 32px;
    box-sizing: border-box;
    gap: 16px;
}

.form-main div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.form-main div input, .form-main div textarea {
    width: calc(100% - 16px);
    height: 40px;
    padding-inline: 8px;
    border: 1px solid var(--col3PDLred);
    border-radius: 8px;
}

.form-main div textarea {
    height: 80px;
    padding-top: 8px;
}

.form-main div label {
    font-weight: bold;
}

.form-main div input[type="file"]::file-selector-button {
    height: 40px;
    border: 0;
    margin-left: -16px;
    padding-left: 32px;
    background-color: var(--col3PDLred);
    color: var(--col1white);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    padding-right: 24px;
}

.form-main div input[type="file"]::file-selector-button:hover {
    background-color: var(--col2black);
    transition: 0.3s;
}

.career-section-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 80px;
    width: 100%;
    padding-block: 24px;
}


.career-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.career-item {
    max-width: 500px;
    width: 100%;
    height: auto;
    position: relative;
}

.career-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.career-item a {
    position: absolute;
    height: 40px;
    padding-inline: 12px;
    border-radius: 12px;
    background-color: var(--col2black);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--col1white);
    top: 12px;
    right: 12px;
    font-weight: bold;
    gap: 12px;
}

.career-item a img {
    width: 20px;
    height: 20px;
    border-radius: 0;
}

.vacancy-texts {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

.vacancy-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 32px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.vacancy-head p {
    height: 40px;
    padding-inline: 12px;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid var(--col3PDLred);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.vacancy-head p img {
    width: 20px;
    height: 20px;
}



@media only screen and (max-width: 1400px) {
    nav {
        padding-inline: 32px;
    }

    .menu {
        gap: 8px;
    }

    .menu li a {
        padding: 4px 4px;
    }

    .hero {
        padding-inline: 32px;
        flex-direction: column-reverse;
        gap: 32px;
        margin-top: 112px;
    }

    .hero-right img {
        width: 80vw;
        height: auto;
        max-width: 720px;
    }

    .about-text-parent {
        margin-top: -20vh !important;
    }


    .about-us {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 32px;
    }

    .about-bg-img {
        border-radius: 28px 28px 0 0;
        max-width: 720px;
    }

    .about-content {
        position: relative;
        right: 0;
        border-radius: 0 0 16px 16px;
        translate: 0 0;
        max-width: 720px;
        box-sizing: border-box;
    }

    .spec-parent {
        padding-inline: 32px;
    }

    .specialization-right img {
        width: 480px;
        height: auto;
    }

    .partner-head-buttom {
        max-width: 650px;
        gap: 32px;
    }

    .partner-element-devider {
        display: none;
    }

    .partners {
        padding-inline: 32px;
    }
}

@media only screen and (max-width: 1026px) {
    .experience-parent {
        padding-inline: 16px;
        justify-content: center;
        align-items: center;
    }

    .spec-parent {
        flex-wrap: wrap;
    }
    
    .career-item {
        padding-inline: 32px;
    }
    
    .career-item a {
        right: 44px;
    }

    .licence-parent {
        overflow: scroll;
        flex-wrap: nowrap;
        gap: 32px;
        width: 100%;
        padding-inline: 16px;
        box-sizing: border-box;
    }

    .licance-item {
        min-width: 90%;
        max-width: 90%;
        flex-shrink: 0;
    }
}

@media only screen and (max-width: 792px) {
    .news-parent {
        padding-inline: 16px;
        justify-content: center;
        align-items: center;
    }

    .specialization-right img {
        width: 100%;
        padding-inline: 0;
    }

    .read-list-container {
        flex-direction: column;
        align-items: center;
    }

    .read-list-container ul {
        width: 100%;
    }

    .read-form-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .vacancy-head {
        justify-content: center;
        padding: 16px;
        flex-direction: column;
        gap: 8px;
    }
    
    .vacancy-head p {
        width: 100%;
        box-sizing: border-box;
    }

    .partners-parent {
        align-items: flex-start;
        flex-wrap: nowrap;
        overflow: scroll;
        justify-content: flex-start;
    }

    .our-key-advantages-body {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow: scroll;
        align-items: flex-start;
        padding-inline: 8px;
        gap: 8px;
        width: auto;
        padding-block: 16px;
    }

    .our-key-advantages-container {
        max-width: 100%;
        overflow: hidden;
    }

    .our-key-advantages-item {
        max-width: 300px;
        min-width: 300px;
        padding: 20px;
        box-sizing: border-box;
        height: 377px;
        justify-content: flex-start;
    }

    .our-key-advantages-item-head {
        gap: 16px;
    }
}

@media only screen and (max-width: 650px) {
    
    .service {
        width: 120px;
        height: 120px;
        justify-content: center;
    }

    .service img {
        width: 50px;
        height: 50px;
    }

    .service h3, .service h2 {
        font-size: 14px !important;
    }

    .service-parent {
        justify-content: center;
    }

    .menu {
        display: none;
    }

    .hamburger-menu {
        display: flex !important;
    }

    footer {
        padding: 32px;
    }

    .about-text-parent {
        margin-top: -56px !important;
        padding-inline: 16px !important;
    }

    .about-text {
        padding: 16px !important;
    }

    .about-text-parent h1 {
        padding: 16px !important;
        font-size: 20px !important;
    }

    .partner-head-buttom {
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (max-width: 425px) {
    .read-black h2 {
        font-size: 20px;
    }


    .read-black-item {
        padding: 8px;
    }

    .read-black-img {
        background-color: var(--col3PDLredTr50);
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 48px;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .read-black-img img {
        width: 50px;
        height: 50px;
    }

    .read-black-item h3 {
        font-size: 16px !important;
    }

    .read-container {
        padding: 12px;
    }

    .news-item {
        width: 100%;
    }

    .news-item img {
        width: 100%;
        height: auto;
    }

    .news-details {
        height: auto;
    }

    .news-details h2 {
        font-size: 16px;
        min-height: fit-content;
    }
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
    background-color: var(--col2black);
    color: var(--col1whiteTr75);
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
}

.copyright:hover {
    color: var(--col1white);
    transition: 0.3s;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.ham-menu-line {
    background-color: var(--col3PDLred);
    width: 32px;
    height: 3px;
    border-radius: 1.5px;
    transition: all 0.3s ease-in-out;
}

/* X state */
.hamburger-menu.active .ham-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-menu.active .ham-menu-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .ham-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -5px);
}

.lang-ham {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.license {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-block: 96px;
    width: 100%;
}

.license-body {
    max-width: 869px;
    width: calc(100%-16px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--col3PDLredTr50);
    border-radius: 16px;
}

.license img {
    width: 100%;
    height: auto;
    border: 1px solid var(--col3PDLred);
    border-radius: 8px;
}

.pdf-container {
    width: 100%;
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.pdf-download-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    border: 1px solid var(--col3PDLred);
    padding: 16px;
    border-radius: 12px;
    box-sizing: border-box;
    color: var(--col3PDLred);
}

.pdf-download-btn:hover {
    background-color: var(--col3PDLredTr50);
    transition: 0.3s;
    cursor: pointer;
    color: var(--col2black);
}

.iframe {
    width: 100%;
    height: 600px;
    border-radius: 12px;
}