*,
body {
    margin: 0px;
    padding: 0px;
    font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    margin-bottom: 20px;
    line-height: 40px;
    font-weight: 600;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 29px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 27px;
}

h5 {
    font-size: 26px;
}

h6 {
    font-size: 25px;
}

p {
    color: #fff;
    text-align: justify;
    margin-bottom: 15px;
    line-height: 28px;
    font-weight: 500;
    font-size: 15px;
}

p:last-child {
    margin-bottom: 0px;
}

img {
    display: block;
}

a {
    color: #fff;
}

strong {
    font-weight: 600;
    color: #fff;
}

.container {
    width: 85%;
    margin: 0px auto;
    display: grid;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.bg-1 {
    background: #842A3B;
}

.bg-2 {
    background: #A3485A;
}

.ptb-40 {
    padding: 40px 0px;
}

.ptb-40 ul {
    margin-left: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.ptb-40 ul li {
    list-style: square;
    color: #fff;
    padding-bottom: 10px;
    line-height: 27px;
    font-weight: 300;
    text-align: justify;
}

header {
    padding: 10px 0px;
    background-image: linear-gradient(to bottom, #880a0b, #580508);
}

header aside img {
    max-width: 250px;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 6px 20px;
    display: block;
    margin: 2px 5px;
}

header nav ul li a.active,
header nav ul li a:hover {
    background: #aa899b;
}

.su-banner img {
    width: 100%;
}

.location-set ul {
    margin: 0px;
}

.location-set ul li {
    list-style: none;
    padding-bottom: 0px;
    width: 24%;
}

.location-set ul li a {
    text-decoration: none;
    display: block;
    padding: 5px 20px;
    background: #aa899b;
    margin: 5px 0px;
}

.style-main .style-box {
    width: 32%;
    background: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.style-main .style-box img {
    max-width: 60px;
}

.style-main .style-box span {
    font-size: 25px;
    font-weight: 600;
}

.suhani-profile-main .suhani-profile-box {
    width: 23%;
    background: #aa899b;
    overflow: hidden;
    border: 5px solid #aa899b;
    margin-bottom: 20px;
}

.suhani-profile-main .suhani-profile-box .suhani-img-box img {
    width: 100%;
    transition: .5s;
}

.suhani-profile-main .suhani-profile-box .suhani-cont-box {
    padding: 15px 10px 5px;
}

.suhani-profile-main .suhani-profile-box .suhani-cont-box .img-set {
    max-width: 100px;
    padding: 15px 0px 20px;
}

.suhani-profile-main .suhani-profile-box .suhani-cont-box span {
    font-size: 20px;
    font-family: monospace;
    color: #fff;
}

.suhani-profile-main .suhani-profile-box .suhani-cont-box img {
    max-width: 40px;

}

details {
    padding: 10px 0px 0px;
    margin-bottom: 15px;
    border: 1px solid #fff;
}

summary {
    cursor: pointer;
    font-weight: bold;
    position: relative;
    list-style: none;
    color: #fff;
    padding: 0px 10px 10px;
}

summary::marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    right: 10px;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: "-";
}

details p {
    padding: 10px 10px;
    color: #fff;
    border-top: 1px solid #fff;
}

.copy-right {
    background-image: linear-gradient(to bottom, #880a0b, #580508);
}

.copy-right p {
    padding: 15px 0px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.copy-right p a {
    font-weight: 400;
    font-weight: 600;
}

footer {
    padding: 20px 0px;
}

footer ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

footer ul li {
    list-style: none;
}

footer ul li a {
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    margin-right: 10px;
}

.hamburger {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 30px;
    display: none;
}

.hamburger span {
    background: #fff;
    height: 3px;
    width: 100%;
    margin: 8px 0;
    border-radius: 2px;
    display: block;
}

@media only screen and (max-width:991px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 73px;
        left: 0;
        background: #fff;
        width: 100%;
        flex-direction: column;
        display: none;
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
        background-image: linear-gradient(to bottom, #880a0b, #580508);
    }

    header nav ul li a {
        margin: 0px;
        padding: 16px 20px;
        font-size: 16px;
    }

    .container {
        width: 90%;
    }

    .location-set ul li {
        width: 33%;
    }

    footer ul li {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:768px) {
    .hamburger {
        margin-top: 7px;
    }

    .nav-links {
        top: 60px;
    }

    header nav ul li a {
        padding: 14px 20px;
    }

    .suhani-profile-main .suhani-profile-box {
        width: 48%;
    }

    .style-main .style-box {
        width: 49%;
    }

    .location-set ul li {
        width: 49%;
    }
}

@media only screen and (max-width:580px) {
    .suhani-profile-main .suhani-profile-box {
        width: 47%;
    }

    .location-set ul li {
        width: 100%;
    }

    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 23px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 21px;
    }

    h6 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .style-main .style-box span {
        font-size: 20px;
    }
}

@media only screen and (max-width:420px){
    .style-main .style-box,
    .suhani-profile-main .suhani-profile-box {
        width: 100%;
    }
}