html {
    scroll-behavior: smooth;
    font-size: 15px;
}

:root {
    accent-color: #9b232a;
}

form {
    caret-color: #9b232a;
}

* {
    transition: all 1s
}



@media screen and (min-width: 300px) {
    .__home {
        position: sticky;
        top: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        z-index: 2;
    }

    .__subnav,
    .__subnavleft {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        line-height: 1;
        transition: all 500ms;
    }

    .__subnavright {
        display: none;
    }

    .__subnavlogo {
        font-weight: 700;
        padding: 3px 15px 3px 0;
        transition: all 500ms;
    }

    .__subnavlink {
        text-decoration: none;
        cursor: pointer;
        color: inherit;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        opacity: 0.7;
        transition: all 500ms;
    }

    .__subnavlink>div {
        padding: 3px 7px;
        border-left: solid 1px rgba(0, 0, 0, 0.3);
        /* border-right: solid 1px rgba(0, 0, 0, 0.3); */
        transition: all 500ms;
    }

    .__subnavlink>.__subnavcontact {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .__subnavlink>.__subnavcontact>i {
        padding-right: 5px;
    }

    .__navbarlinkcontainer {
        position: absolute;
        top: 75px;
        right: 0px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        box-shadow: 0 4px 7px -7px rgba(0, 0, 0, 0.5);
        -webkit-backdrop-filter: blur(10px);
        /* backdrop-filter: blur(10px); */
        border: 1px solid rgba(255, 255, 255, 0.3);
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        font-size: 1rem;
        color: white;
    }


    .__navbartoggler {
        display: block;
        background: #e9e9e9;
        cursor: pointer;
    }

    .__navbartoggler:hover,
    .__navbartoggler:focus,
    .__navbartoggler:active {
        background: #e9e9e9;
        border-radius: 5px;
        cursor: pointer;
    }

    .__sublink {
        text-decoration: none;
        cursor: pointer;
        color: inherit;
        transition: all 1s;
    }

    .__dropBtn {
        display: block;
        position: absolute;
        right: 5px;
        top: 5px;
        transition: all 500ms;
    }

    .__show {
        display: flex;
        transition: all 500ms;
    }
}

@media screen and (min-width: 451px) {
    .ql-editor>p {
        margin-bottom: 0;
    }

    .ql-editor>blockquote {
        margin: 15px;
        border-left: solid 3px #eeeeee;
        padding: 25px;
    }

    .__home {
        position: sticky;
        top: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        z-index: 2;
    }

    .__subnav,
    .__subnavleft,
    .__subnavright {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        transition: all 500ms;
    }

    .__subnavlogo {
        font-weight: 700;
        padding: 0 15px;
        transition: all 500ms;
    }

    .__subnavlink {
        text-decoration: none;
        cursor: pointer;
        color: inherit;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        transition: all 500ms;
    }

    .__subnavlink>div {
        padding: 5px 15px;
        opacity: 0.7;
        transition: all 1s;
    }

    .__subnavlink:hover>div {
        padding: 5px 15px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        opacity: 1;
        transition: all 500ms;
    }

    .__subnavlink>.__subnavcontact {
        border: solid 1px rgba(255, 255, 255, 0);
        border-radius: 0;
        font-size: 1rem;
        opacity: 0.7;
        transition: all 1s;
    }

    .__subnavlink:hover>.__subnavcontact {
        border: solid 1px white;
        border-radius: 5px;
        font-size: 1rem;
        opacity: 1;
        transition: all 500ms;
    }

    .__subnavcontact>i {
        padding-right: 5px;
        transition: all 500ms;
    }

    .__subnavlink:hover>.__subnavcontact>i {
        font-size: 1rem;
        transition: all 500ms;
    }

    .__navbarlinkcontainer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }



    .__navbartoggler {
        display: none;
    }

    .__sublink {
        text-decoration: none;
        cursor: pointer;
        color: inherit;
        transition: all 1s;
    }

    .__sublink p {
        padding: 5px 50px;
        margin: 0;
        background-color: rgba(255, 255, 255, 0);
        transition: all 1s;
    }

    .__sublink:hover p {
        font-weight: 700;
        background-color: rgba(0, 0, 0, 0.1);
        text-shadow: 1px 1px 3px black;
        box-shadow: 0 4px 7px -7px rgba(0, 0, 0, 0.5);
        color: #e9e9e9;
        transition: all 500ms;
    }

    .__dropBtn {
        display: block;
        position: absolute;
        right: 5px;
        top: 5px;
        transition: all 500ms;
    }

    .__show {
        display: flex;
        transition: all 500ms;
    }
}

@media screen and (min-width: 768px) {
    .ql-editor>p {
        margin-bottom: 0;
    }

    .ql-editor>blockquote {
        margin: 15px;
        border-left: solid 3px #eeeeee;
        padding: 25px;
    }

    .__home {
        position: sticky;
        top: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        z-index: 2;
    }

    .__subnav,
    .__subnavleft,
    .__subnavright {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        transition: all 500ms;
    }

    .__subnavlogo {
        font-weight: 700;
        padding: 0 15px;
        transition: all 500ms;
    }

    .__subnavlink {
        text-decoration: none;
        cursor: pointer;
        color: inherit;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        transition: all 500ms;
    }

    .__subnavlink>div {
        padding: 5px 15px;
        opacity: 0.7;
        transition: all 1s;
    }

    .__subnavlink:hover>div {
        padding: 5px 15px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        opacity: 1;
        transition: all 500ms;
    }

    .__subnavlink>.__subnavcontact {
        border: solid 1px rgba(255, 255, 255, 0);
        border-radius: 0;
        font-size: 1rem;
        opacity: 0.7;
        transition: all 1s;
    }

    .__subnavlink:hover>.__subnavcontact {
        border: solid 1px white;
        border-radius: 5px;
        font-size: 1rem;
        opacity: 1;
        transition: all 500ms;
    }

    .__subnavcontact>i {
        padding-right: 5px;
        transition: all 500ms;
    }

    .__subnavlink:hover>.__subnavcontact>i {
        font-size: 1rem;
        transition: all 500ms;
    }

    .__navbarlinkcontainer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .__navbartoggler {
        display: none;
    }

    .__sublink {
        text-decoration: none;
        cursor: pointer;
        color: inherit;
        transition: all 1s;
    }

    .__sublink p {
        padding: 5px 50px;
        margin: 0;
        background-color: rgba(255, 255, 255, 0);
        transition: all 1s;
    }

    .__sublink:hover p {
        font-weight: 700;
        background-color: rgba(0, 0, 0, 0.1);
        text-shadow: 1px 1px 3px black;
        box-shadow: 0 4px 7px -7px rgba(0, 0, 0, 0.5);
        color: #e9e9e9;
        transition: all 500ms;
    }

    .__dropBtn {
        display: block;
        position: absolute;
        right: 5px;
        top: 5px;
        transition: all 500ms;
    }

    .__show {
        display: flex;
        transition: all 500ms;
    }
}

.__btnviolet {
    font-size: 1rem;
    font-weight: 700;
    background: #662d91;
    border: #662d91 1px solid;
    color: white;
    border-radius: 25px;
    padding: 7px 25px;
    transition: all 1s;
}

.__btnwhite {
    font-size: 1rem;
    font-weight: 700;
    background: white;
    border: white 1px solid;
    color: #9b232a;
    border-radius: 25px;
    padding: 7px 25px;
    transition: all 1s;
}

.__btnred {
    font-size: 1rem;
    font-weight: 700;
    background: #9b232a;
    border: #9b232a 1px solid;
    color: white;
    border-radius: 25px;
    padding: 7px 25px;
    transition: all 1s;
}

.__btnviolet:hover {
    background: white;
    border: #662d91 1px solid;
    color: #662d91;
    translate: 5px -5px;
    transition: all 500ms;
}

.__btnwhite:hover {
    background: #9b232a;
    border: white 1px solid;
    color: white;
    translate: 5px -5px;
    transition: all 500ms;
}

.__btnred:hover {
    background: white;
    border: #9b232a 1px solid;
    color: #9b232a;
    translate: 5px -5px;
    transition: all 500ms;
}

.__sosmedicon {
    translate: 0 0;
    margin: 0;
    transition: all 1s;
}

.__sosmedicon:hover {
    translate: 0 -5px;
    margin: 0 5px;
    transition: all 500ms;
}