
@import url("https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css");

:root{
    --navbgColor:rgb(255, 255, 255);
    --hoverColor:rgb(223, 85, 85);
    --mainColor:#8EC540;
    --mainColorblue:#28aae1;
}
body{
    font-family: 'Tajawal', sans-serif;
    margin:0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fcf4e7;
}
.navbar{
    background-color:var(--navbgColor);
}
@media (max-width: 992px) {
    /* styles for small devices */
    .navbar {
        background-color: #f7f7f7;
    }
}
.navbar .navbar-nav .nav-link{
    color: rgb(0, 0, 0);
}
.navbar-nav{
    font-size: 14px;
}
.navbar .search svg{
    color: white;
}
.navbar .navbar-toggler{
    color:rgb(15, 14, 14);
    border-color: black;
}
@media (max-width: 768px) {
    /* styles for small devices */
    .navbar .navbar-toggler {
        color: #1d1652;
    }
}
.navbar .navbar-toggler:focus{
    box-shadow: none;
}
.navbar .navbar-toggler[aria-expanded="true"]{
    border-color: var(--mainColorblue);
}
.main-btn{
    position: relative;
    display: inline-block;
    background-color: #027093;
    text-align: center;
    margin-right: 10px;
    border-radius: 4px;
    z-index: 2;
    margin-left: 3px;
}
.main-btn a{
    display: inline-block;
    color: white;
    font-size: 12px;
    padding-left:30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
}
.second-btn{
    position: relative;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #bd932c;
    z-index: 2;
    margin-right: 7px;
}
.second-btn a{
    display: inline-block;
    /* color: #87630c; */
    font-size: 22px;
    color: #87630c !important;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    font-weight: bold;
    padding-bottom: 10px;
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .second-btn {
        margin-top:10px;
    }
}
.footer-menu{
    list-style: none;
}
.main-list{
    color:#8EC540 ;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 5px;
}
.footer-link{
    font-size: 18px;
    color: #8EC540;
}
.footer-2-text{
    font-size: 14px;
    color: #bebebe;
}
/******* some update on navbar ***********/
.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-left: 4rem !important;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}
@media (min-width:1200px){
    .navbar-nav > li {
        margin-right: 50px;
    }
}
@media (min-width:1200px) and (max-width:1400px){
    .navbar-nav > li {
        margin-right: 10px;
    }
}
.navbar-nav .nav-link.active {
    color: #809e00 !important;
    /* change color to desired active color */
    font-weight: bold;
}
.card:hover {
    cursor: pointer;
}
/* Add a box shadow and transition effect to the card on hover */
.card:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
/* Change the background color and text color of the card on hover */
.card:hover .card-title h4 {
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    transform: scale(1.2);
    /* Add a zoom effect on hover */
}
/* .card:hover {
    background-color: #027093;
}
*/
/* Add a cursor pointer to the card on hover */
.card:hover {
    cursor: pointer;
}
/****** the main buttons on main page *******/
.main-btn:hover, .slider-second-btn:hover {
    background-color: #55a23c;
    color: #fff;
    transition: background-color 0.3s ease-in-out;
}
.button:hover {
    transform: scale(2);
}
/********** start menu **********/
@media(min-width:766px){
    .taskbar{
        display: none;
    }
}
@media(max-width: 766px){
    .taskbar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background-color: var(--mainColorblue);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 999;
    }
}
.taskbar-icons {
    display: flex;
    align-items: center;
    height: 100%;
}
.taskbar-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 100%;
    color: #fff;
    font-size: 0.8rem;
    background: none;
    border: none;
    cursor: pointer;
}
.taskbar-icon i {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}
.taskbar-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 180px;
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.taskbar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.taskbar-menu ul li a {
    display: block;
    padding: 0.5rem;
    color: #2d2d2d;
    text-decoration: none;
}
.taskbar-menu ul li a:hover {
    background-color: #eee;
}
.show {
    display: block;
}
.taskbar-menu {
    /* Other styles */
    position: absolute;
    bottom: 100%;
    left: 65%;
}
.menu {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none;
}
.start-btn.active + .menu, .start-btn i.active + .menu {
    display: block;
}
.menu li {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 10px;
    font-size: 18px;
    /* change the font size */
}
.menu li i {
    font-size: 24px;
    /* change the icon size */
    margin-right: 10px;
}
.taskbar-icon{
    font-size: 18px;
    margin-left: 30px;
}
.mainPage-second-section{
    background-color: #fafafa;
}
/**************/

/* Slider */
.slick-slide {
}
.slick-slide img {
    width: 100%;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before, .slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.carousel-control-prev {
    color: red;
    overflow: hidden
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    height: 40px;
    width: 40px;
    outline: black;
    background-size: 100%, 100%;
    background-color: var(--mainColorblue);
    border: 1px solid white;
    background-image: none;
    overflow: hidden
}
.carousel-control-next-icon:after {
    content: '>';
    font-size: 22px;
    color: white;
    overflow: hidden
}
.carousel-control-prev-icon:after {
    content: '<';
    font-size: 22px;
    color: white;
    overflow: hidden
}
.carousel-inner {
    position: relative;
    width: 80%;
    overflow: hidden;
    text-align: left;
}
carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}
/***** team ************/
.team-header{
    text-align:center;
}
.team-card{
    width:20%;
    gap:5%;
    border:1px solid grey;
    border-radius:4px;
    background-color:white;
}
.tm-description{
    padding:5px 10px;
}
.team-body{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5%;
    margin-top:20px;
}
/*********** project ***********/
.dark {
    background: #110f16;
}
.light {
    background: #f3f5f7;
}
a, a:hover {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
#pageHeaderTitle {
    margin: 2rem 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
}
/* Cards */
.postcard {
    flex-wrap: wrap;
    display: flex;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
    border-radius: 10px;
    margin: 0 0 2rem 0;
    overflow: hidden;
    position: relative;
    color: #fff;
}
.postcard.dark {
    background-color: #18151f;
}
.postcard.light {
    background-color: #e1e5ea;
}
.postcard .t-dark {
    color: #18151f;
}
.postcard a {
    color: inherit;
}
.postcard h1, .postcard .h1 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.postcard .small {
    font-size: 80%;
}
.postcard .postcard__title {
    font-size: 1.75rem;
}
.postcard .postcard__img {
    max-height: 180px;
    width: 100%;
    object-fit: cover;
    position: relative;
}
.postcard .postcard__img_link {
    display: contents;
}
.postcard .postcard__bar {
    width: 50px;
    height: 10px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
}
.postcard .postcard__text {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}
.postcard .postcard__preview-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    height: 100%;
}
.postcard .postcard__tagbox {
    display: flex;
    flex-flow: row wrap;
    font-size: 14px;
    margin: 20px 0 0 0;
    padding: 0;
    justify-content: center;
}
.postcard .postcard__tagbox .tag__item {
    display: inline-block;
    background: rgba(83, 83, 83, 0.4);
    border-radius: 3px;
    padding: 2.5px 10px;
    margin: 0 5px 5px 0;
    cursor: default;
    transition: background-color 0.3s;
}
.postcard .postcard__tagbox .tag__item:hover {
    background: rgba(83, 83, 83, 0.8);
}
.postcard:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 1;
    border-radius: 10px;
}
.postcard:hover .postcard__bar {
    width: 100px;
}
@media screen and (min-width: 769px) {
    .postcard {
        flex-wrap: inherit;
    }
    .postcard .postcard__title {
        font-size: 2rem;
    }
    .postcard .postcard__tagbox {
        justify-content: start;
    }
    .postcard .postcard__img {
        max-width: 300px;
        max-height: 100%;
        transition: transform 0.3s ease;
    }
    .postcard .postcard__text {
        padding: 3rem;
        width: 100%;
    }
    .postcard .media.postcard__text:before {
        content: "";
        position: absolute;
        display: block;
        background: #18151f;
        top: -20%;
        height: 130%;
        width: 55px;
    }
    .postcard:hover .postcard__img {
        transform: scale(1.1);
    }
    .postcard:nth-child(2n+1) {
        flex-direction: row;
    }
    .postcard:nth-child(2n+0) {
        flex-direction: row-reverse;
    }
    .postcard:nth-child(2n+1) .postcard__text::before {
        left: -12px !important;
        transform: rotate(4deg);
    }
    .postcard:nth-child(2n+0) .postcard__text::before {
        right: -12px !important;
        transform: rotate(-4deg);
    }
}
@media screen and (min-width: 1024px) {
    .postcard__text {
        padding: 2rem 3.5rem;
    }
    .postcard__text:before {
        content: "";
        position: absolute;
        display: block;
        top: -20%;
        height: 130%;
        width: 55px;
    }
    .postcard.dark .postcard__text:before {
        background: #18151f;
    }
    .postcard.light .postcard__text:before {
        background: #e1e5ea;
    }
}
/* COLORS */
.postcard .postcard__tagbox .green.play:hover {
    background: #79dd09;
    color: black;
}
.green .postcard__title:hover {
    color: #79dd09;
}
.green .postcard__bar {
    background-color: #79dd09;
}
.green::before {
    background-image: linear-gradient(-30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}
.green:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}
.postcard .postcard__tagbox .blue.play:hover {
    background: #0076bd;
}
.blue .postcard__title:hover {
    color: #0076bd;
}
.blue .postcard__bar {
    background-color: #0076bd;
}
.blue::before {
    background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}
.blue:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}
.postcard .postcard__tagbox .red.play:hover {
    background: #bd150b;
}
.red .postcard__title:hover {
    color: #bd150b;
}
.red .postcard__bar {
    background-color: #bd150b;
}
.red::before {
    background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}
.red:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}
.postcard .postcard__tagbox .yellow.play:hover {
    background: #bdbb49;
    color: black;
}
.yellow .postcard__title:hover {
    color: #bdbb49;
}
.yellow .postcard__bar {
    background-color: #bdbb49;
}
.yellow::before {
    background-image: linear-gradient(-30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}
.yellow:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}
@media screen and (min-width: 769px) {
    .green::before {
        background-image: linear-gradient(-80deg, rgba(121, 221, 9, 0.1), transparent 50%);
    }
    .green:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(121, 221, 9, 0.1), transparent 50%);
    }
    .blue::before {
        background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
    }
    .blue:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(0, 118, 189, 0.1), transparent 50%);
    }
    .red::before {
        background-image: linear-gradient(-80deg, rgba(189, 21, 11, 0.1), transparent 50%);
    }
    .red:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(189, 21, 11, 0.1), transparent 50%);
    }
    .yellow::before {
        background-image: linear-gradient(-80deg, rgba(189, 187, 73, 0.1), transparent 50%);
    }
    .yellow:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(189, 187, 73, 0.1), transparent 50%);
    }
}
/********** contact us ***************/
input {
    overflow: hidden;
}
.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 35px;
    float: right;
}
.sec-pad {
    padding: 60px 0 0;
    margin: 50px 0;
}
.contact-sec {
    align-item: center;
    display: flex;
}
.contact-sec .contact-ul li, .contact-ul b {
    font-size: 20px;
    margin: 10px 0;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    word-wrap: break-word;
}
.contact-sec .contact-ul i {
    font-size: 18px;
    padding: 10px;
    margin-right: 10px;
    border-radius: 50%;
}
.contact-detail a {
    color: #000;
    text-decoration: none;
}
.contact-sec .contact-ul li b:hover {
    color: #f93;
}
.contact-sec .contact-ul li .fa-location-dot {
    color: #f44337;
    border: 2px solid #f4433790;
}
.contact-sec .contact-ul li .fa-phone {
    color: #00b055;
    border: 2px solid #00b05590;
}
.contact-sec .contact-ul li .fa-envelope {
    color: #ff6347;
    border: 2px solid #ff634790;
}
.contact-detail span {
    width: 400px;
    display: flex;
    justify-content: center;
}
.contact-detail span a {
    font-size: 20px;
    padding: 6px 12px;
    color: #000;
    border-radius: 50%;
    margin: 0px 5px;
}
.contact-detail span .fb {
    color: #3b5998;
    border: 3px solid #3b5998;
}
.contact-detail span .fb:hover {
    color: #fff;
    background-color: #3b5998;
}
.contact-detail span .insta {
    color: #833ab4;
    border: 3px solid #833ab4;
}
.contact-detail span .insta:hover {
    color: #fff;
    background-color: #833ab4;
}
.contact-detail span .twitter {
    color: #00acee;
    border: 3px solid #00acee;
}
.contact-detail span .twitter:hover {
    color: #fff;
    background-color: #00acee;
}
form.contFrm {
    max-width: 396px;
    margin: auto;
}
.inptFld {
    width: 100%;
    height: 50px;
    border: 0;
    margin: 0 0 10px;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 16px;
    color: #000;
}
.inptFld:focus {
    outline-offset: -4px;
    outline: 1px solid #f93;
}
.contFrm textarea {
    height: 75px;
    padding-top: 5px;
}
.inptBtn {
    height: 50px;
    border: 0;
    background: #00b055;
    font-size: 14px;
    color: #fff;
    margin: auto;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
}
/* Responcive css Start */
@media (max-width: 991px) {
    .sec-pad {
        padding: 20px 0 0px;
    }
    .contact-sec .contact-ul li, .contact-ul b {
        font-size: 18px;
    }
    .contact-sec .contact-ul i {
        font-size: 14px;
        padding: 6px;
        margin-right: 6px;
    }
    .inptFld {
        height: 40px;
        margin: 0 0 10px;
        padding: 0 14px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .contact-detail span {
        width: auto;
    }
    .contact-detail span a {
        font-size: 18px;
        padding: 5px 10px;
        color: #000;
        border-radius: 50%;
        margin: 0px 5px 20px;
    }
}
@media (max-width: 575px) {
    .section-title {
        font-size: 26px;
        font-weight: 500;
    }
    .contact-sec {
        border-radius: 10% 10% 0% 0% / 5% 5% 0% 0%;
    }
    .contact-sec .contact-ul i {
        border: none;
    }
    .inptFld {
        height: 36px;
        margin: 0 0 8px;
        padding: 0 14px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .contact-sec .contact-ul li, .contact-ul b {
        font-size: 16px;
    }
}
/************* foooter **************/
a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
a, a:active, a:focus {
    color: #333;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
section {


}
.footer {
    background: #28aae1;
    padding-top: 80px;
    padding-bottom: 40px;
}
/*END FOOTER SOCIAL DESIGN*/
@media only screen and (max-width: 768px) {
    .single_footer {
        margin-bottom: 30px;
    }
}
.single_footer h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}
.single_footer h4::after {
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    background: #fff;
    margin-top: 20px;
}
.single_footer p {
    color: #fff;
}
.single_footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.single_footer ul li a {
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 36px;
    font-size: 15px;
    text-transform: capitalize;
}
.single_footer ul li a:hover {
    color: #ff3666;
}
.single_footer_address ul li {
    color: #fff;
}
.single_footer_address ul li span {
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}
.contact_social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
/*START NEWSLETTER CSS*/
.subscribe {
    display: block;
    position: relative;
    margin-top: 15px;
    width: 100%;
}
.subscribe__input {
    background-color: #fff;
    border: medium none;
    border-radius: 5px;
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 500;
    height: 60px;
    letter-spacing: 0.4px;
    margin: 0;
    padding: 0 150px 0 20px;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
}
@media only screen and (max-width: 768px) {
    .subscribe__input {
        padding: 0 50px 0 20px;
    }
}
.subscribe__btn {
    background-color: transparent;
    border-radius: 0 25px 25px 0;
    color: #01c7e9;
    cursor: pointer;
    display: block;
    font-size: 20px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}
.subscribe__btn i {
    transition: all 0.3s ease 0s;
}
@media only screen and (max-width: 768px) {
    .subscribe__btn {
        right: 0px;
    }
}
.subscribe__btn:hover i {
    color: #ff3666;
}
button {
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
}
/*END NEWSLETTER CSS*/
/*START SOCIAL PROFILE CSS*/
.social_profile {
    margin-top: 40px;
}
.social_profile ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.social_profile ul li {
    float: left;
}
.social_profile ul li a {
    text-align: center;
    border: 0px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    margin: 0px 5px;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 768px) {
    .social_profile ul li a {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 480px) {
    .social_profile ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}
.social_profile ul li a:hover {
    background: #ff3666;
    border: 1px solid #ff3666;
    color: #fff;
    border: 0px;
}
/*END SOCIAL PROFILE CSS*/
.copyright {
    margin-top: 70px;
    padding-top: 40px;
    color: #fff;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
}
.copyright a {
    color: #01c7e9;
    transition: all 0.2s ease 0s;
}
.copyright a:hover {
    color: #ff3666;
}
/************ landing page ***********/
html{
    scroll-behavior: smooth;
}
aside {
    width: 30%;
    padding-left: 15px;
    margin-left: 15px;
    float: right;
    font-style: italic;
    background-color: lightgray;
}
.bg-black{
    background: #fafafa !important;
}
.text-white{
    color: white;
}
.text-black{
    color: black;
}
.bg-primary-orange{
    background-color: #fec503;
}
.primary-orange{
    color: #fec503;
}
.org-btn{
    border: 1px solid #fec503;
    color: #fec503;
}
.org-btn:hover{
    background-color: #fec503;
    color: white;
}
.light-grey{
    color:#6c757d;
}
.bg-light-grey{
    background-color: #6c757d
}
.social-buttons-circle-dark-grey{
    background: #1a1d20;
}
/* img css */
/* .testimonals-container img{
    width:300px;
}
*/
/* hero */
.center{
    text-align: center;
}
/* Card hover */
.move-up:hover{
    background-color: #fec503;
    color: white;
    transition: all .5s;
    transform : translateY(-10px);
}
.ng-mrg-t{
    margin-top: -50px;
}
/* Footer code */
.foot{
    /* position: relative;
     */
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #1a1d20;
    color: white;
    text-align: center;
    top: 75px;
}
a {
    color: #6c757d ;
}
a:hover {
    color: #fec503;
    text-decoration: none;
}
::selection {
    background: #fec503;
    text-shadow: none;
}
.footer-column {
    text-align: center;
}
.nav-link {
    padding: 0.1rem 0;
}
span.nav-link {
    color: #6c757d;
}
span.nav-link:hover {
    color: #fec503;
}
span.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.fas {
    margin-right: 0.5rem;
}
footer {
    padding: 2rem 0;
    background-color: #212529;
}
ul.social-buttons {
    margin-bottom: 0;
}
ul.social-buttons li a:active, ul.social-buttons li a:focus, ul.social-buttons li a:hover {
    background-color: #fec503;
}
ul.social-buttons li a {
    font-size: 20px;
    line-height: 40px;
    display: block;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    border-radius: 100%;
    outline: 0;
    background-color: #1a1d20;
}
footer .quick-links {
    font-size: 90%;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: none;
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.copyright {
    color: white;
}
.fa-ellipsis-h {
    color: white;
    padding: 2rem 0;
}
.hero-container{
    background-color: var(--mainColorblue);
}
.landing-text1,.landing-text2,.landing-text3{
    color: white;
}
.landing-text1{
    font-size: 38px;
}
.landing-text2{
    font-size: 32px;
}
.landing-text3{
    font-size: 28px;
}
.joinus{
    background: #8ec540;
    border-color: white;
    color: white;
}
.landing-vedio{
    margin-top:50px
}
/*********** contact ***********/
.contact .info-box {
    color: #313030;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px;
}
/*********** main slider *************/
/* -------------------------------- Main Components -------------------------------- */
.cd-header {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #21272c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media only screen and (min-width: 768px) {
    .cd-header {
        height: 70px;
        background-color: transparent;
    }
}
#cd-logo {
    float: left;
    margin: 13px 0 0 5%;
}
#cd-logo img {
    display: block;
}
@media only screen and (min-width: 768px) {
    #cd-logo {
        margin: 23px 0 0 5%;
    }
}
.cd-primary-nav {
    /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
    float: right;
    margin-right: 5%;
    width: 44px;
    height: 100%;
    background: url("https://codyhouse.co/demo/hero-slider/assets/cd-icon-menu.svg") no-repeat center center;
}
.cd-primary-nav ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.cd-primary-nav ul.is-visible {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.cd-primary-nav a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding-left: 5%;
    background: #21272c;
    border-top: 1px solid #333c44;
    color: #fff;
}
@media only screen and (min-width: 768px) {
    /* reset navigation values */
    .cd-primary-nav {
        width: auto;
        height: auto;
        background: none;
    }
    .cd-primary-nav ul {
        position: static;
        width: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        line-height: 70px;
    }
    .cd-primary-nav ul.is-visible {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .cd-primary-nav li {
        display: inline-block;
        margin-left: 1em;
    }
    .cd-primary-nav a {
        display: inline-block;
        height: auto;
        font-weight: 600;
        line-height: normal;
        background: transparent;
        padding: 0.6em 1em;
        border-top: none;
    }
}
/* -------------------------------- Slider -------------------------------- */
.cd-hero {
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}
.cd-hero-slider {
    position: relative;
    height: 360px;
    overflow: hidden;
}
.cd-hero-slider li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.cd-hero-slider li.selected {
    /* this is the visible slide */
    position: relative;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.cd-hero-slider li.move-left {
    /* slide hidden on the left */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}
.cd-hero-slider li.is-moving, .cd-hero-slider li.selected {
    /* the is-moving class is assigned to the slide which is moving outside the viewport */
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
}
@media only screen and (min-width: 768px) {
    .cd-hero-slider {
        height: 500px;
    }
}
/* @media only screen and (min-width: 1170px) {
    .cd-hero-slider {
        height: 570px;
   }
} */
/* -------------------------------- Single slide style -------------------------------- */
.cd-hero-slider li {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cd-hero-slider li:nth-of-type(2) {
    background-color: #3d4952;
    background-image: url("https://codyhouse.co/demo/hero-slider/assets/tech-1-mobile.jpg");
}
.cd-hero-slider li:nth-of-type(3) {
    background-color: #586775;
    background-image: url("https://codyhouse.co/demo/hero-slider/assets/tech-2-mobile.jpg");
}
.cd-hero-slider li:nth-of-type(4) {
    background-color: #2c343b;
    background-image: url("https://codyhouse.co/demo/hero-slider/assets/video-replace-mobile.jpg");
}
.cd-hero-slider li:nth-of-type(5) {
    background-color: #2c343b;
    background-image: url(https://i.vimeocdn.com/video/222142554.webp?mw=1280&mh=720);
}
.cd-hero-slider li:nth-of-type(6) {
    background-color: #2c343b;
    /*background-image: url(https://i.vimeocdn.com/video/473131817.webp?mw=1280&mh=720);
     */
}
.cd-hero-slider .cd-full-width, .cd-hero-slider .cd-half-width {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    /* this padding is used to align the text */
    padding-top: 100px;
    text-align: center;
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}
.cd-hero-slider .cd-img-container {
    /* hide image on mobile device */
    display: none;
}
.cd-hero-slider .cd-img-container img {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.cd-hero-slider .cd-bg-video-wrapper {
    /* hide video on mobile device */
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cd-hero-slider .cd-bg-video-wrapper video {
    /* you won't see this element in the html, but it will be injected using js */
    display: block;
    min-height: 100%;
    min-width: 100%;
    max-width: none;
    height: auto;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.cd-hero-slider h2, .cd-hero-slider p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    margin: 0 auto 14px;
    color: #fff;
    width: 90%;
    max-width: 400px;
}
.cd-hero-slider h2 {
    font-size: 2.4rem;
}
.cd-hero-slider p {
    font-size: 1.4rem;
    line-height: 1.4;
}
.cd-hero-slider .cd-btn {
    display: inline-block;
    padding: 1.2em 1.4em;
    margin-top: 0.8em;
    background-color: #b18725;
    font-size: 3rem !important;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
    font-size: 48px;
}
.cd-hero-slider .cd-btn.secondary {
    background-color: rgba(22, 26, 30, 0.8);
}
.cd-hero-slider .cd-btn:nth-of-type(2) {
    margin-left: 1em;
}
.no-touch .cd-hero-slider .cd-btn:hover {
    background-color: #d44457;
}
.no-touch .cd-hero-slider .cd-btn.secondary:hover {
    background-color: #161a1e;
}
@media only screen and (min-width: 768px) {
    .cd-hero-slider li:nth-of-type(2) {
        background-image: none;
    }
    .cd-hero-slider li:nth-of-type(3) {
        background-image: none;
    }
    .cd-hero-slider li:nth-of-type(4) {
        background-image: none;
    }
    .cd-hero-slider .cd-full-width, .cd-hero-slider .cd-half-width {
        /*padding-top: 150px;
         */
    }
    .cd-hero-slider .cd-bg-video-wrapper {
        display: block;
    }
    .cd-hero-slider .cd-half-width {
        width: 45%;
    }
    .cd-hero-slider .cd-half-width:first-of-type {
        left: 5%;
    }
    .cd-hero-slider .cd-half-width:nth-of-type(2) {
        right: 5%;
        left: auto;
    }
    .cd-hero-slider .cd-img-container {
        display: block;
    }
    .cd-hero-slider h2, .cd-hero-slider p {
        max-width: 520px;
    }
    .cd-hero-slider h2 {
        font-size: 2.4em;
        font-weight: 300;
    }
    .cd-hero-slider .cd-btn {
        font-size: 1.4rem;
    }
}
/* @media only screen and (min-width: 1170px) {
    .cd-hero-slider .cd-full-width, .cd-hero-slider .cd-half-width {
        padding-top: 150px;
   } */
.cd-hero-slider h2, .cd-hero-slider p {
    margin-bottom: 20px;
}
.cd-hero-slider h2 {
    font-size: 3.2em;
    color: black;
}
.cd-hero-slider p {
    font-size: 1.6rem;
    color: black;
}

/* -------------------------------- Single slide animation -------------------------------- */
@media only screen and (min-width: 768px) {
    .cd-hero-slider .cd-half-width {
        opacity: 0;
        -webkit-transform: translateX(40px);
        -moz-transform: translateX(40px);
        -ms-transform: translateX(40px);
        -o-transform: translateX(40px);
        transform: translateX(40px);
    }
    .cd-hero-slider .move-left .cd-half-width {
        -webkit-transform: translateX(-40px);
        -moz-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
        -o-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    .cd-hero-slider .selected .cd-half-width {
        /* this is the visible slide */
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .cd-hero-slider .is-moving .cd-half-width {
        /* this is the slide moving outside the viewport wait for the end of the transition on the <li> parent before set opacity to 0 and translate to 40px/-40px */
        -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
        -moz-transition: opacity 0s 0.5s, -moz-transform 0s 0.5s;
        transition: opacity 0s 0.5s, transform 0s 0.5s;
    }
    .cd-hero-slider li.selected.from-left .cd-half-width:nth-of-type(2), .cd-hero-slider li.selected.from-right .cd-half-width:first-of-type {
        /* this is the selected slide - different animation if it's entering from left or right */
        -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
        -moz-transition: opacity 0.4s 0.2s, -moz-transform 0.5s 0.2s;
        transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
    }
    .cd-hero-slider li.selected.from-left .cd-half-width:first-of-type, .cd-hero-slider li.selected.from-right .cd-half-width:nth-of-type(2) {
        /* this is the selected slide - different animation if it's entering from left or right */
        -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
        -moz-transition: opacity 0.4s 0.4s, -moz-transform 0.5s 0.4s;
        transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
    }
    .cd-hero-slider .cd-full-width h2, .cd-hero-slider .cd-full-width p, .cd-hero-slider .cd-full-width .cd-btn {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
    }
    .cd-hero-slider .move-left .cd-full-width h2, .cd-hero-slider .move-left .cd-full-width p, .cd-hero-slider .move-left .cd-full-width .cd-btn {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    .cd-hero-slider .selected .cd-full-width h2, .cd-hero-slider .selected .cd-full-width p, .cd-hero-slider .selected .cd-full-width .cd-btn {
        /* this is the visible slide */
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .cd-hero-slider li.is-moving .cd-full-width h2, .cd-hero-slider li.is-moving .cd-full-width p, .cd-hero-slider li.is-moving .cd-full-width .cd-btn {
        /* this is the slide moving outside the viewport wait for the end of the transition on the li parent before set opacity to 0 and translate to 100px/-100px */
        -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
        -moz-transition: opacity 0s 0.5s, -moz-transform 0s 0.5s;
        transition: opacity 0s 0.5s, transform 0s 0.5s;
    }
    .cd-hero-slider li.selected h2 {
        -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
        -moz-transition: opacity 0.4s 0.2s, -moz-transform 0.5s 0.2s;
        transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
    }
    .cd-hero-slider li.selected p {
        -webkit-transition: opacity 0.4s 0.3s, -webkit-transform 0.5s 0.3s;
        -moz-transition: opacity 0.4s 0.3s, -moz-transform 0.5s 0.3s;
        transition: opacity 0.4s 0.3s, transform 0.5s 0.3s;
    }
    .cd-hero-slider li.selected .cd-btn {
        -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s, background-color 0.2s 0s;
        -moz-transition: opacity 0.4s 0.4s, -moz-transform 0.5s 0.4s, background-color 0.2s 0s;
        transition: opacity 0.4s 0.4s, transform 0.5s 0.4s, background-color 0.2s 0s;
    }
}
/* -------------------------------- Slider navigation -------------------------------- */
.cd-slider-nav {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 2;
    text-align: center;
    height: 55px;
    background-color:#efe7da;
}
.cd-slider-nav nav, .cd-slider-nav ul, .cd-slider-nav li, .cd-slider-nav a {
    height: 100%;
}
.cd-slider-nav nav {
    display: inline-block;
    position: relative;
}
.cd-slider-nav .cd-marker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 100%;
    color: #d44457;
    background-color: #fff;
    box-shadow: inset 0 2px 0 currentColor;
    -webkit-transition: -webkit-transform 0.2s, box-shadow 0.2s;
    -moz-transition: -moz-transform 0.2s, box-shadow 0.2s;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cd-slider-nav .cd-marker.item-2 {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.cd-slider-nav .cd-marker.item-3 {
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    -o-transform: translateX(200%);
    transform: translateX(200%);
}
.cd-slider-nav .cd-marker.item-4 {
    -webkit-transform: translateX(300%);
    -moz-transform: translateX(300%);
    -ms-transform: translateX(300%);
    -o-transform: translateX(300%);
    transform: translateX(300%);
}
.cd-slider-nav .cd-marker.item-5 {
    -webkit-transform: translateX(400%);
    -moz-transform: translateX(400%);
    -ms-transform: translateX(400%);
    -o-transform: translateX(400%);
    transform: translateX(400%);
}
.cd-slider-nav ul::after {
    clear: both;
    content: "";
    display: table;
}
.cd-slider-nav li {
    display: inline-block;
    width: 60px;
    float: left;
}
.cd-slider-nav li.selected a {
    color: #2c343b;
}
.no-touch .cd-slider-nav li.selected a:hover {
    background-color: transparent;
}
.cd-slider-nav a {
    display: block;
    position: relative;
    padding-top: 35px;
    font-size: 1rem;
    font-weight: 700;
    color: #a8b4be;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.cd-slider-nav a::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 8px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(https://codyhouse.co/demo/hero-slider/assets/cd-icon-navigation.svg) no-repeat 0 0;
}
.no-touch .cd-slider-nav a:hover {
    background-color: rgba(0, 1, 1, 0.5);
}
.cd-slider-nav li:first-of-type a::before {
    background-position: 0 0;
}
.cd-slider-nav li.selected:first-of-type a::before {
    background-position: 0 -24px;
}
.cd-slider-nav li:nth-of-type(2) a::before {
    background-position: -24px 0;
}
.cd-slider-nav li.selected:nth-of-type(2) a::before {
    background-position: -24px -24px;
}
.cd-slider-nav li:nth-of-type(3) a::before {
    background-position: -48px 0;
}
.cd-slider-nav li.selected:nth-of-type(3) a::before {
    background-position: -48px -24px;
}
.cd-slider-nav li:nth-of-type(4) a::before {
    background-position: -72px 0;
}
.cd-slider-nav li.selected:nth-of-type(4) a::before {
    background-position: -72px -24px;
}
.cd-slider-nav li:nth-of-type(5) a::before {
    background-position: -96px 0;
}
.cd-slider-nav li.selected:nth-of-type(5) a::before {
    background-position: -96px -24px;
}
.cd-slider-nav li:nth-of-type(6) a::before {
    background-position: -96px 0;
}
.cd-slider-nav li.selected:nth-of-type(6) a::before {
    background-position: -96px -24px;
}
@media only screen and (min-width: 768px) {
    .cd-slider-nav {
        height: 80px;
    }
    .cd-slider-nav .cd-marker, .cd-slider-nav li {
        width: 95px;
    }
    .cd-slider-nav a {
        padding-top: 48px;
        font-size: 1.1rem;
        text-transform: uppercase;
    }
    .cd-slider-nav a::before {
        top: 18px;
    }
}
/* -------------------------------- Main content -------------------------------- */
.cd-main-content {
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
    padding: 2em 0;
}
.cd-main-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #999;
    margin: 2em 0;
}
@media only screen and (min-width: 1170px) {
    .cd-main-content {
        padding: 3em 0;
    }
    .cd-main-content p {
        font-size: 1.6rem;
    }
}
/* -------------------------------- Javascript disabled -------------------------------- */
.no-js .cd-hero-slider li {
    display: none;
}
.no-js .cd-hero-slider li.selected {
    display: block;
}
.no-js .cd-slider-nav {
    display: none;
}
/*3D STUFF*/
/* -------------------------------- Main Components -------------------------------- */
.cd-background-wrapper {
    background-color: #001426;
    position: relative;
    overflow: hidden;
}
.no-touch .cd-background-wrapper {
    -webkit-perspective: 4000px;
    -moz-perspective: 4000px;
    perspective: 4000px;
}
.cd-background-wrapper::before {
    /* never visible - this is used in jQuery to check the device type */
    content: 'web';
    display: none;
}
.touch .cd-background-wrapper::before {
    /* never visible - this is used in jQuery to check the device type */
    content: 'mobile';
}
.cd-floating-background {
    position: relative;
}
.cd-floating-background img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* fixes a Firefox bug - images not correctly rendered*/
    background-color: rgba(255, 255, 255, 0.01);
}
.cd-floating-background img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
}
.no-touch .cd-floating-background {
    top: 0;
    left: 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}
.no-touch .cd-floating-background.is-absolute {
    position: absolute;
}
.no-touch .cd-floating-background img:first-child {
    -webkit-transform: translateZ(50px);
    -moz-transform: translateZ(50px);
    -ms-transform: translateZ(50px);
    -o-transform: translateZ(50px);
    transform: translateZ(50px);
}
.no-touch .cd-floating-background img:nth-child(2) {
    -webkit-transform: translateZ(290px);
    -moz-transform: translateZ(290px);
    -ms-transform: translateZ(290px);
    -o-transform: translateZ(290px);
    transform: translateZ(290px);
}
.no-touch .cd-floating-background img:nth-child(3) {
    -webkit-transform: translateZ(400px);
    -moz-transform: translateZ(400px);
    -ms-transform: translateZ(400px);
    -o-transform: translateZ(400px);
    transform: translateZ(400px);
}
.no-touch.no-preserve-3d .cd-floating-background {
    /* we target browsers that don't support preserve-3d and show just a standard image - no effect visible */
    position: relative;
}

.btn-default{
    background:#29AAE1;
    width: 100%;
    color:#fff;
    font-weight:700;
    text-shadow:1px 1px 0 rgba(0,0,0,0.2);
    font-size:14px;
}
.card{
    box-shadow:2px 2px 20px rgba(0,0,0,0.3);

    margin-bottom:30px;
    box-shadow: 3px 10px #a8c671;
    min-height: 259px;
}
.card:hover{
    transform: scale(1.05);
    transition: all 1s ease;
    z-index: 999;
}
.card-01 .card-body{
    position:relative;
    padding-top:40px;
}
.card-01 .badge-box{
    position:absolute;
    top:-20px;
    left:50%;
    width:100px;
    height:100px;
    margin-left:-50px;
    text-align:center;
}
.card-01 .badge-box i{
    background:#006EFF;
    color:#fff;
    border-radius:50%;
    width:50px;
    height:50px;
    line-height:50px;
    text-align:center;
    font-size:20px;
}
.card-01 .height-fix{
    height:455px;
    overflow:hidden;
}
.card-01 .height-fix .card-img-top{
    width:auto!important;
}
.profile-box{
    background-size:cover;
    float:left;
    width:100%;
    text-align:center;
    padding:30px 0;
    position:relative;
    overflow:hidden;
}
.profile-box:before{
    filter: blur(10px);
    background:url("https://images.pexels.com/photos/195825/pexels-photo-195825.jpeg?h=350&auto=compress&cs=tinysrgb") no-repeat;
    background-size:cover;
    width:120%;
    position:absolute;
    content:"";
    height:120%;
    left:-10%;
    top:0;
    z-index:0;
}
.profile-box img{
    width:170px;
    height:170px;
    position:relative;
    border:5px solid #fff;
}
.social-box i {
    border:1px solid #006EFF;
    color:#006EFF;
    width:30px;
    height:30px;
    border-radius:50%;
    line-height:30px;
}
.social-box i:hover{
    background:#DFC717;
    color:#fff;
}
.social-box a{
    margin: 0 5px;
}
.video-foreground{
    float:left;
    width:100%;
    height:500px;
}
.card-01.height-fix .card-img-overlay{
    top:unset;
    color:#fff;
    background: -moz-linear-gradient(top, rgba(26,96,111,0) 0%, rgba(26,96,111,0) 1%, rgba(24,87,104,0.91) 31%, rgba(21,65,89,0.91) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(26,96,111,0) 0%,rgba(26,96,111,0) 1%,rgba(24,87,104,0.91) 31%,rgba(21,65,89,0.91) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(26,96,111,0) 0%,rgba(26,96,111,0) 1%,rgba(24,87,104,0.91) 31%,rgba(21,65,89,0.91) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001a606f', endColorstr='#e8154159',GradientType=0 );
}
.card-01.height-fix .fa{
    color: #fff;
    font-size: 22px;
    margin-right: 18px;
}

/*flipper-card*/
.card-flipper {
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
}
.card__front, .card__back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.card__back .card{
    width:100%;
    height:65vh;
}
.card__front, .card__back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}
.card__front {
    background-color: #ff5078;
}
.card__back {
    background-color: #1e1e1e;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.card-flipper.effect__hover{
    position:relative;
}
.card-flipper.effect__hover:hover .card__front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.card-flipper.effect__hover:hover .card__back {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.card-flipper.effect__random.flipped .card__front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.card-flipper.effect__random.flipped .card__back {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}




section {

    padding-bottom: 1rem !important
}

.section-heading {
    font-size: 2rem;
    font-weight: 800
}

.section-intro {
    font-size: 1.125rem
}

.about-section {
    padding-bottom: 0
}

.benefits-list li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem
}

.benefits-list li .svg-inline--fa {
    color: #5ab66e
}

.speakers-section .card {
    border: none;
    background: #f0f6fa;
    margin-bottom: 2rem;
    height: 100%
}

.speakers-section .card-title {
    font-size: 1.125rem
}

.speakers-section .card-img-top:hover {
    -webkit-opacity: .9;
    -moz-opacity: .9;
    opacity: .9
}

.speakers-section .card-footer {
    background: #e8f1f7;
    border-top: none
}

.modal-speaker .profile-image {
    width: 120px
}

.modal-speaker h2.name,.modal-speaker .name.h2 {
    font-size: 1.5rem
}

.modal-speaker .social-list {
    font-size: 1.25rem
}

.modal-speaker .modal-content {
    position: relative
}

.modal-speaker .modal-header {
    padding: 0
}

.modal-speaker .modal-header .btn-close {
    width: 45px;
    height: 45px;
    margin: 0;
    padding: 0;
    font-size: 2.5rem;
    font-weight: 300;
    position: absolute;
    text-shadow: none;
    color: #fff;
    background: #098dcf;
    top: 0;
    right: 0;
    z-index: 10;
    border-radius: 0;
    line-height: 1
}

.modal-speaker .modal-header .btn-close:hover {
    background: #098dcf;
    color: #fff
}

.schedule-nav .nav-item span {
    display: block
}

.schedule-nav .nav-item .heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem
}

.schedule-nav .nav-item .meta {
    -webkit-opacity: .8;
    -moz-opacity: .8;
    opacity: .8
}

.schedule-nav .nav-link {
    background: #f0f6fa;
    border-radius: 0;
    border-right: rgba(0,0,0,0.1);
    text-decoration: none
}

.schedule-tab-content {
    padding: 2rem 0
}

.schedule-tab-content .tab-pane {
    position: relative
}

.schedule-tab-content .tab-pane:after {
    content: "";
    display: block;
    background: #e5ecf4;
    position: absolute;
    width: 3px;
    height: 100%;
    left: 196px;
    top: 5px
}

.schedule-tab-content .tab-pane.no-timeline:after {
    display: none
}

.schedule-tab-content .item {
    position: relative;
    margin-bottom: 2rem
}

.schedule-tab-content .item .item-talk {
    min-height: 165px
}

.schedule-tab-content .item:after {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: 5;
    left: 190px;
    top: 5px;
    width: 16px;
    height: 16px;
    border: 4px solid #098dcf;
    background: white;
    border-radius: 50%
}

.schedule-tab-content .item .meta {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    padding: 1rem;
    padding-top: 0;
    text-align: center;
    font-size: 0.875rem
}

.schedule-tab-content .item .meta .time {
    font-size: 1.25rem;
    color: #098dcf
}

.schedule-tab-content .item .meta .location {
    font-weight: bold
}

.schedule-tab-content .item .profile-image {
    width: 80px
}

.schedule-tab-content .item .content {
    padding-left: 240px
}

.schedule-tab-content .item .content .title {
    font-size: 1.25rem
}


.single-feature .single-feature-icon i {
    color: #30A3F0;
    font-size: 50px;
    line-height: 44px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}



.typewriter {
    width: 40%;
    white-space: nowrap;
    overflow: hidden;

    animation: cursor 1s step-start infinite,
    text 5s steps(50) alternate infinite;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 50px;
    color: white;
}



@keyframes text {
    0% {
        width: 0;
    }
    100% {
        width: 40%;
    }
}


.services-landing{
    background: #c0d79080;
}


.TextHolderformobile{
    width: 40%;
}

.main-btn, .slider-second-btn {
    background-color: #55a23c;
    padding: 20px;
    border-radius: 20px;
    color: #fff !important;
    transition: background-color 0.3s ease-in-out;
}



.btn.btn-outline-light {
    pointer-events:none;
    font-size:1.7rem;
    font-weight: 700;
    background: #6fb23e;
    padding: 10px;
    margin: 2px;
    width: 120px;
    height: 120px;
    line-height: 1.5;
    padding: 18px 0 0 0;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);
    box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);
    outline: 0;
}
#demo {
    text-align: center;
    color: #f8f9fa;
    font-size: 1.2rem;
}



.section-title h2 {
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
    position: relative;
    color: #8fa035
}


/* Style for tabs */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #c9d8b9;
    direction: rtl; /
}

.tab button {
    background-color: inherit;
    float: right;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
    border: 2px solid white;
    background-color: #a8c671 !important;
}

/* Style for tab content */

.tabcontent {
    display: none;
    padding: 20px;
    border: 9px solid white

    /* border-top: none; */
}



/* Style for conference conditions */
.conference-conditions ol {
    list-style-type: decimal;
    padding-left: 20px;
}

/* Style for conference agenda */
.conference-agenda ol {
    list-style-type: none;
    counter-reset: conference-item;
}

.conference-agenda ol li {
    counter-increment: conference-item;
    margin-bottom: 10px;
}

.conference-agenda ol li::before {
    content: counter(conference-item);
    background-color: #bc9026;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    margin-right: 10px;
    border-radius: 50%;
}

.navbar-nav{
    font-size: 16px;
}


@media(max-width:766px){
    .col-6 {
        flex: 0 0 auto;
        width: 100%;
    }
}

th{
    color: #ba9026;
    line-height: 3;
    font-weight: bold;
    font-size: 22px;
}
tbody{
    font-size: 22px;
    font-weight: bold;
}


.innerorderlist{
    font-size: 24px;
    font-weight: bold;
}
.btn-topics{
    width: 100% ;
}

.title-container {
    text-align: center;
    font-size: 30px;
    padding: 20px;
    margin: 0 auto;
}

.background{
    background: #a8c671;
    width: 300px;
    padding: 20px;
}

.background2{
    background: #c9d8b9;
    width:77%;
    padding: 20px;
}


.conference-president{
    display: flex;
}

.title-name{
    color: white;
    font-size: 22px;
    font-weight: 500;
    margin-left: 20px;
}

@media(max-width: 766px){

    .title-name{
        color: white;
        font-size: 12px;
        font-weight: 500;
        margin-left: 20px;
    }

    .title-comitte-name {
        color: white;
        font-size: 12px !important;
        font-weight: 500;
        /* margin-left: 20px; */
    }

}

.orderlist > li {
    font-size: 20px;
    padding: 5px;
}

@media(min-width:766px){

    .conference-general-info{
        margin-top:-34px;
    }

}



.committee-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: white;
}
/* Style for table headings */
.committee-table th {
    background-color: #f1f1f1;
    padding: 10px;


}
/* Style for table cells */
.committee-table td {
    /* border: 1px solid #ccc;*/
    padding: 10px;
    font-size: 18px !important;
}

@media(max-width: 766px) {
    .committee-table td {
        /* border: 1px solid #ccc;*/
        padding: 10px;
        font-size:12px !important;
    }
}



.table-info {
    --bs-table-bg: #ebf1e5 !important;
}


.title-comitte-name {
    color: white;
    font-size: 22px;
    font-weight: 500;
    /* margin-left: 20px; */
}


.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #8fa035;
    bottom: 0;
    left: calc(50% - 20px);
}

body {
    /* background-image: url('../images/Texture.png');
    background-repeat: repeat; */
    background-color: #fcf4e7 !important;
}

.sponsors{

}

.bg-tabcontent{

    background-image: url(../images/TEXT.jpg);
    background-image: linear-gradient(#dee6bb, #b0c96e);

}

.conference-titele{
    background: #809e00;
    /* background-image: url(../images/conferencetitlebackground.png); */
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 63px;
    padding: 20px;
    /* width: 400px; */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: white;
}

.sponserslogos{
    background-color: #a8c671;
}

/*

.right-landing{
    position: absolute;
    top: 15%;
    left: 0;
    border: 0;
}*/

.right-landing {
    position: absolute;
    top: 203px;
    left: 0;
    border: 0;
    z-index:-1;
}

.right-landing2{
    height: 551px;
    position: absolute;
    /*top: 10%;*/
    /* right: 0; */
    left: 51%;
    width: 50%;
    border: 0;
    z-index: -1;
    opacity: .7;
}
.right-landing3{
    position: absolute;
    top: 15%;
    /* right: 0; */
    z-index: -1;
    display: none;


}
@media (min-width:766px){
    .right-landing3{
        position: absolute;
        top: 15%;
        /* right: 0; */



    }

}


@media (max-width:766px){
    .right-landing3 {
        position: absolute;
        top: -100%;
        /* right: 0; */
        display: none;
    }
}

.right-landing4{
    position: absolute;
    top: 15%;
    /* right: 0; */
    left: 13%;


}
.right-landing5{
    position: absolute;
    top: 50%;
    /* right: 0; */
    left: 13%;
    display: none;


}


.conference-date{
    color:#809e00;
}

.confernce-goal{
    position: relative;
}

.confernce-goal-image{
    position: absolute;
    left: 10%;
    display: none;
}

.confernce-sammary{
    text-align: justify;
    font-size: 23px;
    line-height: 2;
}

.fixedIcon {
    position: fixed;
    z-index: 9999;

    left: 40px;
    top: 50%;
}

.card-image > img {
    width: 120px;
}

@media(min-width:766px){

    .icon-list1{
        margin-bottom: -39px;
        width: 69%;
    }

}

.icon-list1{

    padding-top: 12px;
}



.sponsors img{
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: contain
}

@media(max-width:766px){

    .sponsors img{
        max-width: 50%;
        height: auto;
        aspect-ratio: 1 / 1;
        width: 100%;
        object-fit: contain;
        margin-top: 5px;
    }

    .sponserslogos{
        text-align: center;
    }

    .innerorderlist{
        font-size: 12px;
    }

    .tab button {
        display: block;
        width: 100%;
        padding: 10px;
        text-align: right;
        border: none;
        outline: none;
        transition: background-color 0.3s;
        font-size: 12px !important;
        font-weight: bold;
    }

}


.conference-name-landing{
    border: 10px solid transparent;
    padding: 15px;
    border-image: url("../images/border.png") 30 round;
    position: relative;
    z-index: 2;

}



.sponserslogos .sponsors {
    overflow: hidden;
    white-space: nowrap;
    padding-top: 25px;
}

.sponserslogos .sponsors .col-sm {
    display: inline-block;
    padding: 0 15px;
}

/* .sponserslogos .sponsors .col-sm img {
  animation: moveLeftRight 30s linear infinite;
} */

@keyframes moveLeftRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}




.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #87630c !important;
    font-weight: bold;
}








/***********/



.flex-container {
    display: flex;
    flex-direction: row;
}

.tab {
    width: 20%;
    height: auto;
    background-color: white;
}

.tab button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: right;
    border: none;
    outline: none;
    transition: background-color 0.3s;
    font-size: 20px;
    font-weight: bold;
}

.tab button:hover {
    background-color: #a8c671;
}

.tabcontent {
    width: 80%;
    padding: 20px;
}

.tabcontent ol {
    text-align: right;
    line-height: 3;
}



th{
    text-align: center;
}

.signinLogo{
    width: 119px
}


@media (max-width:766px){

    .conference-titele{
        font-size: 27px;
    }

}

.sponserslogos .container {
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    flex-direction: row-reverse;
    animation: marquee 30s linear infinite;
}


.icon-list {
    width: 150px;
    height: 130px;
    margin-right: 30px;
    margin-top:15px;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}


.summary{
    /*text-align: justify;*/
    /*font-size: 22px;*/


    text-align: justify;
    font-size: 24px;
    /* padding: 20px !important; */
    padding: 50px;
    line-height: 2.2;
    font-weight: bold;
}

@media  (max-width: 766px) {

    .summary{
        text-align: justify;
        font-size: 14px;

        padding: 20px;
        /*line-height: 2.2;*/
        font-weight: bold;
    }

}

.note{
    color: #bc9026;
    font-weight: bolder;
}





.conference-hint{
    font-size: 30px !important;
    color: #ffc107 !important;
}

@keyframes hintAnimation {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    50% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(-20px);
    }
  }
  
  #hint-container {
    position: relative;
    text-align: center;
    padding: 10px;
    display: flex;
  }
  
  #hint-text {
    display: inline-block;
    background-color: #ffc107;
    padding: 16px;
    border-radius: 5px;
   
  }
  
  #hint-text:hover {
    animation-play-state: paused;
  }
  


  .bell{
    display:block;
    width: 40px;
    height: 40px;
    font-size: 40px;
    margin:12px auto 0;
    color: #9e9e9e;
    -webkit-animation: ring 4s .7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s .7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s .7s ease-in-out infinite;
    transform-origin: 50% 4px;
  }
  
  @-webkit-keyframes ring {
    0% { -webkit-transform: rotateZ(0); }
    1% { -webkit-transform: rotateZ(30deg); }
    3% { -webkit-transform: rotateZ(-28deg); }
    5% { -webkit-transform: rotateZ(34deg); }
    7% { -webkit-transform: rotateZ(-32deg); }
    9% { -webkit-transform: rotateZ(30deg); }
    11% { -webkit-transform: rotateZ(-28deg); }
    13% { -webkit-transform: rotateZ(26deg); }
    15% { -webkit-transform: rotateZ(-24deg); }
    17% { -webkit-transform: rotateZ(22deg); }
    19% { -webkit-transform: rotateZ(-20deg); }
    21% { -webkit-transform: rotateZ(18deg); }
    23% { -webkit-transform: rotateZ(-16deg); }
    25% { -webkit-transform: rotateZ(14deg); }
    27% { -webkit-transform: rotateZ(-12deg); }
    29% { -webkit-transform: rotateZ(10deg); }
    31% { -webkit-transform: rotateZ(-8deg); }
    33% { -webkit-transform: rotateZ(6deg); }
    35% { -webkit-transform: rotateZ(-4deg); }
    37% { -webkit-transform: rotateZ(2deg); }
    39% { -webkit-transform: rotateZ(-1deg); }
    41% { -webkit-transform: rotateZ(1deg); }
  
    43% { -webkit-transform: rotateZ(0); }
    100% { -webkit-transform: rotateZ(0); }
  }
  
  @-moz-keyframes ring {
    0% { -moz-transform: rotate(0); }
    1% { -moz-transform: rotate(30deg); }
    3% { -moz-transform: rotate(-28deg); }
    5% { -moz-transform: rotate(34deg); }
    7% { -moz-transform: rotate(-32deg); }
    9% { -moz-transform: rotate(30deg); }
    11% { -moz-transform: rotate(-28deg); }
    13% { -moz-transform: rotate(26deg); }
    15% { -moz-transform: rotate(-24deg); }
    17% { -moz-transform: rotate(22deg); }
    19% { -moz-transform: rotate(-20deg); }
    21% { -moz-transform: rotate(18deg); }
    23% { -moz-transform: rotate(-16deg); }
    25% { -moz-transform: rotate(14deg); }
    27% { -moz-transform: rotate(-12deg); }
    29% { -moz-transform: rotate(10deg); }
    31% { -moz-transform: rotate(-8deg); }
    33% { -moz-transform: rotate(6deg); }
    35% { -moz-transform: rotate(-4deg); }
    37% { -moz-transform: rotate(2deg); }
    39% { -moz-transform: rotate(-1deg); }
    41% { -moz-transform: rotate(1deg); }
  
    43% { -moz-transform: rotate(0); }
    100% { -moz-transform: rotate(0); }
  }
  
  @keyframes ring {
    0% { transform: rotate(0); }
    1% { transform: rotate(30deg); }
    3% { transform: rotate(-28deg); }
    5% { transform: rotate(34deg); }
    7% { transform: rotate(-32deg); }
    9% { transform: rotate(30deg); }
    11% { transform: rotate(-28deg); }
    13% { transform: rotate(26deg); }
    15% { transform: rotate(-24deg); }
    17% { transform: rotate(22deg); }
    19% { transform: rotate(-20deg); }
    21% { transform: rotate(18deg); }
    23% { transform: rotate(-16deg); }
    25% { transform: rotate(14deg); }
    27% { transform: rotate(-12deg); }
    29% { transform: rotate(10deg); }
    31% { transform: rotate(-8deg); }
    33% { transform: rotate(6deg); }
    35% { transform: rotate(-4deg); }
    37% { transform: rotate(2deg); }
    39% { transform: rotate(-1deg); }
    41% { transform: rotate(1deg); }
  
    43% { transform: rotate(0); }
    100% { transform: rotate(0); }
  }

  

  .text-snippet {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: snipping 2s infinite, movement 5s infinite;
    background: #ffc107;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 9px;
    font-weight: 700;
  }

  @media(max-width:766px){
    .text-snippet {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        animation: snipping 2s infinite, movement 5s infinite;
        background: #ffc107;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 12px;
        padding-right: 12px;
        border-radius: 9px;
        font-size: 12px;
        font-weight: 700;
      }
  }
  

  
  @keyframes movement {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  
  