/* PopUp Modal Css Start Here */

#staticBackdrop .modal-dialog {
    max-width: 800px !important;
    margin: 150px auto 0;
}

#staticBackdrop .modal-content {
    background: transparent;
    border-radius: 0px;
    border: none;
    position: relative;
    z-index: 1;
}

#staticBackdrop .modal-content .btn-close {
    position: absolute;
    right: 40px;
    left: 0;
    margin: 0 auto;
    top: 0px;
    background: linear-gradient(80deg, #c7af72, #c7af72);
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 2px solid transparent;
    border-radius: 0px 18px 0px 10px;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    z-index: 4;
    opacity: 1;
}

#staticBackdrop .modal-content .btn-close i {
    color: #fff;
    font-weight: 600;
}

#staticBackdrop .modal-header {
    padding: 0px;
    border-bottom: none;
}

#staticBackdrop .modal-body {
    padding: 0;
}

#staticBackdrop .modal-body .modal-body-img1 {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#staticBackdrop .modal-body .modal-body-img1::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(156, 115, 7, 1) 0%, rgba(245, 191, 48, 1) 50%, rgba(195, 144, 9, 1) 100%);
    border-radius: 0px 50px 50px 0px;
    height: 60%;
    width: 100%;
    z-index: -1;
}

#staticBackdrop .modal-body .modal-body-img1 img {
    margin: 0 0 30px 0;
}

#staticBackdrop .modal-body .modal-body-form {
    background: #004d7c;
    padding: 30px 30px;
    border-radius: 20px 20px 0px 20px;
}

.modal-body-form h3 {
    font-size: 30px;
    line-height: 36px;
    color: #c7af72;
    margin: 0 0 20px;

}

.modal-body-form h3 strong {
    color: #c7af72;
    font-size: 38px;
    animation: crescendo 1.5s alternate infinite ease-in;

}

@keyframes crescendo {

    /*   0%   {transform: scale(.8);} */
    100% {
        transform: scale(1.1);
    }
}

.modal-body-form h3 span {
    color: #fff;
    display: block;
}

.modal-body-form .popup-form-list .form-group {
    width: 100%;
    margin: 0 0 10px;
}

.modal-body-form .popup-form-list .form-group.form-group-last {
    margin: 0;
}

.modal-body-form .popup-form-list .form-group input {
    background: #ffffff;
    font-size: 16px;
    color: #fff;
    padding: 10px 20px;
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    border-radius: 10px;
}

.modal-body-form .popup-form-list .form-group input::placeholder {
    color: #A4A4A4;
}

.modal-body-form .popup-form-list .form-group textarea {
    background: #ffffff;
    font-size: 16px;
    color: #fff;
    width: 100%;
    height: 120px;
    resize: none;
    border: none;
    border-radius: 10px;
    padding: 20px 20px;
}

.modal-body-form .popup-form-list .form-group textarea::placeholder {
    color: #A4A4A4;
}

.modal-body-form .popup-form-list .form-group button.submit-btn {
    background: linear-gradient(80deg, #c7af72, #c7af72);
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    width: 200px;
    height: 50px;
    border-radius: 8px;
    box-shadow: -1px 3px 3px 0 rgba(80, 80, 80, .2);
    padding: 5px 5px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    transition: all 0.25s ease-out;
    position: relative;
}

.modal-body-form .popup-form-list .form-group button.submit-btn:hover {
    background: #161616;
    top: -2px;
    box-shadow: -6px 14px 12px 2px rgba(90, 90, 90, .12);
}

.modal.show {
    padding-right: 0px !important;
}

/* PopUp Modal Css End Here */
@media only screen and (min-width: 521px) and (max-width: 767px) {

    /* PopUp Modal Responsive Css Start Here */
    #staticBackdrop .modal-dialog {
        max-width: 475px !important;
        margin: 100px auto 0;
    }

    #staticBackdrop .modal-content .btn-close {
        right: -12px;
        left: inherit;
        margin: 0;
        top: 0px;
    }

    #staticBackdrop .modal-body .modal-body-img1 {
        display: none;
    }

    .modal-body-form h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .modal-body-form .popup-form-list .form-group input {
        height: 50px;
    }

    .modal-body-form .popup-form-list .form-group textarea {
        height: 100px;
    }

    /* PopUp Modal Responsive Css End Here */

}

@media only screen and (min-width: 300px) and (max-width: 520px) {

    /* PopUp Modal Responsive Css Start Here */
    #staticBackdrop .modal-dialog {
        max-width: 100% !important;
        margin: 100px 20px 0;
    }

    #staticBackdrop .modal-content .btn-close {
        right: -12px;
        left: inherit;
        margin: 0;
        top: 0px;
    }

    #staticBackdrop .modal-body .modal-body-img1 {
        display: none;
    }

    .modal-body-form h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .modal-body-form .popup-form-list .form-group input {
        height: 50px;
    }

    .modal-body-form .popup-form-list .form-group textarea {
        height: 100px;
    }

    /* PopUp Modal Responsive Css End Here */
}




/* Stick Website Buttons Css Start Here */
.stick-website-wrap {
    position: fixed;
    bottom: 60px;
    left: 20px;
    z-index: 999;
}

.stick-website-wrap a.whatsapp-stick,
.stick-website-wrap a.messenger-stick {
    width: 70px;
    height: 70px;
    line-height: 50px;
    border-radius: 100%;
    text-align: center;
    display: block;
    margin: 0 0 10px;
    animation: shake 2s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stick-website-wrap a.whatsapp-stick:hover,
.stick-website-wrap a.messenger-stick:hover {
    animation: inherit;
}

.stick-website-wrap a.whatsapp-stick {
    background: #00e676;
    transition: all .3s ease-in;
}

.stick-website-wrap a.whatsapp-stick i {
    color: #fff;
    font-size: 44px;
}

.stick-website-wrap a.whatsapp-stick:hover {
    background: #000;
}

.stick-website-wrap a.messenger-stick {
    background: #0056b3;
    transition: all .3s ease-in;
}

.stick-website-wrap a.messenger-stick i {
    color: #fff;
    font-size: 32px;
}

.stick-website-wrap a.messenger-stick:hover {
    background: #000;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* Stick Website Buttons Css End Here */

@media only screen and (min-width: 768px) and (max-width: 1199px) {

    /* Stick Website Buttons Css Start Here */
    .stick-website-wrap {
        bottom: 65px;
        left: 10px;
    }

    .stick-website-wrap a.whatsapp-stick,
    .stick-website-wrap a.messenger-stick {
        width: 50px;
        height: 50px;
        line-height: 21px;
        margin: 0 0 5px;
    }

    .stick-website-wrap a.whatsapp-stick i {
        font-size: 34px;
    }

    .stick-website-wrap a.messenger-stick i {
        font-size: 28px;
    }

    /* Stick Website Buttons Css End Here */
}

@media only screen and (min-width: 300px) and (max-width: 767px) {


    /* Stick Website Buttons Css Start Here */
    .stick-website-wrap {
        bottom: 75px;
        left: 10px;
    }

    .stick-website-wrap a.whatsapp-stick,
    .stick-website-wrap a.messenger-stick {
        width: 50px;
        height: 50px;
        line-height: 21px;
        margin: 0 0 5px;
    }

    .stick-website-wrap a.whatsapp-stick i {
        font-size: 34px;
    }

    .stick-website-wrap a.messenger-stick i {
        font-size: 28px;
    }

    /* Stick Website Buttons Css End Here */
}

.banner-editing-form form .form-group :is(input, textarea)::placeholder {
    color: #ffff;
}

.footer-logo-area {
    filter: brightness(0) invert(1);
}



.serviceImg {
    width: 100%;
    height: 750px;
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 10px;
}

.img__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefitHead {
    font-size: 54px;
    font-family: 'Oswald';
    font-weight: 600;
    color: #c7af72;
}

.benefitsCrds {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0 0;
}

.benefitCrd {
    width: 47%;
    background: #004d7c;
    padding: 20px;
    border-radius: 20px;
    height: 311px;
}

.beneHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.benefisSection {
    background: #212529;
    padding: 70px 0;
}

.numb {
    font-size: 50px;
    font-family: 'Oswald';
    color: #fff;
    font-weight: 700;
}

.benefitContent p {
    font-size: 14px;
    color: #fff;
    font-family: sans-serif;
}

.benefitContent {
    margin: 10px 0;
}

.benefitIcon {
    width: 51px;
    aspect-ratio: 1/1;
}

.benefitIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.porthead {text-align: center;margin: 0 0 30px;}

.porthead h4 {
    font-size: 38px;
    color: #c7af72;
}

.porthead p {
    font-size: 14px;
    margin: 20px 0 0;
    color: #fff;
}

.portImg {
    width: 100%;
    height: 330px;
}


.portSlider .slick-slide {
    margin: 0 10px;
}

.newPortfoli {
    padding: 70px 0;
    background: #004d7c;
}