@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}






/*/ Navbar /*/

body1{
    height: 100vh;
    background-color: black;
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.6)), url(pictures/angar1.jpg);
    background-size: cover;
    background-position: center;
}



/* Text Decoration */

li{
    list-style: none;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-size: 1em;
}

.dropdown_menu a{
    text-decoration: none;
    color: #fff;
    font-size: 1em;
}

a:hover {
    color: #004d96;
}








/* Header */

header {
    position: relative;
    padding: 0 2em;
}

.navbar{
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    width: 250px;
    cursor: pointer;
}


.navbar .links{
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn{
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn{
    background-color: #004d96;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold; 
    cursor: pointer;
}

.action_btn:hover{
    scale: 1.05;
    color: #fff;
}

.action_btn:active{
    scale: 0.95;
}





/* Dropdown menu */

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
    height: 200px;
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
}


/* Responsive Design for phone*/

@media(max-width: 992px){
    .navbar .links,
    .navbar .action_btn{
        display: none;
    }

    .navbar .toggle_btn{
        display: block;
    }

    .dropdown_menu{
        display: block;
    }
}


@media(max-width: 576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }
}







/* Main Text */

section#Home {
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

#Home h1{
    font-size: 3rem;
    margin-bottom: 1rem;
}





/*/ Buttons /*/

button{
    background: #004d96;
    margin-left: 45px;
    width: 200px;
    color: white;
    text-decoration: none;
    border: 2px solid #004d96;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 40px;
    transition: 0.5s;
}


button:hover{
    background: transparent;
    border: 2px solid #004d96;
    cursor: pointer;
}







/*/ Second background features for text/*/

#teenused{
    width: 100%;
    padding: 70px 0;
}

.title-text{
    text-align: center;
    padding-bottom: 40px;
}

.title-text p{
    margin: auto;
    font-size: 20px;
    color: #004d96;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}


.title-text h1{
    font-size: 50px;
}





/*/ Teenuseid /*/

.teenus-box{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.teenus{
    flex-basis: 50%;

}

.teenus-img{
    flex-basis: 50%;
    margin: auto;
}

.teenus-img img{
    width: 90%;
    border-radius: 10px;
}

.teenus h1{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color: #004d96;
}

.teenus h5{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color: #004d96;
}

.teenus-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.teenus-icon{
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: #004d96;
    
}

.teenus-text p{
    padding: 0 20px;
    text-align: initial;
}

@media (max-width: 768px) {
  .teenus-box {
    flex-direction: column;
  }

  .teenus, .teenus-img {
    flex-basis: 100%;
    width: 100%;
  }

  .teenus-img {
    margin-top: 20px;
  }

  .teenus-desc {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .teenus-text p {
    padding: 0;
    text-align: center;
    margin-top: 10px;
  }

  .teenus h1, .teenus h5 {
    text-align: center;
  }
}



/* Meie too */


#service{
    width: 100%;
    padding: 70px 0;

}

/* Bit about us */

#bitaboutus{
    width: 100%;
    padding: 70px 0;
}

.text-center{
    font-size: medium;
    font-family: "Lucida Console", "Courier New", monospace;

}




/* Operations */

#operations{
    width: 100%;
    padding: 70px 0;
    padding-top: 100px;
}










