body {
    font-family: "Sofia Sans", sans-serif;
}

:root {
    --heading: "EB Garamond", serif;
    --sub-heading: "Sofia Sans", sans-serif;
    --sub-heading-color: #494949;
}

.thanks-sec h1{
    font-family: var(--heading);
}

.thanks-sec p{
    font-family: var(--sub-heading);
    color: var(--sub-heading-color);
}

.navbar-nav .dropdown-menu .dropdown-item a {
    font-family: var(--sub-heading);
}

.navbar-nav li a {
    font-family: var(--sub-heading);
}

.navbar {
    background: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px rgb(219, 219, 219);
}

.navbar h1 .navbar-brand {

    font-size: 30px;
    font-family: var(--heading);
    font-weight: 700;
    margin-right: 150px;
}

.home-card {
    border-radius: 20px;
}

/* Button Star */

/* From Uiverse.io by mrhyddenn */
.button {
    position: relative;
    margin: 0;
    padding: 0.5em 1em;
    outline: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    background-color: #000000;
    border-radius: 10px;
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    font-family: inherit;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.button p {
    font-family: var(--sub-heading);
    color: white;
    text-decoration: none;

}

.button:hover {
    animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
        transform: rotate(7deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-7deg) translate3d(0, 0, 0);
    }

    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }

    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

.button:hover p {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

.button::before,
.button::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
    z-index: -1;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.button:hover::before,
.button:hover::after {
    opacity: 0.15;
    transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.button:hover::before {
    transform: translate3d(50%, 0, 0) scale(0.9);
}

.button:hover::after {
    transform: translate(50%, 0) scale(1.1);
}

.contact-right-sec .submit-btn {
    padding: 10px;
    background: black;
    color: white;
    border-radius: 30px;
}


/* button end */

.home-sec-3 img {
    border-radius: 25px;
}

.home-sec-3 .text h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--heading);
}

.home-sec-3 .text h4 {
    text-align: left;
    font-size: 20px;
    color: var(--sub-heading-color);
    margin-bottom: 13px;
}

.home-sec-3 .text p {
    text-align: justify;
    font-size: 15px;
    width: 89%;
    margin-bottom: 20px;
}

/* About Btn */

.home-sec-3 a {
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid black;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
}

.home-sec-3 a {
    border-radius: 20px;
}

.home-sec-3 a:hover {
    color: white;
}

.btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: black;
    z-index: -1;
    transition: all 1s;
}

.btn:hover::before {
    width: 160%;
}

.home-sec-3 a i {
    font-size: 19px;
    font-weight: 600;
}

/* About Btn End */

.home-sec-4 h1 {
    font-family: var(--heading);
    font-weight: 700;
    text-align: center;
}

.home-sec-4 p {
    font-size: 15px;
    color: var(--sub-heading-color);
}

.display-card {
    display: inline-block;
    height: 100%;
    padding: 10px;
    border-radius: 20px;
    margin: 0px 20px;
    overflow: hidden;
}

.banner-sec {
    background: url("../images/banner.png") center center / cover no-repeat;
    padding: 100px;
}

.banner-sec h2 {
    font-size: 50px;
    font-family: var(--heading);
    font-weight: 800;
}

.banner-sec a {
    text-decoration: none;
    color: black;
}

.banner-sec i {
    text-decoration: none;
    color: black;
}

.about-sec-2 .text h1 {
    font-family: var(--heading);
    font-size: 40px;
    font-weight: 800;
}

.about-sec-2 .text h3 {
    font-family: var(--sub-heading);
    color: var(--sub-heading-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.about-sec-2 .text p {
    text-align: justify;
    font-size: 16px;
}

.contact-left-sec {
    background: #000000;
    border-radius: 20px;
    color: #fff;
    padding: 25px;
    width: 80%;
}

/* Footer-Start */

footer {
    background: rgb(0, 0, 0);
    color: white;
}

footer h1 {
    font-family: var(--heading);
    font-size: 35px;
    font-weight: 700;
}

footer h3 {
    font-family: var(--sub-heading);
    /* color: var(--sub-heading-color); */
    font-size: 25px;
}

footer p {
    font-family: var(--sub-heading);
    font-size: 16px;
    text-align: justify;
}

footer h4 {
    font-family: var(--heading);
    font-size: 25px;
    font-weight: 700;
}

footer ul {
    list-style: none;
}

footer ul li a {
    text-decoration: none;
    font-family: var(--sub-heading);
    color: white;
}

/* Footer-End */

/* Contact-Form-Start */

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-custom {
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
}

.btn-custom:hover {
    background-color: #0056b3;
}

.contact-left-sec {
    font-family: var(--sub-heading);
}

.form-title {
    font-size: 40px;
    font-family: var(--heading);
}

.contact-right-sec .form-label {
    font-family: var(--sub-heading);
}

/* Form-Submission-Button */
.contact-form a {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.contact-form a.submit-btn {
    width: 12rem;
    height: auto;
}

.contact-form a.submit-btn .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

.contact-form a.submit-btn .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.contact-form a.submit-btn .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.contact-form a.submit-btn .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.contact-form a.submit-btn .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

.contact-form a:hover .circle {
    width: 100%;
}

.contact-form a:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

.contact-form a:hover .button-text {
    color: #fff;
}

/* Contact-Form-End */

.product-card {
    box-shadow: 0 1px 10px rgba(68, 68, 68, 0.2);
}

.product-card a {
    text-decoration: none;
    font-family: var(--sub-heading);
    color: var(--sub-heading-color);
}

.slick-slide img {
    display: inline-block;
}