
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
}

:root {
	--bg-color: #ffffff;
	--text-color: #000000;
	--main-color: #8A4FFF;
    --main-color-dark: #434242;
	--second-color: gray;
    --second-color-dark: darkgrey;
	--other-color: #12141c;
	--h1-font: 144px;
	--h2-font: 56px;
	--h4-font: 20px;
	--h3-font:15px;
	--p-font: 12.8px;
	--about-h2: 42px;
	--predf-h1:64px;
	--predf-h2:64px;
}

html {
	background: var(--bg-color);
	color: var(--text-color);
}

header {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-around;
	
	padding: 15px 16%;
	border-bottom: 1px solid transparent;
	transition: all .40s ease;
    background: #ffffffd9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo img {
margin-top: 5px;
	height: 30px;

}

.navbar {
	display: flex;
}

.navbar a {
	color: var(--second-color);
	font-size: var(--p-font);
	font-weight: 600;
	padding: 10px 15px;
    margin: 0px 3px;
	border-radius: 0.5rem;
	transition: all .40s ease;
}

.navbar a:hover {
	background: var(--main-color);
	color: white !important;
}

#menu-icon {
	font-size: 36px;
	color: var(--text-color);
	z-index: 10001;
	cursor: pointer;
	display: none;
}

section {
	padding: 160px 5% 90px;
}

.home {
	height: 100vh;
	width: 100%;
	position: relative;
	background: url(../img/background.png);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: flex-start;
    transition: 0.2s ease-in-out;
}
/*background: linear-gradient(to right, rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)), url(../img/background.png);*/
.home-text h1 {
	font-size: var(--h1-font);
	letter-spacing: 2px;
	font-family: 'Remhu';
	font-style: normal;
	font-weight: 400;
	color: #000000;
}

span {
	color: var(--main-color);
}

.home-text h4 {
	color: var(--main-color);
	font-size:var(--h4-font);
	font-weight: 600;
	margin-bottom: -10px;
}

.home-text h3 {
	margin-top: -10px;
	margin-bottom: 20px;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: var(--h3-font);;
	line-height: 22px;

	color: #929292;
}


.home-text img{
width: 480px;
margin-top: 30px;
margin-bottom: 30px;
}

.btn {
	display: inline-block;
	padding: 10px 60px;
	border-radius: 11px;
	font-size: 17px;
	font-weight: 500;
	background: #0A2239;
	color: white;
	transition: all .40s ease;
}

.btn:hover {
	transform: scale(1.01) translateY(-5px);
	background: transparent;
	color: #0A2239;
	border: 1px solid #0A2239;
}
.thank-you-containter{
    background: #F2F2F2;
    padding: 40px;
    border-radius: 20px;
}

.btn2 {
	display: inline-block;
	padding: 10px 60px;
	border-radius: 11px;
	margin-left: 30px;
	font-size: 17px;
	font-weight: 500;
	background: var(--main-color);
	color: white;
	transition: all .40s ease;
}


@media (max-width: 450px) {
.btn2 {
	display: inline-block;
	padding: 10px 60px;
	border-radius: 11px;
	margin-left: 0px;
	font-size: 17px;
	font-weight: 500;
	background: var(--main-color);
	color: white;
	transition: all .40s ease;
}
}

.btn2:hover {
	transform: scale(1.01) translateY(-5px);
	background: transparent;
	color: #0A2239;
	border: 1px solid var(--main-color);
}

.btn-lan {
	padding: 10px;
	border-radius: 30px;
	font-size: 12.8px;
	font-weight: 500;
	background: var(--main-color);
	color: white;
	transition: all .40s ease;
}

.btn-lan:hover{
	background: transparent;
	color: var(--main-color);
	border: 1px solid var(--main-color);
}
.btn-lan a{
	text-decoration: none;
	color: white;
}



header.sticky {
    box-shadow: 0px 0px 8px #d7d7d7;
	padding: 10px 16%;
	

}








.last-text p {
	text-align: center;
	padding: 15px;
	color: var(--second-color);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
}


.last-text a{
	text-align: center;
    text-decoration: none;
    color: var(--second-color);
}
.last-text a:hover{
    color: var(--main-color);
    font-weight: 600;
}







.top {
	position: fixed;
	bottom: 2.1rem;
	right: 2.1rem;
}

.top svg {
	color: white;
	background: var(--main-color);
	font-size: 20px;
	padding: 10px;
	border-radius: 80px;
	width: 30px;
	height: 30px;
}

@media (max-width: 1416px) {
	header {
		padding: 16px 3%;
	}

	header.sticky {
		padding: 8px 3%;
	}

	section {
		padding: 130px 3% 60px;
	}
}

@media (max-width: 970px) {
	:root {
	    
		--h1-font: 112px;
		--h2-font: 46.4px;
		--h3-font:13px;
		--h4-font:15px;
		--p-font: 16px;
		--about-h2: 39px;
		--predf-h1:39px;
		--predf-h2:35px;
	}
	
	
	.home-text img{
		width: 350px;

		}


        section:not(#home), section:not(#udaje-firma) {
            padding: 70px 4% 60px;
        }

		.home {
			height: 100vh;
		}

	.about {
		grid-template-columns: 1fr;
	}

	.main-text {
		grid-template-columns: 1fr;
	}

	.about-img {
		display: none;
	}
	

	.contact {
		grid-template-columns: 1fr;
	}
}

.navbar-item{
    display: flex;
}
@media (max-width: 1100px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: -1000px; /* Ensure this toggles appropriately */
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        background: #12141c;
        text-align: left;
        transition: all 0.40s ease;
        z-index: 2000;
    }

    .navbar-item {
        display: flex;
        justify-content: flex-start;
        margin: 0px 5px 5px 15px;
        font-size: 16px;
        padding: 7px 0px 2px;
    }

    .navbar.active {
        top: 100%;
    }

    /* Reorder items so that language select appears at the top */
    .lang-select {
        position: absolute;
        order: -1;
        right: 8px;
        top: 12px;
    }
}

@media (max-width:440px) {
	.btn2 {
		display: inline-block;
		padding: 10px 60px;
		border-radius: 11px;
		font-weight: 500;
		background: var(--main-color);
		color: white;
		transition: all .40s ease;
		margin-top: 20px;
	}
	
}





@media (max-width:1350px){
	.last-text p{
		margin-top:20px
	}
}


