*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;   
 }
 li{list-style-type: none;}
 a{text-decoration: none;}
 h1{font: 500 36px 'Jost'; color: #333333; text-transform: capitalize; line-height: 36px;}
 h2{font: 500 48px 'Jost'; color: #000000; line-height: 50px;}
h3{font: 500 32px 'Jost'; color: #000000; text-transform: capitalize; line-height: 40px;}
h4{font: 500 16px 'Jost'; color: #007ac3; text-transform: uppercase;}
p{font: 400 16px/24px 'Jost', sans-serif; color: #737373;}
ul{margin: 0; padding: 0;}


.top-section{background: url(../images/banner-bg.jpg) center/cover no-repeat; width: 100%; padding: 50px 0 13% 0; }
.top-section .navbar-nav .nav-item .nav-link{font-size: 17px; font-weight: 500;}
.top-section .navbar-nav .nav-item{margin: 0 10px 0 0;}
.top-section .navbar-nav .nav-item .active{text-decoration: underline;}
.top-section .call{display: flex;}
.top-section .call a {
    font-size: 20px;
    font-weight: 700;
    color: #007ac3;
}
.top-section .call a i {
    background: #007ac3;
    padding: 9px 13px;
    color: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 22px;
        font-size: 16px;
}

.top-section .navbar .fa-times:before{color: #fff;}

.top-section .navbar-nav .dropdown{position: relative; margin: 0 32px 0 0;}
.top-section .dropdown .dropdown-toggle{position: absolute; right: -20px; top: 5px;}
.top-section .dropdown .dropdown-toggle::after{content: "\f107"; font-family: 'Font Awesome 6 Free'; font-weight: 900; border: 0;}
.top-section .navbar-toggler-one .navbar-toggler-icon{background-image: none;}
.top-section .navbar-toggler-one .navbar-toggler-icon i{font-size: 30px;}
.top-section .navbar-toggler-one{padding: 8px 12px;}
.top-section .for-order{width: 100%; display: flex; align-items: center; justify-content: space-between;}
.dropdown-item.active{color: #000; background-color: #fff;}

.top-section.onlyheader_topsection {
    padding-bottom: 0;
}
.overflow-visible{overflow: visible !important;}

.home .top-section.onlyheader_topsection {
    padding-top: 0;
}
.tophead_ifame {
    display: flex;
    justify-content: center;
    position: relative;
        flex-wrap: wrap;
}
.tophead_ifame:before {
    content: "";
    background: #4B80CD;
    position: absolute;
    top: 0;
    width: 100%;
    height: 22px;
}
.tophead_ifame:after {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    background: #213964;
    height: 40px;
    width: 100%;
}
.tophead_ifame .col-12 {
    padding: 0px;
        z-index: 1;
}

.header-menu ul {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -ms-flex-pack: space-between;
}
.header-menu ul li {
    display: inline-block;
        margin: 0 10px 0 0;
}
.header-menu ul li a {
    color: #000;
    font-size: 17px;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    padding: var(--bs-navbar-nav-link-padding-x);
}
.header-menu ul li a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    background-color: #000;
    transition: all .35s ease-in;
}
.header-menu ul li span.sub-toggle {
    color: #000;
    margin-left: 0;
}
.toggle {
    display: none;
}
.toggle-btn {
    width: 30px;
    height: 30px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    cursor: pointer;
    overflow: hidden;
    transition: .3s linear;
}
.toggle .toggle-btn>span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: transform .3s linear;
}
.toggle.active .toggle-btn span:nth-child(3n+1) {
    transform: rotate(45deg) translate(3px, 6px);
}
.toggle.active .toggle-btn span:nth-child(3n+2) {
    transform: translateX(-50px);
}
.toggle.active .toggle-btn span:nth-child(3n+3) {
    transform: rotate(-45deg) translate(7px, -12px);
}



@media (min-width: 1200px) {
    .header-menu ul li {
        position: relative;
        
    }
    .header-menu ul ul.sub-menu {
        margin: 0;
        position: absolute;
        top: 100%;
        visibility: hidden;
        z-index: -99;
        opacity: 0;
        display: block;
        background: #fff;
        padding: 0;
        transition: all 0.35s ease-in-out;
        width: 330px;
                border: 1px solid #999;
        border-radius: 8px;
    }
    .header-menu ul li:hover>ul.sub-menu {
        visibility: visible;
        z-index: 99;
        opacity: 1;
    }
        .header-menu ul ul.sub-menu li {
        display: block;
        padding: 2px 0;
        margin: 0;
    }
        .header-menu ul ul.sub-menu li a {
        color: #000;
        font-size: 16px;
        font-weight: 400;
        width: 100%;
        display: inline-block;
        padding: 5px 15px;
    }
    .header-menu ul ul.sub-menu li a:hover {
	    background: #ddd;
	}
}
@media (max-width: 1199px) {
    .toggle {
        display: block;
    }
    .header-menu ul li a{color: #fff;}
    .header-menu {
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        padding: 15px 20px;
        background-color: #007ac3;
        display: none;
        margin-left: 0px;
        z-index: 100;
    }
        .header-menu ul {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 0px;
    }
        .header-menu ul li {
        display: block;
        width: 100%;
        text-align: left;
        margin: 0px;
        padding: 10px 0;
        position: relative;
    }
    .header-menu ul li span.sub-toggle {
        color: #fff;
        margin-left: 0;
        position: absolute;
        top: 0;
        right: 0;
        height: 44px;
        width: 40px;
        text-align: center;
        padding: 10px 0;
        font-size: 20px;
        transition: all 0.35s ease-in-out;
    }
    .header-menu ul li.menu-item-has-children ul.sub-menu {
        margin: 5px 0 0;
        padding-left: 15px;
        display: none;
        background: #fff;
        border-radius: 5px;
    }
    .header-menu ul li.menu-item-has-children ul.sub-menu li {
    padding: 7px 0;
}
        .header-menu ul li.menu-item-has-children ul.sub-menu a {
        font-size: 16px;
        color: #000;
        line-height: 1.25;
        font-weight: 400;
    }
}

.top-section .bnr-content{width: 100%; padding: 80px 0 20px 0;}
.top-section .bnr-content .inner-cntnt{width: 100%; align-items: center;}
.top-section .bnr-content .inner-cntnt .text-content{padding: 0 0 0 30px;}
.top-section .bnr-content .inner-cntnt .text-content p{font-size: 24px; font-weight: 500; margin: 30px 0 30px 0;}
.top-section .bnr-content .inner-cntnt .text-content a{text-transform: uppercase; color: #fff; font-size: 18px; font-weight: 500; background: #007ac3; padding: 12px 30px; border-radius: 26px; letter-spacing: 2px; border: 2px solid transparent; transition: all 0.5s; display:inline-block;}
.top-section .bnr-content .inner-cntnt .text-content a:hover{background: none; border: 2px solid #007ac3; color: #007ac3;}

.service-section{width: 100%; background: #007ac3; text-align: center; padding: 60px 0; position: relative;}
.service-section .srvc-top-curve{position: absolute; bottom: 102%; left: 0; width: 100%;}
.service-section .home.srvc-top-curve{position: absolute; bottom: 102%; left: 0; width: 100%;}
.service-section .srvc-top-curve img{width: 100%;}
.service-section .srvc-bottom-curve{position: absolute; top: 110%; left: 0; width: 100%;}
.service-section .home.srvc-bottom-curve{position: absolute; top: 109%; left: 0; width: 100%;}
.service-section .srvc-bottom-curve img{width: 100%;}
.service-section h2{color: #fff; margin: 0 0 30px 0;}
.service-section h4{color: #fff; letter-spacing: 2px;}
.service-section .service-box{width: 100%; background: #fff; border: 10px solid #268ecc; min-height: 470px; position: relative;}
.service-section .service-box .box-txt{width: 100%; padding: 10px;}
.service-section .service-box h3{margin: 15px 0;}
.service-section .service-box .read-btn {position: absolute; left: 50%; bottom: 4%; transform: translate(-50%,0); width: 100%;}
.service-section .service-box .read-btn a{text-transform: uppercase; border: 1px solid #007ac3; border-radius: 25px; padding: 5px 15px; letter-spacing: 2px; color: #000000; font-weight: 500; font-size: 16px; transition: all 0.5s;}
.service-section .service-box .read-btn a:hover{background: #007ac3; color: #fff;}
.service-section .service-box .feature-img{position: relative; width: 100%;}
.service-section .service-box .feature-img .icon-area{width: 85%; background: #fff; position: absolute; bottom: 0; right: 0; display: flex;}
.service-section .service-box .feature-img > img {
    width: 100%;
}
.service-section .srvc-top-curve .vc_figure, .service-section .srvc-top-curve .vc_single_image-wrapper,
.service-section .srvc-bottom-curve .vc_figure, .service-section .srvc-bottom-curve .vc_single_image-wrapper,
.testi-curve  .vc_figure, .testi-curve .vc_single_image-wrapper, .t-curve .vc_figure, .t-curve .vc_single_image-wrapper,
.b-curve .vc_figure, .b-curve .vc_single_image-wrapper, .srvc-glry-top-curve .vc_figure, .srvc-glry-top-curve .vc_single_image-wrapper,
.srvc-glry-bottom-curve .vc_figure, .srvc-glry-bottom-curve .vc_single_image-wrapper
{width: 100%;}
.imgwidth100 figure {
    width: 100%;
}

.about-section{width: 100%; padding: 10% 70px 60px 20px; display: flex; align-items: center; gap: 30px;}
.about-section .shape-img{width: 50%;}
.about-section .about-txt{width: 50%;}
.about-section .about-txt .point{display: flex; margin: 30px 0 30px 0; gap: 60px;}
.about-section .about-txt .point li{font-size: 24px; font-weight: 500; color: #000000; margin: 0 0 15px 0; display: flex; align-items: baseline;}
.about-section .about-txt .point li i{color: #007ac3; margin: 0 10px 0 0;}
.about-section .about-txt .read-btn a{text-transform: uppercase; color: #fff; font-size: 18px; font-weight: 500; background: #007ac3; padding: 10px 30px; border-radius: 26px; letter-spacing: 2px; border: 2px solid transparent; transition: all 0.5s;}
.about-section .about-txt .read-btn a:hover{background: none; border: 2px solid #007ac3; color: #007ac3;}
.about-section.aboutserver_details_reverse {
    padding: 5% 20px 60px 70px;
}

.gallery-section{width: 100%; margin: 60px 0; text-align: center;}
.gallery-section .glry-area{ width: 100%;}
.gallery-section .view-mre a{text-transform: uppercase; color: #fff; font-size: 18px; font-weight: 500; background: #007ac3; padding: 10px 30px; border-radius: 26px; letter-spacing: 2px; border: 2px solid transparent; transition: all 0.5s;}
.gallery-section .view-mre a:hover{background-color: transparent !important; color: #007ac3 !important; border: 2px solid #007ac3 !important;}
.gallery-section .js-ofi{width: 100%; height: 100%;}
.gallery-section.srvc-gallery .view-mre a:hover{color: #fff !important; border: 2px solid #fff !important;}



.lb-data .lb-close{position: absolute;
    top: -8%;
    right: 2%;}

/* ---------Gallery hover effect starts here---------- */
        /* Image styles */
        .glry-area .hover img {
            width: 100%;
           height: revert-layer;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }

        .glry-area .hover{width: 100%; height: 100%; overflow: hidden;}
        /* Add your hover effect CSS here */
        .glry-area .hover:hover img {
            transform: scale(1.1);
        }

/* ---------Gallery hover effect end here---------- */

.shedule-section{width: 100%; padding: 50px 0;  background-blend-mode: multiply; color: #fff;}
.shedule-section .schdule-txt{align-items: center; width: 100%; display: flex;}
.shedule-section .schdule-txt .schdl-inr-txt{width: calc(100% - 10%);}
.shedule-section .schdule-txt .btn-shdule{/*width: calc(100% / 2);*/ display: flex; justify-content: end;}
.shedule-section .schdule-txt .schdl-inr-txt h5{font-size: 40px; font-weight: 500; margin: 0 0 25px 0;}
.shedule-section .schdule-txt .schdl-inr-txt p{color: #fff;}
.shedule-section .schdule-txt .btn-shdule a{background: #fff; text-transform: uppercase; padding: 13px 25px; border-radius: 26px; letter-spacing: 2px; transition: all 0.5s; color: #007ac3; font-weight: 500; font-size: 18px; text-wrap: nowrap;}
.shedule-section .btn-shdule a:hover{background-color: #007ac3 !important; color: #fff;}

/* testmonial-section starts here */
.Testimonials{padding: 60px 0 140px 0; background: #007ac3; position: relative;}
.Testimonials .testi-head-txt{width: 100%; text-align: center; color: #fff; margin: 0 0 30px 0;}
.Testimonials .testi-head-txt h4{color: #fff;}
.Testimonials .testi-head-txt h2{color: #fff;}
.Testimonials .shrelne-carousel .shrelne-carousel-details{border: solid 10px #268ecc; padding: 50px 35px 10px 35px; position: relative; background: #fff; text-align: left;}
.Testimonials .shrelne-carousel .shrelne-carousel-details .carousel-icon{position: absolute; right: 8%; top: 0;}
.Testimonials .shrelne-carousel .owl-dots{display: none;}
.Testimonials .shrelne-carousel-details h5{color: #000; font-weight: 600; margin-bottom: 15px; font-size: 24px; text-align: left;}
.Testimonials .shrelne-carousel-details .star{color: #007ac3; margin-bottom: 15px;}
.Testimonials .shrelne-carousel-details .jef-Test-details{margin-top: 15px; color: #000; font-weight: 600;}

.Testimonials .owl-prev{position: absolute; left: -4%; bottom: 37%; transform: translate(-8%, -37%);}
.Testimonials .owl-next{position: absolute; right: -4%; bottom: 37%; transform: translate(-8%, -37%);}
.Testimonials .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next{font-size: 28px;}
.Testimonials .owl-carousel .owl-nav .disabled i{color: #fff; }
.Testimonials .owl-nav i{color: #000; }
.owl-theme .owl-nav .disabled {opacity: 1;}

.Testimonials .testi-curve{position: absolute; bottom: -180px; left: 0; width: 100%;}
.Testimonials .testi-curve img{width: 100%;}

/* testmonial-section end here */


/* Contact section css start here */

.contact-section{width: 100%; padding: 60px 0;}

.contact-section .comment-area{width: 100%; background: #fff; margin: 30px 0;}
.contact-section .comment-area form label{display: inline-block; margin: 0 0 5px 0;}
.contact-section .comment-area  textarea{width: 100%; height: 145px; padding: 10px 10px 10px 25px; background: #fff; border: none; -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);}
.contact-section .comment-area  input[type=text], .contact-section .comment-area  input[type=email], .contact-section .comment-area  input[type=tel], .contact-section .comment-area  input[type=date]{width: 100%; padding: 10px 10px 10px 25px; background: #fff; border: none; -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2); margin: 0 0 20px 0;}
    .contact-section .comment-area  input::placeholder,     .contact-section .comment-area  textarea::placeholder{color: #000;}
/* .contact-section .comment-area  input[type=datetime-local]{} */
.contact-section .comment-area  input[type=text]:focus-visible, .contact-section .comment-area  textarea:focus-visible,
.contact-section .comment-area  input[type=email]:focus-visible,.contact-section .comment-area  input[type=tel]:focus-visible,
.contact-section .comment-area  input[type=date]:focus-visible{outline: 0px!important;}

.contact-section .sub-btn{display: flex; align-items: center; justify-content: center; width: 100%;}
.contact-section  .sub-btn{margin: 35px 0 0 0;}
.contact-section  .sub-btn input[type=submit]{background: #007ac3; color: #fff; letter-spacing: 2px; text-transform: uppercase; border: none; padding: 15px 60px; border-radius: 30px; border: 2px solid transparent; transition: all 0.5s; font-size: 18px; font-weight: 500;}
.contact-section  .sub-btn input[type=submit]:hover{background: #fff; color: #007ac3; border: 2px solid #007ac3;}

.contact-section .cntct-box{ background: #fff; padding: 10px; -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);}
.contact-section .cntct-box .map-box{width: 100%;}
.contact-section .cntct-box .call-email{margin: 15px;}
.contact-section .cntct-box .call-email li{ color: #737373; margin: 0 0 15px 0;}
.contact-section .cntct-box .call-email .adrs{margin: 0 0 0 7px; font-size: 15px;}
.contact-section .cntct-box .call-email li img{margin: 0 10px 0  0;}
.contact-section .cntct-box .call-email li a{color: #737373; font-size: 15px;}


.contact-section .cntct-box .social{display: flex; gap: 10px; padding: 15px 0 15px 15px;}
.contact-section .cntct-box .social li a {
    background: #007ac3;
    padding: 5px 8px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: inline-block;
    line-height: 28px;
    text-align: center;
}
.contact-section .cntct-box .social li a i{font-size: 15px; color: #fff;}
/*.contact-section .cntct-box .social li .fb{padding: 5px 12px;}*/

.footer-section{width: 100%; padding: 90px 0 5px 0; background: url(https://digitalprojectonline.com/dev/shoreline/wp-content/uploads/2024/06/ftr-bg-1.jpg) center/cover no-repeat; position: relative;}
.footer-section .ftr-curve{position: absolute; top: -2px; left: 0; z-index: 1; width: 100%;}
.footer-section .ftr-curve img{width: 100%;}

.footer-section .logo-row{margin: 50px 0; align-items: center;}
.footer-section .logo-row .response{display: flex; justify-content: end;}
.footer-section .logo-row .storage{display: flex; justify-content: center;}
.footer-section .logo-row .supply{display: flex; justify-content: end;}

.footer-section .ftr-social p{color: #fff; text-align: center;}
.footer-section .ftr-social ul{display: flex; gap: 20px; margin: 30px 0 50px 0; align-items: center; justify-content: center;}
.footer-section .ftr-social ul li a{background: #fff; padding: 5px 10px; color: #007ac3; border-radius: 50%;}
.footer-section .ftr-social ul li .fb{padding: 5px 12px;}

.footer-section .copy-right{width: 100%;}
.footer-section .copy-right p{text-align: center; color: #fff; font-size: 14px; margin: 10px 0;}
.footer-section .copy-right .line{width: 100%; height: 1px; background: #fff;}



/* services page css starts here */
.srvc-banner .text-content h1{ font-size: 40px; font-weight: 700; line-height: 42px;}
.srvc-banner .text-content h1 span{font-weight: 400;}
.srvc-banner .text-content p{font-size: 24px; font-style: italic; color: #333333; line-height: 32px;}

.about-area{width: 100%; background: #3395cf; padding: 60px 0 60px 0; position: relative; margin: 0 0 10% 0;}
.about-area .t-curve{position: absolute; bottom: 100%; left: 0; width: 100%;}
.about-area .Shoreline.t-curve{position: absolute; bottom: 102%; left: 0; width: 100%;}
.about-area .about.t-curve{position: absolute; bottom: 101%; left: 0; width: 100%;}
.about-area .Vernon.t-curve{position: absolute; bottom: 103%; left: 0; width: 100%;}
.about-area .Carol.t-curve{position: absolute; bottom: 102%; left: 0; width: 100%;}
.about-area .contact-curve.t-curve {
  position: absolute;
  bottom: 103%;}
.about-area .t-curve img, .about-area .b-curve img{width: 100%;}
.about-area .b-curve{position: absolute; top: 109%; left: 0; width: 100%;}
.about-area .Vernon.b-curve{position: absolute; top: 109%; left: 0; width: 100%;}
.about-area .Carol.b-curve{position: absolute; top: 112%; left: 0; width: 100%;}

.about-area .about-dtls{width: 100%; display: flex; align-items: center; gap: 30px; padding: 0 60px;}
.about-area .about-dtls .about-txt{}
.about-area .about-dtls .about-img{ height: auto;}
.about-area .about-dtls .about-txt h2{line-height: 52px; margin: 20px 0;}
.about-area .about-dtls .about-txt h4{color: #fff; font-style: italic; letter-spacing: 2px;}
.about-area .about-dtls .about-txt p{color: #fff;}

.marine-cons-sec{width: 100%; margin: 60px 0; text-align: center;}
.marine-cons-sec h4{font-style: italic;}
.marine-cons-sec h2{margin: 15px 0;}
.marine-cons-sec .const-box{background: #fff; padding: 10px 10px 20px 10px; -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2); min-height: 530px; position: relative;}
.marine-cons-sec .const-box .read-btn{position: absolute; bottom: 20px; left: 50%; transform: translate(-50%,0); width: 100%;}
.marine-cons-sec .const-box img{width: 100%;}
.marine-cons-sec .const-box h5{font-size: 24px; color: #000; font-weight: 500; margin: 15px 0;}
.marine-cons-sec .const-box p{margin: 0 0 40px 0;}

.marine-cons-sec .const-box a{text-transform: uppercase; font-size: 16px; font-weight: 500; color: #000; letter-spacing: 2px; padding: 7px 15px; border: 2px solid #007ac3; border-radius: 25px; transition: all 0.5s;}
.marine-cons-sec .const-box a:hover{background: #007ac3; color: #fff;}


.marine-cons-sec .const-first-row{justify-content: center; margin: 25px 0 0 0; row-gap: 25px;}


/* bulkheading page css starts here */
.bulkheading-about .about-txt h4{font-style: normal;}
.bulkheading-about .about-dtls .about-txt h4{font-style: normal;}

.srvc-gallery{width: 100%; background: #007ac3; padding: 60px 0; position: relative; margin: 60px 0 0 0;}
.srvc-gallery .srvc-glry-top-curve{position: absolute; bottom: 99.5%; left: 0; width: 100%; margin-left: auto;}
.page-id-35 .srvc-gallery .srvc-glry-top-curve{position: absolute; bottom: 101%; left: 0; width: 100%; margin-left: auto;}
.page-id-35 .srvc-gallery .srvc-glry-bottom-curve,
.page-id-40 .srvc-gallery .srvc-glry-bottom-curve{position: absolute; top: unset; bottom: -97px !important; left: 0; width: 100%; margin-left: auto;}
.page-id-40 .srvc-gallery .srvc-glry-top-curve{position: absolute; bottom: 101%; left: 0; width: 100%; margin-left: auto;}
.srvc-gallery .srvc-glry-top-curve img{width: 100%;}
.srvc-gallery .srvc-glry-bottom-curve{position: absolute; top: 104%; left: 0; width: 100%; margin-left: auto;}
.srvc-gallery .srvc-glry-bottom-curve img{width: 100%;}
.srvc-gallery h4{color: #fff;}
.srvc-gallery h2{margin: 0 0 15px 0;}
.srvc-gallery .view-mre a{background: #fff; color: #007ac3;margin-top: 40px; display: inline-block;}
.srvc-gallery .view-mre a:hover{color: #fff; border: 2px solid #fff;}

.faq-section{width: 100%; padding: 60px 0;}
.faq-section .faq-head{text-align: center; margin: 0 0 15px 0;}


.faq-section .accordion {
    margin: 0 auto;
    width: 100%;
    margin: 30px 0 0 0;
  }

  .faq-section .accordion-header,
  .accordion-body {
    background: white;
  }

  .faq-section .accordion-header {
    padding: 1.5em 1.5em;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    transition: all .3s;
    text-transform: none;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  /* .faq-section .accordion__item {
    border-bottom: 1px solid #fff;
  } */

  .faq-section .accordion__item{
    margin: 0 0 20px 0;
  }

  .faq-section .accordion-header:hover {
    background: #007ac3;
    position: relative;
    z-index: 5;
    color: #fff;
  }

  .faq-section .accordion-body {
    background: #007ac3;
    color: #353535;
    display: none;
  }

  .faq-section .accordion-body__contents  {
    padding: 1.5em 1.5em;
    font-size: 16px;
    color: #fff;
    text-align: left;
  }
  .faq-section .accordion-body__contents p  {
    font-size: 16px;
    color: #fff;
    text-align: left;
  }

  .faq-section .accordion__item.active:last-child .faq-section .accordion-header {
    border-radius: none;
  }

  .faq-section.accordion:first-child>.faq-section.accordion__item>.faq-section.accordion-header {
    border-bottom: 1px solid transparent;
  }

  .faq-section .accordion__item>.accordion-header:after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2em;
    float: right;
    position: relative;
    top: -2px;
    transition: .3s all;
    transform: rotate(0deg);
  }

  .faq-section .accordion__item.active>.accordion-header:after {
    content: "\f068";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }

    .faq-section .accordion__item.active .accordion-header {
    background: #007ac3;
    color: #fff;
    border-bottom: 1px solid #fff;
  }


/* First Response Outfitters page css starts here */
.first-response-bnr .text-content p{color: #333333;}
.first-response-about{padding-top: 5%;}

.first-response-glry{margin-bottom: 8%;}

.manufacture-sec{width: 100%; background: #f5f5f5; padding: 60px 0 0;}
.manufacture-sec .mnfct-head-txt{width: 100%; text-align: center; margin: 0 0 15px 0;}
.manufacture-sec .prtnr-box h4{text-align: center; margin: 10px 0 0 0;}

.manufacture-sec .owl-dots{display: none;}


/* splash css starts here */
.main-div{width: 100%; position: relative; height: 550px;}
.main-div img{width: 100%; height: 100% !important; border: 1px solid #007ac3; overflow: hidden;}
.main-div::before{content: ''; position: absolute; width: 100%; height: 100%; background-image: url(../images/blue-brush-shape-2-sm-size.png); top: 0; left: 0; background-position: center; background-size: cover; background-repeat: no-repeat;}

.wpb_single_image .vc_figure, .wpb_single_image .vc_single_image-wrapper{height: 100% ;}
.white-curve-1::before{background-image: url(../images/white-brush-shape-2.png);}
.white-curve-1 img{border: 1px solid #fff;}

/* .light-sky{height: 100%;} */
.light-sky::before{background-image: url(../images/blue-brush-shape-2_for-services.png);}

/* Shoreline storage page css starts here */
.storage-about{width: 100%; background: #007ac3;}
.storage-point-sec{padding-top: 5%;}

/* Shoreline about us page css starts here */
.lake-sec{padding-top: 5%;}
.lake-sec .about-txt .read-btn{margin: 15px 0; display: inline-flex;}

.member-sec{width: 100%; background: #007ac3; padding: 60px 0;}
.member-sec .mem-head-txt{text-align: center;}
.member-sec .mem-head-txt h4{color: #ffffff;}
.member-sec .member{width: 100%; display: flex; padding: 0 13%; gap: 40px; align-items: start; margin: 80px 0 0 0;}
/* .member-sec .member .circle-img{width: 100%;} */
.member-sec .member .circle{width: 200px; height: 200px;}
.member-sec .member .circle img{width: 100%; height: 100%; border-radius: 50%; object-fit: cover;}
/* .member-sec .member .member-details{width: 100%;} */
.member-sec .member .member-details p{color: #ffffff; margin: 16px 0;}
.member-sec .member .member-details h5{font-size: 26px; font-weight: 500; color: #ffffff; font-family: 'Jost', sans-serif; margin: 0;}
.member-sec .member .member-details span{font-size: 16px; font-weight: 400; font-family: 'Jost', sans-serif; color: #000000;}
.member-sec .member .member-details .read-btn{margin: 10px 0; display: inline-flex;}
.member-sec .member .member-details .read-btn a{text-transform: uppercase; color: #007ac3; font-size: 18px; font-weight: 500; background: #ffffff; padding: 10px 30px; border-radius: 26px; letter-spacing: 2px; border: 2px solid transparent; transition: all 0.5s;}
.member-sec .member .member-details .read-btn a:hover{border: 2px solid #ffffff; color: #ffffff; background: none;}
.member-sec .member:nth-child( even) {
    flex-direction: row-reverse;
}

.member-sec .mem-reverse{flex-direction: row-reverse;}

.about-testi{background: #ffffff;}
.about-testi .testi-head-txt h4{color: #007ac3;}
.about-testi .testi-head-txt h2{color: #000000;}
.about-testi .shrelne-carousel .shrelne-carousel-details{border: solid 10px #f5f5f5; -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.15);}
.about-testi .shrelne-carousel-details .jef-Test-details{color: #007ac3;}


/* Contact page css starts here */

.contact-area{ margin: 0; padding-bottom: 130px;}
.contact-box{width: 100%; background: #f5f5f5; padding: 70px 60px; position: relative; margin-top: 50px !important; margin-bottom: 50px !important;}
.contact-box .address li{font-size: 20px; margin: 0 0 40px 0;}
.contact-box .address li a{color: #000000; display: inline-flex; align-items: center;}
.contact-box .address li i{color: #007ac3; font-size: 30px; margin: 0 20px 0 0;}

.contact-box .social-icon{display: inline-flex; gap: 25px; margin: 25px 0 0 0;}
.contact-box .social-icon li a{font-size: 24px; background: #007ac3; padding: 8px 17px; color: #fff; border-radius: 50%; transition: all 0.5s; border: 1px solid transparent;}
.contact-box .social-icon li .insta{padding: 8px 14px;}
.contact-box .social-icon li a:hover{color: #007ac3; border: 1px solid #007ac3; background: #ffffff;}

.contact-box .form-box{position: absolute; top: -45%; right: 0; background: #ffffff; padding: 30px 50px; width: 50%;}
.contact-box .form-box h2{margin: 0 0 30px 0; line-height: 42px;}
.contact-box .form-box  input{width: 100%; margin: 0 0 0 0; padding: 10px 0; border: 0; outline: 0; border-bottom: 1px solid #000000;}
.contact-box .form-box  textarea{width: 100%; padding: 10px 0; border: 0; outline: 0; border-bottom: 1px solid #000000; margin: 0 0 35px 0;height: 80px;}
.contact-box .form-box ::placeholder{font-family: 'Jost', sans-serif;}
.contact-box .form-box input.wpcf7-submit{text-transform: uppercase; color: #ffffff; background: #007ac3; padding: 15px 70px; border-radius: 30px; width: auto; text-align: center; border: none; font-family: 'Jost', sans-serif; font-weight: 500; font-size: 18px; letter-spacing: 1px; border: 2px solid transparent; transition: all 0.5s;}
.contact-box .form-box input.wpcf7-submit:hover{border: 2px solid #007ac3; background: #ffffff; color: #007ac3;}

.map-section{width: 100%; margin: 60px 0;}
.map-section .map-head-txt{width: 100%; text-align: center; margin: 0 0 15px 0;}
.map-section .map-area{width: 100%; background: #ffffff; -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.12);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.12);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.12);}

/* Shoreline Supply page css starts here */
.supply-about-section{  padding: 25px 70px 8% 20px;}

/* Shoreline Shoreline-carol-miller-rainer page css starts here */
.top-section .bnr-content .inner-cntnt .own-des-content p{font-size: 36px; text-align: center; margin-top: 23px;}
.about-area .hedshot-img{ margin: 0 auto; width: 280px; height: 280px; background: #000; border-radius: 50%; }
.about-area .hedshot-img img{object-fit: cover;  border-radius: 50%; width: 100%; height: 100%;}
.top-section .bnr-content .inner-cntnt .own-des-content h1{
  text-align: center;
}

.Carol-projects{padding: 60px 0;}
.Carol-projects h4, .Carol-projects h2{text-align: center;}
.Carol-projects .Carol-projects-text{padding: 0 16% 0 0;}
.Carol-projects .Carol-projects-text h3{font-size: 30px; margin-bottom: 12px;}
.Carol-projects .Carol-projects-photo{width: 100%;}
.Carol-projects .Carol-projects-det{align-items: center; padding: 60px 0;}
.Carol-projects .Carol-projects-photo .Carol-projects-images{width: 100%; height: 380px;}
.Carol-projects .Carol-projects-photo .Carol-projects-images img{object-fit: cover; height: 100%; width: 100%;}
.Carol-projects .owl-dots{display: none;}
.Carol-projects .owl-nav{display: flex; justify-content: center; gap: 25px; margin-top: 15px; position: absolute; right: 22%; bottom: 1%;}
.Carol-projects .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next{font-size: 28px;}
.Carol-projects .owl-carousel .owl-nav .disabled i{color: #007ac3; }
.Carol-projects .owl-nav i{color: #000;}
.Carol-projects .owl-nav .disabled {opacity: 1;}

/* lake Conroe Community page css starts here */
.water-sec h2{color: #000000;}
.water-sec .iframe-area{row-gap: 10px;}
.water-sec .pool-text{width: 100%; margin: 35px 0;}
.water-sec .pool-text p{color: #ffffff; text-align: center; font-weight: 500; margin: 0 0 3px 0;}
.water-sec .pool-text p a{color: #000000;}

.lke-reverse{flex-direction: row-reverse; padding-top: 0;}


.sp-easy-accordion .sp-ea-single .ea-header {
    padding: 1.5em 1.5em;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    transition: all .3s;
    text-transform: none;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
  }
  .sp-easy-accordion .sp-ea-single.ea-expand .ea-header {
    background: #007ac3;
    color: #fff;
    border-bottom: 1px solid #fff;
}
.sp-easy-accordion .sp-ea-single.ea-expand .ea-header a{
    color: #fff !important;
}
.sp-easy-accordion .sp-ea-single .ea-header a{
    padding: 0 !important;
}
.sp-easy-accordion .sp-ea-single .ea-header:hover {
    background: #007ac3;
    position: relative;
    z-index: 5;
    color: #fff;
}
.sp-easy-accordion .sp-ea-single .ea-header:hover a{
    color: #fff !important;
}
.sp-easy-accordion .sp-ea-single .ea-body {
    background: #007ac3 !important;
    padding: 1.5em 2.5em !important;
    font-size: 16px;
    color: #fff !important;
    text-align: left;
}
.sp-easy-accordion .sp-ea-single .ea-body p{
    color: #fff !important;
    text-align: left;
     font-size: 16px;
}
.sp-easy-accordion .sp-ea-single .ea-header a{
    width: 100%;
    font-size: 20px;
    font-weight: 500;
}
.sp-easy-accordion>.sp-ea-single>.ea-header a .ea-expand-icon {
    float: right !important;
    font-size:20px !important;
}
.sp-easy-accordion .sp-ea-single.ea-expand a .ea-expand-icon, .sp-easy-accordion .sp-ea-single .ea-header:hover a .ea-expand-icon {
    color: #fff !important;
}
.about-area .outfitters.t-curve {
  bottom: 103%;
}
.top-section.position-section{
  position: relative;
  position: -webkit-relative;
  z-index: -1;
}
.t-curve.service_details_curve_top{
  bottom: 99%;
  z-index: -1
}
.b-curve.service_details_curve_bottom{
  z-index: -1;
  top:99.8% !important
}
#rbs_gallery_66600788c77b1{
  margin-left: -5px !important
}
.service-section .Lake.srvc-bottom-curve{
  top: 114%;
}


@media screen and (min-width:1399px) {
    /* splash css starts here */
    .main-div{height: 600px;}
  }

@media screen and (min-width:1899px) {
    /* splash css starts here */
    .main-div{height: 850px;}
	.about-area .b-curve{top:105%;}
	.about-area .outfitters.t-curve{bottom: 102%;}
	.footer-section{padding: 170px 0 5px 0;}
  }

@media screen and (min-width:1200px) {
.navbar-toggler-one{display: none;}
}

@media screen and (max-width:1199px) {
    .contact-section .cntct-box .call-email .adrs{margin: 0;}
    .contact-section .cntct-box .call-email{margin: 10px 10px 10px 0;}
    .contact-section .cntct-box .call-email li{display: flex; align-items: center;}
    .top-section .navbar-collapse{margin: 0 0 20px 0;}
    .top-section .for-order{position: relative; width: 100%; flex-direction: row-reverse;}
/*    .top-section .for-order .ordr-1{position: absolute; top: 0; right: 0; background: #007ac3; padding: 0 0 0 25px; z-index: 1; width: 100%;}*/
    .top-section .for-order .navbar-toggler-one{position: absolute; top: 0; right: 0; border: none; background: none; transition: all 0.5s;}
    .top-section .for-order .navbar-nav{margin: 45px 0 0 0;}
    .top-section .for-order .navbar-nav li .nav-link{color: #fff;}

    .dropdown .dropdown-menu {
        -webkit-transition: all 0.32s;
        -moz-transition: all 0.32s;
        -ms-transition: all 0.32s;
        -o-transition: all 0.32s;
        transition: all 0.32s;
    
        display: table-column;
        overflow: hidden;
        opacity: 0;
        transform: translateX(0%) scaleY(0);
        transform-origin: top;
        height: 0;
      }
    
      .dropdown-menu.show {
        opacity: 1;
        transform: translateX(0%) scaleY(1);
        display: table;
        width: 100%;
      }
      .about-area .b-curve{top: 111%;}
      .about-area .Vernon.b-curve{top: 107%;}

            /* splash css starts here */
            .main-div{height: 460px;}

    }

@media screen and (max-width:1100px){
    .Testimonials{padding: 60px 0 170px 0;}
    .Testimonials .owl-prev{bottom: -30%; left: 45%;}
    .Testimonials .owl-next{bottom: -30%; right: 45%;}
    /* splash css starts here */
    .main-div{height: 420px;}
}

 @media screen and (max-width:991px) {
  .top-section .bnr-content .inner-cntnt .text-content p{margin: 25px 0 40px 0;}
  .top-section .bnr-content{padding: 60px 0 20px 0;}
  .supply-about-section{padding: 40px 70px 7% 20px;}


    .service-section .feature-img .big{width: 100%;}
    .service-section .service-box .feature-img .icon-area{bottom: -1px;}
    .about-section{padding: 10% 20px 60px 20px;}
    .about-section .about-txt .point{gap: 30px;}
    .about-section .about-txt .point .inner-ul li{display: flex;}
    .shedule-section{padding: 25px 0;}
    .shedule-section .schdule-txt .schdl-inr-txt h5{font-size: 30px;}
    .shedule-section .btn-shdule{margin: 30px 0 0 0;}
    .top-section .bnr-content h1{margin: 15px 0 0 0;}
    h2{font-size: 40px;}
    .top-section .bnr-content .inner-cntnt .text-content{padding: 0;}
    .top-section .srvc-banner h1{ margin: 20px 0 0 0; line-height: normal;}
    .service-section .service-box{padding: 0 0 10% 0;}

    /* Contact page css starts here */
/*     .contact-box .form-box{top: -12%;} */


/* lake Conroe Community page css starts here */
.lke-reverse{ padding-top: 0;}

/* About page css starts here */
    .member-sec .member{padding: 0;}
    .about-area .Vernon.b-curve{top: 106%;}
    

    }

    @media screen and (max-width:990px) {
     .main-div{height: 400px;}
    }
    @media screen and (max-width:900px) {
      .main-div{height: 330px;}
      /* contact page css starts here */
      .contact-box{padding: 30px;}
      .contact-box .address li{margin: 0 0 20px 0; font-size: 18px;}
      .contact-box .address li i{font-size: 20px; margin: 0 10px 0 0;}
      .contact-box .social-icon{margin: 15px 0 0 0;}
      .contact-box .social-icon li a{font-size: 18px; padding: 8px 15px;}
      .contact-box .form-box{padding: 20px 30px;}
      .contact-box .form-box form input{margin: 0 0 20px 0;}
      .contact-box .form-box form textarea{margin: 0 0 20px 0;}
      .contact-box .form-box h2{margin: 0 0 20px 0;}
      .contact-box .form-box form button{padding: 8px 50px;}

        /* Shoreline Shoreline-carol-miller-rainer page css starts here */
        .Carol-projects .owl-nav{right: 20%;}
     }
     

    @media screen and (max-width:767px) {

        .footer-section .logo-row .service{display: flex; align-items: center; justify-content: center;}
        .footer-section .logo-row .response{justify-content:center;}
        .footer-section .logo-row .storage{align-items: center; justify-content: center; margin: 30px 0 0 0;}
        .footer-section .logo-row .supply{align-items: center; justify-content: center; margin: 30px 0;}
        .about-area{padding: 30px 0;}
        .about-area .about-dtls{display: block;}
        .about-area .about-dtls .about-txt{width: 100%; margin: 0 0 15px 0;}
        .about-area .about-dtls .about-img{width: 100%; margin: 10px 0 0 0;}
        .about-area .Vernon.t-curve {bottom: 99%;}
        .about-section, .about-section.aboutserver_details_reverse{display: grid; padding: 6% 20px 0px 20px;}
        .about-section .about-txt .point{display: flex; justify-content: space-between;}
        .about-section .shape-img{width: 100%; order: 2;}
        .about-section .about-txt{width: 100%; margin: 30px 0 0 0;}
        .top-section .bnr-content .inner-cntnt .text-content p{margin: 15px 0;}
        .top-section .bnr-content .inner-cntnt .text-content .bk-btn{width: 100%; display: flex; justify-content: center;}
        .top-section .bnr-content .inner-cntnt .text-content .bk-btn a{font-size: 16px;}
        .shedule-section .schdule-txt{display: block;}
        .shedule-section .schdule-txt .schdl-inr-txt{width: 100%;}
        .shedule-section .schdule-txt .btn-shdule{width: 100% !important; justify-content: start; margin: 2px 0 0 0;}
        .shedule-section .schdule-txt .btn-shdule a{font-size: 16px; padding: 10px 20px;}
        .footer-section .ftr-curve{top: -2px;}
        .top-section .bnr-content .inner-cntnt .logo{display: flex; align-items: center; justify-content: center;}
        .top-section .bnr-content .inner-cntnt .logo img{width: 50%;}
        .top-section .bnr-content h1{text-align: center;}
        .top-section .bnr-content .inner-cntnt .text-content p{font-size: 18px; text-align: center;}
        h2{font-size: 30px;}
        .about-area .about-dtls .about-txt h2{margin: 0;}
        .shedule-section .schdule-txt .schdl-inr-txt h5{margin: 0 0 5px 0;}

        .main-div{height: 600px;}

        .top-section .bnr-content{padding: 60px 0 20px;}
        .top-section .bnr-content .inner-cntnt{margin-left: 0;}
        .Carol-projects .Carol-projects-text{padding: 0; margin-bottom: 15px;}

    	/* contact page css starts here */
    .contact-box .form-box{position: static; width: 100%; margin: 35px 0 0 0;}

      /* lake Conroe Community page css starts here */
        .lke-reverse{padding-bottom: 20px;}

      /* About page css starts here */
        .member-sec{margin: 30px 0 0 0; width: auto;}

        /* Shoreline Shoreline-carol-miller-rainer page css starts here */
        .Carol-projects .owl-nav{position: initial;}
        .Carol-projects .Carol-projects-det{padding: 30px 0 10px 0;}


        .service-section{padding: 30px 0;}
        .gallery-section{margin: 60px 0;}
        .gallery-section .wpb_wrapper{margin-bottom: 15px;}
        .gallery-section .vc_custom_1715426418829{padding-top: 0 !important;}
        .Testimonials{padding: 30px 0 130px 0;}
        .marine-cons-sec{margin: 60px 0 40px 0;}
        .footer-section{padding: 50px 0 5px 0;}
        .faq-section{padding: 30px 0;}
        
    }

    @media screen and (max-width:630px) {
      .main-div{height: 480px;}
  }

    @media screen and (max-width:575px) {
        .faq-section .accordion-header{font-size: 18px;}
        .top-section .bnr-content h1{line-height: 27px; font-size:28px;}

        .dropdown-item{white-space: wrap;}
        .top-section .bnr-content .inner-cntnt .logo img{width: 70%;}
        
    }

    @media screen and (max-width:500px) {
      .main-div{height: 350px;}

  /* About page css starts here */
      .member-sec .member{display: block; margin: 50px 0 0 0;}
      .member-sec .member .circle-img{margin: 0 0 15px 0;}
  }

    @media screen and (max-width:460px) {
    .top-section{padding: 20px 0 10% 0;}
    .top-section .bnr-content h1{margin: 15px 0 0 0;}
    .top-section .bnr-content .inner-cntnt .text-content{padding: 0;}
    .top-section .bnr-content .inner-cntnt .text-content p{margin: 10px 0 25px 0;}
    h2{font-size: 36px; line-height: 36px;}
    .about-section .about-txt .point{display: block;}
    .about-section .about-txt .point li{font-size: 20px;}
    .shedule-section .schdule-txt .schdl-inr-txt h5{font-size: 25px;}
    .Testimonials{padding: 40px 0 130px 0;}
    .Testimonials .owl-prev{bottom: -30%; left: 42%;}
    .Testimonials .owl-next{bottom: -30%; right: 42%;}
    .Testimonials .testi-curve{bottom: -1px;}
    .service-section .service-box h3{font-size: 26px;}
    .service-section .service-box{min-height: 400px;}
    .about-area .Vernon.b-curve { top: 104.9%;}
    }
    

    @media screen and (max-width:430px){
      .top-section .bnr-content{padding: 50px 0 20px 0;}
      .about-area .hedshot-img{height: 250px; width: 250px;}
      .Carol-projects .Carol-projects-det{padding: 20px 0;}
      .Carol-projects .Carol-projects-photo .Carol-projects-images{height: 340px;}

      /* contact page css starts here */
      .contact-box{padding: 18px;}
      .contact-box .address li{font-size: 16px; margin: 0 0 15px 0;}
      .contact-box .address li a{max-width: 263px; overflow-wrap: anywhere;}
      .about-area .Vernon.b-curve { top: 104.9%;}
    }
    
    @media screen and (max-width: 385px){
      .about-area .b-curve{top: 99.9%;}
    }

    @media screen and (max-width: 375px) {
      .main-div{height: 294px;}
      .footer-section .ftr-curve{top: -5px;}
      .about-area{margin: 0;}
     
      .srvc-gallery .srvc-glry-bottom-curve{top: 99.9%;}
    }
    @media screen and (max-width: 355px){
      h2{font-size: 33px; line-height: 42px;}
      .about-area .b-curve{top: 99.8%;}
      .srvc-gallery .srvc-glry-bottom-curve{top: 99.8%;}

    }

    @media screen and (max-width: 335px) {
      .main-div{height: 253px;}
      .Carol-projects .Carol-projects-photo .Carol-projects-images{height: 260px;}
      .about-area .b-curve{top: 99.7%;}
      .srvc-gallery .srvc-glry-bottom-curve{top: 99.7%;}
    }

    @media screen and (max-width: 300px) {
      .main-div{height: 220px;}
      .about-area .b-curve{top: 99.65%;}
      .srvc-gallery .srvc-glry-bottom-curve{top: 99.65%;}
    }
.d-flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


/*.owl-carousel-two.owl-carousel .owl-stage-outer {
    display: flex;
    justify-content: center;
}*/

.error-404 {
    padding: 10% 0;
    text-align: center;
}
.error-404  .goback.button-bin {
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: #007ac3;
    padding: 12px 30px;
    border-radius: 26px;
    letter-spacing: 2px;
    border: 2px solid transparent;
    transition: all .5s;
    display: inline-block;
}
.error-404 .goback.button-bin:hover {
    background: 0 0;
    border: 2px solid #007ac3;
    color: #007ac3;
}