/* defualt */
*
{
    margin:0;
    padding:0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.container
{
    width: 100%;
    max-width: 1170px;
    height: 100%;
    margin: auto;
}

.ptb-20
{
    padding: 20px 0;
}

.p-20 
{
    padding: 20px;
}

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

:root
{
    --primaryColor : #ff8400;
    --white: white;
    --secondprimaryColor :#a41623;
    --accent: #2f243a;
}

.primary-heading
{
    color: var(--primaryColor);
}

.white
{
    color: var(--white);
}

.secondaryPrimary
{
    color: var(--secondprimaryColor);
}

@font-face {
    font-family: cinzel;
    src: url(/fonts/Cinzel-VariableFont_wght.ttf);
}

@font-face {
    font-family: rokkit;
    src: url(/fonts/Rokkitt-Medium.ttf);
}

p, a, span, li, form, button
{
    font-family: rokkit;
}

h1,h2,h3,h4,h5,h6 
{
    font-family: cinzel;
}

.sheading img 
{
    height: 16px;
    width: auto;
    object-fit: cover;
    margin: 0 1%;
}

.btn 
{
    position: relative;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    display: inline-block;
}

.btn img 
{
    height: 24px;
    width: 24px;
    object-fit: cover;
    /* margin-right: 8px; */
}

.btn::before 
{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 0;
    transition: all 0.5s;
    z-index: 0;
}

.btn span 
{
    position: relative;
    z-index: 4;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@keyframes translateBouncy
{
    0%{transform: translateX(-4px);}
    100%{transform: translateX(4px);}
}

.active-slide
{
    display: block !important;
}

.active-bullet
{
    background-color: var(--primaryColor);
}

/* functionality */
.btn:hover::before 
{
    width: 100%;
}

/* loader */
.loader 
{
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background-color: white;
    opacity: 1;
    transition: all 0.5s;
}

.loader img 
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 10%;
    width: 10%;
    object-fit: contain;
}


/* header section */
#header
{
    position: relative;
}

.top-header
{
    background-color: var(--primaryColor);
    color: white;
    padding: 10px 0;
}

.top-header-row 
{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.top-header-date
{
    width: 10%;
}

.top-header-update
{
    width: 65%;
    padding: 0 20px;
    border-right: 2px solid white;
    border-left: 2px solid white;
}

.header-updates 
{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.header-updates li 
{
    display: inline-block;
    margin-right: 20px;   
}

.top-header-fb 
{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.5s;
    background-color: white;
    border-radius: 12px;
    padding: 5px;
    margin:0 4px;
    width: 20%;
}

.top-header-fb img
{
    height: 10%;
    object-fit: cover;
    width: 10%;
}

.top-header-fb a 
{
    text-decoration: none;
    color: var(--primaryColor);
}

.main-header
{
    height: 90px;
}

.main-header-row 
{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.main-header-call
{
    border: 2px solid var(--primaryColor);
    display: flex;
    flex-flow: row nowrap;
    gap: 8px;
    align-items: center;
    color: var(--primaryColor);
}

.main-header-nav
{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row nowrap;
    gap: 60px;
    align-items: center;
}

.main-header-nav a 
{
    text-decoration: none;
    color: black;
    font-weight: 700;
    position: relative;
    transition: all 0.5s;
}

.nav-item::before 
{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 4px;
    background-color: var(--secondprimaryColor);
    width: 0;
    transition: all 0.5s;
}

.main-header-nav img 
{
    height: 80px;
    width: 150px;
    object-fit: contain;
}

.main-header-translate
{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 2px solid var(--primaryColor);
    border-radius: 12px;
}

.main-header-translate img 
{
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.mobile-hamburger
{
    height: 40px;
    width: 40px;
    object-fit: cover;
    z-index: 500;
    display: none;
}

.mobile-close
{
    height: 40px;
    width: 40px;
    object-fit: cover;
    z-index: 500;
    display: none;
}

.mobile-header
{
    height: 100%;
    width: 100%;
    display: flex;
    position: fixed;
    top:0;
    right: 0;
    background-color: white;
    justify-content: center;
    align-items: center;
    z-index: 400;
    flex-flow: column nowrap;
}

.mobile-header img 
{
    height: 150px;
    width: 150px;
    object-fit: contain;
    display: block;
}

.mobile-header ul 
{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mobile-header li 
{
    display: block;
    margin: 20px 0;
    text-align: center;
}

.mobile-header a 
{
    text-decoration: none;
    color: var(--primaryColor);
    position: relative;
    cursor: pointer;
}

/* functionality */
.nav-item:hover::before 
{
    width: 100%;
}

/* hide google translate top bar */
.goog-te-banner-frame.skiptranslate 
{
    display: none !important;
}

/* remove extra google branding box */
.goog-logo-link,
.goog-te-gadget span
{
    display: none !important;
}

/* remove translate text */
.goog-te-gadget
{
    font-size: 0 !important;
}

/* style dropdown only */
.goog-te-combo
{
    margin: 0 !important;
    padding: 8px 12px;
    border: 2px solid var(--primaryColor);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px !important;
}

/* banner */
#banner
{
    height: 600px;
}

.slider
{
    height: 100%;
    width: 100%;
    position: relative;
}

.slide 
{
    position: absolute;
    height: 100%;
    width: 100%;
    display: none;
}

.slide img, .slide video 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay 
{
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.slide-content
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    color: white;
}

.slide-content h2, .slide-contentt h2 
{
    font-size: 40px;
}

.slide-contentt
{
    text-align: left;
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
    color: white;
}

.slide-contentt a
{
    color: white;
    background-color: var(--primaryColor);
    width: 140px;
    text-align: center;
}

.slide-row
{
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    align-items: center;
}

.slide-row img 
{
    height: 100%;
    width: 100%;
    object-fit:cover;
    border-radius: 12px;
    border: 2px solid var(--primaryColor);
}

.slide-three
{
    background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.5)), url(/media/slide3.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    padding: 100px 0;
    background-position: bottom;
}

.slide-btn 
{
    color: white;
    background-color: var(--primaryColor);
    border-radius: 12px;
    display: inline-block;
    width: 20%;
    margin: auto;
}

.slide-bullets
{
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.slide-bullets li 
{
    height: 15px;
    width: 15px;
    border: 2px solid var(--primaryColor);
    border-radius:100%;
    display: inline-block;
}

.slide-indicators a 
{
    position: absolute;
}

.slide-indicators .left-indicator
{
    left: 5%;
    top: 50%;
}

.left-indicator img 
{
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.slide-indicators .right-indicator
{
    right: 5%;
    top: 50%;
}

.right-indicator img 
{
    height: 40px;
    width: 40px;
    object-fit: contain;
}

/* service section */

.service-row 
{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.service
{
    height: 400px;
    width: 24%;
    position: relative;
    border: 2px solid var(--primaryColor);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px -1px 6px black;
}

.service-content
{
    position: absolute;
    top: 50%;
    left: 0;
}

.service-content a 
{
    transition: 0.5s all;
}

.service img 
{
    height: 45%;
    width: 100%;
    object-fit: cover;
}

.service a 
{
    text-decoration: none;
    color: black;
}

.service-link span
{
    position: relative;
    transition: all 0.5s;
}

.service-link span::before 
{
    position: absolute;
    content: "";
    width: 0;
    height: 4px;
    background-color: var(--secondprimaryColor);
    top: 100%;
    left: 0;
    transition: all 0.5s;
}

.astrology, .consultancy
{
    margin:0 1%;
}

.astrology
{
    margin-right: 0%;
}

.service-img 
{
    height: 50px;
    width: 50px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 2px solid var(--primaryColor);
    border-radius: 100%;
    overflow: hidden;
    padding: 4px;
    background-color: white;
}

.service-img img 
{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* functionality */
.service-link span:hover::before 
{
    width: 100%;
}

/* about section start */
#about 
{
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to right,rgba(0,0,0,0.2), rgb(255, 128, 0) ,rgb(255, 183, 0)), url(/media/aboutme-imageback.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    min-height: 300px;
}

.about-backom
{
    position: absolute;
    right: -20%;
    top: 60%;
    height: 100%;
    width: 50%;
    object-fit: cover;
    opacity: 0.2;
}

.about-row
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.aboutme-content
{
    width: 58%;
    height: 400px;
}

.aboutme-image
{
    width: 38%;
    height: 400px;
    margin-right: 2%;
    border: 2px solid var(--primaryColor);
    background-image:url(/media/aboutme-imageback.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0;
    border-radius: 12px;
}

.aboutme-image img 
{
    height: 100%;
    width: 100%;
    object-fit: contain;
    backdrop-filter: blur(2px);
}

.about-but 
{
    background-color: white;
    color: var(--primaryColor);
    transition: all 0.5s;
}

.about-but::before
{
    background-color: var(--secondprimaryColor);
}

/* functionality */
.about-but:hover 
{
    color: white;
}

/* spec section start */
#spec
{
    margin-top: -2%;
    position: relative;
    z-index: 20;
}

.spec-row
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 1px 1px 8px black;
    background-color: white;
}

.spec-item 
{
    height: 50px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    border-left: 2px solid var(--primaryColor);
    width: 24%;
}

.spec-item img 
{
    height: 100%;
    width: 30%;
    object-fit: contain;
}

.fourth-spec
{
    border-right: 2px solid rgb(255, 165, 0);
}

/* ceremonies section start */
#ceremonies
{
    text-align: center;
}

.buttonToogle 
{
    margin-top: 20px;
}

.content 
{
    width: 100%;
}

a.showMore 
{
    display: inline-block;
    background-color: var(--secondprimaryColor);
    color: white;
    transition: all 0.5s;
    animation: translateBouncy 1s infinite;
}        

.items 
{
    text-align: center;
    display: flex;
    flex-flow: row wrap;
}

.items .item 
{
    height: 340px;
    width: 32.33%;
    margin: 1% 1% 1% 0;
    color: #fff;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.item-backimg
{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.item-content
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.ceremonies-btn
{
    display: inline-block;
    border: 2px solid var(--primaryColor);
    color: white;
}

.ceremonies-btn::before
{
    background-color: var(--primaryColor);
}

.item-overlay
{
    height: 0;
    width: 0;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,0%);
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
}

/* testimonial section */
#testimonials
{
    position: relative;
    overflow: hidden;
    background: linear-gradient(#2f243a,  #2f243a,  #2f243a, #2f243a);
    box-shadow: -1px 0 8px black;
}

.testimonials-back-img
{
    position: absolute;
    height: 70%;
    left: 0;
    top: -25%;
    opacity: 0.5;
    transform: scaleX(-1);
}

.testimonials-back-img1
{
    position: absolute;
    height: 100%;
    right: -5%;
    top: 0;
    opacity: 0.5;
}

.testimonials-back-img2
{
    position: absolute;
    height: 20%;
    left: 2%;
    top: 75%;
}

.item > div 
{
    min-height: 350px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-evenly;
}

.item div img 
{
    height: 20%;
    width: 20%;
    object-fit: cover;
    border-radius: 100%;
}

.stars 
{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.stars li 
{
    margin: 2px;
    display: inline-block;
}

.stars li img 
{
    height: 15px;
    width: 15px;
    object-fit: cover;
}

/* form section starts */
#form 
{
    background:linear-gradient(to left, var(--primaryColor) ,  rgba(47, 36, 58,1),  rgba(47, 36, 58,0.6)),url(/media/form-left-back.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.form-back-img
{
    position: absolute;
    height: 70%;
    right: 0;
    top: 50%;
    z-index: 4;
}

.form-sections
{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.form-left
{
    color: white;
    width: 50%;
}

.form-left-list
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.form-left-list li 
{
    display: flex;
    flex-flow: row nowrap;
    /* justify-content: center; */
    align-items: center;
    gap: 12px;
}

.form-left-list img 
{
    height: 40px;
    width: 40px;
    object-fit: cover;
    margin: 6px 0;
}

.form-right
{
    width: 50%;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0px 0px 8px black;
}

.form-right form 
{
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    color: white;
}

.form-right input, select, textarea 
{
    padding: 6px;
    width: 100%;
    border: none;
}

.form-right>form select
{
    font-weight: 700;
}

textarea
{
    resize: none;
}

.btn-form 
{
    width: 30%;
    display: inline-block;
    border: none;
    background-color: var(--primaryColor);
    color: white;
    cursor: pointer;
}

/* functionality */

.ceremonies-btn:hover::before
{
    width: 100%;
}

.item:hover .item-overlay
{
    height: 100%;
    width: 100%;
}

.item:hover .item-backimg
{
    transform: scale(1.1);
}

a.showMore:hover 
{
    box-shadow: 1px 1px 8px black;
}

.service-content a:hover 
{
    color: var(--primaryColor);
}

/* blog section */
#blog 
{
    position: relative;
    overflow: hidden;
}

.blog-row 
{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
    min-height: 400px;
}

.blog-card
{
    height: 100%;
    width: 30%;
    border: 2px solid red;
    position: relative;
    z-index: 50;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s;
}

.blog-card h3
{
    padding: 20px 20px 0 20px;
}

.blog-card a 
{
    text-decoration: none;
    color: black;
    transition: all 0.5s;
}

.blog-card img 
{
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.blog-back-img
{
    position: absolute;
    height: 70%;
    right: -2%;
    bottom: -25%;
    opacity: 0.5;
}

.blog-sec-but
{
    background-color: var(--primaryColor);
    color: white;
    padding: 10px 20px;
    transition: all 0.5s;
}

/* functionality */
.blog-card:hover
{
    transform: scale(1.05);
}

.blog-card a:hover 
{
    color: var(--primaryColor);
}

.blog-sec-but:hover 
{
    box-shadow: 0px 0px 8px black;
}

/* pitru puja section */
#pitrupuja
{
    min-height: 300px;
    background: linear-gradient(to right , rgba(0,0,0,0), rgba(255,255,255,0.5), rgba(255,255,255,1)) , url(/media/pitro\ moksh.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: 30% 20%;
}

.pitrupuja-content
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.pitrupuja-content a 
{
    margin: 20px 0;
}

/* top footer section*/
#footer
{
    background-color: var(--primaryColor);
}

.top-footer
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0;
}

.top-footer-one, .top-footer-two, .top-footer-three, .top-footer-four
{
    display: flex;
    flex-flow: column nowrap;
    width: 25%;
    gap: 20px;
}

.top-footer-two, .top-footer-three, .top-footer-four
{
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0 20px;
}

.top-footer-call, .top-footer-loc, .top-footer-email
{
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    align-items: center;
}

.top-footer-subImg
{
    height: 30px;
    width: 30px;
    object-fit: cover;
}

.top-footer-logo
{
    height: 70%;
    width: 70%;
    object-fit: cover;
}

.top-footer-two a, .top-footer-three a 
{
    text-decoration: none;
}

.bottom-footer
{
    border-top: 2px solid rgba(255, 255, 255, 0.5);
}

/* --------------Blog Post Pages---------------- */
#sub-page-banner
{
    min-height: 200px;
    background:linear-gradient(to bottom, rgba(0,0,0,0), rgba(255,255,255,0.4), rgba(0,0,0,0)) , url(/media/sub-pages-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: 40% 70%;
}

.article-cat
{
    background-color: var(--primaryColor);
    border-radius: 8px;
    padding: 5px;
    width: 80px;
    margin: auto;
}

.article-img 
{
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.article-date
{
    padding-bottom: 20px;
    display: flex;
    flex-flow: row nowrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.article-date img 
{
    height: 16px;
    width: 16px;
    object-fit: contain;
}

.article-row 
{
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
}

.article-row-img img
{
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.article-row-img 
{
    height: 250px;
    width: 30%;
    border-radius: 12px;
}

.article-row-content
{
    width: 70%;
}

.article-qt 
{
    text-align: center;
    padding: 40px;
    background-color: rgba(255, 165, 0, 0.2);
    border-radius: 12px;
    margin: 20px 0;
}

    .recent-blog-card img 
    {
        height: 250px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .recent-blog-row 
    {
        flex-flow: row nowrap;
        display: flex;
        justify-content: space-between;
    }

    .recent-blog-card a 
    {
        transition: all 0.5s;
    }

    .recent-blog-card
    {
        width: 45%;
        border:2px solid var(--primaryColor);
        border-radius: 12px;
        transition: all 0.5s;
    }

    #comment
    {
        box-shadow: 0px 0px 10px black;
        padding: 40px 0;
    }

    #comment-form-row 
    {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

    #comment-form-row label
    {
        width: 50%;
    }

    #comment-form-row input 
    {
        width: 98%;
        padding: 20px 0;
        outline: none;
        border: none;
        border-bottom: 1px solid grey;
    }

    #comment-form label 
    {
        margin: 20px 0;
    }

    #comment-form textarea 
    {
        padding: 20px 0 0 0;
        border: none;
        border-bottom: 1px solid grey;
        outline: none;
        font-family: rokkit;
        font-size: 16px;
    }

    #comment-form #send
    {
        margin: 20px 0;
        display: inline-block;
        padding:10px 20px;
        border: none;
        color: white;
        background-color: var(--primaryColor);
        cursor: pointer;
    }

    /* functionality */
    .recent-blog-card:hover
    {
        transform: scale(1.05);
    }

    .recent-blog-card a:hover 
    {
        color: var(--primaryColor);
    }

/* ------------------About Page--------------- */

#about-page
{
    background-image: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,0)), url(/media/blog1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.about-page-row
{
    height: 400px;
    overflow: hidden;
    position: relative;

}

.about-page-img
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%;
    object-fit: contain;
    z-index: 20;
    position: relative;
}

.about-page-backimg
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 100%;
    width: 100%;
    object-fit: contain;
    z-index: 1;
}

#about-pandit-ji
{
    color: var(--primaryColor);
    text-decoration: none;
}

/* ---------------Responsiveness--------------- */
@media screen and (max-width:768px) 
{

    .top-header-date
    {
        width: 20.33%;
    }

    .top-header-update
    {
        width: 47.33%;
    }

    .top-header-fb
    {
        width: 33.33%;
    }

    .main-header
    {
        padding: 18px 0 0 0;
    }

    .top-header-row 
    {
        justify-content: space-evenly;
    }

    .main-header-row
    {
        justify-content: space-between;
    }

    .main-header-nav
    {
        display: none;
    }

    .mobile-hamburger
    {
        display:block;
    }   

    .slide-indicators
    {
        display: none;
    }

    .slide-contentt 
    {
        width: 80%;
        margin: auto;
        text-align: center;
        align-items: center;
    }

    .slide-three .slide-row img 
    {
        display: none;
    }

    .slide-btn 
    {
        width: auto;
        margin: auto;
    }

    #banner
    {
        min-height: 700px;
    }

    .service, .aboutme-content, .aboutme-image
    {
        width: 80%;
    }

    .service-row
    {
        gap: 20px;
    }

    #about 
    {
        background-image: linear-gradient(to bottom,rgba(0,0,0,0.2), rgb(255, 128, 0) ,rgb(255, 183, 0)), url(/media/aboutme-imageback.jpg);
    }

    .about-backom
    {
        top: 60%;
        right: -40%;
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .about-row, .form-sections, .blog-row, .top-footer
    {
        flex-flow: column nowrap;
        gap: 20px;
    }

    .spec-row
    {
        flex-wrap: wrap;
        gap: 20px;
        width: 80%;
        margin: auto;
        margin-top: -4%;
    }

    .spec-item
    {
        width: 46%;
        border: none;
    }

    .items 
    {
        gap: 20px;
    }

    .form-left, .form-right, .blog-card, .bottom-footer, .items .item
    {
        width: 80%;
    }

    .bottom-footer, .items .item
    {
        margin: auto;
    }

    .top-footer-one, .top-footer-two, .top-footer-three, .top-footer-four
    {
        margin: auto;
        width: 80%;
        border: none;
    }

    .form-back-img
    {
        height: 30%;
        object-fit: contain;
        top: 80%;
    }

    .article-row
    {
        flex-direction: column;
    }

    .article-row-img 
    {
        width: 100%;
    }

    .article-row-content
    {
        width: 100%;
    }

    .recent-blog-card img 
    {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .recent-blog-row 
    {
        flex-flow: column wrap;
    }

    .recent-blog-card
    {
        width: 100%;
    }

    .recent-blog-card
    {
        margin: 20px 0;
    }

    .recent-blog-card:hover 
    {
        transform: scale(1);
    }

    #comment-form-row
    {
        flex-flow: column nowrap;
    }

    #comment-form-row label 
    {
        width: 100%;
    }

    #about-page
    {
        background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,1)), url(/media/blog1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }

}

@media screen and (min-width:768px) and (max-width:1200px)
{

    .top-header-date
    {
        width: 20.33%;
    }

    .top-header-update
    {
        width: 47.33%;
    }

    .top-header-fb
    {
        width: 33.33%;
    }

    .main-header
    {
        padding: 18px 0 0 0;
    }

    .top-header-row 
    {
        justify-content: space-evenly;
    }

    .main-header-row
    {
        justify-content: space-between;
    }

    .main-header-nav
    {
        display: none;
    }

    .mobile-hamburger
    {
        display:block;
    }   

    .slide-contentt 
    {
        width: 60%;
        margin: auto;
        text-align: center;
        align-items: center;
    }

    .slide-three .slide-row img 
    {
        display: none;
    }

    .slide-btn 
    {
        width: auto;
        margin: auto;
    }

    .service
    {
        width: 40%;
    }

    .service-row
    {
        flex-direction: row;
        gap: 20px;
    }

    #about 
    {
        background-image: linear-gradient(to bottom,rgba(0,0,0,0.2), rgb(255, 128, 0) ,rgb(255, 183, 0)), url(/media/aboutme-imageback.jpg);
    }

    .about-backom
    {
        top: 60%;
        right: -40%;
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .about-row, .form-sections, .blog-row, .top-footer
    {
        flex-flow: column nowrap;
        gap: 20px;
    }

    .spec-row
    {
        flex-wrap: wrap;
        gap: 20px;
        width: 80%;
        margin: auto;
        margin-top: -4%;
    }

    .spec-item
    {
        width: 46%;
        border: none;
    }

    .items 
    {
        gap: 20px;
    }

    .items .item
    {
        width: 40%;
    }

    .form-left, .form-right, .bottom-footer
    {
        width: 80%;
    }

    .blog-row 
    {
        flex-flow: row wrap;
    }

    .blog-card
    {
        width: 40%;
    }

    .bottom-footer, .items .item
    {
        margin: auto;
    }

    .top-footer
    {
        flex-flow: row wrap;
    }

    .top-footer-one, .top-footer-two, .top-footer-three, .top-footer-four
    {
        width: 40%;
        border: none;
    }

    .form-back-img
    {
        height: 30%;
        object-fit: contain;
        top: 80%;
    }

    #about-page
    {
        background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0), rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,1)), url(/media/blog1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }

}

/* whatsapp button */
.whatsapp
{
    position: fixed;
    bottom: 6%;
    left: 2%;
    height: 50px;
    width: 50px;
    z-index: 10000;
}

.whatsapp img 
{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.tooltip 
{
    position: relative;
}

.tooltip-text
{
    animation: fadein 4s 3;
    position: absolute;
    top: 50%;
    left: 110%;
    background-color: rgb(114, 226, 114);
    color: white;
    padding: 10px 20px;
    width:300px;
    opacity: 1;
    border-radius: 12px;
}

/* scroll top */
.scroll-top
{
    position: fixed;
    bottom: 6%;
    right: 2%;
    height: 50px;
    width: 50px;
    z-index: 10000;
}

.scroll-top img 
{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* functionality */
@keyframes fadein
{
    0%{opacity: 0;}
    100%{opacity:1}
}