@import url('https://fonts.googleapis.com/css2?family=Tektur&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tektur:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Victor+Mono:ital,wght@1,600&display=swap');

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    text-decoration: none;
}

/* Navbar */
.logoimg {
    width: 9.375rem;
}

.Topnav {
    display: flex;
    justify-content: space-around;
    background-color: white;
    width: 100%;
    z-index: 2000;
}

.topul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    z-index: 1000;
}

.Topnav a {
    color: black;
    position: relative;
}

.atags a:hover {
    color: orange;
}

.atags a:hover::after {
    content: "";
    position: absolute;
    background-color: red;
    width: 100%;
    height: .1875rem;
    left: 0;
    bottom: -0.4375rem;
    animation: widthinc 0.3s ease;
}

@keyframes widthinc {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.hamburger {
    display: none;
}

/* ++++++++++++++++++++++++++++(HAMburger) +++++++++++++++++++++++++++++*/
.line {
    line-height: 80px;
    color: black;
}

.hamburger .line {
    width: 50px;
    height: 5px;
    background-color: black;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

@media (max-width:940px) {
    .hamburger {
        display: block;
        transform: translateY(1.2rem);
    }

    .topul {
        position: fixed;
        top: 80px;
        background: grey;
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        left: -100%;
        gap: 0;
    }

    .Topnav ul li {
        margin: 1.4375rem 0;
        height: min-content;
    }

    .topul.active {
        left: 0;
    }
}

/* +++++++++++++++ Page heading +++++++++++++++ */
.Topintro {
    background-image: url("./Photos(Home)/Startbackground.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 70vh;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: 1fr 2fr 1fr;
    place-items: center;
}

.header {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
    width: 100%;
    height: 100%;
}

.clientsh2 {
    background-image: url("./Photos\(Home\)/WebShapeyellow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.clientsh2 h2 {
    color: white;
    font-size: 4rem;
    text-align: center;
    font-family: 'Tektur', cursive;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}

/* +++++++++++++++ Terms content +++++++++++++++ */
.termsmain {
    background-color: black;
    padding: 60px 20px;
}

.termscont {
    max-width: 60rem;
    margin: 0 auto;
    background-color: wheat;
    padding: 50px;
    border-top: 8px solid #f0b810;
}

.termsintro {
    border-bottom: 2px solid rgba(0, 0, 0, .15);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.termsintro h3 {
    font-family: 'Victor Mono', monospace;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.updated {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b5b00;
    margin-bottom: 1rem;
}

.termscont p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.9;
    word-spacing: 2px;
    text-align: justify;
    margin-bottom: 1rem;
}

.subhead {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 1.5rem 0 0.75rem 0;
    color: #5c4a00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.termssection {
    margin-bottom: 2.5rem;
}

.termssection h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 6px solid #f0b810;
    text-transform: uppercase;
}

.termssection ul {
    margin: 0 0 1rem 1.25rem;
}

.termssection ul li {
    font-family: 'Poppins', sans-serif;
    line-height: 1.9;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.termssection ul li::before {
    content: "\2022";
    color: #b8860b;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.termscont a {
    color: #8b4513;
    font-weight: 600;
    text-decoration: underline;
}

.termscont a:hover {
    color: orange;
}

.termsnote {
    background-color: #f0b810;
    padding: 25px;
    margin-top: 2rem;
    font-family: 'Poppins', sans-serif;
}

.termsnote p {
    margin-bottom: 0;
}

@media (max-width:768px) {
    .termscont {
        padding: 30px 25px;
    }

    .clientsh2 h2 {
        font-size: 3rem;
    }

    .termsintro h3 {
        font-size: 1.6rem;
    }

    .termssection h4 {
        font-size: 1.15rem;
    }

    .subhead {
        font-size: 0.95rem;
    }
}

@media (max-width:430px) {
    .clientsh2 h2 {
        font-size: 2.2rem;
    }

    .termsmain {
        padding: 40px 10px;
    }

    .termscont {
        padding: 25px 18px;
    }

    .termscont p {
        text-align: left;
    }
}

/* footer */
.footer {
    background: url("https://media.istockphoto.com/id/1297247938/photo/black-gold-background-gradient-texture-soft-golden-with-light-technology-diagonal-gray-and.webp?b=1&s=170667a&w=0&k=20&c=DZ4QHx86nnUp-lofmiDZddtCY2E6yD7rYNV8VXIcYOI=");
    background-repeat: no-repeat;
    background-size: cover;
}

.footrow {
    display: flex;
    justify-content: space-evenly;
    height: fit-content;
}

.footlinks {
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
}

.footcol1 {
    margin: 1rem 1.5rem;
}

.footcol {
    margin-top: 2rem;
    height: fit-content;
    font-size: 2rem;
}

.footcol ul {
    text-align: left;
    font-size: 1.5rem;
}

.footcol li,
.footcol li a {
    list-style: none;
    text-decoration: none;
    color: wheat;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.5rem;
}

.footcol li:hover,
.footcol li a:hover {
    color: orange;
}

.footheading {
    text-align: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.endtext {
    text-align: center;
    color: white;
}

.newlogo {
    margin: 2rem;
    margin-top: 0;
    width: 300px;
    height: 200px;
}

@media (max-width:960px) {
    .footcont {
        align-items: center;
        text-align: center;
        align-content: center;
    }

    .footrow {
        flex-direction: column;
    }

    .footheading {
        width: 9.1875rem;
        text-align: center;
    }

    .footcol {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        align-content: center;
    }

    .endtext {
        margin-top: 1rem;
    }

    .newlogo {
        margin-bottom: 0;
    }

    .footheading {
        margin-bottom: 0.5rem;
        text-align: center;
        align-items: center;
        align-content: center;
    }
}

@media (max-width:430px) {
    .footlinks {
        flex-direction: column;
        align-content: center;
    }
}
