body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    
}
*,
*:before,
*:after{
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}

hr{
    display: block;
    width: 100%;
    height: 1px;
    border: 0;
    background-color:#e5e5e5;
    margin: 40px 0;
}

/*-----Page-----------*/
.page{
    overflow: hidden;
}

/*--------  container---------  */
.container{
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;  
}

/*---- intro ------*/
.intro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    min-height: 820px;
    position: relative;
    background: url("../img/fon/Mester-pe-ora-moldova.jpg") center
        no-repeat;
    -webkit-background-size: cover;
    background-size: cover;  
    
}
.intro_inner{
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
   
}

.intro_title{
    color: #fff;
    font-size: 75px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.intro_title:after{
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #fff;
    margin: 30px auto 50px;
    
}


.intro_suptitle{
    margin-bottom: 20px;
    font-size: 65px;
    color: #fff;
    font-family: 'Kaushan Script', cursive;
}

/*----- header ------*/
.header{
    width: 100%;
    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 30px;
   
}

.header.fixed{
    padding: 0 0;
    background-color: #eb8b8d;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translate3d(0, 0, 0);
}

.header.active{
    background-color: #eb8b8d;
}


.header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    
}

.header_logo{
    /*border: 3px solid #fff;*/
    padding: 10px;
    
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

/*----- nav -----*/
.nav{
    font-size: 14px;
    text-transform: uppercase;  
}

.nav_link{
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color .1s linear;
}

.nav_link:after{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fce38a;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity .1s linear;
      
}

.nav_link:hover{
    color: #fce38a;
    
}

.nav_link:hover:after,
.nav_link.active:before{
    opacity: 1;
}

.nav_link.active{
    color: #fce38a;
    
}

/* ---burger-menu_button--*/

.burger-menu_button{

    width: 30px;
    padding: 0 0;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 30;
    font-size: 0;
    color: transparent;
    border: 0;
    background: none;
    cursor: pointer; 
    
      
}


.burger-menu_button:focus{
    outline: 0;
}

.burger-menu_lines,
.burger-menu_lines::after,
.burger-menu_lines::before{
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
}

.burger-menu_lines{
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.burger-menu_lines::before{
    content: '';
    top: -8px;
}
.burger-menu_lines::after{
    content: '';
    top: 8px;
}

.burger-menu_active .burger-menu_lines{
    background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before{
    top: 0;
    transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after{
    top: 0;
    transform: rotate(-45deg);
}

.burger-menu_nav{
    position:fixed;
    z-index: 20;
    display:none;
    flex-flow: column;
    height: 100vh;
    background-color: #eb8b8d;
    right: -100%;
   
}

.burger-menu_active .burger-menu_nav{
    right: 0;
} 




.burger-menu_link{
    padding: 7px;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    transition: color .1s linear;
    
}
.burger-menu_link:hover{
    color: #fce38a;
}



.burger-menu_link_md{
   /* border: 3px solid #fce38a; */
    color: #fce38a;
}


.burger-menu_overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
}

.burger-menu_active .burger-menu_overlay{
    display: block;
    
}

/*-----button-----*/

.btn{
    display:inline-block;
    vertical-align: top;
    padding: 5px 30px;
    
    border: 3px solid #fff;
    
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .1s linear, color .1s linear;
}

.btn:hover{
    background-color: #fff;
    color: #333;
}

/*---- section ----*/
.section{
    padding: 80px 0;
}

.section--devices{
    margin-bottom: 40px;
    padding-bottom: 0;

    background: url("../img/reclam/onlymaster.jpg") center
        no-repeat;
    -webkit-background-size: cover;
    background-size: cover;   
}



.section_header{
    width: 100%;
    max-width: 950px;
    margin: 0 auto 50px;
    text-align: center;
}

.section_suptitle{
    font-family: 'Kaushan Script', cursive;
    font-size: 24px;
    color: #333;
}

.section_title{
    font-size: 30px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}


.section_title:after{
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 30px auto;
    background-color: #f38181;
}

.section_text{
    font-size: 15px;
    color: #999;
    
}


/*-------Galerie(rind 1)--------*/


.rind{
    margin: 80px -15px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

.exemplu{
    width: 33.33333%;
    padding: 0 15px; 
    position: relative;
}
.fotka img{
    display: block;
    max-width: 100%;
    height: auto;
}


.numar{

    font-size: 20px;
    position: relative;
    color: #333;
    text-decoration: none; 
    display:block;  
    margin: 10px 10px; 
    text-align: center;
}


/*----/GALERIA(SFIRSIT)--*/


/*----statistics----*/

.statistics{
    background-color: #95e1d3;
}

.stat{
    display: flex;
    flex-wrap: wrap;
}

.stat_item{
    flex: 1 1 0;
    border-left: 1px solid #b5eae0; 
    text-align: center;
    color: #fff;
    padding: 70px 25px; 
}

.stat_item:last-child{
    border-right: 1px solid #b5eae0; 
    
} 

.stat_count{
    margin-bottom: 10px;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.stat_text{
    font-size: 14px;
    text-transform: uppercase;
}

/*----services----*/

.services{
    display: flex;
    flex-wrap: wrap;
    
}

.services_item{
    width: 33.33333%;  
    padding: 0 35px 40px 85px;
    position: relative;
    margin-bottom: 40px;
}

.services_item-border{
    border-bottom: 1px solid #e5e5e5;
}

.services_icon{
    position: absolute;
    top: 0;
    left: 28px;
    z-index: 1;
        
}

.services_title{
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    
}

.services_text{
    font-size: 15px;
    color: #999;
    
}

/* ----devices----*/

.devices{
    width: 100%;
 /*   max-width: 600px;  */
    margin: 0 auto;
    position: relative;   
}

.devices_item{
    display: block;
    max-width: 100%;
    height: auto;
}

.devices_item--iphone{
    position: absolute;
    bottom: -60px;
    right: 0;
    z-index: 1;
    
}

/*--CINE NOI SUNTEM-----*/


.card{
    margin-top: 80px -15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}

.card_item{
    width: 33.33333%;
    padding: 0 15px;
    
}
.card_inner{
    position: relative;
    background-color: #95e1d3;
    
}
.card_item:hover 
.card_img {
    transform: translate3d(-10px, -10px, 0);
}

.card_item:hover 
.card_img img{
    opacity: 0.1;
}

.card_item:hover .card_text{
    opacity: 1;
}
.card_img{
    background: linear-gradient(to bottom, #f38181, #fce38a);
    transition: transform .2s linear;
   
    
}

.card_img img{
    display: block;
    max-width: 100%;
    height: auto;
    transition: opacity .1s linear;
}

.card_text{
    width: 90%;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    transform: translate3d(0, -50%, 0);
    transition: opacity .2s linear;
    opacity: 0;
   

}

.card_info{
    margin-top: 20px;
    text-align: center;
    
}


.card_name{
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 5px;
    
}

.card_prof{
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    color: #999;
}

/*---CONTACTE(footer)--
.section_suptitle-var{
    margin-top: -80px;
}--*/
.contacte{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.tel{
    flex-wrap: nowrap;
}
.email{
    flex-wrap: nowrap;
}
.retele{
    display: block;
    flex-wrap: nowrap;
}
.contact_title{
    font-size: 20px;
    color: #333;
}

.contact_text{
    font-size: 30px;
    color: #333;
    
}

/*-----FOOTER------*/
.footer{
    padding-top: 65px;
    background-color: #f8f8f8;
}
.footer_inner{
    flex-wrap: wrap;
    padding-bottom: 65px;
    justify-content: space-between;
    margin: 0 -15px;
    display: flex;
}

.footer_col{
    padding: 0 15px;
}

.footer_col_first{
    width: 40%;
}
.footer_col_second{
    width: 29%;
}
.footer_col_third{
    width: 22%;
}

.footer_logo{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    color: #ccc;
}

.footer_text{
    margin-bottom: 30px;
    font-size: 15px;
    color: #999;
}

.footer_social{
    margin-bottom: 25px;
}

.footer_social_header{
    padding-bottom: 15px;
    font-size: 20px;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.footer_social_content{
    display: inline-block;
    padding-top: 15px;
    font-size: 15px;
    color: #999;
    font-style: italic;
    font-weight: 300;
    
}

.footer_title{
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
}



.ikonki{
    position: relative;
    display: inline-block;
    
}

.ikonka{
    display: inline-block;
    position: relative;
    margin-left: 10px;
}


.footer_social_header b{
    font-size: 18px;
}

/*----blogs--------*/

.blogs_item{
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    
}

.blogs_img{
    width: 120px;
    height: 80px;
}

.blogs_content{
    padding-left: 20px;
}

.blogs_title{
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.5;
    
}

.blogs_title:hover{
    text-decoration: underline;
    
}

.blogs_date{
    font-size: 13px;
    color: #999;
    font-style: italic;
    font-weight: 300;
}


/*----instagram-----*/

.instagram{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.instagram_item{
    width: 33%;
    border-bottom: 1px solid #fff;

}

.instagram_item img{
    display: block;
    max-width: 100%;
    height: auto;
}

/*-----copyright-----*/

.copyright{
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: #333;
    text-align: center;
}


/*------EXEMPLU-----------------------------------*/


/*----header_exemplu----*/
.header_exemplu{
     padding: 0 0;
    background-color: #eb8b8d;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translate3d(0, 0, 0);
    z-index: 2;
}

/*-----nav_link_ru-----*/
.nav_link_md{
    display: inline-block;
    border: 3px solid #fce38a;
    font-size: 11px;
    padding: 0 3px;
    font-weight: 700;
       
}

.nav_link_ru{
    display: inline-block;
    border: 3px solid #fff;
    font-size: 11px;
    padding: 0 3px;
    font-weight: 700;
       
}

.nav_link_ru:hover{
    border: 3px solid #fce38a;
    color: #fff;
}

.nav_link_md:hover{
    border: 3px solid #fce38a;
    color: #fff;
}

/*---burger (inapoi)----*/

.burger-menu_inapoi{
    width: 30px;
    padding: 0 0;
    position: absolute;
    top: 0;
    right: 24px;
    z-index: 30;
    font-size: 0;
    color: transparent;
    border: 0;
    background: none;
    cursor: pointer;
    text-decoration: none;
}
.inapoi{
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    cursor: pointer;
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    
}

/*----section--gray----*/
.section--gray{
    margin-top: -100px;
    background-color: #f8f8f8;
    padding: 50px 0;
}

/*---Reviews(exemplu)---*/

.reviews{
    position: relative;
}
.reviews .slick-slider{
    padding: 0 190px;   
    
}

.reviews_item{
    position: relative;
    text-align: center; 

}

.reviews_photo{
    position:relative;
    width: 100%;
/*    max-width: 750px; */
    z-index: 1;
    text-align: center;
    
}

.reviews_photo img{
    display: block;
    max-width: 100%;
    height: auto;
  
    
}
/*
.slick-list{
    position:relative;
    width: 100%;
 /*   max-width: 750px; 
    z-index: 1;
    text-align: center;
}
/*
.draggable{
    width: 100%;
    height: 100%;
    text-align: center;
    position:relative;
    display: block;
}

*/
.slick-arrow{
    display: block;
    font-size: 0;
    color: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    
    border: 0;
    background: none;
}

.slick-arrow:focus{
    outline: 0;
}

.slick-arrow:after{
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border-top: 5px solid #eb8b8d;
    border-left: 5px solid #eb8b8d;
   
        
}

.slick-prev{
    transform: rotate(-45deg);
    left: 15px;
}

.slick-next{
    transform: rotate(135deg);
    right: 15px;
}


/*------variante-----*/
.section_variante{
    margin-top: -50px;
}
.variante{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.varianta_numar{
    display: block;
    flex-wrap: nowrap;
    width: 100%;
        max-width: 450px;
        margin-bottom: 30px;
}
.varianta_title{
    font-size: 25px;
    color: #333;
    font-weight: 700;
}

.varianta_text{
    font-size: 19px;
    color: #333;
    padding-bottom: 30px;
    
}


/*--------FORMA--------------------------------*/
.page-wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
}
a.butn {
  width: 200px;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0;
  background: #eb8b8d;
}
.modal-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0; 
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background: rgba(0, 0, 0, 0.5);
}
.modal-wrapper.open {
  opacity: 1;
  visibility: visible;
    z-index: 50;
    
}
.modal {
  width: 500px;
  display: block;
  margin: 30% 0 0 -250px;
  position: relative;
  top: 50%; 
  left: 50%;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #fafafa;
}
.modal-wrapper.open .modal {
  margin-top: -200px;
  opacity: 1;
}
.head{
  width: 100%;
  height: 100%;
  margin: 0 0 14px;
  padding: 5px 30px;
  overflow: hidden;
  position: absolute;
}
.btn-close {
  font-size: 28px;
  display: block;
  float: right;
  color: #fff;
}
.modal .content {
  padding: 0 0 20px 0;
}
.good-job {
  text-align: center;
  
  color: #e2525c;
}
.good-job .fa-thumbs-o-up {
  font-size: 60px;
}
.good-job h1 {
  font-size: 45px;
}
.form_modal_window{
  max-width: 70%;
  display: flex;
  flex-direction: column;
  margin: auto;
}
.modal .content .text{
  background: url("../Bright-Purple-Wallpaper-59-images.jpg");
  color: #fff;
  padding: 10px;
  margin: 20px 0;
}
.modal .content .text h2{
  margin:0;
  font-size: 35px;
}
.modal .content .text p{
  margin:0;
  font-size: 14px;
}
.modal-wrapper{
  margin: 0 0 20px 0;
}
.modal .content form input {
  color: #000;
  padding: 15px;
  border: none;
  margin-bottom: 15px;
  box-shadow: 0px 1px 3px 1px #e9e9e9;
  font-size: 15px;
}
.modal .content form input[type=submit]{
  padding: 10px 40px;
  max-width: 200px;
  margin: auto;
  border-radius: 54px;
  color: #fff;
  background: #f7b231;
  background: -moz-linear-gradient(top, #ffc281 0%, #ff8c97 100%);
  background: -webkit-linear-gradient(top, #ffc281 0%, #ff8c97 100%);
  background: linear-gradient(to bottom, #ffc281 0%, #ff8c97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$color-yellow', endColorstr='$color-pink', GradientType=0);
  font-size: 15px;
  text-shadow: 0px 0px 6px #e54242;
  display: inline-block;
  border: none;
  outline: none;
}

/*-------/FORMA----------------------------------*/



/*---Footer_inner_exemplu--
.footer_social_exemplu{
    width: 100%;
    display: block;
    text-align: center;
}
*/
.footer_exemplu{
    padding: 20px 0;
    
}

.footer_col_exemplu{
    width: 100%;
    display: block;
    text-align: center;
}
.footer_social_header_exemplu{
    border-bottom:0;
    margin-bottom:-20px;
    font-size: 30px;
}
.footer_social_content_exemplu{
    font-size: 20px;
}

.copyright_exemplu{
    margin-top: -60px;
    margin-bottom: -20px;
}


@media (max-width: 1200px){
    /*----intro-----*/
    .intro_suptitle{
        font-size: 47px;
    }
    .intro_title{
        font-size: 75px;
    }
    /*---header_logo---*/

    .header_logo{
        font-size: 30px;
    }
    /*----nav----*/
    .nav{
        font-size: 14px;
    }
        /*----contacte----*/
    
    .contact_text{
    font-size: 27px;  
    }
/*---Reviews(exemplu)--*/    
    .reviews .slick-slider{
    padding: 0 150px;}
    
    .slick-prev{
    left: 30px;
}

.slick-next{
    right: 30px;
}

}


@media (max-width: 990px){
    /*----intro-----*/
    .intro_suptitle{
        font-size: 32px;
    }
    .intro_title{
        font-size: 60px;
    }
    
    /*---header_logo---*/

    .header_logo{
        font-size: 22px;
    }
    /*---stat------*/
    .stat{
        justify-content: center;
    }
    .stat_item{
        flex: none;
        width: 33.33333%;
        border: 0;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .stat_item:last-child{
        border-right: 0;
    }
    
    /*----services----*/
    .services_item{
        width: 50%;
        padding-bottom: 0;
    }
    .services_item-border{
        border-bottom: 0;
    }
    /*----contacte----*/
    
    .contact_text{
    font-size: 23px;  
    }
    
    /*----Footer-------*/
    .footer_col_first{
        width: 100%;
    }
    .footer_col_second,
    .footer_col_third{
        width: 50%;
    }
    
    /*-----Instagram----*/
    .instagram{
        justify-content: flex-start;
    }
    .instagram_item{
        width: auto;
        border-right: 1px solid white;
    }
    
/*---Reviews(exemplu)---*/
    .reviews .slick-slider{
        padding: 0 70px;
    }
    .sick-prev{
    left: 10px;
}

.slick-next{
    right: 10px;
}

.varianta_text{
    padding-bottom: 15px;    
}

a.butn{
        padding: 12px;
    }    

@media (max-width: 770px){
    
    /*----intro------*/
    .intro{
        min-height: 650px;
    }
    .intro_suptitle{
        font-size: 32px;
    }
    .intro_title{
        font-size: 50px;
    }
    /*-----header------*/
    .header{
        padding: 10px 0;
    }
    
     /*---header_logo---*/
    .header_logo{
        font-size: 18px;
}
    /*----nav--*/
    .nav{
        display: none; 
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #eb8b8d;
    }
    
.burger-menu_lines{
    display: block;
}

.burger-menu_nav{
    display:flex;
      
}

.inapoi{
    display: block;
    }

   
    /*---section----*/
    .section{
        padding: 50px 0;
    }
    .section_devices{
        padding-bottom: 0;
    }
    /*-----rind-----*/
    .rind{
        justify-content: center;
    }
    
    /*-galerie(exemplu)-*/
    .exemplu{
       width: 100%;
        max-width: 410px;
        padding-bottom: 30px;
    }
        
    
     /*----services----*/
    .services{
        justify-content: center;
    }
    .services_item{
        width: 100%;
        max-width: 400px;
        padding-left: 55px;
        padding-right: 0;
    }    
    .services_icon{
        left: 0;
    }
    
    /*-------card-----*/
    .card{
        justify-content: center;
    }
    .card_item{
        width: 100%;
        max-width: 410px;
        margin-bottom: 30px;
    }
    .card_info{
        margin-top: 7px;
    }
    .card_name{
        margin-bottom: 2px;
    }
 /*----contacte----*/
    .contacte{
        justify-content: center;
    }
    .tel{
    width: 100%;
        max-width: 410px;
        margin-bottom: 30px;
      }
    .email{
    width: 100%;
        max-width: 410px;
        margin-bottom: 30px;
      }
    .retele{
        width: 100%;
        max-width: 410px;
        margin-bottom: 30px;
    }
    
    .contact_title{
        font-size: 15px;
        text-align: center;
    }
    .contact_text{
    font-size: 17px;
        margin-top: -24px;
        text-align: center;
    }
    /*----Footer-------*/
    
    .footer_col_second,
    .footer_col_third{
        width: 100%;
    }
/*--------Exemplu----*/  /*------Variante----*/ 
    .variante{
        justify-content: center;
    }
    
    .varianta_numar{
        justify-content: center;
        padding-top: 20px;
    }
 /*----section--gray----*/
.section--gray{
    margin-top: -80px;
    background-color: #f8f8f8;
    padding: 20px 0;
}
/*----Reviews(exemplu)---*/
    .reviews .slick-slider{
        padding: 0 40px;
    }
    .slick-prev{
    left: 0;
}

.slick-next{
    right: 0;
}
    .footer_social_header_exemplu{
    font-size: 20px;
}
.footer_social_content_exemplu{
    font-size: 15px;
}
    
/*----varianta text--*/    
.varianta_text{
    padding-bottom: 20px;
    }

/*----buton(forma)--*/    
a.butn {
    width: 150px;
    padding: 10px;
    }
}
    
    
@media (max-width: 575px){
    /*----intro-----*/
    
    .intro_suptitle{
        font-size: 22px;
    }
    .intro_title{
        font-size: 33px;
    }
  
    /*---section----*/
    .section_header{
        margin-bottom: 50px;
    }
    .section_suptitle{
        font-size: 20px;
    }
    .section_title{
        font-size: 24px; 
    }
    .section_title:after{
        margin: 20px auto;
    }
    /*---stat------*/
    .stat_item{
        width: 100%;
        border-bottom: 1px solid #b5eae0;
    }
    .stat_item:last-child{
        border-bottom: 0;
    }
    .stat_count{
        font-size: 52px;
    }
    
    /*---devices-----*/
    .devices{
        max-width: 300px;
    }
    .devices_item--iphone{
        width: 140px;
        bottom: -50px;
        right: -10px;
    }
    
    /*----Blogs-------*/
    .blogs_img{
        width: 80px;
        height: 50px;
    }
    .blogs_title{
        font-size: 10px;
    }
    
/*------Exemplu-----*/
/*---Btn(after) ---*/    
    .slick-arrow:after{
    width: 15px;
    height: 15px;
    border-top: 3px solid #eb8b8d;
    border-left: 3px solid #eb8b8d;
   
        
}
/*---Reviews(exemplu)--*/
    .reviews .slick-slider{
        padding: 0 25px;
    }
    
    .varianta_title{
    font-size: 19px;
    
}

.varianta_text{
    font-size: 16px;
}

a.butn {
    
    font-size: 12px;
    }
}

.modal {
  width: 280px;
  margin: 30% 0 0 -140px;
  
}
.modal-wrapper.open .modal {
  margin-top: -200px;
  opacity: 1;
}
.head{
  width: 100%;
  height: 100%;
  margin: 0 0 14px;
  padding: 5px 30px;
  overflow: hidden;
  position: absolute;
}
.btn-close {
  font-size: 28px;
  display: block;
  float: right;
  color: #fff;
}
.modal .content {
  padding: 0 0 20px 0;
}
.good-job {
  text-align: center;
  
  color: #e2525c;
}
.good-job .fa-thumbs-o-up {
  font-size: 60px;
}
.good-job h1 {
  font-size: 45px;
}
.form_modal_window{
  max-width: 70%;
  display: flex;
  flex-direction: column;
  margin: auto;
}
.modal .content .text{
  background: url("../Bright-Purple-Wallpaper-59-images.jpg");
  color: #fff;
  padding: 10px;
  margin: 20px 0;
}
.modal .content .text h2{
  margin:0;
  font-size: 35px;
}
.modal .content .text p{
  margin:0;
  font-size: 14px;
}
.modal-wrapper{
  margin: 0 0 20px 0;
}
.modal .content form input {
  color: #000;
  padding: 15px;
  border: none;
  margin-bottom: 15px;
  box-shadow: 0px 1px 3px 1px #e9e9e9;
  font-size: 15px;
}
.modal .content form input[type=submit]{
  padding: 10px 40px;
  max-width: 200px;
  margin: auto;
  border-radius: 54px;
  color: #fff;
  background: #f7b231;
  background: -moz-linear-gradient(top, #ffc281 0%, #ff8c97 100%);
  background: -webkit-linear-gradient(top, #ffc281 0%, #ff8c97 100%);
  background: linear-gradient(to bottom, #ffc281 0%, #ff8c97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$color-yellow', endColorstr='$color-pink', GradientType=0);
  font-size: 15px;
  text-shadow: 0px 0px 6px #e54242;
  display: inline-block;
  border: none;
  outline: none;
}

/*-------/FORMA----------------------------------*/    
    
    
}



























