/********** Template CSS **********/
:root {
    --primary: #2124B1;
    --secondary: #4777F5;
    --light: #F7FAFF;
    --dark: #1D1D27;
}
body{
    font-family: "Livvic", sans-serif;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Hero Header ***/
.hero-header {

    background:
        url(../img/bg-dot1.png),
        url(../img/bg-dot.png),
        url(../img/bg-round.png),
        url(../img/bg-tree.png), linear-gradient(to bottom right, #062433, #23526a);
    background-position:
        10px 10px,
        bottom 190px right 10px,
        left 55% top -1px,
        left 45% bottom -1px,
        center bottom -1px;
    background-repeat: no-repeat;
    position: relative;
}

.homeSliderOnly {
    background-position: center;
    background: linear-gradient(to bottom right, #062433, #23526a);
}
.homeSliderOnly:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: auto;
    background:url(../img/DALL.png);
    display: block !important;
    opacity: 0.2;
    background-size: cover;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
    border-radius: 7px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
    border-radius: 7px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** Service ***/
.service-item {
    position: relative;
    min-height: 400px;
    padding: 30px 25px;
    background: #eaf3fa;

    transition: .5s;
    border-radius: 18px !important;
}


.works .service-item {
    background: #fff;
}
.service-item:hover {
    background: #ff6868 !important;
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
        width: 110px;
    height: 110px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    /*background: url(../img/icon-shape-primary.png) center center no-repeat;*/
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--light);
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: #000;
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #ff4b4b;
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Testimonial ***/
.newsletter,
.testimonial {
    background:
        url(../img/bg-top.png),
        url(../img/bg-bottom.png);
    background-position:
        left top,
        right bottom;
    background-repeat: no-repeat;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--light) !important;
    border-color: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #888888;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}


/*** Team ***/
.team-item {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.team-item::after {
    position: absolute;
    content: "";
    top: 3rem;
    right: 3rem;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item small {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover small {
    color: var(--light);
}


/*** Project Portfolio ***/
#portfolio-flters .btn {
    position: relative;
    display: inline-block;
    margin: 10px 4px 0 4px;
    transition: .5s;
}

#portfolio-flters .btn::after {
    position: absolute;
    content: "";
    right: -1px;
    bottom: -1px;
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 50px solid #FFFFFF;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
    color: var(--light);
    background: var(--primary);
}

.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



/***/
.sliderMain {

}
.slideshare {
    width: 100%;
    position: absolute;
    bottom: -1px;
    z-index: 1;
}
.navbar-brand img {
    width: 70px;
}
.relative {
    position: relative;
}
.navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
    padding-right: 15px !important;
    padding-left: 15px !important;
    text-transform: capitalize;
}
.navbar-expand-lg .navbar-nav .nav-link.navbtn {
    background: #10618b;
    margin-left: -5px;
    clip-path: polygon(0px 0, 100% 0, 110px 100%, 0 100%, 0 calc(100% - 2px)) !important;
    padding-right: 25px !important;
}
.navbar-expand-lg .navbar-nav .nav-link.navbtn2 {
    clip-path: polygon(10px 0, 100% 0, 100px 100%, 0 100%, 0 calc(100% - 2px)) !important;
    padding-right: 15px !important;
    padding-left: 25px !important;
}
.navbtn1 {
    margin-left: 10px !important;
}
.fixed-top {
    position: absolute;
}
.works {
    background: #ff4b4b;
    background: #14394d;
}
.padSec {
    padding: 70px 0px;
}
footer {
    background:#eeeeee;
    padding: 70px 0px;
}
footer .logo img {
    width: 70px;
}
footer .logo p {
    color: #272727;
    opacity: 0.7;
    font-weight: 400;
    width: 100%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 0px;
}
footer h4 {
    color: #000;
    font-size: 20px;
    font-weight: 600 !important;
}


.snBocInfo {
    background: #ffffff30;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
}
.snBocInfo .f1 {
    text-align: left;
} 
.snBocInfo .f3 {
    text-align:right;
} 
.borderleft {
    border-right: 1px solid #ffffff50;
}
.socialFoo {
    margin-top: 010px;
}
.socialFoo a {
    font-size: 23px;
    margin: 0px 0px;
    display: inline-block;
    color: #595959;
}
.copyHere  {
    background: #e0e0e0;
    padding: 10px;
    color: #000;
}
.btn-light {
    color: #fff;
    background-color: #10618b;
    border-color: #10618b;
}
.text-primary {

    color: #23526a !important;
}
.section-title h6::before, .section-title h6::after {
    background: #23526a50 !important;
    top: 10px !important;
}
.section-title h6::after {
    top: 15px !important;
}
.section-title  h2, .sliderMain h1 {
    font-weight: 600 !important;
}
.ab p{
    color: #696969;
}
.section-title  h6 {
    font-size:24px !important;
}
.service-item h5 {
    font-weight: 600 !important;
    margin-bottom: 5px !important;
}
.works .section-title h2 {
    color: #fff;
}
.works .section-title::before, .works .section-title::after {
    background: #fff;
}
.btn-primary {
    color: #fff;
    background-color: #ff4b4b;
    border-color: #ff4b4b;
}
.sliderMain {
    padding-bottom: 30px !important;
    margin-bottom: 0px !important;
}
.cursorP {
    cursor: pointer;
}
.snBocInfo p{
    font-size: 14px;
}
.qLinks {
    margin-bottom: 20px;
}
.qLinks a {
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    background: #ffffff20;
    margin: 5px;
    border-radius: 5px;
    display: inline-block;
}
.slider_text h2 {
    font-weight: 600;
    font-size: 50px;
    font-size: 43px;
    margin-bottom: 10px;
    color: #fff;
}
.sn_page_content p, .sn_page_content li {
    color: #1e1d1d;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff80;
}
.sn_page_content h2 {
    font-size: 30px;
    color: #fff;
}
.sn_page_content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #fff;
}

.sn_page_content p a {
    color: #fff;
}
.snlocation {
        background: #00000030;
    color: #000;
    padding: 10px 25px;
    border-radius: 10px;
}
.homeSliderOnly .relative {
    position: relative;
    z-index: 2;
}
.service-item:hover .service-icon {
    background: transparent;
}
.navbar-brand span{
    color: #fff;
    font-size: 27px;
    font-weight: 600;
    margin-left: 5px;
}
.abBoc {
    background: #00000010;
    padding: 25px;
    border-radius: 25px;
}
.abBoc img {
    border-radius: 15px 50px 50px;
    border: 1px solid #cacaca;
    padding: 5px;
}
.qLinks a{
    display: block;
    background: transparent;
    color: #272727;
    font-size: 14px;
    position: relative;
    padding-bottom: 0px ;
}
.qLinks a:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 1px;
    background: #000;
    left: 0px;
    top: 14px;
}
.snBocInfo {
    background: transparent;
    padding: 0px;
    color: #272727;
}
.snBocInfo i {
    background: #d0d0d0;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 8px;
}
html .web3modal-provider-container, html .popupMain .popbody button, html .btn-primary {
    background: #14394d !important;
    color: #fff !important;
}
.top_slide {
    position: fixed;
    right: 12px;
    z-index: 99;
    bottom: 70px;
    position: fixed;
    cursor: pointer;
    top: auto;
    right: 27px;
    color: #ffffff;
    background-image: linear-gradient(to bottom right, #062433, #23526a);
    z-index: 9999;
    width: 45px;
    text-align: center;
    height: 45px;
    line-height: 42px;
    opacity: 1;
    /* visibility: hidden; */
    -webkit-transition: all 0.9s ease-out 0s;
    border-radius: 10px;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    bottom: 30px;
    z-index:3;
    padding-top: 16px;
}
.toggle .top_slide {
    top: 95%;
    -webkit-transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    right: 30px;
    border-radius: 100%;
}
.toggle .top_slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to right, #B725FF 0%, #B725FF 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-out 0s;
    border-radius: 100%;
}
.top_slide a {
    color: #fff;
}
.toggle .top_slide::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 45px;
    height: 45px;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    background-image: -webkit-linear-gradient(0deg, #FFBD00 0%, #FFBD00 100%);
    border-radius: 100%;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    text-decoration: none;
}
.homeSliderOnly {
    overflow: hidden;
    position: relative;
}
.homeSliderOnly:before {
    position: absolute;
    content: '';
    display: block !important;
    background: #fff;
    width: 120%;
    height: 250px;
    bottom: 0px;
    opacity: 1 !important;
    z-index: 1 !important;
    transform: rotate(-4deg);
    left: -10%;
    bottom: -160px;
    opacity: 0 !important;
}
.emailHeight {
    height: 100px;
    border-radius: 15px !important;
    margin-right: 10px;
}
.break {
    word-break: break-all;
}