* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    /* This text is in Candara */
	font-family: Candara,Calibri,Segoe,Segoe UI,Optima,Arial,sans-serif; 
}

body{
    background: rgb(239, 239, 239);
    font-family: Candara,Calibri,Segoe,Segoe UI,Optima,Arial,sans-serif; 
}

a, a:hover {
    text-decoration: none;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    background: rgb(57, 35, 62);
}

.top-bar span {
    color: rgb(239, 239, 239);
}

.top-bar ul {
    list-style: none;
    display: flex;

}

.top-bar li {
    margin: 0px 5px;
}

.top-bar a {
    color: rgb(239, 239, 239);
}

.top-bar a:hover {
    color: rgb(255, 191, 0)
}

.top-bar-contact span{
    padding: 0 10px;
}

nav {
    background: rgb(255, 191, 0);
    padding: 5px 20px;
    display: flex;
    align-items: center;
}

nav a {
    color: rgb(57, 35, 62);
    font-weight: bolder;
}

nav a:hover {
    color: rgb(57, 35, 62);
}

.logo_1 {
    flex: 1; 
    display: flex;
}

.logo a {
    /* display: flex; */
    align-items: center;
    font-size: 30px;
}

.logo a:hover {
    color: rgb(239, 239, 239);
}

.menu #target a {
    background: rgb(57, 35, 62);
    border-radius: 5px;
    color: rgb(239, 239, 239);
}

.menu #target a:hover {
    background: rgb(239, 239, 239);
    border-radius: 5px;
    color: rgb(57, 35, 62);
}


.logo img {
    width: 180px;
    margin-left: 50px;
    margin-top: 10px;
}

.logo_1 {
    float: left;
    align-items: center;
    margin-left: 30px;
    margin-top: 20px;
}

.logo_1 img {
    height: 50px;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;

}

.menu li {
    padding: 15px 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.menu li a {
    padding: 5px;
    font-weight: bolder;
}

.menu li a:hover {
    background-color: rgb(57, 35, 62);
    color: rgb(239, 239, 239);
    border-radius: 3px;
}

.toggle {
    font-size: 30px;
    display: none;
}


/* navigation menu bar end */

/*Image content */

.image {
   background-image: url("../img/pic_10.jpg");
   height: 800px;
   position: relative;
   opacity: 0.70;
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: fixed;
}

.img-text {
    position: absolute;
    top:40%;
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 27px;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.img-text .border {
    background-color: rgb(57, 35, 62);
    color: rgb(239, 239, 239);
    font-weight: bolder;
    padding: 20px;
}
/*Image content end*/


/* Why us section */

.about-us-container {  
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 150px auto 0;
}


.animate-h2 {
    animation: slidInLeft ease-in;
}

.about-us-values { 
    flex: 1;
    /* margin-right: 40px; */
    overflow: hidden;
}

/* .about-us-container {
    opacity: 0;
    transition: all 2.5s;
} */

/* .about-us-values-links {
    opacity: 0;
    transition: all 2.5s;
} */

.show {
    opacity: 1;
}
.about-us-values h2 {
    font-size: 30px;
    font-weight: bold;
}

.about-us-container .about-us-values li {
    padding: 5px;
    list-style: none;
    font-size: 20px;
    color: #333;
}

.about-us-container .about-us-values li:before {
    /* content: '✓ '; */
    color: black;
    font-weight: bold;
}

.about-us-values-links li i {
    margin-right: 20px;
}

.about-us-content {
    flex: 1;
}

.about-us-content span {
    font-size: 23px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.about-us-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

.about-us-content .read-more {
    display: inline-block;
    padding: 10px 20px;
    background: rgb(84, 66, 88);
    color: rgb(239, 239, 239);
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
    font-weight: bold;
}

.about-us-content .read-more:hover {
    color: rgb(84, 66, 88);
    background:rgb(239, 239, 239);
    border: 1px solid rgb(84, 66, 88);
}

.about-us-container {
    opacity: 0;
    transition: opacity 250ms ease-in;
}

.about-us-container.appear {
    opacity: 1;
}

/* Why us section end*/

/* Our Mission section */
.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 50px auto;
    gap: 2rem;
}

.about-image {
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
    height: 500px;
    max-width: 800px;

}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
    font-weight: bold;
}

.about-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

.about-content .read-more {
    display: inline-block;
    padding: 10px 20px;
    background: rgb(84, 66, 88);
    color: rgb(239, 239, 239);
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
    font-weight: bold;
}

.about-content .read-more:hover {
    color: rgb(84, 66, 88);
    background:rgb(239, 239, 239);
    border: 1px solid rgb(84, 66, 88);
}


@keyframes slideInLeft {
    from {
        transform: translateX(-300px);
    }

    to {
        transform: translateX(0);
    }
}

.about-image,
.about-content-vision {
    animation-name: slideInLeft;
    animation-duration: 1.5s;
    animation-timing-function: ease-in;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;;
    /* transform: translateX(-150px); */
}

@keyframes slideInRight {
    from {
        transform: translateX(250px);
    }

    to {
        transform: translateX(0);
    }
}

.about-content,
.about-image-vision
 {
    animation-name: slideInRight;
    animation-duration: 1.5s;
    animation-timing-function: ease-in;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

   

/* Our Mission section end*/


/* Our vision section */
.about-vision {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1400px;
    flex-direction: row-reverse;
    margin: 50px auto;
    gap: 2rem;
}

.about-image-vision {
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
    height: 500px;
    max-width: 800px;
}

.about-image-vision img {
    max-width: 100%;
    /* height: auto; */
    display: block;
    transition: 0.5s ease;
}

.about-image-vision:hover img {
    transform: scale(1.1);

}

.about-content-vision {
    flex: 1;
}

.about-content-vision h2 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
    font-weight: bold;
}

.about-content-vision p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

.about-content-vision .read-more {
    display: inline-block;
    padding: 10px 20px;
    background: rgb(84, 66, 88);
    color: rgb(239, 239, 239);
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
    font-weight: bold;
}

.about-content-vision .read-more:hover {
    color: rgb(84, 66, 88);
    background:rgb(239, 239, 239);
    border: 1px solid rgb(84, 66, 88);
}

 /* Our vision section end*/



 /* Card slider */
.wrapper-mission .mission-img {
    width: 500px;
}

.mission-img img {
    width: 100%;
}


.card-wrapper {
    max-width: 1400px;
    height: 50vh;
    margin: 50px auto;
    padding: 20px 0px;
    overflow: hidden;
    
}

.card-list .card-item  {
    list-style: none;
}

.card-list .card-item .card-link {
    user-select: none;
    display: block;
    background: rgb(239, 239, 239);
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;  
    
}

.card-list .card-item .card-link:active {
    cursor: grabbing;
}

.card-list .card-item .card-link:hover {
    /* border-color: rgb(255, 191, 0); */
    border-color: rgb(57, 35, 62);
}


.card-list  .card-link .card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    
}

.card-list  .card-link  .badge {
    /* color: rgb(84, 66, 88); */
    color: rgb(239, 239, 239);
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: bold;
    margin: 16px 0 18px;
    /* background: rgb(255, 191, 0); */
    background: rgb(57, 35, 62);
    width: fit-content;
    border-radius: 50px;
}


.card-list  .card-link .card-title{
    font-size: 1rem;
    color: #000;
    /* font-weight: 600;     */
}

.card-list  .card-link .card-button {
    height: 35px;
    width: 35px;
    /* color: rgb(255, 191, 0); */
    color: rgb(57, 35, 62);
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    border: 2px solid rgb(255, 191, 0);
    transform: rotate(-45deg);
    transition: 0.4s ease;
}

.card-list  .card-link:hover .card-button {
    color: rgb(239, 239, 239);
    background: rgb(255, 191, 0);
    /* background: rgb(57, 35, 62); */
}

.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    /* background: rgb(255, 191, 0); */
    background: rgb(57, 35, 62);

}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    /* color: dodgerblue; */
    margin-top: -35px 
}

.card-wrapper .swiper-button-next {
    margin-right: 150px;
    color: rgb(84, 66, 88);
}

.card-wrapper .swiper-button-prev {
    margin-left: 150px;
    color: rgb(84, 66, 88);
}

/* <!-- Card slider end */

/* Form */
.form-container{
	max-width: 1400px;
    background: rgb(84, 66, 88);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 8%;
    margin: 0 auto;
}
.form-container .row{
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
}
.row section.col{
	display: flex;
	flex-direction: column;
}
.row section.left{
	flex-basis: 35%;
	min-width: 320px;
	margin-right: 60px;
}
.row section.right{
	flex-basis: 60%;
}
section.left .contactTitle h2{
	position: relative;
	font-size: 28px;
	color: rgb(239, 239, 239);
	display: inline-block;
	margin-bottom: 25px;
}
section.left .contactTitle h2::before{
	content: '';
	position: absolute;
	width: 50%;
	height: 1px;
	background-color: rgb(147, 38, 143);
	top: 120%;
	left: 0;
}
section.left .contactTitle h2::after{
	content: '';
	position: absolute;
	width: 25%;
	height: 3px;
	background-color: rgb(255, 191, 0);
	top: calc(120% - 1px);
	left: 0;
}
section.left .contactTitle p{
	font-size: 17px;
	color: rgb(239, 239, 239);
	letter-spacing: 1px;
	line-height: 1.2;
	padding-bottom: 22px;
}
section.left .contactInfo{
	margin-bottom: 16px;
}
.contactInfo .iconGroup{
	display: flex;
	align-items: center;
	margin: 25px 0px;
}
.iconGroup .icon{
	width: 45px;
	height: 45px;
	border: 2px solid rgb(255, 191, 0);
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}
.iconGroup .icon i{
	font-size: 20px;
	color: rgb(239, 239, 239);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.iconGroup .details span{
	display: block;
	color: rgb(239, 239, 239);
	font-size: 18px;
}
.iconGroup .details span:nth-child(1){
	text-transform: uppercase;
	color: rgb(239, 239, 239)
}
section.left .socialMedia{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: 22px 0px 20px;
}
.socialMedia a {
	width: 35px;
	height: 35px;
	text-decoration: none;
	text-align: center;
	margin-right: 15px;
	border-radius: 5px;
	background-color: rgb(255, 191, 0);
	transition: 0.4s;
}
.socialMedia a i{
	color: rgb(147, 38, 143);
	font-size: 18px;
	line-height: 35px;
	border: 1px solid transparent;
	transition-delay: 0.4s;
}
.socialMedia a:hover{
	transform: translateY(-5px);
	background-color: #2e2e2e;
	color: rgb(255, 191, 0);
	border: 1px solid rgb(255, 191, 0);
}
.socialMedia a:hover i{
	color: rgb(255, 191, 0);
}

/* Code for the right section (column) */

.row section.right .messageForm{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 30px;
}
.row section.right .inputGroup{
	margin: 18px 0px;
	position: relative;
}
.messageForm .halfWidth{
	flex-basis: 48%;
}
.messageForm .fullWidth{
	flex-basis: 100%;
}
.messageForm input, .messageForm textarea{
	width: 100%;
	font-size: 18px;
	padding: 2px 0px;
	background-color: #2e2e2e;
	color: rgb(239, 239, 239);
	border: none;
	border-bottom: 2px solid rgb(239, 239, 239);
	outline: none;
}
.messageForm textarea{
	resize: none;
	height: 220px;
	display: block;
}
textarea::-webkit-scrollbar{
	width: 5px;
}
textarea::-webkit-scrollbar-track{
	background-color: #1e1e1e;
	border-radius: 15px;
}
textarea::-webkit-scrollbar-thumb{
	background-color: rgb(255, 191, 0);;
	border-radius: 15px;
}
.inputGroup label{
	position: absolute;
	left: 0;
	bottom: 4px;
	/* color: rgb(255, 191, 0);; */
    color: #666;
	font-size: 18px;
	transition: 0.4s;
	pointer-events: none;
}
.inputGroup:nth-child(4) label{
	top: 2px;
}
.inputGroup input:focus ~ label, .inputGroup textarea:focus ~ label,
.inputGroup input:valid ~ label, .inputGroup textarea:valid ~ label
{
	transform: translateY(-30px);
	font-size: 16px;
}
.inputGroup button{
	padding: 8px 16px;
	font-size: 18px;
    font-weight: bold;
	background-color: rgb(255, 191, 0);;
	/* color: rgb(239, 239, 239); */
    color: rgb(57, 35, 62);
	border: 1px solid transparent;
	border-radius: 25px;
	outline: none;
	cursor: pointer;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
	transition: 0.4s;
}
.inputGroup button:hover{
	background-color: rgb(239, 239, 239);
	color: rgb(255, 191, 0);;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	border: 1px solid rgb(255, 191, 0);
}

/* Form end */

/* Footer */
footer {
    position: relative;
    width: 100%;
    background: rgb(255, 191, 0);
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer .social_icon,
footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social_icon li,
footer .menu li
 {
    list-style: none;
}

footer .social_icon li a {
    font-size: 2em;
    /* color: rgb(239, 239, 239); */
    color: rgb(57, 35, 62);
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

footer .social_icon li a:hover {
    transform: translateY(-10px);
}

footer .menu li a {
    font-size: 1.2em;
    /* color: rgb(239, 239, 239); */
    color: rgb(57, 35, 62);
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
}

footer .menu li a:hover {
    opacity: 1;
}

footer p {
    /* color: rgb(239, 239, 239); */
    color: rgb(57, 35, 62);
    text-align: center;
    margin: 15px 0;
    font-size: 1.1em;
}

footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url(../img/wave_zolto.png);
    background-size: 1000px 100px;
}
/* C:\Users\Nikola Popeski\OneDrive\Desktop\MultiDom\img\pocetna_new.png */

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}

footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}

footer .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
}

/* Footer end*/


@keyframes slidInLeft {
    from {
        transform: translateX(-1000px);
    }

    to {
        transform: translateX(0);
    }
}


@keyframes animateWave {
    0% {
        background-position-x: 1000px ;
    }
    100% {
        background-position-x: 0px ;
    }
}

@keyframes animateWave_02 {
    0% {
        background-position-x: 0px ;
    }
    100% {
        background-position-x: 1000px ;
    }
}

@media(max-width: 1800px) {
    .swiper-slide-button {
        display: none;
    }
}

/* Responsive page */
@media(max-width: 1190px){

    nav {
        display: block;
        position: relative;
        padding: 15px 20px;
    }

    .menu {
        margin-top: 15px;
        display: none;
    }

    .menu.active, .toggle {
        display: block;
    }
    
    .toggle {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .top-bar .top-bar-contact span{
        display: block;
    }

    .logo img {
        width: 200px;
        margin-left: 10px;
    }
    .logo_1 {
        display: none;

    }
    
    .logo_1 img {
        display: none;
    }
	

    .swiper-pagination-bullet {
        visibility: visible;

    }
    .form-container .row{
		flex-wrap: wrap;
	}
	.row section.left, .row section.right{
		flex-basis: 100%;
		margin: 0px;
	}
    
      .img-text {
        padding: 0;
        width: 100%;
        display: flex;

     }
     .img-text .border {
        margin: 0 auto;
     }

    .card-wrapper {
        width: 100%;
        height: 50vh;
        margin: 0 auto;
        padding: 5px;
    }

    .card-wrapper .card-list  {
        margin: 0 auto;
    }

    .card-wrapper .card-list .card-item .card-link  {
        margin: 0 auto;
    }
    .card-wrapper .swiper-slide-button {
        display: none;
    }
    

    .about-us-container {
        width: 100%;
        display: block;
    }

    .about-us-container .about-us-values {
        width: 100%;
        margin: 0 auto 30px auto;
        /* text-align: justify; */
    }

    .about-us-values h2 {
        text-align: center;
        margin: 0 auto 10px auto;

    }
    .about {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: justify;
        padding: 10px;
    }

    .about-image {
        margin: 0 auto;
        order: 1;
    
        /* padding: 10px; */
    }

    .about-content {
        order: 0;
    }

    .about-vision {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: justify;
        padding: 10px; 
    }

    .about-vision .about-image-vision{
        margin: 0 auto;
        order: 1;
    }

    .about-us-content {
        width: 100%;
        margin: 0 auto;
        padding: 10px;
        order: 0;
    }

    .about-image,
.about-content,
.about-image-vision
 {
    animation-name: slideInLeft;
    animation-duration: 1.5s;
    animation-timing-function: ease-in;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

    footer {
        margin-top: 50px;
        /* background: #2e2e2e; */
    }
 footer .menu li {
       width: 100%;
       margin: 0px auto;
    }

    .menu li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }
footer .wave {
    /* background-color: #333; */
    z-index: -99999;
}

footer .wave#wave4 {
    z-index: -1001;
  
}
footer .wave#wave1 {
    z-index: -1001;
  
}
footer .wave#wave2 {
    z-index: -1001;
  
}
footer .wave#wave3 {
    z-index: -1001;
  
}

}