/* ---
Defaulf css
--- */

/* font-family: 'Philosopher', sans-serif;
font-family: 'Poppins', sans-serif; */

html {
    scroll-behavior: smooth;
}

a:hover,
a,
* {
    outline: none !important;
    text-decoration: none;
}

:root {
    --c1: #000000;
    --c2: #006997;
    --c3: #ffffff;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Philosopher', sans-serif;
}

.pr {
    position: relative;
}

.ofh {
    overflow: hidden;
}

.ep-st {
    padding: 0 50px !important;
}

.max-width-1920px {
    max-width: 1920px;
    width: 100%;
    margin: auto;
    display: block;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* ---
commun css 
--- */

.commun-hed h3{
    color: #000000;
    display: block;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.commun-hed p{
    font-size: 14px;
    color: #5f5f5f;
    margin-top: -10px;
    margin-bottom: 20px;
}

.bg-color{
    background-color: #fcfcfc;
}

/* ---
web loader css
--- */

.web-loader {
    background-color: #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.web-loader span {
    position: relative;
    padding: 10px;
    overflow: hidden;
}

.web-loader span:before {
    content: '';
    position: absolute;
    top: 0;
    left: -80px;
    width: 70px;
    height: 100%;
    background: #f0f0f000;
    -webkit-animation: slide 1s ease-in-out infinite;
    animation: slide 1s ease-in-out infinite;
    background: -o-linear-gradient(bottom left, rgb(255 0 0 / 0%) 0%, rgb(255 0 0 / 0%) 25%, rgba(245, 245, 245, 0.8), rgb(255 0 0 / 0%) 75%, rgb(255 0 0 / 0%) 100%);
    background: -webkit-gradient(linear, left bottom, right top, from(rgb(255 0 0 / 0%)), color-stop(25%, rgb(255 0 0 / 0%)), color-stop(rgba(245, 245, 245, 0.8)), color-stop(75%, rgb(255 0 0 / 0%)), to(rgb(255 0 0 / 0%)));
    background: linear-gradient(to top right, rgb(255 0 0 / 0%) 0%, rgb(255 0 0 / 0%) 25%, rgba(245, 245, 245, 0.8), rgb(255 0 0 / 0%) 75%, rgb(255 0 0 / 0%) 100%);
}

@-webkit-keyframes slide {
    0% {
        left: -80px;
        top: 0;
    }

    100% {
        left: 80px;
        top: 0;
    }
}

@keyframes slide {
    0% {
        left: -80px;
        top: 0;
    }

    100% {
        left: 80px;
        top: 0;
    }
}

.web-loader span img {
    width: 70px;
}


.deactivate {
    opacity: 0;
    visibility: hidden;
    /* transform: scale(0); */
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}




/* ---
Header css
--- */

.main-header {
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 999;
    background: white;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.scroll {
    -webkit-box-shadow: 0 0 5px #00000033;
    box-shadow: 0 0 5px #00000033;
}


/* --- logo css --- */
.logo-bx a {
    position: relative;
}

.logo-bx a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
}

.logo-bx img.logo-icon {
    width: 151px;
    height: 25px;
    object-fit: cover;
    object-position: bottom;
}

.icon-r-bx {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 75px;
    height: 50px;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.icon-r-ani {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    perspective: 100px;
    -webkit-perspective: 100px;
    position: relative;
    -webkit-animation: filo-logo 8s infinite;
    animation: filo-logo 8s infinite;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.icon-r-ani .icons-f,
.icon-r-ani .icons-b {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-r-ani .icons-b,
.icon-r-ani .icons-f {
    background-image: url('/img/logo/favicon.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.icon-r-ani .icons-b {
    -webkit-transform: rotatey(180deg);
    -ms-transform: rotatey(180deg);
    transform: rotatey(180deg);
}

@-webkit-keyframes filo-logo {

    0%,
    5% {
        -webkit-transform: rotatey(0deg);
        transform: rotatey(0deg);
    }

    45%,
    50% {
        -webkit-transform: rotatey(180deg);
        transform: rotatey(180deg);
    }

    100% {
        -webkit-transform: rotatey(360deg);
        transform: rotatey(360deg);
    }
}

@keyframes filo-logo {

    0%,
    5% {
        -webkit-transform: rotatey(0deg);
        transform: rotatey(0deg);
    }

    45%,
    50% {
        -webkit-transform: rotatey(180deg);
        transform: rotatey(180deg);
    }

    100% {
        -webkit-transform: rotatey(360deg);
        transform: rotatey(360deg);
    }
}


/* --- Menu Bar Css --- */
.menu-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-bar-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-bar-ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 1px 0;
    opacity: 0.7;
    /* margin-right: 25px; */
    margin: 0 15px;
    letter-spacing: 0.5px;
    position: relative;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.menu-bar-ul li a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0rem;
    height: 2px;
    background-color: #006997;
    border-radius: 1rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.menu-bar-ul li a:hover {
    opacity: 1;
}

.menu-bar-ul li a.active {
    color: #006997;
    opacity: 1;
}

/* .menu-bar-ul li a:hover::after, */
.menu-bar-ul li a.active::after {
    bottom: -4px;
    opacity: 1;
    visibility: visible;
    width: 25px;
    background-color: #006997;
}


/* --- Header buy btn css --- */
.buy-now-btn {
    display: block;
    position: relative;
    border-radius: 3px;
    color: white;
    background-color: #006997;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px 10px;
    border: 1px solid #006997;
}

.buy-now-btn:hover {
    color: #006997;
    background-color: white;
}

/* ---
Sidebar Menu Css
--- */
#sidebar {
    width: 280px;
    position: fixed;
    top: 0px;
    left: -300px;
    height: 100%;
    z-index: 1035;
    background: #ffffff;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow-y: scroll;
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    padding: 0px;
    opacity: 0;
    visibility: hidden;
    display: none;
}

.dismiss,
#dismiss {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    right: 10px;
    top: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 1;
}

.dismiss:hover,
#dismiss:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    border-radius: 50%;
}

.dismiss .closes,
#dismiss .closes {
    position: absolute;
    width: 17px;
    height: 1.9px;
    background-color: white;
    display: inline-block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.dismiss .closes {
    background-color: gray;
}

.dismiss.closes-bgcb .closes,
#dismiss.closes-bgcb .closes {
    background-color: rgb(0, 0, 0);
}

.dismiss:hover .closes,
#dismiss:hover .closes {
    background-color: rgb(223, 7, 7);

}

.dismiss .closes:nth-child(1),
#dismiss .closes:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dismiss .closes:nth-child(2),
#dismiss .closes:nth-child(2) {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

#sidebar.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.rp-icon-m {
    background: -webkit-gradient(linear, right top, left top, from(#006997), to(#4090c0));
    background: -o-linear-gradient(right, #006997, #4090c0);
    background: linear-gradient(270deg, #006997, #4090c0);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.re-logo {
    margin: 0px auto 0px;
    display: block;
    width: 150px;
}

.slidemenu ul {
    margin-top: 10px;
    padding: 0 15px;
    list-style: none;
}

.slidemenu ul p {
    color: #006997;
    font-weight: 500;
    margin: 0 0 0px 0;
    font-size: 12px;
    padding: 1px 5px;
    border-bottom: 1px solid #e9e9e9;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.slidemenu li {
    margin: 10px 0;
    width: 100%;
    border-bottom: 1px solid #f3f3f3;
}

.slidemenu a {
    padding: 7px 5px;
    display: block;
    text-decoration: none;
    color: #363636;
    position: relative;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

.slidemenu li a.active,
.slidemenu li a:hover {
    color: #006997;
}

.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1034;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    top: 0;
    cursor: pointer;
    margin: 0 !important;
    display: none;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}


/* ---
social icon css
--- */
.social-bx {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px 15px 0 !important;
    background: white;
    width: 100%;
    margin: 0;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: #8c8c8c;
    height: 33px;
    margin: 0px 2px;
    width: 33px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid lightgray;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    font-size: 14px;
}

.social-links a:hover {
    background-color: white;
    border-color: transparent;
    box-shadow: 0px 0px 10px #00000038;
}

.social-links a .fa {
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 1px;
}

.social-links a:hover .fa-facebook {
    color: #3b5998;
}

.social-links a:hover .fa-twitter {
    color: #00aced;
}

.social-links a:hover .fa-instagram {
    color: #8a3ab9;
}

.social-links a:hover .fa-linkedin {
    color: #0077b5;
}

.social-links a:hover .fa-youtube-play {
    color: red;
}

/* ---
menu icon css
--- */
.menu-icon {
    width: 40px;
    height: 40px;
    /* border: 1px solid rgb(212, 186, 186); */
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgb(236, 236, 236)
}

.menu-icon span {
    width: 100%;
    height: 4px;
    border-radius: 50px;
    background-color: #363636;
    margin: 3px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-icon:hover span,
.menu-icon.active span {
    background-color: #006997;
}

.menu-icon.active span:nth-child(1) {
    width: 50%;
    margin-left: auto;
    /* background-color: var(--bg-blue); */
}

.menu-icon.active span:nth-child(2) {
    width: 90%;
    /* background-color: var(--bg-blue); */
}

.menu-icon.active span:nth-child(3) {
    width: 50%;
    margin-right: auto;
    /* background-color: var(--bg-blue); */
}

/* ---
Home Section
--- */

.home-section {
    background: -webkit-gradient(linear, right top, left top, from(#006997), to(#4090c0));
    background: -o-linear-gradient(right, #006997, #4090c0);
    background: linear-gradient(270deg, #006997, #4090c0);
    padding: 60px 15px 60px;
    position: relative;
}

.youtube-slider {
    box-shadow: 0 0 10px #00000021;
    width: 100%;
}

.video-slider {
    position: relative;
    padding-top: 56%;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.video-slider video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transform: scale(1.01);
}

.video-play {
    color: #006997;
    font-size: 36px;
    width: 72px;
    height: 72px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid white;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    /* bottom: 0; */
    /* right: 0; */
    transform: translate(-50%, -67%);
}


.video-play::before,
.video-play::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    opacity: .6;
    z-index: -1;
}

.video-play::after {
    -webkit-animation: button-ripple 4s infinite;
    animation: button-ripple 4s infinite;
}

.video-play::before {
    -webkit-animation: button-ripple 3s infinite;
    animation: button-ripple 3s infinite;
}

@-webkit-keyframes button-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 30px currentColor;
        box-shadow: 0 0 0 30px currentColor;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 currentColor;
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0
    }
}

@keyframes button-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 30px currentColor;
        box-shadow: 0 0 0 30px currentColor;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 currentColor;
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0
    }
}

.video-play .fa {
    position: relative;
    left: 2px;
    top: 1px;
}

.youtube-slider .owl-dots {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -28px;
    transform: none;
}

.home-content-bx {
    padding-left: 30px;
}

.home-content-bx h3 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
}

.home-content-bx p {
    color: white;
    font-size: 18px;
}

.speshr {
    width: 70%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    margin-top: 20px;
    position: relative;
}

.speshr::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: rgb(255 255 255);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate(45deg) translateY(-53%);
    -ms-transform: rotate(45deg) translateY(-53%);
    transform: rotate(45deg) translateY(-53%);
}

.speshr::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate(45deg) translateY(-53%);
    -ms-transform: rotate(45deg) translateY(-53%);
    transform: rotate(45deg) translateY(-53%);
}

.speshr .middle-s {
    display: block;
    width: 10px;
    height: 10px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotate(45deg) translate(-5%, -50%);
    -ms-transform: rotate(45deg) translate(-5%, -50%);
    transform: rotate(45deg) translate(-5%, -50%);
}

.home-content-bx > a {
    display: block;
    position: relative;
    border-radius: 3px;
    color: #006997;
    background-color: white;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px 10px;
    border: 1px solid white;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 25px;
}

.home-content-bx>a:hover {
    color: white;
    background-color: transparent;
}

/* ---
author Section Css
---*/

.author-left span.author-tag {
    color: #062637;
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.author-left h3.author-name {
    color: #000000;
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.author-left p {
    color: #363636;
    display: block;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.my-book-btn {
    display: block;
    position: relative;
    border-radius: 3px;
    color: #006997;
    background-color: white;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 6px 20px 6px;
    border: 1px solid #006997;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 20px;
}

.my-book-btn:hover {
    color: #ffffff;
    background-color: #006997;
    border: 1px solid #006997;

}

.my-book-btn .fa {
    margin-right: 7px;
}

.author-img {
    width: 90%;
    border-radius: 10px;
    display: block;
    margin: auto;
    -webkit-box-shadow: 0px 0px 0px 1px rgb(211 211 211), hsl(216deg 7% 14%) 0px 10px 23px -15px;
    box-shadow: 0px 0px 0px 1px rgb(211 211 211), hsl(216deg 7% 14%) 0px 10px 23px -15px;
}


/* ---
Img like a book design css 
--- */

.book-container-new {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-perspective: 600px;
    perspective: 600px;
    padding: 30px 10px;
}


.book-big-new {
    width: 100%;
    padding-top: 145%;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(-20deg);
    transform: rotateY(-20deg);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.book-big-new:hover {
    -webkit-transform: rotateY(-25deg);
    transform: rotateY(-25deg);
}

.book-big-new> :first-child {
    position: absolute;
    top: 0;
    left: 0;
    background-color: red;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    -webkit-transform: translateZ(25px);
    transform: translateZ(25px);
    background-color: #01060f;
    border-radius: 0 2px 2px 0;
}

.book-big-new::before {
    position: absolute;
    content: ' ';
    background-color: #006795;
    right: -8%;
    top: 3%;
    width: calc(100% - 80%);
    height: 94%;
    transform: rotateY(90deg);
    background: linear-gradient(90deg, #fff 0%, #f9f9f9 5%, #fff 10%, #f9f9f9 15%, #fff 20%, #f9f9f9 25%, #fff 30%, #f9f9f9 35%, #fff 40%, #f9f9f9 45%, #fff 50%, #f9f9f9 55%, #fff 60%, #f9f9f9 65%, #fff 70%, #f9f9f9 75%, #fff 80%, #f9f9f9 85%, #fff 90%, #f9f9f9 95%, #fff 100%);
}

.book-big-new::after {
    position: absolute;
    top: 0;
    left: 0;
    content: ' ';
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(-25px);
    transform: translateZ(-25px);
    background-color: #006795;
    border-radius: 0 2px 2px 0;
    -webkit-box-shadow: -20px 0 20px 0px #666666;
    box-shadow: -20px 0 20px 0px #666666;
}

.book1 .book-big-new::after {
    background-color: #e11c25;
}

.book2 .book-big-new::after {
    background-color: #1f5064;
}

.book3 .book-big-new::after {
    background-color: #b993c4;
}

.book4 .book-big-new::after {
    background-color: #1a388a;
}

.book5 .book-big-new::after {
    background-color: #f9961f;
}

.book6 .book-big-new::after {
    background-color: #cf2530;
}

.book7 .book-big-new::after {
    background-color: #bd9467;
}

.book8 .book-big-new::after {
    background-color: #3e873e;
}

.book9 .book-big-new::after {
    background-color: #612d8d;
}

.book10 .book-big-new::after {
    background-color: #124989;
}

.book11 .book-big-new::after {
    background-color: #f05423;
}

.book12 .book-big-new::after {
    background-color: #01a7e5;
}

.book13 .book-big-new::after {
    background-color: #d07d99;
}

.book14 .book-big-new::after {
    background-color: #8b2c2f;
}

.book15 .book-big-new::after {
    background-color: #e31e25;
}

.book16 .book-big-new::after {
    background-color: #017344;
}

.book19 .book-big-new::after {
    background-color: #f58b1f;
}

.book20 .book-big-new::after {
    background-color: #b783b9;
}

.book21 .book-big-new::after {
    background-color: #00858d;
}

.book22 .book-big-new::after {
    background-color: #76a4d5;
}

.book24-1 .book-big-new::after {
    background-color: #ae0b04;
}

.book24-2 .book-big-new::after {
    background-color: #0080c9;
}

.book24-3 .book-big-new::after {
    background-color: #63ae97;
}

.book24-4 .book-big-new::after {
    background-color: #ee4b9a;
}

.book24-5 .book-big-new::after {
    background-color: #b993c4;
}

.book24-6 .book-big-new::after {
    background-color: #f9a11b;
}

.book24-7 .book-big-new::after {
    background-color: #00a2e2;
}

.book24-8 .book-big-new::after {
    background-color: #00a650;
}

.book24-9 .book-big-new::after {
    background-color: #bc2024;
}

/* ---
Book detail section css
--- */

.book-left{
    width: 250px;
    margin-right: 25px;
}

.book-right {
    width: 100%;
    max-width: 576px;
}

.book-right .book-name {
    font-size: 28px;
    color: black;
    font-weight: 600;
    margin-bottom: 15px;
}

.book-right .book-tag {
    font-size: 16px;
    color: #363636;
    margin-bottom: 15px;
}

.book-right .book-price {
    font-size: 24px;
    color: #006997;
    font-weight: 400;
    margin-bottom: 15px;
}

.book-right a {
    display: block;
    position: relative;
    border-radius: 3px;
    color: #006997;
    background-color: white;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 6px 20px 6px;
    border: 1px solid #006997;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 20px;
}

.book-right a:hover {
    color: #ffffff;
    background-color: #006997;
    border: 1px solid #006997;
}


/* ---
salient features css
---*/

.capsule-bx {
    height: 80px;
    overflow: hidden;
}

.capsule-bx.active {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.capsule-bx span {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    margin: 4px 0;
    font-size: 13px;
    background: #e9e9e9;
    font-weight: 400;
    color: #363636;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: 1px solid #e9e9e9;
}

.capsule-bx span:hover {
    border-color: #006997;
    background-color: #00699724;
    color: #006997;
}

.capsule-btn {
    display: block;
    position: relative;
    border-radius: 3px;
    color: #006997;
    background-color: white;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 4px 16px 4px;
    border: 1px solid #006997;
    margin-top: 20px;
    margin: 20px auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.capsule-btn:hover {
    color: #ffffff;
    background-color: #006997;
    border: 1px solid #006997;
}


/*---
Review Section  css
--- */

.review-item {
    padding: 10px 0 50px;
    position: relative;
}

.review-item p {
    font-size: 16px;
    color: #363636;
    text-align: center;
    max-width: 920px;
    width: 100%;
    margin: auto;
    display: block;
    margin-top: 10px;
}

.review-item .test-name {
    color: #000000;
    font-size: 14px;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin-top: 10px;
    text-transform: capitalize;
    font-weight: 500;
}

.review-item img {
    width: 50px !important;
}

.review-item img:nth-of-type(1) {
    position: absolute;
    left: 0;
    top: 95px;
    z-index: -1;
}

.review-item img:nth-of-type(2) {
    width: 100px !important;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    border: 4px solid #14759f21;
}

.review-item img:nth-of-type(3) {
    position: absolute;
    right: 0;
    bottom: 20px;
    z-index: -1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.reviews-s-bx {
    text-align: center;
    margin-top: 15px;
}

div.reviews-s-bx i {
    color: #cfcfcf;
    font-size: 16px;
    margin-right: 2px;
}

div.reviews-s-bx i.active {
    color: #fece40;
}

/* ---
owl nav css
--- */

/* --- owl-s1 --- */
.owl-prev,
.owl-next {
    width: 40px !important;
    height: 40px !important;
    background-color: rgb(255 255 255) !important;
    border-radius: 50% !important;
    font-size: 28px !important;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #828282 !important;
    opacity: 0.9;
    border: 1px solid #f2f2f2 !important;
}

.owl-nav {
    margin: 0 !important;
}

.owl-nav .owl-prev {
    position: absolute;
    left: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.owl-nav .owl-next {
    position: absolute;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.owl-next svg {
    width: 25px;
    height: 25px;
    position: relative;
    right: -1px;
}

.owl-prev svg {
    width: 25px;
    height: 25px;
    position: relative;
    left: -1px;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: #124ca0 !important;
    border-color: transparent !important;
    color: white !important;
    opacity: 1;
}


/* --- owl-s2 --- */
.owl-s2 .owl-prev,
.owl-s2 .owl-next {
    width: auto !important;
    height: auto !important;
    background-color: rgba(255, 255, 255, 0) !important;
    font-size: 24px !important;
    color: #dbdbdb !important;
    opacity: 1 !important;
    border: none !important;
    border-radius: 0px !important;
    margin: 0 !important;
}

.owl-s2 .owl-nav .owl-prev {
    left: -50px;
    opacity: 0.6;
}

.owl-s2 .owl-nav .owl-next {
    right: -50px;
    opacity: 0.6;
}

.owl-s2 .owl-next svg {
    width: 50px;
    height: 100px;
    position: relative;
    right: 0px;
    fill: currentColor;
}

.owl-s2 .owl-prev svg {
    width: 50px;
    height: 100px;
    position: relative;
    left: 0px;
    fill: currentColor;
}

.owl-s2 .owl-prev:hover,
.owl-s2 .owl-next:hover {
    background-color: #00000000 !important;
    border-color: transparent !important;
    color: #ffff !important;
    opacity: 1;
}


/* ---
owl dots css
--- */

.owl-dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    /* background-color: white; */
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* padding: 4px; */
}

.owl-dots .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    margin: 5px 5px !important;
    border-radius: 1px !important;
    background-color: #8a8a8a !important;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.owl-dots .owl-dot.active span {
    width: 10px !important;
    height: 10px !important;
    background: #006997 !important;
}

/* ---
Breadcrumb-bx css
----*/

.breadcrumb-bx {
    /* background-color: #fcfcfc; */
    padding: 5px 0 5px;
}

.breadcrumb-bx div>a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: gray;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

.breadcrumb-bx div>a .fa {
    margin-left: 5px;
    /* margin-right: 5px; */
    color: #006795;
}

.breadcrumb-bx div>a:hover {
    color: #006795;
    text-decoration: underline;
}

.breadcrumb-bx div>a.active:hover,
.breadcrumb-bx div>a.active {
    color: #bababa;
    font-weight: 400;
    text-decoration: none;
}


/* ---
go to top css
--- */

.go-top {
    cursor: pointer;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    line-height: 33px;
    font-size: 24px;
    color: #006795;
    background-color: white;
    box-shadow: 0 0 10px #00000059;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.9s;
    z-index: 10;
}

.go-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 25px;
    right: 25px;
}

.go-top:hover {
    color: white;
    background-color: #006795;
}

/* ---
only text & Lagal Pages css
--- */

.legal-ul{
    list-style: decimal;
    padding: 0px;
    list-style-position: inside;
}

.legal-ul li,
.legal-main p{
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    margin-top: 10px;
    color: #363636;
}

.legal-main h3{
    font-weight: 700;
    margin: 10px 0 30px;
    color: #000;
    text-align: center;
    font-size: 28px;
}

.legal-main h5{
    margin: 0;
    margin-top: 20px;
    font-weight: 500;
    color: #000;
    font-size: 18px;
}


/* ---
all books sections 
--- */

.ob-hed{
    color: #000;
    font-size: 20px;
    font-weight: 400;
    display: inline-block;
    padding: 1px 0;
    opacity: 1;
    margin: 0 10px;
    letter-spacing: 0.5px;
    position: relative;
    top: 0px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    margin-top: 30px;
}

.ob-hed::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 2rem;
    height: 3px;
    background-color: #006997;
    border-radius: 1rem;
}


/* ---
payment Page css 
--- */

.buy-detail-page {
    display: flex;
    /* padding: 20px; */
    align-items: end;
}

.buy-detail-page .book-container-new {
    width: 110px;
    padding: 0px 0;
    flex: 0 0 110px;
    margin: 0;
}

.buy-detail-page>div {
    width: 100%;
    flex: 0 1 100%;
    margin-left: 20px;
}

.buy-detail-page>div h6 {
    position: relative;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.buy-detail-page>div h3 {
    position: relative;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.buy-detail-page>div span {
    display: block;
    color: #525252;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.payment-bank,
.payment-qr{
    display: none;
}

.payment-bank.active,
.payment-qr.active{
    display: block;
}

.pay-btn{
    display: block;
    position: relative;
    border-radius: 3px;
    color: #1e7ca7;
    background-color: white;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px 5px;
    border: 1px solid #1e7ca7;
    margin: 5px 5px 5px 0px;
    display: inline-block;
}

.pay-btn:hover{
    background-color: #1e7ca7;
    color: white;
}

.pay-btn.active{
    color: white;
    background-color: #006997;
    border-color: #006997;
}

.plan-detail-bx {
    box-shadow: 0 0 0px 1px #f3f3f3;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
}

.plan-detail-bx .plan-detail-heg {
    background: #fdfdfd;
    padding: 10px 20px;
    color: #006795;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.offline-payment-bx {
    padding: 15px 10px;
}

.offline-payment-bx .offline-p {
    text-align: center;
    font-size: 14px;
    color: black;
    font-weight: 500;
}

.offline-payment-bx .offline-account {
    width: 992px;
    max-width: 100%;
    background: #f7f7f7;
    margin: auto;
    padding: 15px 15px;
    /* margin-bottom: 15px; */
    border-radius: 5px;
}

.offline-payment-bx .offline-account p {
    margin: 0px 0 10px;
    color: #525252;
    font-size: 14px;
}

.offline-payment-bx .offline-account p:last-child {
    margin: 0px 0 0px;
}

.offline-payment-bx.qr-bx .offline-account{
    width: fit-content;
    max-width: 100%;
    background: #f7f7f7;
    margin: auto;
    padding: 8px 8px;
    /* margin-bottom: 15px; */
    border-radius: 5px;
}

.offline-payment-bx .offline-account img {
    width: 150px;
}

.offline-payment-bx .offline-account p span {
    width: 145px;
    display: inline-block;
}

.offline-payment-bx .offline-receipts {
    color: #525252;
    text-align: center;
    padding: 4px 0;
    margin: 0;
    font-size: 14px;
}


/* ---
popup form css
--- */

.bookbuy-form {
    background-color: #fbfbfb;
    border-radius: 5px;
    overflow: hidden;
    padding: 25px 10px 40px;
    position: sticky;
    top: 120px;
}

.bookbuy-form h3 {
    /* text-align: center; */
    color: black;
    position: relative;
    padding: 7px 0px;
    /* margin-bottom: 15px; */
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.bookbuy-form h3::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 40px;
    height: 2px;
    background-color: #006997;
    border-radius: 1rem;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.bookbuy-form p {
    text-align: center;
    color: #525252;
    margin-bottom: 10px;
    font-size: 14px;
}


/* ---
contact page css
---*/
.custom-form {
    padding: 30px 20px;
    background-color: #ffffff;
    -webkit-box-shadow: rgb(17 17 26 / 10%) 0px 4px 16px, rgb(17 17 26 / 5%) 0px 8px 32px;
    box-shadow: rgb(17 17 26 / 10%) 0px 4px 16px, rgb(17 17 26 / 5%) 0px 8px 32px;
    position: relative;
    height: 100%;
    border-radius:0 5px 5px 0;
}

.contact-info-bx {
    background: -webkit-gradient(linear, right top, left top, from(#006997), to(#4090c0));
    background: -o-linear-gradient(right, #006997, #4090c0);
    background: linear-gradient(270deg, #006997, #4090c0);
    height: 100%;
    padding: 30px 20px;
    border-radius: 5px 0 0 5px;
}

.contact-info-bx .social-links a {
    border: none;
    color: #ebebeb;
    font-size: 16px;
}

.contact-heading {
    font-weight: 400;
    color: #000000;
    font-size: 18px;
    position: relative;
    margin-bottom: 10px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.contact-info-bx .contact-heading {
    color: white;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    margin: 0;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.contact-info p:nth-child(1) .bx {
    margin-right: 5px;
    font-size: 16px;
}

.contact-info p:nth-child(2) {
    color: white;
    font-weight: 300;
    font-size: 14px;
    margin: 0;
    margin-bottom: 6px;
    padding-left: 21px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.contact-info:hover p:nth-child(2){
    opacity: 1;

}

/* --- 
commun form css
--- */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.custom-form__group {
    position: relative;
    margin: 9px 0 9px;
}

.custom-form__group textarea,
.custom-form__group input {
    font-weight: 400;
    display: block;
    color: #000000;
    border: 0;
    background-color: rgb(255 255 255);
    border: 1.5px solid rgb(197, 197, 197);
    padding: 0px 20px 0px 15px;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none;
}

.custom-form__group textarea {
    padding: 6px 15px 6px 15px;
    height: auto;
    line-height: inherit;
}

.custom-form__group input[type="password"] {
    padding: 0px 35px 0px 15px;
}

.custom-form__group .group__label {
    position: absolute;
    left: 25px;
    top: 0px;
    z-index: 1;
    font-size: 17px;
    color: #b2b3b3;
    font-weight: 400;
    margin: 0;
    padding: 0px 5px;
    background: #ffffff;
    border-radius: 3px;
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.custom-form__group select::-webkit-input-placeholder,
.custom-form__group input::-webkit-input-placeholder,
.custom-form__group textarea::-webkit-input-placeholder {
    color: #b2b3b3;
    font-weight: 400;
}

.custom-form__group select::-moz-placeholder,
.custom-form__group input::-moz-placeholder,
.custom-form__group textarea::-moz-placeholder {
    color: #b2b3b3;
    font-weight: 400;
}

.custom-form__group select::-ms-input-placeholder,
.custom-form__group input::-ms-input-placeholder,
.custom-form__group textarea::-ms-input-placeholder {
    color: #b2b3b3;
    font-weight: 400;
}

.custom-form__group select::placeholder,
.custom-form__group input::placeholder,
.custom-form__group textarea::placeholder {
    color: #b2b3b3;
    font-weight: 400;
}

.custom-form__group textarea:focus+.group__label,
.custom-form__group textarea:hover+.group__label,
.custom-form__group input:focus+.group__label,
.custom-form__group input:hover+.group__label {
    color: #b2b3b3;
}

.custom-form__group textarea:focus,
.custom-form__group textarea:hover,
.custom-form__group input:focus,
.custom-form__group input:hover {
    border-color: #006997;
    outline: none;
}

.custom-form__group .select2:not(:-moz-placeholder-shown),
.custom-form__group textarea:not(:-moz-placeholder-shown),
.custom-form__group input:not(:-moz-placeholder-shown) {
    border-color: #006997;
}

.custom-form__group .select2:not(:-ms-input-placeholder),
.custom-form__group textarea:not(:-ms-input-placeholder),
.custom-form__group input:not(:-ms-input-placeholder) {
    border-color: #006997;
}

.custom-form__group .select2:not(:placeholder-shown),
.custom-form__group textarea:not(:placeholder-shown),
.custom-form__group input:not(:placeholder-shown) {
    border-color: #006997;
}


.custom-form__group .select2:not(:-moz-placeholder-shown)+.group__label,
.custom-form__group textarea:not(:-moz-placeholder-shown)+.group__label,
.custom-form__group input:not(:-moz-placeholder-shown)+.group__label {
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px);
    color: #006997;
    font-size: 11px;
}

.custom-form__group .select2:not(:-ms-input-placeholder)+.group__label,
.custom-form__group textarea:not(:-ms-input-placeholder)+.group__label,
.custom-form__group input:not(:-ms-input-placeholder)+.group__label {
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px);
    color: #006997;
    font-size: 11px;
}

.custom-form__group .select2:not(:placeholder-shown)+.group__label,
.custom-form__group .select2:focus+.group__label,
.custom-form__group textarea:not(:placeholder-shown)+.group__label,
.custom-form__group textarea:focus+.group__label,
.custom-form__group input:not(:placeholder-shown)+.group__label,
.custom-form__group input:focus+.group__label {
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px);
    color: #006997;
    font-size: 11px;
}

.custom-form__group input:-webkit-autofill,
.custom-form__group input:-webkit-autofill:hover,
.custom-form__group input:-webkit-autofill:focus,
.custom-form__group input:-webkit-autofill:active {
    box-shadow: 0 0 0 30px rgb(255 255 255) inset !important;
    -webkit-box-shadow: 0 0 0 30px rgb(255 255 255) inset !important;
}

.custom-form__group .view-pass {
    position: absolute;
    top: 3px;
    right: 17px;
    color: gray;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 33px;
    height: 33px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.custom-form__group .view-pass:hover {
    color: #006997;
}

.buy-commun-btn {
    padding: 0px 20px;
    border-radius: 3px;
    background: white;
    color: #006997;
    /* color: white; */
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    width: 140px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    border: 1px solid #006997;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 8px auto 0px;
    cursor: pointer;
    width: 100%;
}

.buy-commun-btn:hover {
    color: white;
    background-color: #006997;
}


/* ---
file upload css
--- */

.file-upload {
    font-size: 16px;
    max-width: 768px;
    width: 100%;
    margin: auto;
    display: block;
    margin-bottom: 25px;
    margin-top: 5px !important;
}

.file-upload .file-select {
    display: block;
    color: #525252;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    text-align: left;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.file-upload .file-select .file-select-button {
    background: #dce4ec;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 0;
    top: 0;
}

.file-upload .file-select .file-select-name {
    line-height: 40px;
    display: block;
    height: 40px;
    padding: 0 10px;
    width: 100%;
    border: 1.5px solid rgb(197, 197, 197);
    border-radius: 5px;
}

.file-upload .file-select:hover .file-select-name {
    border-color: #006795;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload .file-select:hover .file-select-button {
    background: #006795;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload.active .file-select .file-select-name {
    border-color: #3fa46a;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload.active .file-select .file-select-button {
    background: #3fa46a;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload .file-select input[type=file] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.file-upload .file-select.file-select-disabled {
    opacity: 0.65;
}

.file-upload .file-select.file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #dce4ec;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #dce4ec;
    color: #666666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
}

.file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
}

/* ---
Footer css
--- */
footer {
    background-color: #fcfcfc;
    padding: 10px;
}

.copyright {
    color: #333333;
    font-size: 12px;
    margin: 5px 0;
    display: inline-block;
}

.mede-with {
    color: #333333;
    font-size: 12px;
    margin: 5px 0;
    display: inline-block;
}

.mede-with a {
    color: #000;
}

.mede-with a:hover {
    color: #dd1627;
}

.icons-box-made {
    /* border: 1px solid red; */
    width: 11px;
    height: 11px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: 2px;
}

.icons-box-made .fa-heart,
.icons-box-made .fa-heart-o {
    position: absolute;
}

.mede-with .fa-heart-o {
    color: #999;
    font-size: 11px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}

.mede-with .fa-heart {
    color: #999;
    font-size: 11px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.mede-with:hover .fa-heart-o {
    opacity: 0;
}

.mede-with:hover .fa-heart {
    opacity: 1;
    color: #dd1627;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}