<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* -------------------------------------------form-------------------------- */

.ContactusSection2{
    padding: 70px 60px;
    background: beige;
    overflow: hidden;
}

.ContactusSection2Main{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ContactusSection2MainContainer1{
    width: 50%;
}

/* .CS2MC1Img {
    padding-right: 60px;
    
}

.CS2MC1Img img{
    width: 100%;
    max-width: 640px;
} */


.CS2MC1FormMain{
    color: white;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
    background: #7b3706;
    border-radius: 25px;
}

.CS2MC1FormMain form{
    width: 100%;
    font-size: 24px;
}

.CS2MC1FMContext {
    display: flex;
    flex-direction: column;
    padding: 15px 0px;
}

.CS2MC1FMCInput input {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 40px;
    border-radius: 5px;
    border: 1px solid gray;
}

.CS2MC1FMCInput input[type="text"],input[type="tel"],input[type="email"]{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
}

.CS2MC1FMCLabel span{
    color: red;
}

.CS2MC1FMSR {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.CS2MC1FMCTextArea textarea {
    width: -webkit-fill-available;
    width: -moz-available;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    border: 1px solid gray;
    resize: vertical;
    border-radius: 5px;
}

#CS2MC1FMSBtn button {
    height: 50px;
    width: 120px;
    background-color: #ffffff;
    color: black;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
}

#CS2MC1FMSBtn button:hover{
    transform: scale(1.03);
    transition: transform 0.5s;
    cursor: pointer;
}

.okieThanks{
    color: white;
    margin-left: 15px;
    display: none;
}

.okieThanks .fa-solid{
    font-size: 36px;
}

.CS2MC1FMSRSubmit {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#successIcon {
    animation: 3s fadeInOut linear;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
}


.ContactusSection2MainContainer2{
    width: 50%;
    opacity: 1;
}

.ContactusSection2MainContainer2Titles{
    color: black;
    padding: 60px;
    padding-right: 0px;
}

.CS2MC2TH1 h1{
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #7b3706;
    text-shadow: 0 0 1px #7b3706;
}

.CS2MC2TPara span {
    font-size: 24px;
    font-weight: 400;
    color: #7b3706;
    text-shadow: 0 0 1px #7b3706;
}

.CS2MC2TPara p{
    font-size: 22px;
    color: #7b3706;
    text-shadow: 0 0 1px #7b3706;
}

.plspopup.active .ContactusSection2MainContainer2{
    animation: 2.3s clouds linear;
    opacity: 1;
}

@media (width&lt;1024px) {
    .ContactusSection2MainContainer1,.ContactusSection2MainContainer2{
        width: auto;
    }
    .ContactusSection2MainContainer2Titles{
        padding: 0px;
    }
    .ContactusSection2{
        padding: 70px 30px;
    }
}



#GCTitleText{
    font-size: 50px;
    padding-top: 30px;
    text-align: center;
    color: #7b3706;
    text-shadow: 0 0 1px #7b3706;
}

.GalleryContainer{
    padding: 100px 60px;
    background: beige;
    overflow: hidden;
}

.GalleryItems{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.GalleryItems img{
    width: 350px;
    height: 350px;
    object-fit: cover;
    border: 5px solid rgb(255, 255, 255);
    border-radius: 10px;
    opacity: 0.8;
    z-index: 100;
}

.GalleryItems img:hover{
    opacity: 1;
    cursor: pointer;
    /* transform: scale(1.15); */
    /* transition: 1.5s; */
}

.addedclass {
    min-width: 50% !important;
    max-width: 55% !important;
    height: auto !important;
    max-height: 535px !important;
    position: fixed !important;
    top: 15% !important;
    transform: scale(1.2) !important;
    z-index: 2500 !important;
    opacity: 1 !important;
    transition: transform 6.5s ease;
    display: inline-block;
}

.disappear {
    opacity: 0 !important;
    transition: none !important;
}

@media (width&lt;=769px) {
    .GalleryContainer{
        padding: 70px 30px;
    }
    .GalleryItems img{
        width: 100%;
        height: 246px;
        object-fit: cover;
    }
    .GalleryItems img:hover {
        transform: scale(1.05);
    }
}
</pre></body></html>