p,
li {
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h2 {
    font-family: Trebuchet MS, sans-serif;
    font-size: 40px;
}

/* HEADERS AND LINKS TO PAGES */
#logo{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 250px;
}


#header {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    align-items: center;
    background-color: darkblue;
    padding: 20px;
}

#headlinks {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

#headlinks li {
    list-style: none;
    padding: 0 20px;
    position: relative;
    font-family: DejaVu Sans Mono, monospace;
}

#headlinks a {
    color: white;
    transition: 0.3s ease;
}

#headlinks a:link {
    text-decoration: none;
}

#headlinks a:visited {
    color: white;
}

#headlinks a:hover,
#headlinks a.active {
    color: #ccf6c8;
}

#headlinks a.active::after,
#headlinks a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #ccf6c8;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

footer {
    padding: 5px;
    background-color: #ccf6c8;
    box-shadow: 2px 2px 5px black;
}

.copyright {
    display: flex;
    gap: 6px;
}

.copyright img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    transform: translateY(15px);
}

#linkedin {
    transform: translateY(-15px);
}

#clientbox {
    padding: 5px;
    margin-left: 200px;
    margin-right: 200px;
    line-height: 1.5;
}

#clientbox h1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* SERVICES ON HOME PAGE */
.service h3{
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    padding-top: 40px;
    color: darkblue;
}

.service1{
  display: grid;
  grid-template-columns: auto auto auto;
  background-color: darkblue;
  padding: 10px;
}
.service1 div {
    color: white;
    background-color: darkblue;
  padding: 20px;
  font-size: 20px;
  text-align: center;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

/* SLIDER IMAGES ON HOME PAGE */
.slider {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    height: 600px;
}

.slider img {
    width: 100%;
    display: none;
    height: 600px;
    object-fit: cover;
}

img.displaySlide {
    display: block;
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

#e {
    text-align: right;
    background-color: darkblue;
    color: white;
    margin: 0%;
    width: 100%;
    display: none;
    font-family: DejaVu Sans Mono, monospace;
}

#icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

#icon img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* BLOG */
.service{
    line-height: 2;
}

.btn-details1 {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
