.slideshow-container{
    max-width: 100%;
    position: relative;
    margin: auto;
 /*   background: url(../image/tof-9.jpg) 0 0 no-repeat;*/
    background-size: cover;
    height: 100vh;
    background-color: var(--color-name-icons);
    overflow: hidden;
}

.myslides{

position: relative;
/* padding-top: 150px;*/
height: 100vh;
/*  background-color: black;*/
}
.prev,.next{
cursor: pointer;
position: absolute;
top:50%;
width: auto;
margin-top:-22px;
padding:16px;
color:var(--primary-txt-color);
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;  
border-radius: 0 3px 3px 0;
user-select: none;
background-color: rgba(0,0,0, 0.5);
z-index: 35;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;    
}
.prev:hover,.next:hover{
background-color: rgba(0,0,0,0.9);
}
.myslides h2 {
text-align: center;
font-size: 4em;/*80px*/
text-transform: uppercase;
/*   letter-spacing: 33px;*/
font-weight: 700;
line-height: 1.2;
position: absolute;
top: 100px;
left: 250px;
z-index: 25;
animation-duration: 1.2s;
animation-fill-mode: both;
animation-name: fadeInLeft;
}

.myslides h2 span {
display: block;
text-align: right;
font-size: 50px;
letter-spacing: 20px;
text-transform: capitalize;
padding-right: 20px;
color: var(--btn-bg-color);
animation: color-change 3s infinite;
}

.myslides .p_img {
position: absolute;
display: block;
width: auto;
left:450px;
bottom: 0px;
height:850px;
/*position: relative;*/
z-index: 20;
animation-duration: 1.2s;
animation-fill-mode: both;
animation-name: slideInRight;

}

.myslides .p_detail {
width: 350px;
position: absolute;
top: 100px;
right: 150px;
z-index: 30;
}

.myslides .p_detail h3 {
font-size: 50px;
font-weight: 700;
font-style: italic;
animation-duration: 1.2s;
animation-fill-mode: both;
animation-name: fadeInLeft;
}

.myslides .p_detail h3 i {
font-size: 18px;
color: var(--primary-txt-color);
}

.myslides .p_detail h3 i.rate {
color: #ffcb00;
}

.myslides .p_detail h4 {
font-size: 20px;
font-weight: 600;
margin-bottom: 15px;
animation-duration: 1.2s;
animation-fill-mode: both;
animation-name: fadeInLeft;
}

.myslides .p_detail p {
font-size: 1.2em;
font-weight: 300;
margin-bottom: 15px;
animation-duration: 1.2s;
animation-fill-mode: both;
animation-name: slideInRight;
}

.myslides .p_detail ul {
font-size: 14px;
font-weight: 300;
margin-bottom: 20px;
animation-duration: 1.2s;
animation-fill-mode: both;
animation-name: slideInRight;
}

.myslides .p_detail ul i {
color: #ffcb00;
}

.myslides .p_detail select {
display: inline-block;
border: 1px solid #ffcb00;
background: #ffcb00;
font-size: 14px;
font-weight: bold;
margin-right: 5px;
animation-duration: 1.2s;
animation-fill-mode: both;
animation-name: fadeInLeft;
}

.myslides .p_detail a {
/* font-size: 14px;
color: var(--primary-txt-color);
padding: 6px 20px;
display: inline-block;
border: 2px solid var(--primary-txt-color);
margin-right: 15px;
transition: 0.5s background-color;*/
animation-duration: 1.2s;
animation-fill-mode: both;
animation-name: fadeInUp;
}

/*  .myslides .p_detail a:hover {
background-color: #a10a05;
}*/

.myslides .p_detail span {
display: inline-block;
font-size: 20px;
font-weight: 700;
animation-duration: 1.2s;
animation-fill-mode: both;
animation-name: slideInRight; 
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes fadeInUp {/*du bas vers le haut*/
from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}

@keyframes fadeInUp {
from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}

@-webkit-keyframes slideInRight {
from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
}

to {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity:1
}
}

@keyframes slideInRight {
from {
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
}

to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
}

@-webkit-keyframes fadeInLeft {
from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}

@keyframes fadeInLeft {
from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}

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

@-webkit-keyframes fadeInUp {
from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}

@keyframes fadeInUp {
from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
}
@keyframes color-change {
    0% { color: whitesmoke; }
    50% { color: yellowgreen; }
    100% { color: white; }
  }
@media all and (max-width: 1500px) {
    .myslides h2 {
        /* font-size: 80px;*/
         top: 250px;
         left: 40px;
     }
     .myslides h2 span{
     text-align: left;
     font-size: 50px;
     letter-spacing: 5px;
     text-transform: capitalize;
     padding-right: 16px;
     }
     .myslides .p_detail {
         font-size:20px ;
         top: 300px;
         right: 40px;
     }
     .myslides .p_img {
         left:150px;
         height:800px;
         top: 150px;
         
     }
}
@media all and (max-width: 1200px) {
    .myslides h2 {
       /* font-size: 80px;
        top: 250px;
        left: 25px;*/
        top: 100px;
        left: 25px;
        font-size: 50px;
    }
    .myslides h2 span{
    text-align: left;
    font-size: 50px;
    letter-spacing: 5px;
    text-transform: capitalize;
    padding-right: 16px;
    }
    .myslides .p_detail {
        font-size:20px ;
        top: 100px;
        right: 20px;
    }
    .myslides .p_img {
        left:200px;
        height:600px;
        top: 150px;
        
    }
    #service-section, #pricing-section{
        padding: 2%;
        
    }

}
@media all and (max-width: 1024px) {
    .myslides h2 {
       /* font-size: 80px;*/
     /*   top: 250px;*/
        left: 25px;
    }
    .myslides h2 span{
    text-align: left;
    font-size: 50px;
    letter-spacing: 5px;
    text-transform: capitalize;
    padding-right: 16px;
    }
    .myslides .p_detail {
        font-size:20px ;
      /*  top: 300px;*/
        right: 20px;
    }
    .myslides .p_img {
        left:25px;
        height:800px;
        top: 150px;
        
    }

}
    @media all and (max-width: 800px) {
        .myslides h2 {
           font-size: 4em;
                top: 200px;
            left: 25px;
        }
        .myslides h2 span{
        text-align: left;
        font-size: 50px;
        letter-spacing: 5px;
        text-transform: capitalize;
        padding-right: 16px;
        }
        .myslides .p_detail {
            font-size:20px ;
            top: 500px;
            left: 20px;
        }
        .myslides .p_img {
            right:-25px;
            height:800px;
            bottom: 0px;
        }
    
      
/*    .card{
        width: 100% !important;
    }
    #pricing-section, .service-section{
        padding: 0;
    }
    .pricing-table{
        width: 100% !important;
    }
    #login-lightbox,#register-lightbox{
        margin-top: 15px;
        z-index: 999999;
     }
    #login-lightbox h3,#register-lightbox h3{
       margin: 0;
    }
    #login-lightbox .left-pane,#register-lightbox .left-pane{
        display: none;
    }
    #login-lightbox .help,#register-lightbox .help{
        display: none;
    }
    .header-1.fixedbar{
        
    }
    .prev,.next{

        top:50%;
    }*/

}
@media all and (max-width: 500px) {

    .slideshow-container{
        max-width: 100%;
        position: relative;
        margin: auto;
     /*   background: url(../image/tof-9.png) 0 0 no-repeat;*/
    
        background-size: cover;
        height: 100vh;
       
        overflow: hidden;
}
    .myslides{
        height:100vh;
    }
    .myslides h2 {
        font-size:25px ;
        top: 60px;
        left: 25px;
    }
    .myslides h2 span{
    text-align: left;
    font-size: 35px;
    letter-spacing: 5px;
    text-transform: capitalize;
    padding-right: 20px;
    
    }
    .myslides .p_detail {
        font-size:10px ;
        top: 320px;
        left: 25px;
    }
    .myslides .p_img {
        position: absolute;
        left:50px;
        height:600px;
              bottom: 0px;
              width: 100%;
    }
    .myslides .p_detail h3 {
        font-size: 18px;
      margin-bottom: 10px;
      color: var(--secondary-bg-color);
    }
    .myslides .p_detail h4 {
        font-size: 15px;
        width: 40%;
    }
    .myslides .p_detail p{
display: none;
    }
 
    .prev,.next{

        top:40%;
    }
    .sec-title{
        font-size: 30px;
        line-height: 35px;
        font-weight: 400;
    }

}