*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root{  
    --primary-color:#4891ff;
    --light-color:#f4f4f6;
    --dark-color:#111;
    
}
body{
    font-family: 'Poppins',sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: #333;
}
ul{
    list-style: none;
}
img{
    max-width: 100%;
}
/*nav*/
.nav-bar{
    background: #fff;
    padding: 20px;
    
}
.nav-bar .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}
.nav-bar .main-menu ul{
    display: flex;
   
}
.nav-bar ul li a{
    padding: 10px 20px;
    display: block;
    font-weight: 600;
    transition: 0.5s;
     
}
.nav-bar ul li a:hover{
    color: var(--primary-color);
    
}
.nav-bar ul li a i {
    margin-right: 10px;
}
.nav-bar ul li:last-child a{
        margin-left: 10px;

}


/*HERO*/
.hero{
    margin-bottom: 50px;

}

.hero .container{
    background: url("../images/hero-bg.png") no-repeat; 
    background-size: contain;
    background-position: center bottom;
    height: 550px;
    
}
.hero .hero-content{
    width: 70%;

}

.hero .hero-text{
    width: 70%;
    margin-bottom: 20px;
}

/*Video*/
.video{
    padding: 10px 0 40px;
}
.video .video-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video .video-preview{
    margin-bottom: 20px;
}

/*ovdje ide card*/
.card{
    background: #fff;
    color: #000;
    border-radius: 10px;
    padding: 20px;
}
.bg-primary{
    background: var(--primary-color);
    color: #fff;
}
.bg-light{
    background: var(--light-color);
    color: #333;
}
.bg-dark{
    background: var(--dark-color);
    color: #fff;
}
 /*1,8,53*/
/*CONTAINER*/
 
.container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}
 
 
.container-sm{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}
/*BUTTONS*/
.btn{
    display: inline-block;
    padding: 13px 20px;
    background: var(--light-color);
    color: #333;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 20px 0px 20px 0px;
    cursor: pointer;
    text-align: center;
    transition: 0.5s;
}

.btn:hover{
    opacity: 0.8;
    
}
 

.btn-primary{
    background-color: var(--primary-color);
    color: #fff;
}

.btn-dark{
    background-color: var(--dark-color);
    color: #fff;
}
.btn-block{
    display: block;
    width: 100%;
}
/*text*/
.text-xxl{
    
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 40px 0 20px;
}
.text-xl{
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 40px 0 20px;
}
.text-lg{
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 30px 0 20px;
}
.text-md{
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 30px 0 10px;
}
.text-sm{
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 10px 0 5px;
}
.text-center{
    text-align: center;
}/*testimionalas*/
.testimonials{
    padding: 40px 0;
}
.testimonials .testimonials-heading{
    width: 700px;
    margin-bottom: 40px;
}
.testimonials-grid .card p:nth-child(2){
        margin-top: 30px;
        font-weight: bold;
            
}
.testimonials .testimonials-grid{ 
    display: grid;
    grid-template-columns:repeat(3,1fr);
    gap: 30px;
}
.testimonials .testimonials-heading{
    width: 700px;
    margin-bottom: 40px;
}
/*Pricing*/
.pricing .pricing-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 50px;
 }
 .pricing .pricing-card-subheading{
        margin-bottom: 30px;
 }
 .pricing .pricing-card-price{
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
 }
 .pricing ul{
    margin: 30px 0;
 }
 .pricing ul li{
    margin-bottom: 20px;
 }
 .pricing ul li i{
        margin-right: 10px;
 }
 .pricing .pricing-footer{
    margin: 30px 0;

 }
.bg-black{
    background: #000;
    color: #fff;
}
/*faq*/
.faq{
    padding: 40px 0;

}
.faq-group{
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
.faq .faq-group .faq-group-header{
    padding: 20px 0;
    margin-bottom: 15px;
    position: relative;
}

.faq .faq-group .faq-group-header h4{
    font-weight: 600;
    width: 95%;
}
.faq .faq-group .faq-group-header i{
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 1.3rem;
    cursor: pointer;
}
.faq .faq-group .faq-group-body{
    display: none;
}
.faq .faq-group .faq-group-body.open{
    display: block;
}
.faq ul.faq-menu{
    max-width: 400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ddd;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}
.faq ul.faq-menu li{
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}
.faq ul.faq-menu li.active{
    background: var(--primary-color);
    color: #fff;
}
/*footer*/
.footer{
    padding: 40px 0;

}
.footer h4{
    margin-bottom: 40px;
}
.footer ul li{
    line-height: 2.5;
}
.footer a{
    color: #ccc;

}
.footer i{
    font-size: 1.5rem;
    margin-right: 10px;
}
.footer-grid{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
.footer .card{
    margin: 20px 30px 30px 0;
}
.footer input[type='email']
{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 20px 0;
}
    /*Hamburger menu*/
    .hamburger-button{
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1000;
    }
    .hamburger-button .hamburger-line{
        width: 30px;
        height: 3px;
        background: #333;
        margin: 6px 0;
    }
    /*Mobile menu*/
    .mobile-menu{
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100%;
        z-index: 100;
        background: #fff;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
    }
    .mobile-menu.active {
        right: 0;
      }

    .mobile-menu ul{
        margin-top: 100px;
        padding-right: 10px;
    }
    
.mobile-menu ul li {
    margin: 10px 0;
  }
  
  .mobile-menu ul li a {
    font-size: 20px;
    transition: 0.3s;
  }
  /*Media Queries*/
  @media (max-width: 960px){
        .text-xxl{
            font-size: 2.5rem;
        }
  }
  @media (max-width: 670px){
        .nav-bar .main-menu{
            display: none;
        }
        .nav-bar .hamburger-button{
            display: block;
        }
        .hero .container{
            background: url(../images/hero-bg-mobile.png) no-repeat;
            background-size: 350px;
            background-position: bottom;
            height: 770px;
        }
        .hero .hero-content, .hero .hero-text{
            width: 100%;
            text-align: center;
        }
        .hero .hero-buttons .btn{
            margin-bottom: 10px;
            display: block;
            width: 100%;
        }

        .testimonials .testimonials-heading{
            max-width: 100%;
            text-align: center;
        }

        .testimonials .testimonials-grid,
        .pricing .pricing-grid,
        .footer .footer-grid{
            grid-template-columns: 1fr;
        }
        .footer .card{
            margin-right: 0;
        }
        .footer .footer-grid > div{
            text-align: center;
        }
        .text-xl{
            font-size: 1.9rem;
        }
        .text-lg{
            font-size: 1.5rem;
        }
        .text-md{
            font-size: 1.1rem;
        }
  }
  @media (max-width: 500px){
        .text-xxl{
            font-size: 2rem;
        }
  }


  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

 
.modal-section {
	max-width: 1000px;
 	padding: 0px;
 	margin: auto;
}

.modal-section button {
	padding: 13px 20px;
    font-size: 19px;
    margin: auto;
    display: block;
    max-width: 350px;
    width: 100%;
    cursor: pointer;
    background: rgb(2,0,36);
    background: linear-gradient(278deg, rgba(2,0,36,1) 0%, rgba(46,46,184,1) 39%, rgba(0,212,255,1) 81%);
    border: none;
    color: #fff;
    border-radius: 20px 0px 20px 0px;
}

.popup-modal {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	top: 15%;
	z-index: 200;
	max-width: 700px;
	padding: 30px;
	margin: auto;
    background: rgb(244,244,246);
    background: linear-gradient(207deg, rgba(244,244,246,1) 0%, rgba(228,235,247,1) 14%, rgba(213,226,248,1) 25%, rgba(172,202,250,1) 57%, rgba(72,145,255,1) 100%);
}

.popup-modal button {
	font-size: 26px;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
	background-color: transparent;
	font-weight: bold;
	border: 0;
}
 
.overlay {
	display: none;
	position: fixed;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.5);
}
.list{
    padding: 30px;
}

 /*
.popup-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#closeModal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}*/