/********** Template CSS **********/
:root {
    --primary: #1596db;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B; 
}

.container{max-width: 1280px; width: 100%;}
.bg-dark {
    background-color: #121212 !important;
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.1);
    background: #fff;
}

a:hover {
    color: #1596db;
}
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.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;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 10px;
    padding: 10px 15px;
    color: #f9f9f9;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    line-height: normal;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev, .carousel-control-next {
    width: 52px !important;
    height: 52px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-next {
    right: 40px;
    bottom: 60px !important;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    bottom: 40px;
    top: auto;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: .5;
    transition: opacity 0.15s ease;
}

.carousel-control-prev {
    right: 92px; left: auto;

}
@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item {
    border: 1px solid #c9c9c9;
    box-shadow: 0 0 15px #37373740;
    border-radius: 10px;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}
.prt-bnt{background: #fff;color: #333 !important;/* padding: 10px 15px !important; */border-radius: 8px;text-align: center;}
.abt-sec{ background: url(../img/bg1.png) no-repeat center center; background-size: cover;}
.hd-ttl{margin: -30px 0 0; position: relative; z-index: 9; border-bottom: 2px solid #333 !important; height: 72px; display: flex; align-items: center; justify-items: center;}

.hd-ttl a{
    display: block;
    text-align: center;
    width: 100%;
    font-size: 20px;
}

.owl-nav{position: absolute;top: 40%;left: 0;right: 0;}

.bsn-img{
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px 50px;
    overflow: hidden;
    padding: 10px;
    background: #000;
    float: left;
    margin-right: 10px;
}
.bsn-img img{}

.busin-cont{ width: 100%; display: block; }
.hrt-shr{ position: absolute; top: 20px; right: 20px; }
.hrt-shr a i{ width: 42px; height: 42px; background: #fff; color: #333; display: flex; align-items: center; justify-content: center; padding: 5px; border-radius: 50px 50px; }
.see-btn{position: absolute;right: 0;top: 10px;border-radius: 8px;padding: 8px 20px;border: 1px solid #1596db;color: #333;text-transform: uppercase;font-size: 13px;font-weight: 700;}

.cat-box{
    border: 1px solid #b9b9b9;
    border-radius: 20px;
    padding: 45px 0;
}
.cat-box a{
    color: #333;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 25px;
    display: block;
}
.cat-box:hover a{color: #1596db;}
.icn-img{
    width: 82px;
    margin: 0 auto 15px;
}
.cat-box:hover{ border: 1px solid #1596db; }
.sub-box input{ 
    border-radius: 50px 50px;
}
.sub-box button{background: #333;
    border-radius: 0 50px 50px 0;
    color: #fff;}


.input-group .btn {
    position: relative;
    z-index: 2;
    padding: 15px 25px;
}

.career-bar{position: relative; background: url(../img/bg2.jpg) no-repeat center center; background-size: cover; padding: 80px 0;}
.career-bar h2{position: absolute; top: -20px; right: 25px; font-size: 120px; font-weight: 800; color: #333; opacity: 0.2;}
.portl-sec{border-radius: 8px;overflow: hidden;position: relative;}
.portl-sec img{ width: 100%; }
.portl-sec h1{
    position: absolute;
    top: 15px;
    right: 32px;
    color: #fff;
    opacity: 0.2;
    font-size: 62px;
}
.portl-sec a{
    position: absolute;
    bottom: 52px;
    color: #fff;
    left: 52px;
    font-size: 32px;
    font-weight: 600; display: block;
}
.portl-sec a:after{position: absolute;content: '';left: 0;bottom: -10px;height: 3px;width: 52px;background: #1596db;}


/* Login --------------*/
.login-form{}
   .login-form form{ padding: 10px 35px; }
   
   .login-form label{padding:  0 0 5px;font-weight: 600;display: inline-block !important;}
   .login-form input{
       padding: 14px 15px 14px 45px !important;
       height: auto !important;
       background: #f9f9f9 !important;
       border-radius: 5px !important;
       border: none !important;    margin: 0 0 15px 0;
   }

   .form-group select {
    width: 100%;
    padding: 7px 10px;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    color: rgb(102 102 102);
    font-family: inherit;
    font-size: 1.0rem;
    height: auto;
    margin: 0 0 1rem 0;
}

   .mb-int{ width: 70% !important; display: inline-block !important; }

   @media (max-width: 479px) {
    .mb-int{ width: 63% !important;  }
   }
   @media (max-width: 767px){
    .login-form form {
    padding: 10px 20px;
}
.login-form form .d-inline{ display: block !important; }
.tab-contents {
    padding: 0.5em 0em 1em !important;
    border: 1px solid #ddd;
}
.check-add {
    padding: 10px 0 !important;
}
   }
.checkbox{position: relative;}
   .checkbox a{ position: absolute; right: 0; top: 0; font-weight: 600; }
   
   #signup input{
       padding: 12px 15px !important;}
   
   .login-form input[type="checkbox"]{
       margin-right: 8px;
       width: 18px;
       height: 18px !important;
       position: relative;
       top: 4px;
   }
   .tabs {
     /* max-width: 640px; */
     /* margin: 0 auto; */
     padding: 0;
     box-shadow: 0 0 25px #e7e7e7;
     border-radius: 8px 8px 0 0;
   }
   #tab-button {
     display: table;
     table-layout: fixed;
     width: 100%;
     margin: 0;
     padding: 0;
     list-style: none;
   }
   #tab-button li {
     display: table-cell;
     width: 20%;
   }
   #tab-button li a {
     display: block;
     padding: .5em;
     background: #eee;
     border: 1px solid #ddd;
     text-align: center;
     color: #262626;
     text-decoration: none;
     text-transform: uppercase;
     font-weight: 700;
     font-size: 22px;
     border-radius: 8px 8px 0 0;
   }
   #tab-button li:not(:first-child) a {
     border-left: none;
   }
   #tab-button li a:hover,
   #tab-button .is-active a {
     border-bottom-color: transparent;
     background: #fff;
     border-top: 2px solid #1596db;
     color: #1596db;
     border-radius: 8px 8px 0 0;
   }
   .tab-contents {
     padding: .5em 2em 1em;
     border: 1px solid #ddd;
   }
   .tab-contents h4{font-weight: 800;color: #1596db;text-transform: uppercase;}
   
   
   
   .tab-button-outer {
     /*display: none;*/
   }
   .tab-contents {
     margin-top: 20px;
   }
   @media screen and (min-width: 768px) {
     .tab-button-outer {
       position: relative;
       z-index: 2;
       display: block;
     }
     .tab-select-outer {
       display: none;
     }
     .tab-contents {
       position: relative;
       top: -1px;
       margin-top: 0;
     }
   }

   .slct-log .form-group input:checked + label:after {
     content: '';
     display: block;
     position: absolute;
     top: 3px;
     left: 9px;
     width: 6px;
     height: 14px;
     border: solid #0079bf;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
   }
   
   .rdo-btn{padding: 0 10px;}
   .rad-label {
     display: inline-block !important;
     align-items: center;
     border-radius: 100px;
     padding: 6px 12px !important;
     margin: 5px 0;
     cursor: pointer;
     transition: .3s;
     max-width: 200px;
     width: 100%;
   }
   
   .rad-label:hover,
   .rad-label:focus-within {
     background: hsla(0, 0%, 80%, .14);
   }
   
   .rad-input {
     position: absolute !important;
     left: 0;
     top: 0;
     width: 1px !important;
     height: 1px !important;
     opacity: 0;
     z-index: -1;
   }
   
   .rad-design {
     width: 22px;
     height: 22px;
     border-radius: 100px;
     background: linear-gradient(to right bottom, hsl(154, 97%, 62%), hsl(225, 97%, 62%));
     position: relative;
     display: inline-block;
     top: 3px;
   }
   
   .rad-design::before {
     content: '';
   
     display: inline-block;
     width: inherit;
     height: inherit;
     border-radius: inherit;
   
     background: hsl(0, 0%, 90%);
     transform: scale(1.1);
     transition: .3s;
   }
   
   .rad-input:checked+.rad-design::before {
     transform: scale(0);
   }
   
   .rad-text {
     color: hsl(0, 0%, 60%);
     margin-left: 9px;
     letter-spacing: 1px;
     text-transform: uppercase;
     font-size: 14px;
     font-weight: 700;
     transition: .3s;
     display: inline-block;
     position: relative;
     top: -2px;
   }
   
   .rad-input:checked~.rad-text {
     color: hsl(0, 0%, 40%);
   }
   

   @media (max-width: 579px) {
.rad-label {
    max-width: 131px;
}
   }
   .span-or{text-transform: uppercase;font-weight: 400;color: #1596db;}
   .log-sign{background: #1596db !important;border: 1px solid #1596db;border-radius: 10px;padding: 10px 35px;width: 100%;margin: 25px 0 0;font-size: 18px;}
   .form-group{ position: relative; }
   .form-group i{
       position: absolute;
       top: 43px;
       left: 16px;
       color: #424242;
   }

   .scl-btn{}
   .scl-btn a{
       font-size: 20px;
       border: 1px solid #e7e7e7;
       border-radius: 50% 50%;
       width: 42px;
       height: 42px;
       display: inline-block;
       padding: 6px 0 0;
       margin: 0 5px;
       color: #333;
   }
   .scl-btn a:hover{background: #1596db;transition: all 0.3s;color: #fff;}

   .b-select-wrap .wrap-drop {background: #f8f8f8;/* box-shadow:3px 3px 3px rgba(0,0,0,.2); */cursor:pointer;margin: 0;max-width: 116px;padding: 0.5rem 1rem;position:relative;width:35%;z-index:3;border-radius: 15px;border: 1px solid #e7e7e700;display: inline-block;}

.b-select-wrap .wrap-drop::after {border-color:#695d52 transparent;border-style:solid;border-width: 5px 5px 0;content:"";height:0;margin-top:-4px;position:absolute;right: 0.7rem;top:50%;width:0;}

.b-select-wrap .wrap-drop .drop {background: #ffffff;box-shadow:3px 3px 3px rgba(0,0,0,.2);display:none;left:0;list-style:none;margin-top:0;opacity:0;padding-left:0;pointer-events:none;position:absolute;right:0;top:100%;z-index:2;}

.b-select-wrap .wrap-drop .drop li a {color:#695d52;display:block;padding: 0.5rem 0.5rem 0.5rem 1rem;text-decoration:none;font-size: 13px;}

.b-select-wrap .wrap-drop .drop li a img{position: relative;top: -1px;right: 2px;}

.b-select-wrap .wrap-drop span {color:#000;font-size: 13px;}
.b-select-wrap .wrap-drop span img{position: relative;top: -1px;right: 2px;}

.b-select-wrap .wrap-drop .drop li:hover a {background-color: #525252;color: #ffffff;}

.b-select-wrap .wrap-drop.active::after {border-width: 0 5px 5px;}

.b-select-wrap .wrap-drop.active .drop {display:block;opacity:1;pointer-events:auto;margin: 0;padding: 0;}


/* Singlw Business -----*/

 .single-list{box-shadow: 0 0 22px #e7e7e7;padding: 20px 0px 60px;position: relative;}
 .bnr-img{ height: 320px;}
   .bnr-img img {
       object-fit: cover;
       height: 100%;
       width: 100%;
   }

   .mm-cnt{ position: relative; }
   .mm-cnt > a{
       background: #3e369d;
       padding: 10px 25px;
       display: inline-block;
       margin: 0 0 0 25px;
       border-radius: 10px;
       color: #fff;
       font-weight: 600;
       text-transform: uppercase;
       letter-spacing: 1px;
   }

   .brand-p{
       position: absolute;
       width: 75px;
       height: 75px;
       border-radius: 50px 50px;
       background: #fff;
       top: -102px;
       left: 35px;
       display: flex;
       overflow: hidden;
       padding: 10px;
       box-shadow: 0 0 8px #e7e7e7;
   }
   .brand-p img{
       width: 100%;
       object-fit: contain;
   }
   .icon-s{
       position: absolute;
       right: 30px;
       top: -80px;
   }
   .icon-s a{ color: #333; }
   .icon-s a i{
       background: #fff;
       width: 42px;
       height: 42px;
       border-radius: 50px 50px;
       text-align: center;
       padding: 13px;
   }
   .main-cont{
       padding: 0 25px 10px;
       position: relative;
       /* margin: 0 20px; */
   }
   .main-cont h3{
       margin: 0;
       padding: 35px 0 2px;
       font-weight: 900;
       color: #1596db;
   }
   .main-cont p{
       color: #020202;
       font-weight: 600;
   }
   .dis-im{
    position: absolute;
    right: 20px;
    top: 15px;
}

@media (max-width: 767px){
  .dis-im {position: relative;right: 0;}
}
   .main-cont span{
       width: 102px;
       height: 102px;
       text-align: center;
       background: #1596db;
       border-radius: 50px 50px;
       padding: 30px 0 0;
       line-height: 20px;
       font-weight: 600;
       display: inline-block;
       color: #333;
   }
   .main-cont span strong{
       font-size: 32px;
       color: #fff;
   }
   .main-cont small{
       background: #0162FD;
       border-radius: 50px;
       padding: 8px 12px;
       font-size: 12px;
       color: #fff;
   }
   .main-cont p a{}
   .main-cont > a{
       background: #eee;
       color: #333;
       padding: 10px 15px;
       display: inline-block;
       font-weight: 600;
   }
   
   .shr-b{
       padding: 0 25px 10px;
       position: relative;
   }
   .shr-b h4{
       margin: 0 10px 15px 0;
       padding: 0;
       font-size: 14px;
       font-weight: 600;
       color: #8d8d8d;
       display: inline-block;
   }
   .shr-b ul{
       margin: 0;
       padding: 0;
       display: inline-block;
   }
   .shr-b ul li{
       list-style: none;
       display: inline-block;
   }
   .shr-b ul li a{
       display: block;
       padding: 2px 0px;
       border: 1px solid #e7e7e7;
       width: 28px;
       height: 28px;
       text-align: center;
       background: #333;
       color: #fff;
       border-radius: 50px 50px;
   }
   .shr-b ul li a:hover{background: #0162FD;}
   .shr-b ul li a i{}
   .nv-btn{
       padding: 25px 0 0;
   }
   .nv-btn a, .nv-btn .dropdown{
       display: inline-block;
       padding: 6px 15px;
       border: 1px solid #a1a1a1;
       border-radius: 5px;
       color: #333;
       font-size: 14px;
   }
   .nv-btn a:hover{}
   .nv-btn a i{
       margin-right: 5px;
   }

   .nv-btn .dropdown a{ border: none; padding: 0; }
   .nv-btn .dropdown .dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 8rem;
    padding: 0.5rem 0.8rem;
    margin: 0;
    left: 0;
    top: 33px;}
   .signup-ot{
       padding: 40px;
       background: url(../images/blur-img.jpg) no-repeat center center #f7f7f7;
       background-size: cover;
       border-radius: 20px;
       margin: 0 20px;
   }
   .signup-ot h3{
       margin: 0;
       font-weight: 800;
       color: #3e369d;
       padding: 0 0 15px;
   }
   .signup-ot h3 i{ color: #000; padding: 0 10px; }
   .signup-ot h5{
       margin: 25px 0 0;
       font-weight: 800;
       color: #3e369d;
       padding: 0 0 15px;
       font-size: 22px;
       text-align: center;
   }
   .signup-ot ul{
       background: #fff;
       padding: 20px;
       margin: 0 0 20px;
       border-radius: 10px;
   }
   .signup-ot ul li{
       margin-left: 25px;
   }
   .signup-ot p{
       color: #333;
       font-weight: 600;
       padding: 20px 0;
       margin: 0;
   }


   .signup-ot2{
       padding: 40px;
       background: url(../images/blur-img2.jpg) no-repeat center center #f7f7f7;
       background-size: cover;
       border-radius: 10px;
       margin: 0 20px;
   }
   .signup-ot2 h3{
       margin: 0;
       font-weight: 300;
       color: #000000;
       padding: 0 0 15px;
       font-size: 42px; text-align: center;
   }
   .signup-ot2 h3 i{ color: #000; padding: 0 10px; }
   .signup-ot2 h5{
       margin: 25px 0 0;
       font-weight: 800;
       color: #000000;
       padding: 0 0 15px;
       font-size: 28px;
       text-align: center;
       text-transform: uppercase;
   }
   .signup-ot2 ul{
       background: #00000059;
       padding: 20px;
       margin: 0 0 0px;
       border-radius: 5px;
   }
   .signup-ot2 ul li{
       margin-left: 0;
       list-style: none;
       color: #fff;
   }
   .signup-ot2 p{
       color: #0c0c0c;
       font-weight: 300;
       padding: 20px 0;
       margin: 0;
       font-size: 22px;
   }

   .sig-log{}
   .sig-log button{
       display: inline-block;
       width: 100%;
       max-width: 220px;
       margin: 0;
       text-transform: uppercase;
       font-weight: 700;
       font-size: 16px;
   }
   .sig-log button:hover{background: #1ccacd !important;border: 1px solid #1ccacd !important;}
   
   .tab-contents .main h6{
       font-size: 18px;
       color: #08c9d2;
      padding: 0px 15px;
   }
   
   .qrd{
       width: 100px;
       top: -18px;
       position: relative;
   }
   
   @media (min-width: 320px) and (max-width: 567px) {
   
       .qrd{
       /* right: 10px; */
       width: 90px !important;
       top: -15px;
   }
   .signup-ot {
    padding: 40px 10px !important;
     margin: 0 10px !important;
}
.signup-ot ul li {
    font-size: 14px;
}
   
   .signup-ot2 {
    padding: 40px 10px;
    margin: 0 10px;
}
.signup-ot2 ul li {
    font-size: 14px;
}

.verf-inst h2 {
    font-size: 28px !important;
}


   .main-cont span {
       /* right: 75px; */
       width: 92px;
       height: 92px;
       /* top: 32px; */
       padding: 26px 0 0;
       /* line-height: 15px; */
       font-size: 16px;
   }
   .main-cont span strong {
       font-size: 23px;
    
   }
   .bnr-img {
       height: 250px;
   }
   
   .bnr-img img {
       object-fit: cover;
       height: 100%;
   }
       }
   
   .btm-socl{
       padding: 0;
       text-align: center;
       position: relative;
       margin: 40px 0 10px;
   }
   
   .btm-socl:after{content: '';position: absolute;width: 80%;height: 1px;background: #dfdfdf;top: 16px;left: 0;right: 0;margin: 0 auto;z-index: -1;}
   .btm-socl a{
       color: #fff;
       padding: 5px 0;
       background: #333;
       width: 32px;
       height: 32px;
       display: inline-block;
       text-align: center;
       border-radius: 50% 50%;
   }
   .btm-socl a:hover{
       color: #fff;
       background: #3e369d;
   }
   .btm-socl i{}
   
   .pp-cont{padding: 0 25px;}
   .pp-cont h5{
       font-weight: 800;
       font-size: 26px;
       color: #585858;
       margin: 15px 0;
   }
   
   .pp-cont h5 strong{color: #1596db;font-weight: 800;}
   .pp-cont p{}
   .pp-cont a{
       padding: 5px 15px;
       border: 1px solid #1ccacd;
       border-radius: 50px 50px;
       margin: 0 0 25px;
       display: inline-block;
   }
   .verf-inst{background: url(../images/insti-bg.jpg) no-repeat center center;background-size: cover;border-radius:20px;/* text-align: center; */padding: 80px 60px;margin: 20px 20px;}
.verf-inst h2{color: #2e2e2e;text-transform: uppercase;font-weight: 800;margin: 0;padding: 5px 0 5px;font-size: 42px;}
.verf-inst p{color: #505050;font-size: 22px;}
.verf-inst a{background: #3e369d;padding: 15px 25px;border-radius: 8px;color: #fff;display: inline-block;max-width: 180px;width: 100%;text-transform: uppercase;letter-spacing: 1px;font-weight: 600;text-align: center;}
.verf-inst a:hover{ background: #1ccacd; color: #fff; }

.bsn-cont-detl{ padding: 20px; }
   .map-b{}
   .bsn-cont-detl{}
   .bsn-cont-detl h5{
       font-weight: 800;
       font-size: 26px;
       color: #626262;
       margin: 15px 0;
   }
   
   .bsn-cont-detl h5 strong{color: #1596db;font-weight: 800;}
   .bsn-cont-detl ul{ margin: 0; padding: 20px 0 10px; }
   .bsn-cont-detl ul li{list-style: none;position: relative;padding: 9px 10px;margin: 0 0 2px;background: #efefef;}
   .bsn-cont-detl ul li a i{position: absolute;top: -4px;left: 0;border: 1px solid #e7e7e7;padding: 8px 0;width: 32px;height: 32px;border-radius: 50px;text-align: center;margin-right: 5px;color: #333;background: #fff;}
   .bsn-cont-detl ul li a{
       font-size: 14px;
       color: #404040;
       position: relative;
       padding-left: 40px;
       display: block;
   }
   .bsn-cont-detl ul li a:hover{color: #3E369D;}

    .socl-icon{}
   .socl-icon h5{}
   .socl-icon a{
       /* width: 32px; */
       /* height: 32px; */
       display: inline-block;
       text-align: center;
       border: 1px solid #e7e7e7;
       border-radius: 50px 50px;
       padding: 5px 15px;
       margin-right: 8px;
       color: #333;
       font-size: 13px;
   }
   .socl-icon a i{
    margin-right: 8px;
}

ul.opn-h{
       padding: 20px 0 0 20px;
   }
   .opn-h li{
       position: relative;
       padding: 2px 0 0 65px !important;
       background: transparent !important;
   }
   .opn-h li span{
       position: absolute;
       left: 0;
       font-weight: 700;
       text-transform: uppercase;
   }

  

   @media (max-width: 767px){
    ul.opn-h { padding: 0;}
   } 


   /* Jobs ----------------*/

   /* Listing -----*/
.list-mn{
    background: #3e369d;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.list-mn:before{content: '';position: absolute;background: #544bc1;transform: skew(-25deg);top: 0;left: -210px;width: 282px;height: 350px;z-index: -1;}
.list-mn:after{content: '';position: absolute;background: #544bc1;transform: skew(-20deg);bottom: 0;right: -210px;width: 282px;height: 650px;z-index: -1;}
.list-mn h2{font-weight: 800;color: #fff;position: relative;}
.list-mn h6{font-weight: 500;color: #fff;}
#listed{margin: 0;position: relative;z-index: 1;}
#listed li{
    list-style: none;
    background: #ffffff;
    padding: 15px 30px;
    position: relative;
    margin-bottom: 5px;
    transform: scale(1); transition: all 0.3s;
}

#listed li:hover{ transform: scale(1.03); transition: all 0.3s; }
#listed .job-name{}
#listed .job-name h4{
    padding: 0;
    margin: 0;
}
#listed .job-name p{
    padding: 0;
    margin: 0 0 10px;
}
#listed li a{
    background: #3e369d;
    border-radius: 50px;
    color: #fff;
    padding: 5px 20px;
    position: absolute;
    right: 20px;
    top: 30px;
}
#listed li a:hover{
    background: #333;
}

.job-dtl{background: #f2f5f7;}

.job-cont p{ font-size: 16px; }


/* Career */
.form-cr{background: #fff;
    box-shadow: 0 0 40px #e7e7e7;
    padding: 50px;}
#ft-form {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15
}
#ft-form *,
#ft-form ::after,
#ft-form ::before {
  box-sizing: border-box
}
#ft-form input,
#ft-form select,
#ft-form textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}
#ft-form select {
  text-transform: none
}
#ft-form [type=submit] {
  /*-webkit-appearance: button*/
}
#ft-form legend {
  padding: 0
}
#ft-form h2,
#ft-form p {
  margin: 0
}
#ft-form fieldset {
  margin: 0;
  padding: 0
}
#ft-form *,
#ft-form ::after,
#ft-form ::before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb
}
#ft-form textarea {
  resize: vertical
}
#ft-form h2 {
  font-size: inherit;
  font-weight: inherit
}
#ft-form input,
#ft-form select,
#ft-form textarea {
  padding: 0;
  line-height: inherit;
  color: inherit
}
#ft-form [type=date],
#ft-form [type=email],
#ft-form [type=tel],
#ft-form [type=text],
#ft-form select,
#ft-form textarea {
 /* -webkit-appearance: none;
  -moz-appearance: none;*/
  appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  /* border-width: 1px; */
  border-radius: 0;
  padding-top: .5rem;
  padding-right: .75rem;
  padding-bottom: .5rem;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem
}
#ft-form [type=file] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit
}
#ft-form [type=file]:focus {
  /*outline: 1px auto -webkit-focus-ring-color*/
}
#ft-form fieldset {
  font-size: 100%;
  margin-top: 3rem;
  margin-bottom: 1.5rem
}
#ft-form fieldset:first-child {
  margin-top: 0
}
#ft-form fieldset > * {
  display: block;
  margin-bottom: 1.5rem
}
#ft-form fieldset > :last-child {
  margin-bottom: 0
}
#ft-form fieldset > .two-cols > * {
  display: block;
  margin-bottom: 1.5rem
}
#ft-form fieldset > .two-cols > :last-child {
  margin-bottom: 0
}
@media only screen and (min-width:640px) {
  #ft-form fieldset > .two-cols {
    display: flex;
    align-items: flex-end;
  }
  #ft-form fieldset > .two-cols > * {
    display: block;
    margin-right: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
    flex: 1;
  }
  #ft-form fieldset > .two-cols > :last-child {
    margin-right: 0
  }
}
#ft-form fieldset div > label {
  display: inline-flex;
  align-items: flex-start;
  margin-top: .5rem;
  width: 100%
}
#ft-form fieldset div > label:last-child {
  margin: .5rem 0 0 0;
}
#ft-form fieldset div.inline {
  padding: .55rem 0 0;
  width: 100%
}
#ft-form fieldset div.inline > label {
  width: auto;
  margin-right: .5rem
}
#ft-form fieldset div.inline > label:last-child {
  margin-right: 0
}
#ft-form fieldset > .two-cols div.inline {
  padding: .55rem 0
}
#ft-form fieldset > legend {
  font-weight: 700;
  font-size: 120%;
  margin-bottom: 1rem
}
#ft-form fieldset > p {
  margin: 0
}
#ft-form [type=file] {
 /* -webkit-appearance: none;
  -moz-appearance: none;*/
  appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0;
  padding-top: .5rem;
  padding-right: .75rem;
  padding-bottom: .5rem;
  padding-left: .75rem;
  font-size: 1rem;
  line-height: 1.5rem
}
#ft-form [type=file]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 0 #fff, 0 0 0 3px rgba(199,210,254,.5), 0 0 #0000;
  border-color: #2563eb
}
#ft-form [multiple],
#ft-form [type=date],
#ft-form [type=datetime-local],
#ft-form [type=email],
#ft-form [type=file],
#ft-form [type=month],
#ft-form [type=number],
#ft-form [type=password],
#ft-form [type=search],
#ft-form [type=tel],
#ft-form [type=text],
#ft-form [type=time],
#ft-form [type=url],
#ft-form [type=week],
#ft-form select,
#ft-form textarea {
  border-radius: .375rem;
  margin-top: .25rem;
  box-shadow: none;
  /* border-color: #bbb; */
  width: 100%;
  border-bottom: 1px solid #a3a3a3;
}
#ft-form .btns {
  text-align: right;
  margin-top: 3rem
}
#ft-form .btns > input[type=button],
#ft-form .btns > input[type=reset],
#ft-form .btns > input[type=submit] {
  display: inline-block;
  box-shadow: 0 0 #0000,0 0 #0000,0 1px 2px 0 rgba(0,0,0,.05);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: .6rem;
  padding-bottom: .6rem;
  line-height: 1.25rem;
  border-width: 1px;
  border-radius: .375rem;
  border-color: #bbb;
  background-color: #fff;
  cursor: pointer;
  margin-left: .5rem;
  font-weight: 700
}
#ft-form .btns > input[type=submit] {
  background-color: #040f28;
  transition: background-color .1s;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 25px;
}
#ft-form .btns > input[type=submit]:hover {
  background-color: #fd5d14;
}

   .jjb{ position: relative; }
.jjb:after{ position: absolute; content: ''; background: #f7f7f7; right: 0; top: 0; width: 35%; height: 100%;z-index: -2; }
.jjb2{ position: relative; }
.jjb2:after{position: absolute;content: '';background: #fdf9f4;left: 0;top: 0;width: 35%;height: 100%;z-index: -1;}

@media screen and (max-width: 767px){
  .jjb:after{width: 100%; }
  .jjb2:after{width: 100%;}
  #listed li a {
    position: relative;
    right: 0;
    top: 0;
}
}

.list-mn button, .list-mn .button {
    border-radius: 0;
    border-style: solid;
    border-width: 0;
    cursor: pointer;
    font-family: "Lato", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-weight: normal;
    line-height: normal;
    margin: 0 0 1.25rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2rem 1.0625rem 2rem;
    font-size: 1rem;
    background-color: #008CBA;
    border-color: #007095;
    color: #fff;
    transition: background-color 300ms ease-out;
}

.srch-bb{}
.srch-bb .card{}
.srch-bb i{
    margin: 0;
}
.srch-bb input{
    margin: 0 !important;
    padding: 10px 12px !important;
    height: auto !important;
    border-radius: 5px !important;
}
.srch-bb button{
    margin: 0 !important;
    padding: 12px 30px;
    border-radius: 5px;
}

.inner-page h2{
    font-weight: 600;
    color: #1596db;
    font-size: 20px;
    }


/* Appply Job ---------*/

.job-dtl{background: #f2f5f7;}

.job-cont p{ font-size: 16px; }


/* Career */
.form-cr{background: #fff;
    box-shadow: 0 0 40px #e7e7e7;
    padding: 50px;}
#ft-form {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15
}
#ft-form *,
#ft-form ::after,
#ft-form ::before {
  box-sizing: border-box
}
#ft-form input,
#ft-form select,
#ft-form textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}
#ft-form select {
  text-transform: none
}
#ft-form [type=submit] {
  /*-webkit-appearance: button*/
}
#ft-form legend {
  padding: 0
}
#ft-form h2,
#ft-form p {
  margin: 0
}
#ft-form fieldset {
  margin: 0;
  padding: 0
}
#ft-form *,
#ft-form ::after,
#ft-form ::before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb
}
#ft-form textarea {
  resize: vertical
}
#ft-form h2 {
  font-size: inherit;
  font-weight: inherit
}
#ft-form input,
#ft-form select,
#ft-form textarea {
  padding: 0;
  line-height: inherit;
  color: inherit
}
#ft-form [type=date],
#ft-form [type=email],
#ft-form [type=tel],
#ft-form [type=text],
#ft-form select,
#ft-form textarea {
 /* -webkit-appearance: none;
  -moz-appearance: none;*/
  appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  /* border-width: 1px; */
  border-radius: 0;
  padding-top: .5rem;
  padding-right: .75rem;
  padding-bottom: .5rem;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem
}
#ft-form [type=file] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit
}
#ft-form [type=file]:focus {
  /*outline: 1px auto -webkit-focus-ring-color*/
}
#ft-form fieldset {
  font-size: 100%;
  margin-top: 3rem;
  margin-bottom: 1.5rem
}
#ft-form fieldset:first-child {
  margin-top: 0
}
#ft-form fieldset > * {
  display: block;
  margin-bottom: 1.5rem
}
#ft-form fieldset > :last-child {
  margin-bottom: 0
}
#ft-form fieldset > .two-cols > * {
  display: block;
  margin-bottom: 1.5rem
}
#ft-form fieldset > .two-cols > :last-child {
  margin-bottom: 0
}
@media only screen and (min-width:640px) {
  #ft-form fieldset > .two-cols {
    display: flex;
    align-items: flex-end;
  }
  #ft-form fieldset > .two-cols > * {
    display: block;
    margin-right: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
    flex: 1;
  }
  #ft-form fieldset > .two-cols > :last-child {
    margin-right: 0
  }
}
#ft-form fieldset div > label {
  display: inline-flex;
  align-items: flex-start;
  margin-top: .5rem;
  width: 100%
}
#ft-form fieldset div > label:last-child {
  margin: .5rem 0 0 0;
}
#ft-form fieldset div.inline {
  padding: .55rem 0 0;
  width: 100%
}
#ft-form fieldset div.inline > label {
  width: auto;
  margin-right: .5rem
}
#ft-form fieldset div.inline > label:last-child {
  margin-right: 0
}
#ft-form fieldset > .two-cols div.inline {
  padding: .55rem 0
}
#ft-form fieldset > legend {
  font-weight: 700;
  font-size: 120%;
  margin-bottom: 1rem
}
#ft-form fieldset > p {
  margin: 0
}
#ft-form [type=file] {
 /* -webkit-appearance: none;
  -moz-appearance: none;*/
  appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0;
  padding-top: .5rem;
  padding-right: .75rem;
  padding-bottom: .5rem;
  padding-left: .75rem;
  font-size: 1rem;
  line-height: 1.5rem
}
#ft-form [type=file]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 0 #fff, 0 0 0 3px rgba(199,210,254,.5), 0 0 #0000;
  border-color: #2563eb
}
#ft-form [multiple],
#ft-form [type=date],
#ft-form [type=datetime-local],
#ft-form [type=email],
#ft-form [type=file],
#ft-form [type=month],
#ft-form [type=number],
#ft-form [type=password],
#ft-form [type=search],
#ft-form [type=tel],
#ft-form [type=text],
#ft-form [type=time],
#ft-form [type=url],
#ft-form [type=week],
#ft-form select,
#ft-form textarea {
  border-radius: .375rem;
  margin-top: .25rem;
  box-shadow: none;
  /* border-color: #bbb; */
  width: 100%;
  border-bottom: 1px solid #a3a3a3;
}
#ft-form .btns {
  text-align: right;
  margin-top: 3rem
}
#ft-form .btns > input[type=button],
#ft-form .btns > input[type=reset],
#ft-form .btns > input[type=submit] {
  display: inline-block;
  box-shadow: 0 0 #0000,0 0 #0000,0 1px 2px 0 rgba(0,0,0,.05);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: .6rem;
  padding-bottom: .6rem;
  line-height: 1.25rem;
  border-width: 1px;
  border-radius: .375rem;
  border-color: #bbb;
  background-color: #fff;
  cursor: pointer;
  margin-left: .5rem;
  font-weight: 700
}
#ft-form .btns > input[type=submit] {
  background-color: #040f28;
  transition: background-color .1s;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 25px;
}
#ft-form .btns > input[type=submit]:hover {
  background-color: #fd5d14;
}

.bsn-serch{}
.bsn-serch form{ border-radius: 50px 50px; padding: 12px 5px; background: #fff; }
.bsn-serch input{
    max-width: 320px;
    width: 100%;
    padding: 10px 22px;
    border-radius: 50px 50px;
    border: none;
    background: #e7e7e7;
}
.bsn-serch button{
    padding: 11px 15px;
    margin: 0;
    border-radius: 50px 50px;
}


/* My Account ---------------*/

.accountBut .catgy-btn{}
   .accountBut .catgy-btn .dropdown{
       position: relative;
       top: 0px;
       right: 0;
   }
   .accountBut .catgy-btn .dropdown > a{
       background: #1596db;
       border: 1px solid #e7e7e7;
       color: #f9f9f9;
       padding: 12px 25px;
       min-width: 180px;
       width: 100%;
       font-size: 14px;
       text-align: left;
       border-radius: 10px 10px;
       height: auto;
   }
   .accountBut .catgy-btn .dropdown span{position: absolute;top: 16px;right: 18px;}
   .accountBut .catgy-btn .dropdown .dropdown-menu{
       min-width: 180px;
       /* width: 100%; */
       right: 0;
       /* left: 0px; */
       margin: 0 auto;
       border-top: none;
       background: #ffffff;
       border-radius: 10px;
       box-shadow: 0 2px 5px #00000038;
   }
   .accountBut .catgy-btn .dropdown .dropdown-menu li{
       line-height: 32px;
   }
   .accountBut .catgy-btn .dropdown .dropdown-menu li a{
       color: #333;
       padding: 8px 10px;
       line-height: normal;
       font-size: 14px;
       display: block;
   }
   .accountBut .catgy-btn .dropdown .dropdown-menu li a:hover{background: #f7f7f7;}
   .accountBut .catgy-btn .dropdown .dropdown-menu li a i{
       width: 18px;
       color: #1627a3;
   }

   /* My Account End ---------------*/


   .vnd-pf {
       background: #ffffff;
       /* padding: 20px 0; */
       margin: 0;
       width:  100%;
       border-radius: 15px;
       overflow: hidden;
   }
   
   .vnd-pf .vertical-tabs ul li{}
   .vnd-pf .vertical-tabs ul li a{ position: relative; }
   .vnd-pf .vertical-tabs ul li a span{position: absolute;right: 20px;top: 15px;font-size: 14px;}
   .vnd-pf .vertical-tabs ul li a i{
       font-size: 16px;
       margin-right: 5px;
       width: 23px;
       text-align: center;
   }

    /* User Profile -------*/
   
   .usr-f{
       /* box-shadow: 0 0 15px #e7e7e7; */
       padding: 0 0px 20px;
   }
   .user-bnr{
       background: #32458b;
       padding: 60px 0 80px;
       position: relative;
   }

   .user-bnr2{
       padding: 0;
       position: relative;
   } 

   .user-bnr2:before{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 130px;/* background: #32458b; */}
   .usr-img{
       width: 80px;
       height: 80px;
       margin: 0 auto;
       border-radius: 50% 50%;
       overflow: hidden;
   }
   .usr-img img{
       object-fit: cover;
    height: 100%;
    width: 100%;
   }
   .user-bnr button{
       color: #fff;
       border: 1px solid #fff;
       border-radius: 50px 50px;
       width: 32px;
       height: 32px;
       display: inline-block;
       padding: 0;
       position: absolute;
       top: 30px;
       right: -145px;
       left: 0;
       margin: 0 auto;
       z-index: 9;
   }
   .user-bnr button i{font-size: 16px;position: relative;top: 0;}
   .user-bnr h3{
       margin: 0;
       padding: 15px 0;
       font-size: 22px;
       font-weight: 700;
       color: #fff;
   }

   .user-bnr2 button{
       color: #ffffff;
       border: 1px solid #fff;
       border-radius: 50px 50px;
       width: 22px;
       height: 22px;
       display: inline-block;
       padding: 0;
       position: absolute;
       top: 16px;
       right: -61px;
       left: 0;
       margin: 0 auto;
       z-index: 9;
       background: #333;
   }
   .user-bnr2 button i{font-size: 12px;position: relative;top: -3px;}
   .user-bnr2 h3{
       margin: 0;
       padding: 15px 0;
       font-size: 22px;
       font-weight: 700;
       color: #fff;
   }
   .user-detail{
       margin: 0px;
       /* background: #f1f9f8; */
       padding: 0 0px 40px;
       border-radius: 10px;
       overflow: hidden;
       position: relative;
       top: -52px;
   }

    .user-detail2{
       margin: 0px;
       background: #ffffff;
       padding: 0px 40px 40px;
       border-radius: 20px;
       overflow: hidden;
       position: relative;
       top: 0px;
   }

   .user-detail2 .form-group select {
    width: 100%;
    padding: 7px 10px;
    border-radius: 15px;
    border: 1px solid #b7b7b700;
    color: rgb(102 102 102);
    font-family: inherit;
    font-size: 0.9rem;
    height: auto;
    font-weight: 400;
    background: #f8f8f8 !important;
}
   .user-detail h3{
       margin: 0 -30px;
       /* background: #fff; */
       padding: 15px 30px;
       font-size: 16px;
       font-weight: 800;
       text-transform: uppercase;
   }

   .us-pic{}

.us-pic {}
   /*.us-pic h3{margin: 0;padding: 0;text-align: center;font-size: 18px;font-weight: 800;text-transform: uppercase;}*/

   @media (max-width: 767px){
    .user-detail {
    margin: 0 10px !important;
    padding: 0 10px 20px !important;
    }
    .user-detail2{
       margin: 0;
       /* background: #f1f9f8; */
       padding: 0 10px 40px;
       }
   }
   .detl-frm{}
   .detl-frm form{}
   .detl-frm form input{
       background: #f8f8f8 !important;
       padding: 8px 15px;
       height: auto !important;
       border-radius: 15px;
       box-shadow: none;
       border: 1px solid #efefef00;
       width: 100%;
   }
   .detl-frm form label{
       font-size: 14px;
       color: #000;
       padding: 0 0 5px; width: 100%;
   }
   
   .detl-frm form textarea{
       background: #fff !important;
       padding: 15px;
       height: 120px !important;
   }
   
   .detl-frm .form-group{
       margin: 0 0 20px; position: relative;
   }
  .detl-frm .form-group i{
    right: 9px !important;
    left: auto;
    bottom: 33px;
    top: auto;
    font-size: 12px;
    font-weight: 800;
    color: #000;
}

.vrf-btn{
    position: absolute;
    top: 37px;
    right: 12px;
    background: #333;
    padding: 5px 15px;
    font-size: 13px;
    border-radius: 12px;
    color: #fff;
    border: none;
}

.heading-small{font-weight: 700;color: #ffffff !important;display: inline-block;background: #545454;font-size: 12px;text-transform: uppercase;padding: 5px 0;margin: 0;}


h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
    margin-top: 3rem;
    text-rendering: optimizeLegibility;
}


.us-pic {}
   /*.us-pic h3{margin: 0;padding: 0;text-align: center;font-size: 18px;font-weight: 800;text-transform: uppercase;}*/

   @media (max-width: 767px){
    .user-detail {
    margin: 0 10px !important;
    padding: 0 10px 20px !important;
    }
    .user-detail2{
       margin: 0;
       /* background: #f1f9f8; */
       padding: 0 10px 40px;
       }
   }

   .preview
   {
       padding: 15px 5px 15px 15px;
       position: relative;
       /* cursor: pointer; */
       display: inline-block;
   }
   
   .preview i
   {
       color: white;
       font-size: 14px;
       text-align: center;
       position: absolute;
       top: 42%;
       left: 0;
       right: 0;
   }
   
   .preview-img
   {
       border-radius: 100%;
       box-shadow: 0px 0px 3px 2px rgb(0 0 0 / 70%);
       background: #fff;
       padding: 7px;
   }
   
   .browse-button
   {
       width: 62px;
       height: 62px;
       border-radius: 100%;
       position: absolute; /* Tweak the position property if the element seems to be unfit */
       top: 24px;
       left: 11px;
       right: 0;
       background: linear-gradient(180deg, transparent, #222222);
       opacity: 0;
       margin: 0 auto;
       transition: 0.3s ease;
   }
   
   .browse-button:hover
   {
       opacity: 1;
   }
   
   .browse-input
   {
       width: 200px;
       height: 100%;
       border-radius: 100%;
       transform: translate(-1px,-5px);
       opacity: 0;
       cursor: pointer;
   }
   
   .ui-autocomplete-category {
       font-weight: bold;
       padding: 5px 10px;
       margin: .4em 0 .1em;
       line-height: 1;
     }
   
   .pf-nm{
    display: inline-block;
    position: relative;
    top: -12px;
}
   
   .pf-nm h3{margin: 0;padding: 0;font-size: 14px;font-weight: 800;text-transform: uppercase;color: #333;}
   .pf-nm span{
    display: block;
    font-size: 11px;
}
   .pf-nm small{
    font-size: 12px;
}

/* Vertical Tabs */
    .vertical-tabs{
       font-size:15px;
       padding: 0 15px;
       color:#000
   }
    .vertical-tabs .nav-tabs .nav-link{
       border-radius: 20px;
       background: #ffffff;
       text-align: left;
       font-size: 14px;
       /* border: 1px solid #6ce5eb; */
       color: #343434;
       /* height:40px; */
       /* width: 120px; */
       margin: 0 0 4px;
   }

    .vertical-tabs .nav-tabs .nav-link:focus,  .vertical-tabs .nav-tabs .nav-link:hover {
    border-color: transparent;
    isolation: isolate;
    background: #f2f2f2;
}
    .vertical-tabs .nav-tabs .nav-link.active{
       background-color: #f2f2f2!important;
       color: #000;
       border-radius: 20px;
       box-shadow: none !important;
       border: none;
   }
    .vertical-tabs .tab-content>.active{
       background:#fff;
       display:block;
   }
    .vertical-tabs .nav.nav-tabs{
       border-bottom:0;
       /* border-right:3px solid #000; */
       display:
       block;
       /*float:
       left;
       margin-right:20px;
       padding-right:15px;*/
   }
    .vertical-tabs .sv-tab-panel{
       background:#fff;
       height:274px;
       padding-top:10px;
   }
   @media only screen and (max-width: 420px){
     .titulo{font-size: 22px}
   }
   @media only screen and (max-width: 325px){
     .vertical-tabs{ padding:8px;}
   }
   .vend-tab{/*float: left;*/background: #fff;/* box-shadow: 0 0 15px #e7e7e7; */padding: 0 40px 20px;border-radius: 20px;}
   @media only screen and (max-width: 767px){
     .vend-tab{padding: 0 10px 20px;border-radius: 20px;}
   }
   .sub-btn{
       border: none;
       padding: 14px 10px;
       max-width: 200px;
       width: 100%;
       margin: 0 auto;
       text-transform: uppercase;
       letter-spacing: 2px;
       font-weight: 700;
       color: #ffffff;
       background: #1596db;
       /* border-color: #3e369d;*/
       border-radius: 0.8rem;
       font-size: 1rem;
   }

   .allDealsWrap strong.darkBlue {
       background: #8A65F1 !important;
       border-radius: 90px;
       color: #fff !important;
   }
   .allDealsWrap strong.darkBlue.lightb {
       background: #0162FD !important;
   }
   .allDealsWrap .giftText strong.orge {
       background: #FF6A00;
   }
   .allDealsWrap {
       margin-top: 70px;
   }
   .allDealsWrap .imgGroup {
       position: relative;
   }
   .allDealsWrap .giftText {
       position: absolute;
       position: absolute;
       top: 15px;
       z-index: 1;
   }

   .productImageBox1 .imgGroup{ position: relative; height: 230px; }
   .productImageBox1 .imgGroup img{object-fit: cover;height: 100%;width: 100%;}
   .productImageBox1 .imgGroup:after{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 0%;background: #000;opacity: 0.5;transition: all 0.3s;z-index: 0;}
   
   .productImageBox1 .imgGroup .icon-s{position: absolute;top: 70px;left: 0;right: 0;z-index: 99;text-align: center; transition: all 0.3s; transform: scale(0); opacity: 0;}
   .productImageBox1:hover .imgGroup:after{ height: 100%;transition: all 0.3s; }
   .productImageBox1:hover .imgGroup .icon-s{transition: all 0.3s; transform: scale(1); opacity: 1;}

   .allDealsWrap .giftText strong {
       background: #8A65F1;
       border-radius: 90px;
       font-family: 'Poppins';
       font-style: normal;
       font-weight: 500;
       font-size: 12px;
       line-height: 18px;
       color: #fff;
       padding: 4px 12px;
       margin: 0 7px;
   }
   .allDealsWrap .discriptionBox1 {
       padding: 10px 37px;
       text-align: center;
       background: #F8F8F8;
       padding-bottom: 30px;
       border-radius: 0 0 10px 10px;
   }
   .allDealsWrap .productImageBox1 h2 {
       font-family: 'Raleway';
       font-style: normal;
       font-weight: 700;
       font-size: 18px;
       line-height: 20px;
       align-items: center;
       text-align: center;
       color: #1e1e1e;
       margin-top: 0;
       padding-top: 23px;
       margin-bottom: 20px;
   }
   .allDealsWrap .productImageBox1 h5{margin: 0 0 8px;padding: 0;font-weight: 500;font-size: 16px;}
   .allDealsWrap .discriptionBox1 span {
       font-family: 'Poppins';
       font-style: normal;
       font-weight: 600;
       font-size: 18px;
       line-height: 27px;
       align-items: center;
       color: #000;
   }
   .allDealsWrap .discriptionBox1 {
       padding: 10px 37px;
       text-align: center;
       background: #F8F8F8;
       padding-bottom: 30px;
       border-radius: 0 0 10px 10px;
   }
   
   .imgGroup a>img {
       height: 250px;
       object-fit: cover !important;
   }
   .allDealsWrap img {
       /* width: 100%; */
       height: auto;
   }

    #all-dis{}
   #all-dis .discriptionBox1 { position: relative; }
   #all-dis .discriptionBox1 span{
       font-size: 28px;
       font-weight: 800;
   }
   
   #all-dis .productImageBox1 .imgGroup .icon-s {
       position: absolute;
       top: 40%;
       left: 0;
       right: 0;
       z-index: 99;
       text-align: center;
       transition: all 0.3s;
       transform: scale(0);
       opacity: 0;
   }
   
   #all-dis .productImageBox1:hover .imgGroup .icon-s {
       transition: all 0.3s;
       transform: scale(1);
       opacity: 1;
   }
   
   .seeAllLogo {
       position: absolute;
       bottom: -26px;
       left: 14px;
       background: #fff;
       border-radius: 100%;
       padding: 17px 8px;
       font-size: 16px;
       font-weight: 600;
       line-height: 16px;
       height: 53px;
       width: 53px;
       vertical-align: middle;
       text-align: center;
       z-index: 9;
   }
   .brd-lo{
       position: absolute;
       left: 15px;
       bottom: -35px;
       padding: 0 9px;
       background: #fff;
       width: 80px;
       height: 80px;
       z-index: 0;
       margin: -50px auto 0;
       text-align: center;
       border-radius: 50px 50px;
       display: flex;
       z-index: 9;
   }
   .brd-lo img{padding: 20px 0;height: 100%;object-fit: contain !important;}

   .load-btn{}
   .load-btn a{
       background: #FFFFFF;
       border: 1px solid #1596db;
       border-radius: 90px;
       text-align: center;
       padding: 15px 32px;
       color: #1596db;
       font-family: 'Poppins';
       font-style: normal;
       font-weight: 600;
       font-size: 18px;
       line-height: 27px;
       display: inline-block;
   }
   .load-btn a:hover{
       background: #1596db;
       color: #fff !important;
       }