body {
    margin: 0 auto;
    font-family: "montserrat";
    background-color: #191C26;
    color: #fff;
}
body::-webkit-scrollbar {
    display: none;
}
*{
    text-decoration: none;
    list-style: none;
}
body h1 {
    font-size: 36px;
    margin: 20px 0;
}
body h3 {
    color: #243D8E;
    margin: 0;
}
body h4 {
    font-size: 24px;
    margin: 0;
}

body p {
    margin: 20px 0
}
@media screen and (min-width: 1200px) {
    body h1 {
        font-size: 48px;
        margin: 20px 0;
    }
}

/*---------------HEADER--------------*/
header .container {
    margin: 0 auto;
    justify-content: space-between;
    padding: 10px;
}
header img{
    width: 30%;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}
nav ul {
    display: flex;
    font-weight: 600;
    gap: 40px;
    padding: 0;
    justify-content: center;
    margin: 0;
}
nav ul li {
    padding: 20px 0;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
nav ul li:hover {
    color: #243D8E;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
    header .container {
        display: flex;
        padding: 0 50px;
    }
    header img{
        width: 10%;
        left: 0;
        transform: none;
    }
    nav ul {margin: 1em 0};
}
@media screen and (min-width: 1200px) {
    header .container {
        width: 1200px;
        display: flex;
    }
    header img{
        width: 10%;
        left: 0;
        transform: none;
    }
    nav ul {margin: 1em 0};
} 
/*---------------SECTION 1--------------*/

.section1 .container {
    position: relative;
}
.section1 .item {
    height: 100vh;
}
.section1 img {
    height: 100%;
    object-fit: cover;
}
.section1 .text {
    margin: 0 auto;
    position: absolute;
    z-index: 102;
}
.section1 .text2 {
    position: relative;
    top: 50px;
    padding: 0 20px;
}
.section1 .text p {
    font-size: 24px;
    font-weight: 200;
}
.section1 .text h1 {
    font-size: 60px;
    margin: 0;
    line-height: 80px;
}
.section1 .overlay {
    height: 100vh;
    width: 100%;
    position: absolute;
    background:radial-gradient(circle, #1d4350, #243D8E);
    top: 0;
    left: 0;
    opacity: 0.8;
    z-index: 100;
}
.owl-dots {
    display: none;
}
.section1 .boxes {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
    justify-content: space-around;
    gap: 20px;
    position: relative;
    bottom: 100px;
    z-index: 101;
}
.section1 .box {
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
}
.section1 .box img {
    width: 80px;
    padding: 20px;
    position: relative;
    left: 50%;
    transform: translatex(-50%);
    display: block;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .section1 .item{
        height: 750px;
    }
    .section1 .text2 {
        top: 100px;
    }
    .section1 .overlay {
        height: 750px;
    }
    .section1 .boxes {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        position: relative;
        bottom: 100px;
        padding: 0;
    }
}
@media screen and (min-width: 1200px) {
    .section1 .item{
        height: 750px;
    }
    .section1 .overlay {
        height: 750px;
    }
    .section1 .text {
        width: 1200px;
        left: 50%;
        top: 0%;
        transform: translate(-50%);
    }
    .section1 .text2 {
        padding: 0;
        top: 150px;
    }
    .section1 .text h1 {
        font-size: 74px;
    }
    .section1 .boxes {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        width: 1200px;
        position: relative;
        bottom: 100px;
        padding: 0;
    }
}

/*---------------SECTION 2 & 3--------------*/
.section2 .container {
    justify-content: space-between;
    margin: 0 auto;
    padding: 0px 20px;
    gap: 40px;
    text-align: center;
}
.section2 .text, .video{
    flex-basis: 50%;
}
.section2 iframe, .section3 iframe {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border:10px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.section3 {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0))
}
.section3 .container {
    margin: 0 auto;
    text-align: center;
    padding: 20px 20px 100px 20px;
    
}
.section3 .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 40px;
    box-sizing: border-box;
}
@media screen and (min-width: 768px) and (max-width: 1199px){
    .section3 .content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .section2 .video {
        padding: 0 40px;
        height: 300px;
    }
}
@media screen and (min-width: 1200px) {
    .section2 .container {
        width: 1200px;
        display: flex;
        text-align: left;
        padding: 0;
    }
    .section3 .container {
        width: 1200px;
        padding:50px 0 100px 0;
    }
    .section3 .content {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 0;
    }
}
/*---------------SECTION 4--------------*/

.section4 {
    background-image: url(./IMG/slika9.jpg);
    background-size: cover;
    padding: 80px 0 180px 0;
}
.section4 .container {
    margin: 0 auto;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}
.section4 p {
    display: inline-block;
}
.section4 .text {
    flex-basis: 50%;
    text-align: center;
}
.section4 .boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-around;
    gap: 20px;
    z-index: 101;
    flex-basis: 50%;
    padding: 20px 0;
}
.section4 .box {
    height: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
}
.section4 .zadnji {
    position: relative;
    left: 55%;

}
.section4 .box img {
    width: 50%;
    margin: 0 auto;
    padding: 20px 0;
    display: block;
}
.section4two .bar {
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
    position: relative;
    bottom: 90px;
    z-index: 101;
   
}
.section4two ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-around;
    padding:30px 0;
}
.section4two ul li {
    border-right: 2px solid rgba(255, 255, 255, 0.18);
}
.section4two ul li:last-of-type {
    border: none;
}
.section4two p {
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}
.section4two h1{
    font-size: 40px;
    margin: 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px){
    .section4 .boxes {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .section4 .zadnji {
        position: initial;

    }
}
@media screen and (min-width: 1200px) {
    .section4 .text {
        text-align: left;
        
    }
    .section4 .container {
        width: 1200px;
        display: flex;
        align-items: center;
        padding: 0;
    }
    .section4 .boxes {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .section4two .bar {
        width:1200px;
    }
    .section4two ul {
        padding:30px 100px;
    }
    .section4two h1{
        font-size: 48px;
    }
    .section4 .zadnji {
        position: initial;
    }
}

/*---------------SECTION 5--------------*/
.section5 .container {
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}
.section5 p {
    padding: 0 40px;
}
.section5 h2 {
    text-transform: uppercase;
    font-weight: 200;
    font-size: 20px;
    margin: 0;
    
}
.section5 .boxes {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0px auto;
    justify-content: space-around;
    padding: 80px 0 100px 0;
    gap: 20px;
    z-index: 101;
}
.section5 .box {
    height: 350px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
}
.section5 .box img {
    width: 20%;
    padding: 20px;
    position: relative;
    left: 50%;
    transform: translatex(-50%);
    display: block;
}
@media screen and (min-width: 768px) and (max-width: 1199px){
    .section5 .boxes {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (min-width: 1200px) {
    .section5 .container {
        width: 1200px;
        padding: 0;
    }
    .section5 .boxes {
        grid-template-columns: 1fr 1fr 1fr;
        width: 1200px;
    }
}
/*----------------SECTION 6----------------*/
.section6 {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0))
}
.section6 .container {
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}
.section6 h2 {
    font-size: 24px;
    font-weight: 200;
    margin: 0;
}
.section6 .boxes {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-around;
    gap: 20px;
    z-index: 101;
    padding: 80px 0 100px 0;
}
.section6 .box {
    height: auto;
    display: flex;
    justify-content: left;
    background: #252831;
    border-radius: 20px;
    text-align: left;
    padding: 30px 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.section6 .box p {
    font-size: 16px;
    margin: 15px 0 0 0
}
.section6 .box img {
    width: 10%;
    padding: 20px;
    display: block;
}
@media screen and (min-width: 1200px) {
    .section6 .container {
        width: 1200px;
    }
    .section6 .boxes {
        width: 1200px;
        grid-template-columns: 1fr 1fr;
    }
}

/*-------------SECTION 7---------------*/

.section7 {
    background-image: url(./IMG/slika10.jpg);
    background-size: cover;
    background-position: 0 -150px ;
    padding: 100px 0 250px 0;
}
.section7 .container {
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}
.section7two {
    position: relative;
}
.section7two .container {
    width: 90vw;
    box-sizing: border-box;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 50px;
    position: absolute;
    left: 50%;
    top: -210px;
    transform: translate(-50%);
    
}
.section7two .inputs {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.section7two textarea {
    width: 100%;
    resize: none;
    border-radius:10px ;
    display: block;
    padding: 20px;
    box-sizing: border-box;
}
 input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    box-sizing: border-box;
    border: none;
}
.section7two #button {
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(to left, #373b44, #4286f4);
    color: #fff;
    font-size: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.2s ease-in-out;
}
.section7two #button:hover {
    box-shadow: inset 0 0 15px #fff;
}
.section7two .poruka {
    margin-top: 20px;
}
@media screen and (min-width: 1200px) {
    .section7 .container {
        width: 1200px;
        padding: 0;
    }
    .section7two .container {
        width: 800px;
    }
}
/*-------------SECTION 8------------*/

.section8 .container {
    margin: 0 auto;
    text-align: center;
    padding: 450px 20px 0 20px;
    
}
.section8 .content {
    justify-content: space-between;
    gap: 20px;
}
.section8 h2 {
    font-size: 20px;
    font-weight: 200;
    margin: 0;
}
.section8 .kontakti {
    flex-basis: 50%;
    background: #252831;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 30px 30px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.section8 .lokacija {
    flex-basis: 50%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 20px;
}
.section8 .phone, .email, .address {
    display: flex;
    margin: 40px 0;
    gap: 40px;
    align-items: center;
}
.section8 img {
    width: 15%;
}
.section8 iframe {
    display: block;
    border-radius: 20px;
    filter: invert(90%) hue-rotate(180deg);
}
@media screen and (min-width: 768px) and (max-width: 1199px){
    .section8 .content {
        display: flex;
    }
    .section8 .kontakti {
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1200px) {
    .section8 .container {
        width: 1200px;
        padding: 450px 0 0 0;
    }
    .section8 .content {
        display:flex;
    }
    .section8 .kontakti {
        margin-bottom: 0;
    }
}

/*------------FOOTER-------------*/

.footer {
    background: linear-gradient(0deg, rgba(36, 61, 142), rgba(255, 255, 255, 0))
}
.footer .container {
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 150px;
}

.footer .bordercont {
    flex-basis: 100%;
}
.bordercont p {
    margin: 0;
    padding: 20px 0;
    text-align: right;
}
.bordercont p:first-of-type {
    border-bottom: 2px solid rgba(255, 255, 255, 0.18)
}

.footer img {
    width: 60%;
    display: block;

}

@media screen and (min-width: 1200px) {
    .footer .container {
        width: 1200px;
        padding: 50px 0;
    }
}

/*---------ANIMATIONS----------------*/

.slideLeft {
    opacity: 0;
    transition: 0.3s ease-in;
    transform: translateY(50%);
    filter: blur(5px);
}
.slideRight {
    opacity: 0;
    transition: 0.3s ease-in;
    transform: translateY(50%);
    filter: blur(5px);
}
.slideUp {
    opacity: 0;
    transition: 0.3s ease-in;
    transform: translateY(50%);
    filter: blur(5px);
}
.show {
    opacity: 1;
    filter: blur(0);
    transform: translate(0);
}
@media screen and (min-width: 1200px) {
    .slideLeft {
        transform: translateX(-50px);
    }
    .slideRight {
        transform: translateX(50px);
    }
    .two {
        transition-delay: 0.2s;
    }
    .three {
        transition-delay: 0.4s;
    }
    .show {
        opacity: 1;
        filter: blur(0);
        transform: translate(0);
    }
}
