@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
body{
    background-color: black;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
.max-width{
    width: 1300px;
    padding: 0 80px;
    margin: auto;
}
/* navigatie bar styling */
.navbar{
    position: fixed;
    width: 100%;
    background-color: black;
    font-family: 'Ubuntu', sans-serif;
    padding: 30px 0;
}
.navbar .max-width{
   display: flex; 
   align-items: center;
   justify-content: space-between;
}
.navbar .logo a{
    color: white;
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo a span{
    color: crimson; 
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
   color: crimson; 
}
.img{
    height: 100px;
    width: 1530px;
    object-fit: cover;
}
.contact{
    font-family: 'Poppins';
    
}
.head, .subhead{
    color: white;
    text-align: justify;
}


.contact .contact-content .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: white;
}
.text-1{
    text-align: center;
    color: white;
    height: 400px;
  line-height: 400px;
  font-size: 27px;
  font-family: 'Ubuntu', sans-serif;
}