:root {
  --background: #ffffff;
  --foreground: #374151;
  --heading-font: "Barlow Condensed", Arial, Helvetica, sans-serif;
  --body-font: "Open Sans", Arial, Helvetica, sans-serif;
}


@theme {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--body-font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: var(--heading-font);
}
ol,
ul,
li {
    list-style: none
}

img {
    max-width: 100%
}
.font-heading {
  font-family: var(--heading-font);
}
.container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.bg-custom{
    background: #9A3220;
}
.hover\:bg-custom:hover{
    background: #9A3220;
}
.text-custom{
    color: #9A3220;
}
.hover\:text-custom:hover{
    color: #9A3220;
}
.border-custom{
    border-color: #9A3220;
    opacity: 1;
}

.topheader{
    display: block;
    background: #34343C;
    padding: 5px 0;
}
.topheader .innerheader{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    width: 115px;
    display: block;
}
.maintitle{
    display: block;
    font-size: 4.5rem;
    line-height: 1.0;
    font-weight: 600;
}
.footer{
    display: block;
    padding: 3rem 0;
    background: #000;
}
.footerinner{
    display: block;
    padding: 2rem 2rem;
    background: #1C1C28;
    border-radius: 8px;
}
.footermenu{
    display: block;
}
.footermenu ul{
    display: block;
}
.footermenu ul li{
    display: block;
}
.footermenu ul li a{
    display: block;
    font-size: 1rem;
    line-height: 24px;
    padding: 10px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cursor{
    animation: blink 2s infinite;
}
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
@media screen and (max-width:767px){
    .maintitle{
        display: block;
        font-size: 3.5rem;
        line-height: 1.0;
        font-weight: 600;
    }
}

/* Thank You Page Styles */
.thanku-banner {
    width: 100%;
    background: linear-gradient(rgba(29, 81, 87, 0.7), rgba(29, 81, 87, 0.7)), url('/images/10x20-1.jpg') no-repeat center;
    background-size: cover;
    padding: 60px 0 60px;
    text-align: center;
    position: relative;
}

.thanku-banner h1 {
    font-size: 50px;
    color: #fff;
    z-index: 1;
    text-transform: uppercase;
}

.thanku-banner p {
    font-size: 20px;
    color: #fff;
    line-height: 40px;
}

.thanku-inner {
    width: 100%;
    padding: 70px 0px 90px;
    background-color: #fff;
}

.thanku-inner .img-box {
    width: 100%;
    text-align: center;
}

.thanku-inner .th-box {
    margin: 0px auto;
    box-shadow: 0px 5px 79px 0px rgba(0, 0, 0, 0.29);
    padding: 50px;
    max-width: 900px;
}

.thanku-inner p {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 20px;
    padding: 30px 180px;
}

.thanku-inner p span {
    color: #009aac;
}

.backtohome {
    width: 100%;
    text-align: center;
}

.backtohome a {
    display: inline-block;
    padding: 9px 13px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #009aac;
    color: #fff;
}

@media screen and (max-width:767px) {
    .backtohome a {
        display: block;
        padding: 9px 13px;
        font-size: 16px;
    }
    .thanku-banner h1 {
        font-size: 24px;
    }
    .thanku-banner p {
        font-size: 16px;
        color: #fff;
        line-height: 28px;
        margin-top: 10px;
    }
    .thanku-banner {
        padding: 40px 0px;
    }
    .thanku-inner .img-box img {
        width: 30%;
    }
    .thanku-inner p {
        font-size: 16px;
        line-height: 30px;
        padding: 20px 0px;
    }
    .thanku-inner {
        width: 100%;
        padding: 40px 0px 44px;
    }
}

/* Blog Content Spacing */
.blog-content {
    line-height: 1.8;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
}

.blog-content blockquote {
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 4px solid #de3831;
}

.blog-content img {
    margin: 2rem 0;
}