@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');
@import url(https://fonts.googleapis.com/css?family=Sniglet|Raleway:900);

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

a, a:hover {
    text-decoration: none;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    background: #ef4b3f;
}

.top-bar span {
    color: #fff;
}

.top-bar ul {
    list-style: none;
    display: flex;
}

.top-bar li {
    margin: 0px 5px;
}

.top-bar a {
    color: #fff;
}

.top-bar a:hover {
    color: #222;
}

nav {
    background: #222;
    padding: 5px 20px;
    display: flex;
    align-items: center;
}

nav a {
    color: #fff;
}

nav a:hover {
    color: #ef4b3f;
}

.logo {
    display: flex;
    flex: 1;
    align-items: center;
}

.logo a {
    font-size: 20px;
    padding-top: 5px;
}

.logo a:hover {
    color: #fff;
}

.logo img {
    margin-right: 10px;
}

.logo-img {
    height: 40px;
}

.logo-name {
    height: 32px;
}

.menu {
    position: sticky;
    display: flex;
    align-items: center;
    list-style: none;
}

.menu li {
    padding: 15px 10px;
    font-size: 16px;
    text-decoration: none;
}

.toggle {
    font-size: 30px;
    display: none;
}




.home {
    height: 1000px;
    width: auto;
    background-image: url(/img/Home\ BG.jpg);
    opacity: 0.9;
}

#home_logo {
    height: 400px;
}

#home_name {
    height: 146px;
}

.home p {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    font-family: "Inter", sans-serif;
    text-shadow: 2px 0 #222, -2px 0 #222, 0 2px #222, 0 -2px #222;
}







.service {
    margin-top: 100px;

}

.service h1 {
    text-align: center;
}

.service img {
    max-width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

table {
    padding-top: 30px;
}

table td {
    padding: 20px 20px;
}

table img {
    width: 500px;
    height: auto;
}

table .text {
    text-align: center;
    font-weight: bolder;
}






.about {
    margin-top: 120px;
    background-image: url(/img/about.jpg);
    width: auto;
    height: auto;
    color: #fff;
}

.about h1 {
    padding: 100px 0px 50px 0px;
    text-align: center;
}

.row {
    padding-bottom: 30px;
}

.col-md {
    padding-left: 30px;
}

.box1, .box2, .box3 {
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
}

.box3 {
    min-height: 925px;
}

.root h2 {
    font-size: 40px;
    font-weight: 900px;
    padding: 54px 0px 22px 20.32px;
}

.root p {
    font-size: 32px;
    padding: 0px 0px 20px 20px;
}



.technologies {
    margin-top: 100px;
}

.technologies img {
    max-width: 100%;
}

.container {
    margin-top: 30px;
}






/* team */

.team {
    background-image: url(/img/5531682.jpg);
    /* background-color: #24a6fc; */
    background-size: cover;
    color: white;
}

.container-fluid {
    max-width: 1500px;
}
.banner {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
}

.team h1, h2, h3, p {
    text-align: center;
}
.team h1 {
    padding-top: 20px;
}
.team h2 {
    padding-top: 10px;
}
.team h3 {
    padding-top: 20px;
}
.team p {
    padding: 0px 20px 20px 20px;
}
.team img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    border-radius: 50%;
    aspect-ratio: 3/4;
    object-fit: fill;
}


/* contact */
.contact h1 {
        margin: 0 auto;
        margin-top: 30px;
        text-align: center;
}

.footer {
    background-color: black;
    color: white;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
button[type=submit] {
    background-color: #24a6fc;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
}


/* When moving the mouse over the submit button, add a darker green color */
input[type=Send]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  /* background-color: #f2f2f2; */
  padding: 20px;
}



/* Responsive adjustment */
@media screen and (max-width: 600px) {
        nav {
            display: block;
            position: relative;
            padding: 15px 20px;
        }
    
        .menu {
            margin-top: 15px;
            display: none;
        }
    
        .menu.active, .toggle {
            display: block;
        }



        .home {
            background-size: cover;
        }

        #home_logo {
            display: block;
            position: relative;
            height: 200px;
        }

        #home_name {
            display: block;
            position: relative;
            height: 80px;
        }

        .home p {
            font-size: 20px;
        }

        .about p {
            font-size: 16px;
        }

        .box3 {
            min-height: 0px;
        }

    }
    
    .toggle {
        position: absolute;
        top: 15px;
        right: 20px;
    }
