/* 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;
    backdrop-filter: blur(5px);
}

#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: 43px;
    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: inline;
}

.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: #000000;
    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;
}

/* responsive  css start */

.menu_logo {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: #fffffff0;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
  box-shadow: 0px 0px 10px 0px #cfcfcf;
  backdrop-filter: blur(11px);
}


.side_menu {
  width: 90%;
  background: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  padding: 10px 16px;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 200ms all;
}

.responsive_menu {
  display: none;
}

.show {
  transform: translateX(0%);
}

.responsive_logo img {
  width: 170px;
}

.open_menu {
  font-size: 30px;
  color: var(--c2);
}

.side_menu li a {
  padding: 12px 12px;
  width: 100%;
  color: #373737;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
}

.close_menu {
  width: 50px;
  text-align: end;
  padding: 8px 12px !important;
  float: inline-end;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.menu_sticky {
  position: fixed;
}

.responsive_overly {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #000000a3;
  transition: 200ms;
  left: -100%;
  top: 0;
  z-index: 9999;
}

.responsive_overly.show {
  left: 0;
}

.side_menu li.accordion-button {
  background: transparent;
  padding: 0;
}

.side_menu .accordion-item {
  background: transparent;
  border: none;
}

.side_menu .accordion-button::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: boxicons !important;
  background-image: none;
  content: "\ebc0";
  color: #000;
  font-size: 19px;
}

.side_menu .accordion-body {
  padding: 0;
  overflow-x: auto;
}

.side_menu .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: none;
  content: "\eb8b";
  color: var(--c1);
}

.side_menu .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  outline: 0;
  border-color: transparent;
}

.side_menu .accordion-button:not(.collapsed) a {
  color: var(--c1);
}

.close_menu i {
  font-size: 23px;
}



.side_form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 5px 12px;
  gap: 10px;
  box-shadow: 0px 1px 0px 0px #ebebeb;
  margin-bottom: 14px;
  margin-top: 0px;
}

.side_form input {
  background: transparent;
  border: none;
  outline: 0;
  color: gray;
  font-size: 13px;
  width: 100%;
}

.side_form button {
  background: transparent;
  border: none;
  font-size: 17px;
  color: gray;
  outline: 0;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.social a {
  font-size: 24px;
  color: var(--c2);
}

.link_row {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0px;
  justify-content: space-between;
  padding-left: 14px;
}

.link_colom {
  width: 100%;
}


.sidenav {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0px 10px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: 200ms all;
  width: 500px;
  border-left: 1px solid;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-image: initial;
  padding: 20px 17px;
}


.custom-select {
  position: relative;
  width: 180px;
  cursor: pointer;
}

.custom-select .selected {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f1);
  font-size: 13px;
}

.custom-select img {
  width: 20px;
  height: 14px;
}

.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  display: none;
  z-index: 99;
}

.custom-select .options li {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.custom-select.open .options {
  display: block;
}

.side_menu ul {
  height: 84vh;
  overflow-y: auto;
}

/* responsive  css end */

section.banner-main-sec.hero_banner {
    min-height: 110vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.banner-main-sec.hero_banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #00000091;
    top: 0;
    left: 0;
    z-index: 12;
} 

section.banner-main-sec.hero_banner .banner-absol-cont {
    position: relative;
    top: auto;
    z-index: 99;
}