html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


img {
    display: block;
    max-width: 100%;
}

/* site-css */

body {
    background: #f0eee8;
    font-family: 'Jomolhari', serif;
    background-image: url(../images/bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    overflow-x: hidden;
}

.wrapper {
    width: calc(100% - 30px);
    margin: 0 auto;
    position: relative;
}

.footer {
    width: 100%;
    padding: 30px 0;
    background: #c1995a;
    position: relative;
}

.footer img {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(0, -50%);
    height: auto;
}

.header {
    padding: 15px 0;
}

.date h3 {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    color: rgb(77, 75, 76);
    text-transform: uppercase;
    line-height: 1.539;
}

.content-part {
    text-align: center;
}

.title {
    margin: 20px 0;
}

.title h2 {
    font-size: 36px;
    color: rgb(77, 75, 76);
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
}

.arrow {
    width: 80px;
}

.descriptionn {
    margin: 18px 0;
}

.button {
    font-size: 16px;
    padding: 12px;
    display: inline-block;
    /* width: fit-content;
    margin-left: auto;
    margin-right: auto; */
    border-radius: 5px;
    /* background: #c1995a; */
    background: red;
    /* color: #000; */
    line-height: 1;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    text-align: center;
    position: relative;
}

.button::after {
    background-color: #c1995a;
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 3px;
        animation-name: blink;
        animation-duration: 1.3s;
        animation-iteration-count: infinite;
        animation-direction: alternate-reverse;
        animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes blink {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0.8;
    }

    100% {
        transform: scale3d(1.1, 1.3, 1.1);
        opacity: 0;
    }
}

.button:hover {
    background: #c1995a;
}

.button-grp img {
        margin-right: 8px;
            width: 45px;
            height: 45px;
            object-fit: cover;
}

.wedding-img {width: 70%; margin: 0 auto;}

.wedding-img img {
    margin: 0 auto;
}

.button-grp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

p {
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* .button-grp .button:first-child {
    margin-right: 20px;
} */

.site-branding {margin: 0 auto 20px auto; width: 180px; }

.site-branding img {width: 200px; height: auto;}

.text-center {text-align: center;}

.footer-content p:last-child {
    margin: 0;
}

a {color: #000; text-decoration: none; transition: 0.5s all;}

a:hover {
    color: #fff;
}

.footer-content h3 {font-weight: 700;}

.title h2 {margin-bottom: 8px;}
.title h2:last-child{
    margin-bottom: 0px;
}

@media only screen and (max-width: 640px) {

    .title h2 {
            font-size: 32px;
        }

}

@media only screen and (max-width: 480px) {

    .title h2 {
        font-size: 20px;
    }

}