@font-face {
    font-family: Lexend;
    src: url(./assets/Lexend-Regular.ttf);
}
@font-face {
    font-family: Lexend-bold;
    src: url(./assets/Lexend-Bold.ttf);
}
@font-face {
    font-family: Lexend-light;
    src: url(./assets/Lexend-Light.ttf);
}
@font-face {
    font-family: "Avenir LT Std";
    src: url(./assets/AvenirLTStd-Roman.otf);
}

*,
*::before,
*::after,
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --primary-clr: #F1962E;
    --secondary-clr: #0A232D;
    --bg-clr: #F8F6F0;
    --white: #ffffff;
    --white-hover: rgba(255, 255, 255, 1);
    --black: #000000;
    --black-txt: rgba(10, 35, 45, 0.9);
    --black-txt-hover: rgba(10, 35, 45, 0.8);
    --black-headline: rgba(10, 35, 45, 1);

    --max-width: 1200px;
    --shadow: 0 4px 10px 4px rgba(10, 35, 45, .04);
    
}
html {
    scroll-behavior: smooth;
}
body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--white);
    overflow-x: hidden !important;
    background-color: var(--white);
}
body>* {
    flex: 0 0 100%;
    scroll-behavior: smooth;
}
/* SCROLL BAR STYLES */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background-color: var(--secondary-clr);
    opacity: 0.1;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--primary-clr);
    border-radius: 0;
    outline: 2px solid var(--secondary-clr);
    outline-offset: -1px;
}
/* --------------------------------------- MOBILE MENU -------------------------------------------- */
#menu {
    z-index: 3;
    width: 100%;
}

#menu-bar {
    width: 50px;
    height: 50px;
    margin: 25px 10px 20px auto;
    cursor: pointer;
    padding: 10px;
}

.bar {
    height: 3px;
    width: 30px;
    background-color: var(--white);
    display: block;
    border-radius: 0;
    transition: 0.3s ease;
}

#bar1 {
    transform: translateY(5px);
}
#bar2 {
    transform: translateY(10px);
}
#bar3 {
    transform: translateY(15px);
}

.nav {
    transition: 0.5s ease;
    display: none;
}

.nav ul {
    padding: 0 22px;
}

.mob-link-wrap li {
    list-style: none;
    padding: 12px 20px;
    text-align: center;
}
.mob-link-wrap .button-container {
    margin-top: 30px;
}
.nav li a {
    text-decoration: none;
}

.menu-bg,
#menu {
    top: 0;
    right: 0;
    position: absolute;
}

.menu-bg {
    z-index: 2;
    width: 0;
    height: 0;
    margin: 30px 20px 20px 0;
    background: var(--secondary-clr);
    border-radius: 0;
    transition: 0.3s ease;
}

.change {
    display: block;
}

.change .bar {
    background-color: var(--white);
}

.change #bar1 {
    transform: translateY(12px) rotateZ(-45deg);
}

.change #bar2 {
    opacity: 0;
}

.change #bar3 {
    transform: translateY(6px) rotateZ(45deg);
}

.change-bg {
    width: 110vw;
    height: 110vh;
    transform: translate(10%, -10%);
}
#nav svg {
    width: 45px;
    height: 45px;
}
/* --------------------------------------- END OF MOBILE MENU -------------------------------------------- */
/* --------------------------------------- FLOATING CTA -------------------------------------------- */
.floating-cta-wrap {
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    pointer-events: none;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}
.floating-cta {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--secondary-clr);
    pointer-events: all;
    box-shadow: .5px .5px .5px .5px rgba(0, 0, 0, .1);
}
.floating-cta-pc {
    display: none;
}
.floating-cta-pc svg {
    width: 25px;
    height: 25px;
    fill: var(--secondary-clr);
    stroke: var(--secondary-clr);
}
.floating-cta svg {
    width: 35px;
    height: 35px;
}
/* --------------------------------------- END OF FLOATING CTA -------------------------------------------- */
.logo {
    position: relative;
    z-index: 5;
}
.nav-mob ul {
    width: fit-content;
    margin: 150px auto 50px;
}
a {
    text-decoration: none;
    position: relative;
    color: unset;
    transition: all .3s ease;
}
.nav a {
    color: var(--white-hover);
}
.nav a:hover {
    color: var(--white);
    transition: all .3s ease;
}
[data-button] {
    min-width: 180px;
    padding: 9px 36px;
    color: var(--white-hover);
    border: 1px solid var(--white-hover);
    background-color: transparent;
}
a:hover:not([data-button], .footer-link, #menu-ico-list>a):after {
    content: '';
    width: 100%;
    height: 1.5px;
    background-color: var(--primary-clr);
    position: absolute;
    left: -15%;
    bottom: -70%;
}
[data-button]:hover {
    color: white !important;
    box-shadow: 0 0 0 1px white;
}
.footer-link {
    color: var(--black-txt-hover) !important;
}
.footer-link:hover {
    color: var(--black) !important;
}
a>svg {
    stroke: var(--black-txt-hover);
}
a:hover>svg {
    stroke: var(--black);
    transform: scale(1.3);
    transition: .5s ease;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: none;
    outline: none;
    box-shadow: none;
}
.headline {
    font-family: Lexend-bold, serif !important;
    font-weight: 700 !important;
    font-size: 39px !important;
    line-height: 55px !important;
    color: var(--white);
}
.headline:not(section .headline, header .headline) {
    color: var(--black-headline);
}
.headline:not(h1) {
    font-size: 36px !important;
    line-height: 45px !important;
    margin-bottom: 30px;
}
.sub-headline {
    font-family: "Avenir LT Std", sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    margin-bottom: 35px;
    color: var(--primary-clr);
}
.link {
    font-family: "Avenir LT Std", sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 28px !important;
}
.text {
    font-family: Lexend-light, serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    line-height: 20px !important;
}
.text-b {
    font-family: Lexend, serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 20px !important;
}
.m-20 {
    margin-bottom: 20px;
}
.m-0 {
    margin: 0;
}
.bl {
    color: var(--black-txt) !important;
}
.wh {
    color: var(--white) !important;
}
.gl {
    color: var(--primary-clr);
}
header,
main,
footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
main {
    flex-direction: column;
}
/* ================================== HEADER ================================== */
header {
    height: 95vh;
    min-height: 95vh;
    flex-direction: column;
    justify-content: flex-start;
    background-image: url(./assets/hero.jpg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
}
.navigation {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 20px 0 20px 15px;
}
.navigation svg {
    aspect-ratio: 1 / 1;
    width: 60px;
    height: 60px;
}
.nav {
    list-style: none;
}
.nav-pc {
    display: none;
}
.hamburger {
    width: 50px;
    height: 50px;
    margin: auto 0 auto auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #000;
}
.hamburger>span {
    width: 100%;
    height: 3px;
    background-color: #fff;
}
.headline-container {
    width: 100%;
    max-width: var(--max-width);
    height: 100%;
    margin: 100px auto auto;
    padding: 0 15px;
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
}
header .headline-container h1 {
    max-width: 630px;
}
header .button-container {
    margin: 40px 0 0 !important;
}
.headline-container>p {
    color: var(--primary-clr);
    font-family: Avenir LT Std, sans-serif;
    font-weight: 400;
    font-size: 14px;
}
.headline-container>h1 {
    color: var(--white);
    font-family: Lexend, sans-serif;
    font-weight: 700;
    font-size: 37px;
}
.headline-container>.button-container {
    margin: 50px 0 100px 0;
}

/* ================================== SECTION 0 ================================== */
section {
    width: 100%;
    max-width: calc(1200px + (100vw - 1200px) / 2);
    display: flex;
    position: relative;
    z-index: 0;
}
.section-0 {
    margin: -20px 0 50px auto;
    background-color: var(--secondary-clr);
}
.section-0 .section-text {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-flow: row wrap;
    gap: 50px;
    padding: 50px 15px;
    margin: 0 auto 0 0;
    position: relative;
}
.section-0 .section-text>article:nth-child(1) {
    width: 280px;
}
.section-0 .section-text>article:nth-child(2) {
    width: 280px;
}
[data-line],
article {
    position: relative;
}
[data-line]::before {
    content: "";
    background-color: var(--primary-clr);
    width: 25px;
    height: 1.5px;
    position: absolute;
    top: -15px;
    left: 0;
}
/* ================================== SECTION 1 ================================== */
#usluge {
    margin: 0 auto 40px 15px;
}
.usluge .title-container {
    width: 100%;
    max-width: calc(1200px + (100vw - 1200px) / 2);
    margin: 50px 15px;
    color: var(--primary-clr);
    text-align: start;
}
.usluge .title-container.title-left span {
    margin-left: 15px;
}
.title-left {
    padding-top: 100px;
}
.usluge {
    flex-direction: column;
    position: relative;
    margin: 0 0 100px auto;
    height: 650px;
}
.usluge p.text-b {
    max-width: 300px;
}
.usluge>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.usluge .section-text {
    position: absolute;
    z-index: 2;
    padding: 40px 15px 25px;
}
.usluge .section-text .title-container {
    margin: 0 auto 20px 0;
}
.usluge .section-text h2 {
    margin-bottom: 20px;
}
.usluge .section-text p {
    margin-bottom: 30px;
}

.usluge .overlay {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
/* ================================== SECTION 2 ================================== */
.section-2 {
    color: var(--white);
    background-color: var(--bg-clr);
    height: 500px;
}

/* ================================== SECTION 3 ================================== */
.section-3 {
    flex-direction: column;
    height: 560px;
    margin: 0 0 150px auto;
}
.section-3 p {
    width: 290px;
}
/* ================================== SECTION 4 ================================== */
.section-4 {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    color: var(--black-txt);
    margin-bottom: 20px;
}
#o-nama p {
    max-width: 320px;
}
.section-4 .section-text {
    background-color: var(--bg-clr);
    width: 100%;
    padding: 60px 15px;
    margin: auto;
    order: -1;
    text-align: center;
}
.section-4 article {
    width: 290px;
    margin: auto;
}
@media screen and (max-width: 1023px) {
    .section-4 article::before,
    .icon-card h3::before {
        right: 0;
        margin: auto;
    }
    #o-nama {
        text-align: center;
    }
}


.icon-container {
    width: calc(100% - 30px);
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: -35px 15px 0;
    padding: 35px 15px;
    background-color: var(--white);
    box-shadow: var(--shadow);
}
.icon-card {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
    text-align: center;
}
.icon-card svg {
    margin-bottom: 40px;
    transform: scale(0.9);
}
.icon-card h3 {
    margin-bottom: 30px;
}
.icon-card p {
    margin-bottom: 0;
}
.card-1 .text {
    width: 230px;
}
.card-2 .text {
    width: 230px;
}
.card-3 .text {
    width: 240px;
}
/* ================================== SECTION 5 ================================== */

.section-5 {
    width: calc(100% - 15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: 0 15px 150px;
    background-color: var(--bg-clr);
    
}
.image-wrap {
    width: 100%;
    height: auto;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin: auto;
    padding: 40px 0 60px;
}
.image-wrap img {
    width: 150px;
}
/* ================================== SECTION 6 ================================== */
.section-6 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 150px;
    flex-direction: column;
}
.section-6 .title-container .headline {
    margin-bottom: 40px;
    color: var(--black);
}
.card-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 !important;
}
.card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .55);
}
.card h3 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 4;
    margin: 0 !important;
    color: var(--white);
    z-index: 4;
}
/* ================================== SECTION 7 ================================== */
.section-7,
.section-cta {
    width: 100%;
    padding: 50px 15px;
    background-color: var(--secondary-clr);
    text-align: center;
}
.section-cta {
    margin-bottom: 50px;
}
.section-cta .button-container {
    width: fit-content;
    margin: auto;
}
/* =============================== FORM ===============================*/
.section-7 {
    margin: 0;
    width: 100%;
    margin: 0;
    padding: 100px 25px;
    width: 100% !important;
    max-width: 100% !important;
}
.section-7 .center-wrap {
    width: 100%;
    max-width: 1150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: auto;
}
.section-7 h5,
.section-cta h5 {
    margin-bottom: 50px;
    font-size: 31px;
}
.button-container {
    display: flex;
}

.section-7 .button-container {
    justify-content: center;
    width: 100%;
}
.form {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input {
    width: 100% !important;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input input {
    height: 50px;
    padding: 0 20px;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border: 1px solid var(--white-hover);
    color: rgba(255, 255, 255, 0.8);
    font-family: Lexend-light;
}

.input textarea {
    width: 100%;
    height: 200px;
    padding: 15px 20px;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border: 1px solid var(--white-hover);
    color: var(--white-hover);
}

.input input:focus,
.input input:focus-visible,
.input input:focus-within,
.input input:active,
.input input:target,
.input textarea:focus,
.input textarea:focus-visible,
.input textarea:focus-within,
.input textarea:active,
.input textarea:target {
    border: 1px solid var(--white);
    color: var(--white);
    color: rgba(255, 255, 255, 0.8);
    font-family: Lexend-light;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--white);
    opacity: 1;
    color: rgba(255, 255, 255, 0.8);
    font-family: Lexend-light;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--white);
    color: rgba(255, 255, 255, 0.8);
    font-family: Lexend-light;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--white);
    color: rgba(255, 255, 255, 0.8);
    font-family: Lexend-light;
}
/* ================================== FOOTER ================================== */
footer {
    width: 100%;
    height: auto;
    color: var(--black-txt);
    background-color: #EAF6FA;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: auto 0 0;
}
.footer-wrap {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 45px 15px 0;
}
footer .logo-container {
    width: fit-content;
    margin: 0 auto 40px 0;
}
.footer-wrap .logo-container svg {
    width: 90px;
    height: 90px;
}
.list-wrap {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 20px;
}
.list:nth-child(2) {
    margin-left: 60px;
    margin-right: 60px;
}
.list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    margin-bottom: 20px;
}
.ico-list {
    width: fit-content;
    margin: 0;
    gap: 25px;
}
/* hamburger menu linkovi */
.mob-link-wrap .ico-list {
    padding: 0;
}
.mob-link-wrap li {
    padding-left: 60px;
    padding-right: 60px;
}
.logo-container {
    display: flex;
    justify-content: flex-start;
    margin-left: 70px;
}

.list a {
    color: var(--black-txt);
}

.ico-list a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    color: var(--black-txt);
}
.pc-link {
    display: none;
}
.footer-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background-color: var(--secondary-clr);
    color: #EBE5D3;
    padding: 10px 15px;
    text-align: center;
}
.footer-inner>p {
    font-size: 14px !important;
}

/* ================================================================================================================== */
/* ================================================================================================================== */
.card img {
    transform: scale(1);
}
#scale {
    transform: scale(1.2);
}

.card:hover img {
    transform: scale(1.2);
    transition: all .5s ease;
}
.card:hover #scale {
    transform: scale(1.4);
}
.card:hover h3 {
    left: 5%;
    bottom: 3%;
    transition: all .5s ease;
}
.card:hover .overlay {
    /* background: linear-gradient(30deg,
                                rgba(0, 0, 0, 1) 0%,
                                rgba(0, 0, 0, 0.4) 25%,
                                rgba(0, 0, 0, 0) 100%); */
    background-color: transparent;
    transition: .3s ease;
}
.float {
    animation: float 20s ease-in-out 0s infinite normal forwards;
}
.text.animated {
    opacity: 0;
}
.text.animation {
    animation: fade-in 1s ease-out .5s normal forwards;
}
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(60%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    10%,
    30%,
    50%,
    70% {
        transform: translateY(-3px);
    }

    20%,
    40%,
    60% {
        transform: translateY(3px);
    }

    80% {
        transform: translateY(1.4px);
    }

    90% {
        transform: translateY(-1.4px);
    }
}
.image-wrap.animation>img {
    opacity: 0;
    animation: slide-in;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
}
.image-wrap>img:nth-child(2) {
    animation-delay: 0.8s;
}
.image-wrap>img:nth-child(3) {
    animation-delay: 1.1s;
}
.image-wrap>img:nth-child(4) {
    animation-delay: 1.4s;
}
.section-cta a,
.headline-container a {
    animation: btn-cta 2s linear 1s normal forwards;
}

.animation>.icon-card>svg {
    animation: pop-up;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@keyframes pop-up {
    0% {
        transform: scale(0.9);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes btn-cta {
    5% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    25% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    50% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    75% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    95% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}
@keyframes slide-right {
    0% {
        transform: translateX(-150%) ;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ================================================================================================================== */
#menu-ico-list>a{
    color: var(--white-hover) !important;
}
#menu-ico-list>a>svg {
    fill: var(--white-hover) !important;
}
#menu-ico-list>a>svg.unfill {
    fill: none !important;
}
#menu-ico-list>a:hover {
    color: var(--white) !important;
}

#menu-ico-list>a:hover>svg {
    fill: var(--white) !important;
}
.floating-cta-pc svg {
    transform: scale(0.9);
}
.floating-cta:hover svg {
    transform: scale(.8);
}
/*======================================= MEDIA QUARIES ============================================ */

@media screen and (min-width: 360px) {
    #usluge {
        margin: 0 auto 40px 25px;
    }
    .section-0 .section-text,
    .section-7,
    .section-cta {
        padding: 50px 25px;
    }
    .headline-container {
        padding: 0 25px;
    }

    .navigation {
        padding: 20px 0 20px 25px;
    }
    #menu-bar {
        margin: 25px 25px 20px auto;
    }
    .usluge .title-container.title-left span {
        margin-left: 25px;
    }
    .usluge .section-text {
        padding: 40px 25px 25px;
    }
    .section-4 .section-text {
        padding: 60px 25px;
    }
    .icon-container {
        padding: 35px 25px;
    }
    .icon-container,
    .section-5 {
        margin: -35px 25px 0;
        width: calc(100% - 50px);
        
        max-width: 450px;
    }
    .section-5 {
        padding: 40px 15px 60px;
        margin: 0 25px 150px;
    }
    .footer-wrap {
        padding: 45px 25px 0;
    }
    .section-3 {
        height: 525px;
    }
    .section-3 p {
        width: 100%;
        max-width: 387px;
    }
    .section-2 p {
        width: 100%;
        max-width: 401px;
    }
    .section-1 p {
        width: 95%;
        max-width: 450px;
    }
    
}
@media screen and (min-width: 440px) {
    .section-3 {
        height: 460px;
    }
    .section-1 {
       max-height: 570px;
    }
    .section-1 .section-text h2 {
        width: 390px;
    }
    .section-2 {
        height: 435px;
    }
}
@media screen and (min-width: 450px) {
    .section-5 {
        align-items: flex-start;
    }
}
@media screen and (min-width: 550px) {
    .list-wrap {
        flex-flow: row wrap;
    }
        .logo-container {
            margin-bottom: 80px;
        }
    .mob-link-wrap .ico-list {
        margin-top: 20px;
    }
}
@media screen and (min-width: 650px) {
    .list-wrap {
        justify-content: space-between;
    }
}
@media screen and (min-width: 768px) {
    .section-0 .section-text>article:nth-child(1) {
        max-width: unset;
        width: 347px;
    }
    .section-0 .section-text>article:nth-child(2) {
        max-width: unset;
        width: 313px;
        
    }
    .section-1 h2 {
        width: 330px;
    }
    #o-nama p {
        max-width: unset;
        width: 590px;
    }
    .icon-card p {
        padding: 0;
    }
    .headline,
    .headline:not(h1) {
        font-size: 40px !important;
        line-height: 50px !important;
    }

    .sub-headline {
        font-size: 20px !important;
        line-height: 24px !important;
    }
    #menu-bar {
        margin: 55px 55px 40px auto;
    }
    footer {
        flex-flow: row wrap;
        justify-content: flex-start;
        gap: 0;
        padding-top: 85px;
    }
    .footer-wrap {
        width: 90%;
        margin: 0 auto 85px;
    }
    .logo-container {
        width: fit-content;
        margin: 0 40px 0 0;
    }
    .list {
        padding: 0 15px;
    }
    .list-wrap {
        width: fit-content;
        justify-content: space-between;
    }
    .footer-inner {
        padding: 15px 20px !important;
    }

    .navigation {
        padding: 25px 35px;
    }
    .navigation svg {
        width: 85px;
        height: 85px;
    }
    .headline-container {
        padding: 0 35px;
        margin: 90px auto auto;
    }
    .section-0 .section-text {
        padding: 80px 2% 80px 25px;
    }
    .icon-card {
        flex: unset;
        width: 275px;
        max-width: unset;
    }
    .image-wrap {
        max-width: 90%;
    }
    .card-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .pcard-1 {
        grid-area: 1 / 1 / 3 / 2;
    }
    .pcard-2 {
        grid-area: 1 / 2 / 2 / 3;
    }
    .pcard-3 {
        grid-area: 3 / 1 / 7 / 2;
    }
    .pcard-4 {
        grid-area: 2 / 2 / 5 / 3;
    }
    .pcard-5 {
        grid-area: 7 / 1 / 8 / 1;
    }
    .pcard-6 {
        grid-area: 5 / 2 / 8 / 3;
    }
    .section-cta .center-wrap {
        width: 700px;
        margin: auto;
    }
    .section-3 {
        height: 470px;
    }
}
@media screen and (min-width: 900px) {
    .logo-container {
        margin-left: 25px;
    }
}
@media screen and (min-width: 1024px) {
    .section-6 .title-container .headline {
        margin-bottom: 85px;
    }
    #o-nama p {
        width: 770px;
    }
    .form {
        flex-flow: row wrap;
        gap: 25px;
    }
    .center-wrap h6 {
        margin-bottom: 0 !important;
    }
    .input {
        width: calc(50% - 15px);
    }
    .input input {
        height: 50px;
    }
    .input-message {
        width: 100%;
        height: 170px;
    }
    .list-wrap {
        gap: 60px;
    }
    .nav-mob {
        display: none;
    }
    .nav-pc {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    .logo-container {
        margin-right: 100px;
    }
    .section-0 .section-text {
        justify-content: space-between;
        padding: 80px 15% 60px 60px;
        gap: 56px;
    }
    .section-4 article {
        width: 352px;
        margin: 0;
    }
    .section-4 {
        display: grid;
        grid-template-columns: 10% 20% 20% 20% 20% 10%;
        grid-template-rows: 25px 370px 50px 270px;
    }
    .section-4 img {
        grid-area: 1 / 4 / 4 / 7;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom left;
    }  
    .section-4 .section-text {
        width: 100%;
        padding: 70px 20px 40px calc(10vw + 35px);
        margin: 0;
        margin-bottom: -20px;
        grid-area: 2 / 1 / 3 / 4;
        text-align: start;
    }
    .section-4 .icon-container {
        grid-area: 3 / 2 / 6 / 6;
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: unset;
        flex-flow: row nowrap;
        align-items: flex-start;
        justify-content: space-between;
        max-width: 1200px;
    }
    .icon-card {
        align-items: flex-start;
        text-align: start;
    }
    .image-wrap img {
        width: 130px;
    }
    .section-5 {
        width: 90%;
        max-width: calc(1200px + (100vw - 1200px) / 2);
        margin-left: auto;
        margin-right: 0;
        padding: 85px 50px;
    }
    .image-wrap {
        flex-flow: row nowrap;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
        gap: 100px;
    }
    .title-container.title-left {
        width: 90%;
        max-width: calc(1200px + (100vw - 1200px) / 2);
        margin-left: auto;
    }
    .section-cta {
        width: 90%;
        max-width: calc(1200px + (100vw - 1200px) / 2);
        margin-right: auto;
        text-align: start;
        padding: 50px 30px 50px 10%;
    }
    .section-cta .button-container {
        margin: 0 auto 0 0;
    }
    .section-cta .center-wrap {
        margin: 0;
    }
    .usluge .section-text {
        padding: 40px 25px 25px 60px;
    }
    .section-0,
    .section-1,
    .section-2,
    .section-3 {
        width: 90%;
        max-width: calc(1200px + (100vw - 1200px) / 2);
    }
    .section-2 {
        margin: 0 auto 100px 0;
    }
    .section-2 .section-text {
        padding: 40px 25px 25px calc(10% + 25px);
    }
    #usluge {
        margin: 0 0 40px 10%;
        width: 90%;
        max-width: calc(1200px + (100vw - 1200px) / 2);
    }
    .navigation {
        padding: 25px 10%;
    }
   .headline-container {
    padding: 0 35px 0 10%;
   }
  
}
@media screen and (min-width: 1200px) {
    .icon-container {
        padding: 60px;
    }
    .section-4 .section-text {
        padding: 115px 40px 20px calc(10vw + 60px);
        margin-bottom: -50px;
        min-height: 100%;
    }
    .section-4 {
        grid-template-rows: 50px 355px 50px auto;
        grid-template-columns: 10% 25% 25% 15% 15% 10%;
    }
    .section-4 img {
        object-position: center;
    }
    .section-4 article {
        width: 447px;
    }
    
}
@media screen and (min-width: 1082px) {
    .icon-card p {
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1280px) {
    .floating-cta {
        display: none;
    }
    .floating-cta-pc {
        display: flex;
    }
    header .headline-container h1 {
        max-width: unset;
        width: 940px;
        margin-bottom: 0;
    }
    #o-nama p {
        width: 1155px;
    }
    .section-2 p.text {
        max-width: unset;
        width: 450px;
    }
    .section-1 h2 {
        width: 465px;
    }
    .section-1 p.text-b {
        width: 300px;
    }
    .section-1 p.text {
        max-width: unset;
        width: 480px;
    }
    [data-button] {
        min-width: unset;
        padding: 8px 41px;
    }
    .section-1 .overlay,
    .section-3 .overlay {
        background-color: rgba(0, 0, 0, .75);
        height: 100%;
    }
    .section-1 {
        max-height: unset;
        height: 700px;
    }
    .section-1 .section-text h2 {
        width: 480px;
    }
    .section-3,
    .section-3 img,
    .section-3 .overlay {
        height: 565px;
    }
    .section-3 .text {
        max-width: unset;
        width: 433px;
    }
    .icon-container {
        padding: 60px;
    }
    
    .section-4 {
        grid-template-rows: 50px 365px 50px auto;
    }
    .section-4 article {
        width: 500px;
    }

    .section-1,
    .section-1 img {
        min-height: 630px;
    }
    .section-1 .text {
        width: 394px;
    }
    .pc-link {
            display: block;
    }
    .mob-link {
        display: none !important;
    }
    .section-7 .center-wrap {
        gap: 65px;
    }
    .headline,
    .headline:not(h1) {
        font-size: 60px !important;
        line-height: 75px !important;
        margin-bottom: 85px;
    }
    .sub-headline {
        font-size: 20px !important;
        line-height: 24px !important;
    }
    .link {
        font-size: 16px !important;
        line-height: 28px !important;
    }

    .text,
    .text-b {
        font-size: 18px !important;
        line-height: 23px !important;
    }
    .list-wrap {
        gap: 130px;
    }
    .logo-container {
        margin-right: 130px;
        padding: 0;
    }
    header {
        height: 100vh;
        min-height: 100vh;
    }
    .navigation {
        padding: 40px 0;
        width: 80%;
    }
    .headline-container {
        padding-left: 0;
        width: 80%;
    }
    .hamburger {
        display: none;
    }
    .navigation svg {
        width: 111px;
        height: 111px;
    }
    .section-0 .section-text {
        padding: 95px 10vw 75px 10vw;
        max-width: 100%;
    }
    .section-0 .section-text>article {
        width: fit-content;
        max-width: unset;
    }
    .section-0 .section-text>article:nth-child(1) {
        max-width: unset;
        width: 384px;
    }
    .section-0 .section-text>article:nth-child(2) {
        max-width: unset;
        width: 355px;
    }
    .section-1 .section-text,
    .section-3 .section-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 650px;
    }
    .section-1 .section-text,
    .section-3 .section-text {
        padding: 50px 5% 0 10vw;
        width: 60%;
    }
   .section-2 .section-text {
       padding: 50px 50px 50px 0;
       position: unset;
   }
    .section-2 {
        flex-direction: row;
        gap: 40px;
        height: 510px;
        width: 100% !important;
        color: var(--black);
    }
    .section-2 .headline {
        color: var(--black);
    }
    .section-2 .overlay {
        width: 60%;
    }
    .section-2 img {
        flex: 0 0 60%;
        width: 60%;
    }
    .section-5 {
        padding: 60px 100px;
    }
    .image-wrap {
        max-width: 1080px;
        gap: 130px;
    }
    .image-wrap img {
        width: 150px;
    }
    .section-7 h5,
    .section-cta h5 {
        margin-bottom: 50px;
    }
    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .pcard-1 {
        grid-area: 1 / 1 / 6 / 2;
    }
    .pcard-2 {
        grid-area: 1 / 2 / 5 / 3;
    }
    .pcard-3 {
        grid-area: 1 / 3 / 4 / 4;
    }
    .pcard-4 {
        grid-area: 6 / 1 / 7 / 2;
    }
    .pcard-5 {
        grid-area: 5 / 2 / 7 / 3;
    }
    .pcard-6 {
        grid-area: 4 / 3 / 7 / 4;
    }
    .card-1 .text {
        width: 261px;
    }

    .card-2 .text {
        width: 258px;
    }

    .card-3 .text {
        width: 274px;
    }
    .section-cta .center-wrap {
        width: 986px;
    }
    .section-0 {
        margin: -100px 0 50px auto;
    }
    .partneri {
        margin-bottom: 85px !important;
    }
    .section-2 .overlay {
        display: none;
    }
}
@media screen and (min-width: 1330px) {
    .section-0 .section-text {
        padding: 95px 10vw 75px 10vw;
    }
}
@media screen and (min-width: 1360px) {
    #o-nama p {
        width: 1160px;
    }
    .section-1 .section-text,
    .section-3 .section-text {
        padding: 50px 11% 0 10vw;
        width: 60%;
    }
    .section-1,
    .section-1 img {
        min-height: 550px;
    }
    .section-1,
    .section-1 img {
        min-height: 650px;
    }
    .section-2 .section-text {
        padding: 120px 100px 50px 0;
    }
    .section-4 article {
        width: 503px;
    }
    .section-2 {
        width: 90%;
        height: 660px;
    }
}
@media screen and (min-width: 1500px) {
    #o-nama p {
        width: 1160px;
    }
    .icon-container {
        padding: 60px 100px;
    }
    .section-0 .section-text>article {
        max-width: unset;
        width: 400px;
    }
    .section-0 .section-text .article-2{
        width: 362px;
    }
    .section-0 .section-text {
        max-width: 1200px;
        padding: 95px 100px 75px 100px;
    }
    .section-1 .section-text,
    .section-3 .section-text {
        padding: 120px 20% 0 100px;
    }
    .section-1,
    .section-1 img {
        height: 800px;
    }
    .section-3,
    .section-3 img,
    .section-3 .overlay {
        height: 700px;
    }
    .section-4 .section-text {
        display: flex;
        padding: 115px 75px 40px calc((100vw - 1200px) / 2);
    }
    .section-4 article {
        width: 500px;
        margin-left: 100px;
    }
    .section-7 {
        padding: 50px 50px 60px;
    }
    .section-cta {
        padding: 50px 50px 60px 10%;
    }
    .section-2 {
        gap: 60px;
    }
    .section-cta .center-wrap {
        width: 1150px;
        margin-left: auto;
    }
    #usluge {
        margin: 0 0 40px auto;
    }
    .icon-container {
        margin: 0 auto;
    }
}
@media screen and (min-width: 1600px) {
    .card-1 .text {
        width: 290px;
    }
    .card-2 .text {
        width: 291px;
    }
    .card-3 .text {
        width: 303px;
    }
    .section-0 .section-text>article:nth-child(1) {
        max-width: unset;
        width: 427px;
    }
    .section-0 .section-text>article:nth-child(2) {
        max-width: unset;
        width: 394px;
    }
    .section-2 p.text {
        width: 496px;
    }
    .section-1,
    .section-1 img {
        min-height: 750px;
    }
    .section-1 h2 {
            width: 465px;
        }
    .section-1 p.text-b {
        max-width: unset;
        width: 325px;
    }
    .section-1 p.text {
        width: 538px;
    }
    header .headline-container h1 {
        width: 1000px;
    }
    .icon-card {
        width: 299px;
    }
    .headline {
        font-size: 60px !important;
        line-height: 70px !important;
    }
    .sub-headline {
        font-size: 20px !important;
        line-height: 24px !important;
    }
    .link {
        font-size: 16px !important;
        line-height: 28px !important;
    }
    .text {
        font-size: 20px !important;
        line-height: 25px !important;
    }
    .text-b {
        font-size: 20px !important;
        line-height: 25px !important;
    }
    .section-1 .text {
        width: 100%;
    }
    .section-3 .text {
        width: 483px;
    }
    .section-4 {
        grid-template-rows: 50px 380px 80px auto;
    }
    .section-4 article {
        width: 555px;
    }
    .section-2 {
        gap: 50px;
    }
}