main{
    margin-left: 12.5%;
    animation: showContent 1.5s;
}
.title{
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 33px;
    color: #272B38;
    margin-top: 5%;
}
.title a{
    color: rgba(74, 143, 182, 1);
}
.itc-slider{
    margin-top: 5%;
    display: flex;
    width: 90%;
    /* height: 75vh; */
    align-items: center;
    justify-content: center;
    margin-left: -2%;
}
.itc-slider__wrapper{
    width: 80%;
    /* height: 100%; */
}
.img-block{
    width: 100%;
    height: 100%;
}
.itc-slider__item{
    height: 100%;
    flex: 0 0 31.3333333333%;
    max-width: 31.3333333333%;
    padding: 0 1%;
}
.img-slider-block{
    height: 100%;
    width: 95%;
}
.itc-slider__items{
    display: flex;
    width: 100%;
}
.itc-slider__btn::after{
    width: 0;
    height: 0;
    display: none;
}
.itc-slider__btn::before{
    width: 0;
    height: 0;
    display: none;
}
.itc-slider__btn{
    background: none;
    border: none;
    display: none;

}
.itc-slider__btn{
    padding: 0.3%;
    border: 2px solid #FF284C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select:none;
}
.itc-slider__btn:hover{
    box-shadow: 0px 0px 10px rgba(255, 40, 76, 0.5);
    background-color: #fff;

}
.itc-slider__btn img{
    width: 45%;
}
.write-review-block{
    margin-top: 2%;
    width: 85%;
}
.title-write-review{
    font-family: 'Nunito Regular', 'Comfortaa' ;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 110%;
    color: #272B38;
    margin: 0 0 1% 0;
}
.write-block{
    height: 35vh;
    width: auto;
    margin-top: 3.5%;
    display: flex;
}
.name-img-box{
    width: 40%;
    height: auto;
}
.name-input-review {
    display: block;
    width: 100%;
    height: 18%;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
}
.review-btn{
    background: #FF284C;
    border-radius: 8px;
    color: #fff;
    width: 100%;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    border: none;
    height: 15%;
    margin: 2% 0;
    cursor: pointer;
}
.choice-imgs-box{
    width: 100%;
    height: 28%;
}
.choice-img{
    height: 100%;
    margin: 0 4% 0 0;
}
.name-img-box p {
    margin: 2% 0;
    width: 100%;
    height: 20%;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 14px;
    color: #7E8189;
}
input[type="file"] {
    display: none;
}
.custom-file-upload {
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    width: 100%;
}
.custom-file-upload img{
    width: 3%;
}
.textarea-box{
    width: 60%;
    height: 100%;
}
.textarea-box textarea{
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    resize: none;
    width: 90%;
    height: 89%;
    margin:  0  0 0  5%;
    padding: 2% 2%;
    outline: none;
    background: #E9EAEB;
    border-radius: 8px;
    border: none;

}
.value-block{
    width: 100%;
    margin-top: 4%;
    margin-bottom: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.review{
    width: 48%;
    min-height: 2vh;
    background-color: #fff;
    box-shadow: 0px 5px 24px rgba(27, 0, 0, 0.2);
    border-radius: 10px;
    margin: 1.5% 0%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}
.user-name-review{
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    /* identical to box height */
    color: #272B38;
    padding: 3% 2% 1% 2%;
    width: 100%;
}
.review-txt{
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    /* identical to box height */
    padding: 2% ;
    color: #7E8189;
    width: 100%;
}
@keyframes showContent {
    0% {opacity: 0.5; margin-left: 11%; margin-top: 5%;}
    100% {opacity: 1; margin-left: 12.5%;}
}

.choice-img{
    border-radius: 10px;
    height: 50px;
}
.alert-txt{
    text-align: center;
    font-size: 18px;
    font-family: 'Nunito Sans';
    font-weight: 400;
    color: #272B38;
    margin-top: 3%;
    opacity: 1;
    display: none;
    animation-name: showAlertTxt;
    animation-duration: 0.8s;
}


.review-img{
    width: 70px;
    height: 70px;
    border-radius: 10px;
    padding: 1% 2%;
}
@keyframes showAlertTxt {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes hideAlertTxt {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}




@media only screen and (max-width: 600px) {
    .itc-slider__btn.itc-slider__btn_prev,.itc-slider__btn.itc-slider__btn_next{
        display: none;
    }
    .itc-slider__items {
        counter-reset: slide;
    }
    .itc-slider__wrapper{
        width: 500px;
    }
    .itc-slider__item{
        flex: 0 0 100%;
      max-width: 100%;
      counter-increment: slide;
      height: 100%;
      position: relative;
    }
    .write-block{
        display: flex;
        flex-direction: column-reverse;
    }
    .name-img-box{
        width: 100%;
    }
    .textarea-box{
        width: 100%;
    }
    .textarea-box textarea{
        width: 93%;
        height: 87%;
        margin:0;
        padding: 8px 10px;
    }
    .write-block{
        height: 400px;
    }
    .name-img-box{
        height: 450px;
    }
    .review{
        width: 100%;
    }
    .user-name-review{
        font-size: 14px;
    }
    .review-img{
        width: 45px;
        height: 45px;
    }
    .review-txt{
        font-size: 13.5px;
    }
}
.swiper-pagination{
    position:absolute;
    text-align:center;
    transition:opacity .3s;
    transform:translate3d(0,0,0);
    z-index:10
}
.swiper-pagination.swiper-pagination-hidden{
    opacity:0
}
.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{
    display:none!important
}
.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{
    bottom:10px;
    left:0;
    width:100%
}
.swiper-pagination-bullets-dynamic{
    overflow:hidden;
    font-size:0
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{
    transform:scale(.33);
    position:relative
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{
    transform:scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{
    transform:scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{
    transform:scale(.33)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{
    transform:scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{
    transform:scale(.33)
}
.swiper-pagination-bullet{
    width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
    display:inline-block;
    border-radius:50%;
    background:var(--swiper-pagination-bullet-inactive-color,#000);
    opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)
}
button.swiper-pagination-bullet{
    border:none;
    margin:0;
    padding:0;
    box-shadow:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none
}
.swiper-pagination-clickable .swiper-pagination-bullet{
    cursor:pointer
}
.swiper-pagination-bullet:only-child{
    display:none!important
}
.swiper-pagination-bullet-active{
    opacity:var(--swiper-pagination-bullet-opacity,1);
    background:var(--swiper-pagination-color,var(--swiper-theme-color))
}
.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{
    right:10px;
    top:50%;
    transform:translate3d(0,-50%,0)
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;
    display:block
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
    top:50%;
    transform:translateY(-50%);
    width:8px
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{
    display:inline-block;
    transition:transform .2s,top .2s
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)
}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
    left:50%;
    transform:translateX(-50%);
    white-space:nowrap
}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{
    transition:transform .2s,left .2s
}
.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{
    transition:transform .2s,right .2s
}
.swiper-pagination-progressbar{
    background:rgba(0,0,0,.25);
    position:absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background:var(--swiper-pagination-color,var(--swiper-theme-color));
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    transform:scale(0);
    transform-origin:left top
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    transform-origin:right top
}
.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{
    width:100%;
    height:4px;
    left:0;
    top:0
}
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{
    width:4px;
    height:100%;
    left:0;
    top:0
}
.swiper-pagination-lock{
    display:none
}

.swiper{
    margin-left:auto;
    margin-right:auto;
    position:relative;
    overflow:hidden;
    list-style:none;
    padding:0;
    z-index:1
}
.swiper-vertical>.swiper-wrapper{
    flex-direction:column
}
.swiper-wrapper{
    position:relative;
    width:100%;
    height:100%;
    z-index:1;
    display:flex;
    transition-property:transform;
    box-sizing:content-box
}
.swiper-android .swiper-slide,.swiper-wrapper{
    transform:translate3d(0,0,0)
}
.swiper-pointer-events{
    touch-action:pan-y
}
.swiper-pointer-events.swiper-vertical{
    touch-action:pan-x
}
.swiper-slide{
    flex-shrink:0;
    width:100%;
    height:100%;
    position:relative;
    transition-property:transform
}
.swiper-slide-invisible-blank{
    visibility:hidden
}
.swiper-autoheight,.swiper-autoheight .swiper-slide{
    height:auto
}
.swiper-autoheight .swiper-wrapper{
    align-items:flex-start;
    transition-property:transform,height
}
.swiper-backface-hidden .swiper-slide{
    transform:translateZ(0);
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
}
.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{
    perspective:1200px
}
.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{
    transform-style:preserve-3d
}
.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:10
}
.swiper-3d .swiper-slide-shadow{
    background:rgba(0,0,0,.15)
}
.swiper-3d .swiper-slide-shadow-left{
    background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-3d .swiper-slide-shadow-right{
    background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-3d .swiper-slide-shadow-top{
    background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-3d .swiper-slide-shadow-bottom{
    background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-css-mode>.swiper-wrapper{
    overflow:auto;
    scrollbar-width:none;
    -ms-overflow-style:none
}
.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{
    display:none
}
.swiper-css-mode>.swiper-wrapper>.swiper-slide{
    scroll-snap-align:start start
}
.swiper-horizontal.swiper-css-mode>.swiper-wrapper{
    scroll-snap-type:x mandatory
}
.swiper-vertical.swiper-css-mode>.swiper-wrapper{
    scroll-snap-type:y mandatory
}
.swiper-centered>.swiper-wrapper::before{
    content:"";
    flex-shrink:0;
    order:9999
}
.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{
    -webkit-margin-start:var(--swiper-centered-offset-before);
    margin-inline-start:var(--swiper-centered-offset-before)
}
.swiper-centered.swiper-horizontal>.swiper-wrapper::before{
    height:100%;
    width:var(--swiper-centered-offset-after)
}
.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{
    -webkit-margin-before:var(--swiper-centered-offset-before);
    margin-block-start:var(--swiper-centered-offset-before)
}
.swiper-centered.swiper-vertical>.swiper-wrapper::before{
    width:100%;
    height:var(--swiper-centered-offset-after)
}
.swiper-centered>.swiper-wrapper>.swiper-slide{
    scroll-snap-align:center center
}
/*# sourceMappingURL=swiper.min.css.map */
