/* Css Reset */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Navigation Bar */
#navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 25px;
}

#navbar::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 95);
    z-index: -1;
}

/* Navigation Bar logo styling*/
#logo {
    margin: 12px;
}

#logo img {
    width: 220px !important;
    height: auto !important;
}

/* Navigation Bar list styling */
#navbar ul {
    display: flex;
}

#navbar ul li {
    font-size: 16px;
    font-weight: bold;
    list-style: none;
}

#navbar ul li a {
    color: rgb(255, 255, 255);
    padding: 4px 20px;
    text-decoration: none;
    transition: all 1.1s ease;
}

#navbar ul li a:hover {
    color: rgb(187, 171, 200, 1);
}

#navbar ul li a.NEWSLETTER {
    border: 2px solid white;
    border-radius: 50px;
    padding: 10px;
}

#navbar ul li a.NEWSLETTER:hover {
    border-color: rgb(187, 171, 200, 1);
}


/* Home Section */
#home {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url(../Img/3d-illustration-black-thick-books-isolated-black-background_351397-674.avif) no-repeat center center/cover;
    z-index: -1;
}

#home h1 {
    font-size: 3.3rem;
    color: white;
}

/* Marketing-services section */
#services {
    display: flex;
    padding-left: 185px;
    padding-right: 185px;
    margin-top: 75px;
}

.box-1 {
    margin-right: 55px;
}

.box-1 h1 {
    margin: 12px;
    font-size: 2.6rem;
}

.box-1 p {
    font-size: 1.7rem;
    letter-spacing: 1px;
    color: rgb(92, 92, 92);
}

.box-2 img {
    height: 360px;
}

.box-3 img {
    height: 360px;
}

.box-4 {
    margin-left: 70px;
}

.box-4 h1 {
    margin: 12px;
    font-size: 2.6rem;
}

.box-4 p {
    padding-bottom: 1rem;

}

.box-4 p {
    font-size: 1.7rem;
    letter-spacing: 1px;
    color: rgb(92, 92, 92);
}


/* Footer Section */
#footer-container {
    display: flex;
    justify-content: space-evenly;
    position: relative;
    color: white;
    margin-top: 23px;
}

#footer-container::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: url(../Img/istockphoto-1335422806-612x612.jpg) no-repeat center center/cover;
    z-index: -1;
    opacity: 0.9;
}

.footer-iteam h1 {
    margin: 23px;
    font-size: 2rem;

}

.footer-iteam p {
    padding-top: 17px;
    font-size: 1.6rem;
}

.footer-iteam img {
    height: 50px;
    margin-top: 23px;
}

/* footer-iteam-1 */
.footer-iteam-1 h1 {
    margin: 23px;
    font-size: 2rem;

}

.footer-iteam-1 p {
    padding-top: 17px;
    font-size: 1.6rem;
}

.footer-iteam-1 img {
    height: 50px;
    margin-top: 23px;
}

#robot {
    margin-top: 28px;
}

.footer-iteam-1 input {
    font-size: 1.2rem;
    padding: 20px;
    border-radius: 7px;
    width: 80%;
}

.footer-iteam-1 label {
    font-size: 18px;
}

.footer-iteam-1 input:focus {
    border-color: #250e62;
    outline: none;
    box-shadow: 0 0 10px #250e62;
}

.footer-iteam-1 button {
    color: #250e62 !important;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 0px;
    letter-spacing: 1px;
    font-size: 13px;
    font-family: "DIN Bold", Helvetica, Arial, Lucida, sans-serif !important;
    text-transform: uppercase !important;
    background-color: white;
    padding-top: 15px !important;
    padding-right: 30px !important;
    padding-bottom: 15px !important;
    padding-left: 30px !important;
    margin-top: 12px !important;
    cursor: pointer;
    font-weight: bolder;

}

/* footer-iteam-2 */
.footer-iteam-2 h1 {
    margin: 23px;
    font-size: 2rem;
}

.footer-iteam-2 p {
    padding-top: 17px;
    font-size: 1.6rem;
}


/* Utility Class */
.btn {
    color: #fff !important;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 0px;
    letter-spacing: 1px;
    font-size: 17px;
    font-family: "DIN Bold", Helvetica, Arial, Lucida, sans-serif !important;
    text-transform: uppercase !important;
    background-color: #250e62;
    padding-top: 15px !important;
    padding-right: 30px !important;
    padding-bottom: 15px !important;
    padding-left: 30px !important;
    margin-top: 25px !important;
    cursor: pointer;
    font-weight: bolder;
    /* border: 2px solid white; */
    /* transition: all 1s ease ; */
}