@charset "utf-8";
:root {
    --white-color: #fff;
    --pink-color: #f06ca2;
    --dark-pink: #c9246f;
    --black-color: #142129;
    --grey-color: #515151;
    --grey2: #7c7c7c;
    /* rgba color variable*/
    --white-bg: 255, 255, 255;
}

body {
    font-family: "Assistant";
    overflow-x: hidden;
}

body * {
    direction: rtl;
    text-align: initial;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.container2 {
    max-width: 1420px;
}

.slick-initialized .slick-slide {
    outline: medium none !important;
}

.slider_img.boxs img{
    width: 150px;
    /* height: 120px; */
}
/*gallery */


.gallerypage {
    background: url("/images/schema64/new/galleryback.jpg") no-repeat center center;
    background-size: cover;
}

.gallery_nav {
    padding: 50px 150px 0px;
}

.gallery_nav ul {
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: var(--grey-color);
    margin: 0px 15px;
}

.gallery_nav li {
    display: inline-block;
    padding: 10px 20px;
}

.gallery_nav li a {
    font-size: 18px;
    color: var(--grey-color);
    font-weight: 300;
    position: relative;
}

.gallery_nav li a.active::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 100%;
    height: 10px;
    background-color: var(--light-blue-color);
}

.gallery_nav li a.active {
    font-weight: bold;
}

.gallery2 {
    padding: 50px 150px;
}

.gallery2 li {
    height: 237px;
}
.gallery_nav ul{
    padding-top: 50px;
}
.gallery {
    padding: 80px 150px;
}

.gallery li {
    position: relative;
    display: inline-block;
    margin: 15px;
    width: 21.9%;
    overflow: hidden;
    cursor: pointer;
}

.gallery li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery li:hover .overlay {
    transform: translateY(0px);
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #2460dacc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease all;
    transform: translateY(100%);
}

.overlay p {
    font-size: 18px;
    font-weight: bold;
    color: var(--white-color);
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes flipInY {
    0% {
        opacity: 0;
        transform: rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

[data-animation] {
    /* opacity: 0; */
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.animations-disabled,
.animations-disabled [data-animation] {
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 1 !important;
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.slideInLeft {
    -webkit-animation-name: slideInleft;
    animation-name: slideInleft;
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.fadeOut {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    animation-direction: reverse;
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.zoomOut {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-direction: reverse;
}

.zoomReverseIn {
    -webkit-animation-name: zoomReverseIn;
    animation-name: zoomReverseIn;
}

.zoomReverseOut {
    -webkit-animation-name: zoomReverseIn;
    animation-name: zoomReverseIn;
    animation-direction: reverse;
}

.flipInY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

.flipOutY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    animation-direction: reverse;
}

.ourwork_lft li:hover .overlay {
    transform: translateY(0px);
}
.gallery li:hover .overlay {
    transform: translateY(0px);
}
a {
    text-decoration: none !important;
    transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    outline: none !important;
}

.navi li:hover ul.dropdown-menu {
    display: grid;
    left: unset !important;
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1600px;
    }
    
}

button {
    outline: none;
    background: transparent;
    border: none;
    transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
}

i {
    font-style: normal;
}

.boxs {
    display: block;
    float: left;
    width: 100%;
    position: relative;
}

.p-lft-0 {
    padding: 0px;
}

h1 {
    font-size: 37px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 31px;
}

header {
    position: fixed !important;
    z-index: 9;
    width: 100%;
    top: 0px;
    left: 0px;
    background: var(--white-color);
    box-shadow: 4px 4px 7px rgb(0 0 0 / 25%);
}
.billy-header{
    position: initial !important;
}

.head_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin-left: 20px;
}

.logo a {
    display: inline-block;
}

.logo a img {
    max-width: 150px;
    display: block;
    width: 100%;
}

.navi li {
    display: inline-block;
}

.navi li a {
    display: block;
    font-size: 17px;
    color: var(--black-color);
    background: var(--white-color);
    padding: 30px 15px;
}

.navi li a:hover,
.navi li a.active {
    color: var(--white-color);
    background: var(--pink-color);
}

header .hamburger {
    display: none;
    outline: none;
    height: 20px;
    padding: 0px;
    margin-right: 0px;
}

.navi li ul li a {
    display: block;
    font-size: 15px;
    color: var(--black-color);
    background: var(--white-color);
    padding: 20px 15px;
}

.navi li:hover .sub-menu {
    display: block;
}

.sub-menu {
    display: none;
    position: absolute;
}

.sub-menu li {
    display: block;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background: var(--dark-pink);
    border-radius: 0;
    width: 20px;
    height: 3px;
}

.hamburger-box {
    width: 20px;
    height: 20px;
}

.hamburger-inner::before {
    top: -6px;
}

.hamburger-inner::after {
    bottom: -6px;
}

.search {
    width: 128px;
}

.searchform {
    display: none;
}

.searchform .form-group {
    margin-bottom: 0px;
}

.searchform .form-control {
    width: 100%;
    outline: none;
    box-shadow: none;
    height: 25px;
    padding: 0px 5px;
}

.searchform .form-control:focus {
    border-color: var(--pink-color);
}


/* social icon css */

.social {
    width: 90px;
    background: var(--pink-color);
    padding: 10px;
    border: 1px solid var(--white-color);
    position: fixed;
    left: 0px;
    top: 120px;
    z-index: 3;
}

.social li {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid var(--white-color);
}

.social li.social_insta {
    border: none;
}

.social li.social_phone {
    display: none;
}

.social li img {
    max-width: 40px;
    max-height: 40px;
}


/* home page banner css */

.main {
    margin-top: 88.18px;
}

.homebanner {
    background: url(/images/schema66/banner.png) no-repeat;
    background-size: cover;
}

.homebanner_in {
    padding: 120px 0px 160px;
}

.homeabanner_rht h2 {
    color: var(--white-color);
}

.homeabanner_rht h2 strong {
    display: block;
}

.homeabanner_rht ul {
    margin: 10px 0px;
}

.homeabanner_rht ul li {
    display: inline-block;
    font-size: 17px;
    color: var(--white-color);
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--white-color);
    margin: 0px -4px;
    border-bottom: 1px solid var(--white-color);
    width: 25%;
    line-height: 1;
}

.homeabanner_rht ul li:first-child {
    padding-right: 0px;
}

.homeabanner_rht ul li img {
    margin-bottom: 10px;
    max-height: 62px;
}

.homeabanner_rht ul li span,
.homeabanner_rht ul li span i {
    display: block;
    text-align: center;
}

.clickforfree a {
    display: inline-block;
    font-size: 19.61px;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 30px;
    padding: 10px 20px;
    margin: 20px 0px;
}

.clickforfree a img {
    margin-right: 5px;
}

.clickforfree a:hover {
    background: var(--pink-color);
}

.forborder {
    position: relative;
}

.forborder img,
.greyborder img {
    width: 100%;
}

.forborder .borderlogo {
    position: absolute;
    top: 24px;
    left: 47%;
    width: 80px;
}


/* demodform section css */

.demoform_inner {
    padding: 90px 0px;
}

.demoform_inner h1 {
    color: var(--grey-color);
    text-align: center;
    margin-bottom: 30px;
}

.demoform_inner .form-control {
    font-size: 19px;
    color: var(--dark-pink);
    height: 40px;
    border: 1p solid #9c9c9c;
    border-radius: 30px;
    outline: none;
    box-shadow: none;
}

.demoform_inner .form-control::placeholder {
    color: var(--grey2);
}

.demoform_inner .form-control:focus {
    border-color: var(--dark-color);
}

.demoform_inner button {
    font-size: 19px;
    color: var(--white-color);
    background: var(--dark-pink);
    border-radius: 30px;
    width: 100%;
    padding: 6px;
    text-align: center;
}

.demoform_inner button:hover {
    background: var(--pink-color);
}

.dots_form {
    position: absolute;
    top: 70px;
    right: 0px;
}


/* about section css */

.about_inner {
    padding: 110px 0px;
    background: var(--white-color);
}

.dots1 {
    right: 0px;
    position: absolute;
    top: 45%;
}

.about_rht h3 {
    color: var(--dark-pink);
    font-weight: bold;
}

.border-line {
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.border-line::after {
    content: "";
    width: 50px;
    height: 5px;
    background: var(--pink-color);
    bottom: 0px;
    right: 0px;
    position: absolute;
}

.about_rht h6 {
    font-size: 22px;
    color: var(--dark-pink);
    padding-top: 10px;
}

.about_rht p {
    font-size: 17px;
    color: var(--grey-color);
    padding-top: 10px;
}

.about_rht a {
    font-size: 18px;
    color: var(--white-color);
    padding: 10px 50px;
    border-radius: 30px;
    display: inline-block;
    background: var(--dark-pink);
    margin: 20px 0px;
}

.about_rht a:hover {
    background: var(--pink-color);
}


/* .about_lft{position: relative;} */

.aboutvideo {
    z-index: 2;
    width: 100%;
    position: relative;
}

.pinkdot {
    position: absolute;
    /* right: -15px; */
    z-index: 1;
    top: -70px;
}

.greydot1 {
    position: absolute;
    left: -150px;
    z-index: 1;
    top: 25%;
}


/* activity section css */

.activity_head {
    background: var(--dark-pink);
    padding: 80px 0px;
}

.activity_head::after {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 49%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--dark-pink);
}

.activity_head_in h3 {
    color: var(--white-color);
    font-weight: bold;
    text-align: center;
}

.dot_rht {
    position: absolute;
    right: 0px;
    bottom: -70px;
}

.dot_lft {
    position: absolute;
    left: 0px;
    top: 35px;
}

.activity_category_in {
    padding: 60px 0px;
}

.category_sec {
    margin-bottom: 50px;
}

.category_sec .category_img {
    height: 41px;
    display: flex;
}

.category_sec .category_img img {
    max-height: 100%;
    margin-left: auto;
}

.category_con h6 {
    font-size: 22px;
    color: var(--grey-color);
    padding: 10px 0px;
}

.category_con p {
    font-size: 17px;
    color: var(--grey-color);
}


/* slidercss */

.slider_inner {
    padding: 40px 0px;
}

.slider_inner h3 {
    color: var(--dark-pink);
    font-weight: bold;
    text-align: center;
}

.slider_inner .border-line::after {
    right: 60px;
}

.clients {
    margin: 50px;
}

.slider_img {
    height: 132px;
    display: flex;
    align-items: center;
}

.clients .slick-prev {
    right: -55px;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.clients .slick-prev:before {
    content: "";
    opacity: 1;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/images/schema66/sliderarrow_rht.svg);
    background-size: contain;
}

.clients .slick-next {
    left: -55px;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.clients .slick-next:before {
    content: "";
    opacity: 1;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/images/schema66/scehma66sliderarrow_lft.svg);
    background-size: contain;
}


/* footer css */

footer {
    background: var(--grey-color);
    padding: 30px 0px;
}

.foot_nner h3 {
    font-size: 30px;
    color: var(--white-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.foot_nner li {
    display: inline-block;
    padding: 5px 0px;
    width: 33%;
}

.foot_nner li a {
    font-size: 18px;
    color: var(--white-color);
}

.foot_nner li a img {
    margin-left: 10px;
    max-height: 21px;
    max-width: 21px;
}

.foot_lft_in {
    display: flex;
    justify-content: space-between;
}


/* inner page start */

.gbanner {
    background: url(/images/schema66/gbanner.png) no-repeat;
    background-size: cover;
}

.banner_inner {
    padding: 150px 0px;
}

.banner_inner h2 {
    color: var(--grey-color);
    font-weight: bold;
}

.banner_inner h2 span {
    display: inline-block;
    padding: 30px;
    background: rgba(var(--white-bg), 0.93);
}

.forborder2 {
    margin-bottom: -25px;
}

.marketing_inner {
    padding: 20px 0px 120px;
}

.marketing_rht,
.marketing_lft {
    padding-top: 100px;
}

.marketing_rht h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-pink);
}

.marketing_rht h6 {
    font-size: 24px;
    font-weight: 600;
    color: var(--grey-color);
    padding-top: 15px;
}

.marketing_rht p {
    font-size: 18px var(--black-color);
    padding-top: 15px;
}

.marketing_lft img {
    width: 100%;
}

.gen_greydot {
    position: absolute;
    right: 0px;
    top: 120px;
}

.gen_pinkdot {
    position: absolute;
    left: 0px;
    top: 650px;
}

.gen_greydot2 {
    top: initial;
    bottom: 500px;
}


/* contactpage css */

.cbanner {
    background: url(/images/schema66/contact_banner.png) no-repeat;
    background-size: cover;
}

.contact_inner {
    padding: 120px 0px;
}

.contact_inner h4 {
    font-size: 29px;
    color: #575756;
}

.con_lft {
    padding-top: 20px;
}

.con_lft .form-control {
    font-size: 18px;
    color: #000000;
    border: 1px solid #c1c1c1;
    height: 60px;
    outline: none;
    box-shadow: none;
}

.con_lft .form-control::placeholder {
    color: #000000;
}

.con_lft textarea.form-control {
    height: 227px;
    resize: none;
}

.captcha {
    background-color: #f9f9f9;
    border: 2px solid #d3d3d3;
    border-radius: 5px;
    color: #4c4a4b;
    display: flex;
    justify-content: center;
    align-items: center;
}

.captcha .text {
    font-size: 12px;
    color: #000000;
}

.spinner {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    margin: 20px 10px;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.spinner input[type="checkbox"]+.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2.5px solid #c3c3c3;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.spinner input[type="checkbox"]+.checkmark span {
    content: "";
    position: relative;
    margin-top: -3px;
    transform: rotate(45deg);
    width: 8px;
    height: 12px;
    opacity: 0;
}

.spinner input[type="checkbox"]+.checkmark>span:after {
    content: "";
    position: absolute;
    display: block;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #029f56;
}

.spinner input[type="checkbox"]+.checkmark>span:before {
    content: "";
    position: absolute;
    display: block;
    width: 3px;
    bottom: 0;
    right: 0;
    background-color: #029f56;
}

.spinner input[type="checkbox"]:checked+.checkmark {
    animation: 2s spin forwards;
}

.spinner input[type="checkbox"]:checked+.checkmark>span {
    animation: 1s fadein 1.9s forwards;
}

.spinner input[type="checkbox"]:checked+.checkmark>span:after {
    animation: 0.3s bottomslide 2s forwards;
}

.spinner input[type="checkbox"]:checked+.checkmark>span:before {
    animation: 0.5s rightslide 2.2s forwards;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bottomslide {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes rightslide {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.logo_cap {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    align-self: flex-end;
    margin: 5px 10px;
}

.logo_cap img {
    height: 20px;
    width: 20px;
}

.logo_cap p {
    color: #000000;
    margin: 0;
    font-size: 10px;
    margin: 5px 0 2px 0;
}

.logo_cap small {
    color: #000000;
    margin: 0;
    font-size: 8px;
}

@keyframes spin {
    10% {
        width: 0;
        height: 0;
        border-width: 6px;
    }
    30% {
        width: 0;
        height: 0;
        border-radius: 50%;
        border-width: 1em;
        transform: rotate(0deg);
        border-color: rgb(199, 218, 245);
    }
    50% {
        width: 2em;
        height: 2em;
        border-radius: 50%;
        border-width: 4px;
        border-color: rgb(199, 218, 245);
        border-right-color: rgb(89, 152, 239);
    }
    70% {
        border-width: 4px;
        border-color: rgb(199, 218, 245);
        border-right-color: rgb(89, 152, 239);
    }
    90% {
        border-width: 4px;
    }
    100% {
        width: 2em;
        height: 2em;
        border-radius: 50%;
        transform: rotate(720deg);
        border-color: transparent;
    }
}

.agree label {
    font-size: 18px;
    color: #000;
    margin: 0px;
    font-weight: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.agree label span {
    width: 20px;
    height: 20px;
    margin-left: 20px;
    border: 2.5px solid #c3c3c3;
    display: inline-block;
    position: relative;
}

.agree input[type="checkbox"]:checked+label span::after {
    content: url(/images/schema66/tick.png);
    top: -5px;
    left: 2px;
    position: absolute;
}

.form_btn button {
    font-size: 29px;
    width: 43%;
    border: 1px solid;
    border-radius: 30px;
    background-color: #fff;
    outline: none;
    margin-top: 15px;
    text-align: center;
}

.grey_btn {
    color: #b5b5af;
    border-color: #b5b5af;
}

.grey_btn:hover {
    background-color: #b5b5af;
    color: #fff;
}

.pink_btn {
    color: #ed1e79;
    border-color: #ed1e79;
    margin-right: 50px;
}

.pink_btn:hover {
    background-color: #ed1e79;
    color: #fff;
}

.contact_rht li {
    padding: 5px 0px;
    background: var(--white-color);
}

.contact_rht li a {
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
}

.contact_rht li a img {
    margin-left: 10px;
    max-height: 40px;
}

.contact_greydot {
    position: absolute;
    right: 0px;
    top: 120px;
}

.contact_pinkdot {
    position: absolute;
    left: 0px;
    top: 200px;
}

.showinmobile {
    display: none;
}

.error {
    background: var(--pink-color);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error h1 {
    text-align: center;
    text-transform: uppercase;
    color: var(--white-color);
}