@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
    width: 100%;
    height: 100dvh;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    background: linear-gradient(
        45deg,
        rgba(7, 56, 76, 1) 0%,
        rgba(7, 50, 76, 1) 100%
    );
}

.header {
    width: 100%;
    height: 30%;
    display: flex;
    box-sizing: border-box;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.header img {
    display: block;
    height: 60px;
}

.header .main-title {
    font-size: 50px;
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 900;
    line-height: 50px;
    text-align: center;
}

.header .main-title span {
    display: block;
}

.header .main-title svg {
    color: #ff4800;
}

.content {
    width: 100%;
    height: 70%;
    padding: 20px 20px;
    box-sizing: border-box;
    background: #fff;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.content .top-text h1 {
    font-size: 50px;
    margin: 0;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    color: #07334c;
    font-weight: 900;
    line-height: 30px;
}

.content .top-text h1 svg {
    width: 40px;
    color: #ffb300;
}

.content .top-text p {
    font-size: 19px;
    margin: 10px 0 0 0;
    padding: 0;
    color: #476475;
    font-weight: 400;
    line-height: 25px;
}

.content .call-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex: 50%;
    gap: 20px;
}

.content .call-content .call-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: radial-gradient(
        circle,
        rgba(125, 221, 54, 1) 0%,
        rgba(187, 213, 52, 1) 100%
    );
    height: 60%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    text-decoration: none;
    z-index: 2;
    box-shadow: 0px 4px 0px #6eb529;
}

.content .call-content .call-button svg {
    color: #fff;
    width: 50%;
}

.content .call-content .call-button::before,
.content .call-content .call-button::after {
    content: "";
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: rgba(125, 221, 54, 0.5);
    opacity: 0;
    animation: rippleEffect 2s infinite;
    z-index: -1;
}

.content .call-content .call-button::after {
    animation-delay: 1.5s;
}

@keyframes rippleEffect {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.other-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
}

.other-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    height: 60px;
    width: 45%;
    border-radius: 10px;
    text-decoration: none;
    color: #07334c;
    font-weight: 900;
    font-size: 20px;
    gap: 10px;
}

.other-buttons a svg {
    height: 30px;
}

.other-buttons a.call-911 {
    background: #c85123;
    color: #fff;
    box-shadow: 0px 4px 0px #803315;
}

.other-buttons a.sms {
    background: #3a6177;
    color: #fff;
    box-shadow: 0px 4px 0px #20333e;
}

@media (max-height: 812px) {
    .header .main-title {
        font-size: 40px;
        line-height: 44px;
    }

    .content .top-text h1 {
        font-size: 40px;
        line-height: 30px;
    }

    .content .top-text p {
        font-size: 17px;
        line-height: 23px;
    }

    .content .call-content {
        width: 65%;
        margin: 0 auto;
    }
}
