/********** Template CSS **********/

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Black.eot');
    src: url('../fonts/Nunito-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Nunito-Black.woff2') format('woff2'),
        url('../fonts/Nunito-Black.woff') format('woff'),
        url('../fonts/Nunito-Black.ttf') format('truetype'),
        url('../fonts/Nunito-Black.svg#Nunito-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body{
  font-family: "Nunito Sans", sans-serif;  
}


 
h1,h2,h3,h4,h5{
font-family: 'Nunito';    
}
:root {
    --primary: #009CFF;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    padding: 6px 35px;
    border-radius: 30px;
    color: #fff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    color: #fff;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 3px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 600;
    outline: none;
    text-transform: uppercase;
    font-size: 17px;
}

.navbar .navbar-nav .nav-link a {
    margin-right: 35px;
 
    color: #FFFFFF;
    font-weight: 600;
    outline: none;
    text-transform: uppercase;
    font-size: 17px;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    background-color:#FF0000;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 21px;
        width: 100%;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        justify-content: flex-start;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
/* #header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
    padding: 0px;
} */

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 767px) {
	.cs-varient {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
	h3.subtitle-section {
    margin-top: 20px;
}
	.col-lg-6.pl-0 {
    padding-left: 12px;
}
    #header-carousel .carousel-item {
        position: relative;
        min-height: auto;
        height: auto;
    }
    
    #header-carousel .carousel-item img {
        /* position: absolute; */
        width: 100%;
        /* height: 100%; */
        /* object-fit: cover; */
    }
	
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   padding: 120px 0px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 7px;
    top: 6px;
    left: -12px;
    background: #FF0000;
    z-index: 1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 7px;
    bottom: 6px;
    left: 1px;
    background: #FF0000;
    z-index: 1;
    opacity: 0.7;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    text-align: right;
}
.aboutp{
    position: relative;
}

.aboutp {
    position: absolute;
    left: 90px;
    bottom: 7rem;
    border: 3px solid #ffffff;
    border-radius: 6px;
    box-shadow: 0px 1px 4px #ddd;
    height: 180px;
    width: 180px;
    background: #FF0000;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding: 23px 0px;
    margin: 0px;
}

.img-border img {
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    transition: .5s;
    background: #FF0000;
}

.service-item:hover {
    margin-top: -5px;
    box-shadow: none;
    background: #000;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 2px solid transparent;
    transition: all 0.3s;
    border-radius: 10px;
}

.team-item .team-text {
    position: relative;
    overflow: hidden;
}

.team-item .team-title {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -22px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.owl-carousel.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FF0000;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
    position: relative;
    background: #FF0000;
    color: #fff;
}

.owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: #FF0000;
    background: #FF0000;
}
.omvoice {
    height: 100%;
    position: relative;
    width: 100%;
    clear: both;
}
.omvoice video {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: contain;
    background-size: 100px;
    background-color: #ffec21;
	    padding: 0px 30px;
}
/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 17px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    background: #FF0000;
    color: #fff;
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

ul{
    list-style:none;
    margin: 0px;
    padding: 0px;
}
.carousel-caption h1{font-family: "Josefin Sans", sans-serif;text-transform: capitalize;font-weight: 500;}
.carousel-caption p{
   color:#e3e3e3; 
}
.carousel-item{
/*     height:515px; */
}
.border-radius-3{
    border-radius:3px !important;
}
.book_now_form a{
    color: #fff;
    font-size: 21px;
    letter-spacing: 1px;
}
.book_now_form {
   background: #ff0000;
    position: absolute;
    z-index: 999;
    top: 0;
    width: auto;
    padding: 13px 34px;
    right: 11%;
    transform: translateY(-50%);
    top: 50%;
    border: 1px solid #3e3e3e;
    border-radius: 10px;
    color: #fff;
}
.book_now_form p{
margin-bottom:20px;  
}
.book_now_form .wpcf7-not-valid-tip{
font-size:12px;	
}
.book_now_form .form-group{margin: 10px 0px;}
.book_now_form .form-group input{
    width: 100%;
    border: 1px solid #ddd;
    background: #eee;
    padding: 10px;
}
.pl-0{
    padding-left: 0px;
}
.mintsimg{
    position: absolute;
    right: -15px;
    top: -16px;
    width: 62px;
}
.selvn{/* height: 175px; */display: flex;align-items: center;}
.fact-item h5{background: #FF0000;color: #fff;padding: 8px 2px 5px;border-radius: 20px;font-size: 13px;text-transform: capitalize;text-align: center;}

.owl-carousel.owl-nav {
    margin-top: 30px;
}

.owl-carousel .owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 25px;
    font-weight: bold;
    transition: .5s;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 40%;
    right: 0;
}
.owl-carousel .owl-nav .owl-prev{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 25px;
    font-weight: bold;
    transition: .5s;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 40%;
    left: 0;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: #FF0000;
    background: #FF0000;
}
.titles h1 span{
   color: #FF0000; 
}
.btn.btn-gradient{
 background: linear-gradient(378deg, #fe9216 6%, #f66c1e 47%, #FF0000 68%);
 color: #fff;
 padding: 9px 26px;
 border-radius: 29px;
 text-transform: uppercase;
 margin-top: 17px;
 transition: all 0.5s;
}
.project-item span{
    clear:both;
    display: table;
    width: 100%;
}
.btn.btn-gradient:hover{
    background: #0d003b !important;
    transition: all 0.5s;
}
.border-2 {
    border: 1px solid #e1ddc0 !important;
}
.socialbtn a{
}
.midlefooter {
    background: #1d1d1d;
    padding: 20px 0px;
}
.midlefooter a{
    color:#fff;
    text-transform:uppercase;
    font-size: 13px;
}
.phonefooter{
    font-size:30px;
}
.phonefooter span{
  color:#FF0000;  
}
.phonefooter{
    font-weight: 700;
}
.parafoot p{
  font-weight: 700;
}
.testimonials{
  background-color:#242424;  
}
.rating i{
    color:#ffbb28;
    font-size: 13px;
    margin-right: 3px;
}
.testimonial-item p{color: #d3d3d3;}
.testimonial-item h5{
    color: #d3d3d3;
    font-size: 18px;
    font-family: "Nunito Sans", sans-serif;
}
.title_views{
    padding: 90px 38px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.werepair img{
    width: 100%;
}
.werepair {
    position: relative;
}
.mobiles_al {
    font-size: 24px;
}
.ord{
    padding: 0px 11px;
}
.mobiles_al i{
    background: #FF0000;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    display: inline-block;
    line-height: 34px;
    font-size: 16px;
}
.btn.btn-gradient.gradien2:hover {
    background: #fff !important;
    color:#000;
    transition: all 0.5s;
}
.diffrent_way{
    position: relative;
    height: 700px;
	overflow:hidden;
}
p.shape1 {
     position: absolute;
     top: 12%;
     margin: 0px;
     left: 9%;
     font-weight: 700;
     width: 114px;
     text-align: center;
     font-size: 17px;
}
p.shape2 {position: absolute;top: 32%;margin: 0px;right: 9%;font-weight: 700;width: 17%;text-align: center;font-size: 17px;}
p.shape3{position: absolute;bottom: 26%;margin: 0px;left: 11%;font-weight: 700;width: 11%;text-align: center;font-size: 17px;}
div.shape4 p {position: absolute;bottom: 15%;margin: 0px;left: 30%;font-weight: 700;width: 47%;text-align: left;font-size: 15px;}

@media (max-width:1400px) and (min-width:1200px){
 p.shape1 {
     top: 12%;
}
p.shape2 {top: 29%;}
p.shape3{bottom: 30%;}
p.shape4 {bottom: 19%;}
   
}

.gropphoto {
 
}
.repair_with_us{
    background-color:#121215;
}
.item_group_text{}.item_group_text p{
    line-height: 25px;
    color: #dddada;
}.item_group_text img{
    
}
.item_group_content{margin-top: -100px;}.item_group_content h2{
    color: #fff;
    font-size: 55px;
    text-align: center;
    text-transform: uppercase;
}.item_group_content span{
    display: block;
    color: #FF0000;
}

.pading_text{
}
.mt-100{
    margin-top: -73px;
}
.service-item h4{
    color: #fff;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
}
.detailimg {
    margin-bottom: 20px;
    /* background: #eee; */
    padding: 30px;
    border: 1px solid #eee;
}
.orange{
    color:#FF0000;
}
.calltoaction{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0px;
}
.calltoaction p{margin: 0px;color: #fff;font-family: "Josefin Sans";font-size: 20px;}
.calltoaction button{
    border: none;
    border-radius: 0px !important;
}
.page-header h1{
text-transform: uppercase;
}
.page-header li{
   text-transform: uppercase; 
}
.team-item:hover{
    border:2px solid #000;
}
.headmark{

    }.headmark h4{
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    position: relative;
}.headmark h4:after{
 content: '';
 width: 50px;
 height: 3px;
 position: absolute;
 bottom: -1px;
 background: #FF0000;
 left: 0;
}
.form_contact input{border: none;border-bottom: 1px solid #ddd;border-radius: 0px;}.form_contact textarea{
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
}
.height100{
    height:70px;
}
.icnadd {margin-bottom: 20px;}.icnadd p{
    margin: 0px;
}.icnadd i{
    background: #FF0000;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 1px;
    padding: 6px;
    margin-right: 13px;
}.icnadd a{
    color: #000;
}
.adresdiv {
    padding-top: 21px;
}
.calltoaction h4{
    font-family: "Nunito Sans", sans-serif;
    margin:0px;
}
.bordertopbotom{
    padding: 8px 20px !important;
   
     border:1px solid #dbdbdb !important;
}
.detailimg img{
    width: 100%;
}
p.price {
    font-size: 21px;
    color: #FF0000;
    font-weight: 900;
}
.form-selct label{font-weight: bold;font-size: 19px;margin-bottom: 6px;}.form-selct select{
    background: #fff !important;
    border-radius: 0px;
    width: 62%;
    appearance: revert;
    border: 2px solid #e1e1e1;
}
.searcbar{position: relative;}
.searcbar input{border: 1px solid #ddd;width: 100%;padding: 9px 17px;}.searcbar i{position: absolute;right: 13px;top: 14px;}
.categorybar h4{position: relative;font-family: "Nunito Sans", sans-serif;text-transform: uppercase;font-size: 17px;font-weight: 800;}
.categorybar h4:after{
 content: '';
 width: 21px;
 height: 2px;
 position: absolute;
 bottom: 10px;
 background: #FF0000;
 left: -19px;
 transform: rotate(90deg);
}
.categorybar li{

    }.categorybar li a{
    color: #000;
    padding: 3px 0px;
    display: block;
    font-weight: 600;
}
.tab-content {
    padding: 25px 0px;
}
.nav-tabs.nav-detail li:first-child{padding-left:15px;}
    .nav-tabs.nav-detail li a{
    background: #eee;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 20px;
}
.nav-tabs.nav-detail li a.active, .nav-tabs.nav-detail li a:hover{
    
}
.categorybar li a:hover{
        color: #FF0000;
}

/*woocommerce*/
.quantity{display: none!important;}
.single_add_to_cart_button{display: none!important;}

.itempage {
    padding:25px;
    height: 284px;
    transition: all 0.3s ease-in-out;
}
.itempage i{
    font-size: 40px;
    color: #FF0000;
    margin-bottom: 15px;
}
.store_phone {
    width: 100%;
    height: 68px;
    background: #ffffff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.store_phone_svg {
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}
.store_phone_text{
    color:#000;
    font-size: 17px;
    font-weight: 700;
}
.store_phone_svg i{
    color: #FF0000;
    margin-right: 10px;
    font-size: 25px;
}
.store_hours {
    display: flex;
    justify-content: center;
    width: 100%;
    column-gap: 10px;
    row-gap: 10px;
    padding: 10px 0;
    flex-wrap: wrap;
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 30px;
}
.schedule-day-item {
    width:100%;
    height: 54px;
    background: #ffffff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.schedule-day-week {
    padding-left: 16px;
}
.schedule-day-label {
    padding-right: 16px;
}
.schedule-day-week, .schedule-day-label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #3d3d3d;
}
.schedule-day-item-last {
    width: 100%;
}
.itempage:hover{
    box-shadow: 0px 0px 27px rgb(237 84 35 / 57%) !important;
    transition: all 0.3s ease-in-out;
}

.democlose {
    position: absolute;
    right: 8px;
    top: 6px;
    opacity: 1;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: white;
	z-index: 9999999;}
.modal-body {
	padding: 30px;}
.modal.show .modal-dialog {
	transform: translateY(25%);}

@media (max-width: 1180px) and (min-width: 820px) {
	.donels{
		display:none !important;
	}
    .carousel-item {
/*         height: 56vh; */
    }
}
@media (max-width: 1199px) and (min-width: 1024px) {

	div.shape4 p {
    bottom: 22%;
	}
	p.shape3 {
    bottom: 39%;
	}
	p.shape2 {
    top: 24%;
	}
	.book_now_form{
	}
	.donels{
		display:none !important;
	}
    .schedule-day-item {
    width: 100%;
    }
}

@media (max-width: 1366px) and (min-width:1024px) {
	.navbar-brand img{
		width:100%;
	}
	.carousel-item>img{
		height:100%;
	}
	    .item_group_content h2 {
        font-size: 36px;
    }
	    .title_views {
        padding: 90px 25px;
    }
    .carousel-item {
        /* height: 59vh; */
    }
}
.se_itemn {
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    height: 404px;
}
@media (max-width:1024px) and (min-width:768px){
	.mintsimg {
    position: absolute;
    right: -15px;
    top: 0px;
    width: 65px;
}
	.se_itemn {
    background-size: cover;
    padding: 0px;
    margin: 0px;
}
div.shape4 p {
    position: relative;
    bottom: 15%;
    margin: 0px;
    left: 30%;
    font-weight: 700;
    width: 68%;
    text-align: left;
    font-size: 13px;
    margin-top: -100px;
}
	p.shape3 {
    position: absolute;
    bottom: 26%;
    margin: 0px;
    left: 7%;
    font-weight: 700;
    width: 18%;
    text-align: center;
    font-size: 13px;
}
	p.shape2 {
    position: absolute;
    top: 30%;
    margin: 0px;
    right: 9%;
    font-weight: 700;
    width: 17%;
    text-align: center;
    font-size: 13px;
}
	p.shape1 {
    position: absolute;
    top: 9%;
    margin: 0px;
    left: 8%;
    font-weight: 700;
    width: 83px;
    text-align: center;
    font-size: 13px;
}
	.diffrent_way {
    height: auto;
    padding-bottom: 28px;
}
	.item_group_content {
    margin-top: 10px;
}
	.item_group_text {
    margin: 10px 0px;
}
	.item_group_text img {
    width: 100%;
}
	#header-carousel .carousel-caption h1{
		font-size:20px;
	}
	#header-carousel .carousel-caption {
    /* position:relative; */
    width: 24%;
    bottom: unset;
 }
	.book_now_form{
	background: rgb(255 255 255 / 86%);
	}
	.navbar-brand img{
		width: 70%;
	}
#header-carousel .carousel-item .mintsimg {
    right: 0px;
	width:50px;
	height:50px;
    top: -28px;
}	
	.navbar-collapse ul{
		justify-content: start !important;
		width: 100%;
	}
	.selvn img{
		height:100%;
	}
	.title_views {
    padding: 46px 25px;
 }
	.werepair h1{
		font-size:20px;
	}
	.mobiles_al {
    font-size: 14px;
}
	.mobiles_al i {
    width: 25px;
    height: 25px;
    line-height: 23px;
    font-size: 11px;
}
	.werepair .btn.btn-gradient {
    padding: 4px 10px;
    font-size: 13px;
	}
	.werepair .d-flex.mt-5{
		margin-top: 34px !important;
	}
	.item.testimonial-item.px-5 {
    padding: 0px 10px !important;
}
	.footer .col-lg-4{
		margin-top:15px;
	}
	.midlefooter a {
    font-size: 11px;
    padding: 0px 6px;
}
	.page-header {
    padding: 0px 0px;
}
	.page-header h1 {
    font-size: 20px;
}
	.page-header li {
    font-size: 11px;
}
	.calltoaction .btn.btn-primary {
    padding: 6px 15px;
    font-size: 12px;
    width: 208px;
}
	.changeloc.px-5 {
    padding: 0px !important;
    text-align: center;
}
	.iphonerepair.mb-5 {
    margin-bottom: 20px !important;
}
	.service-item h4 {
    margin-top: 10px;
	}
	.oredrstore {
    margin: 10px 0px;
}
	.schedule-day-item {
    width: 100%;
	}
	.height100 {
    height: 20px;
}
	.wpcf7.js{
		margin-bottom:20px;
	}
	.calltoaction h4 {
    font-size: 14px;
    padding-right: 10px;
	}
	.detailcenter.py-5 {
    padding-top: 0px !important;
}
	.detailcenter .container{
	padding:0px;	
	}
	.shop .container .container{
	padding:0px;	
	}
	.contentdetail .btn.btn-primary{
	border-radius: 0px;
    width: 100%;
    margin-bottom: 20px;	
	}
	.modal.show .modal-dialog {
    transform: translateY(5%);
}	
	#header-carousel .carousel-item img {
/*         position: absolute; */
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
	.carousel-item {
/*     height: 47vh; */
}
	.item_group_content h2 {
    font-size: 22px;
	}
	.phonefooter {
    text-align: left !important;
}
	.img-border img {
    width: 100%;
}
}
.rounded-circle.back-to-top:hover {
    color: #fff;
}
.mapinclude p{
	/* background: #f00; */
	/* color: #fff; */
	margin-bottom: 0px;
	margin-top: 10px;
	padding: 7px 16px;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	/* height: 55px; */
	border-radius: 6px;
}
@media (max-width:767px){
	div.shape4 p {
    position: relative;
    bottom: 15%;
    margin: 0px;
    left: 30%;
    font-weight: 700;
    width: 46%;
    text-align: left;
    font-size: 7px;
    margin-top: -56px;
}
	p.shape3 {
    position: absolute;
    bottom: 45%;
    margin: 0px;
    left: 7%;
    font-weight: 700;
    width: 18%;
    text-align: center;
    font-size: 8px;
}
	p.shape2 {
    position: absolute;
    top: 21%;
    margin: 0px;
    right: 9%;
    font-weight: 700;
    width: 17%;
    text-align: center;
    font-size: 8px;
}
	p.shape1 {
    position: absolute;
    top: 9%;
    margin: 0px;
    left: 4%;
    font-weight: 700;
    width: 66px;
    text-align: center;
    font-size: 8px;
}
	.diffrent_way {
    height: auto;
    padding-bottom: 28px;
}
	.item_group_content {
    margin-top: 10px;
}
	.item_group_text {
    margin: 10px 0px;
}
	.item_group_text img {
    width: 100%;
}
	#header-carousel .carousel-caption h1{
		font-size:20px;
	}
	#header-carousel .carousel-caption {
    position:relative;
    left: 0;
    padding: 0px 0px;
 }
	.book_now_form{
		padding: 9px 20px;
		position: relative;
		margin: 0 auto;
		display: table;
		transform: unset;
		right: 0;
		top: unset;
	}
	.navbar-brand img{
	        width: 55%;
	}
#header-carousel .carousel-item .mintsimg {
    right: 0px;
	width:50px;
	height:50px;
    top: -28px;
}	
	.navbar-collapse ul{
		justify-content: start !important;
		width: 100%;
	}
	.selvn img{
		height:100%;
		width: 100%;
	}
	.title_views {
    padding: 20px 25px;
 }
	.werepair h1{
		font-size:20px;
		margin-bottom: 2px !important;
	}
	.mobiles_al {
    font-size: 12px;
}
	.mobiles_al i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 8px;
}
	.werepair .btn.btn-gradient {
    padding: 4px 5px;
    font-size: 10px;
 }
	.werepair .d-flex.mt-5{
		margin-top:10px !important;
	}
	.item.testimonial-item.px-5 {
    padding: 0px 10px !important;
}
	.footer .col-lg-4{
		margin-top:15px;
	}
	.midlefooter a {
    font-size: 11px;
    padding: 0px 6px;
}
	.page-header {
    padding: 0px 0px;
}
	.page-header h1 {
    font-size: 20px;
}
	.page-header li {
    font-size: 11px;
}
	.calltoaction .btn.btn-primary {
    padding: 6px 15px;
    font-size: 12px;
    width: 208px;
}
	.changeloc.px-5 {
    padding: 0px !important;
    text-align: center;
}
	.iphonerepair.mb-5 {
    margin-bottom: 20px !important;
}
	.service-item h4 {
    margin-top: 10px;
	}
	.oredrstore {
    margin: 10px 0px;
}
	.schedule-day-item {
    width: 100%;
	}
	.height100 {
    height: 20px;
}
	.wpcf7.js{
		margin-bottom:20px;
	}
	.calltoaction h4 {
    font-size: 14px;
    padding-right: 0px;
    padding-bottom: 20px;
 }
	.detailcenter.py-5 {
    padding-top: 0px !important;
}
	.detailcenter .container{
	padding:0px;	
	}
	.shop .container .container{
	padding:0px;	
	}
	.contentdetail .btn.btn-primary{
	border-radius: 0px;
    width: 100%;
    margin-bottom: 20px;	
	}
	.modal.show .modal-dialog {
    transform: translateY(5%);
}
}
.icon-top-header h6 span{
    margin-right:10px;
}
.icon-top-header h6 {
    font-size: 13px;
    padding: 2px 0px;
    display: flex;
    align-items: unset;}

.woocommerce-loop-category__title{
	text-align:center;
	font-size:15px;
    box-shadow: 0px 6.47021px 9.45646px rgb(0 0 0 / 7%);
    border-radius: 13.0101px;
    padding: 10px;
    box-sizing: border-box;
    z-index: 1;
    pointer-events: none !important;} .up{width: auto;
    height: auto;
    margin: 0 auto;
    display: table;} 
    .upe img{width: 70% !important;
    height: 70% !important;
    margin: 0 auto;
    display: table;}
.variations_form.cart table th{
    display: block !important;
    font-size: 17px;
    font-weight: bolder;
}
.variations_form.cart table td{
display: block !important;	
}
.variations_form.cart table th label{
    font-weight: 800;
}
a.reset_variations {
    font-size: 12px;
    color: #FF0000;
    font-weight: bold;
}
.contentdetail select {
    width: 100%;
    border: 1px solid #e1e1e1;
    padding: 8px 10px;
    border-radius: 3px;
    box-shadow: 0px 1px 3px #ddd;
}
.contentdetail select:focus{
	outline:none;
}
.custom-t-tip-boxes {
    margin-top: 15px;
    margin-bottom: 15px;
}
.cs-varient {
    display: grid;
    grid-gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0.5rem;
    -webkit-margin-end: 0px;
    margin-inline-end: 0px;
    margin-bottom: 0px;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
}
.css-uvbtde {
    background: #fff;
    border-width: 1px;
    border-color: #e5e7eb;
    box-sizing: border-box;
    border-radius: 4px;
    -webkit-padding-start: 10px;
    padding-inline-start: 10px;
    -webkit-padding-end: 10px;
    padding-inline-end: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    border-style: solid;
}
.css-uvbtde {
    position: relative;
}
.chakra-text {
    font-size: 14px;
    margin: 0;
    line-height: 1;
    margin-top: 10px;
}
.tool-tip-ab {
    position: absolute;
    top: 2px;
    right: 2px;
    line-height: 1;
    left: unset;
    z-index: 2;
}
.tooltips {
    position: relative;
    display: inline-block;
    margin-top: 0;
}
.tool-tip-ab svg {
    margin-right: 5px;
    margin-top: 4px;
}
.text-primary a{color:#FF0000 !important}
.book_now_form input[type="submit"], .storeinfo form input[type="submit"], .modal .wpcf7-submit{
    color:#fff;
    background: #f00;
    margin-top: 10px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0px !important;
}
.navbar-dark .navbar-toggler {
    background: #000;
}
.service-item .item_product img{
	width:100px;
	    height: 100px;
	border-radius: 100%;
}
.ti-rating-text span strong, .ti-rating-text span {
    color: #fff !important;
}
.mbodel{
    display: flex;
    justify-content: space-between;
}
@media (max-width:767px){
	.mbodel{
    column-count: 2;
    flex-wrap: wrap;
    gap: 13px;
}
	.mbodel .items {
		width: 47%;
	}
	.aln{
		align-items:center;
	}
	.mobile-rev{
		flex-direction:row-reverse;
	}
	.item_group_content h2 {
    font-size: 30px;
	}
	.variations{
		width:100%;
	}
	.mapinclude p {
    margin-bottom: 12px;
    margin-top: 0px;
}
	.calltoaction p{
		padding-bottom:20px;
	}
	.calltoaction {
    text-align: center;
	}
	.calltoaction .d-flex{
	display:block !important;	
	}
	.mintsimg{
		right:0;
		width: 56px;
		top: 0;
	}
	.se_itemn {height: 267px;}
	.store_phone_svg p{
		margin-bottom:20px !important;
	}
	.store_phone_svg{
		display:block
	}
	.store_phone{
		padding: 15px 7px;
		height:auto;
	}
}	
@media (max-width: 1366px) and (min-width: 1024px) {
	.se_itemn {
        margin-bottom: 90px;
    }
    .carousel-item {
        /* height: 26vh; */
    }
}
@media (min-width: 1535px) {
/* 	#header-carousel{
	 max-width: 1220px;	
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
	}	 */
}
.mapinclude img{
	border-radius:5px;
}
@media (max-width: 896px) and (min-width: 414px) {
    p.shape3 {
        bottom: 30%;
    }	
	p.shape2 {
        top: 27%;
    }
	
}
@media (min-width: 576px) and (max-width:1024px) {
    .container, .container-sm {
        max-width: 100%;
    }
}
@media (min-width: 1920px) {
	.container-fluid{
		width:1500px;
	}
}
@media (max-width: 767px) and (min-width:516px) {
	.title_views {
        padding: 56px 25px;
    }
	div.shape4 p{
		width: 45%;	
	}	
}

@media (min-width: 390px) and (max-width:844px) {
	p.shape3 {
        bottom: 41%;
	}
}
@media (min-width: 412px) and (max-width:915px) {
	p.shape2 {
        position: absolute;
        top: 23%;
	}
    p.shape3 {
        bottom: 38%;
	}
}
.banerhome {
	padding:0px 0px;
	position: relative;
	display: table;
	width: 100%;
	table-layout: fixed;
	clear: both;
}
.book_now_form .frmsc p{
	margin-bottom:0px;
}
.book_now_form .frmsc .wpcf7-spinner{
	display:none !important;
}
.carousel-control-prev, .carousel-control-next {
}
.carousel-caption{
	bottom:33%;
}	
.woocommerce-pagination{
	
}
.woocommerce-pagination ul{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0px;
}
.woocommerce-pagination ul li{
	margin: 5px 7px;
}
.woocommerce-pagination ul li a{
	width: 30px;
	height: 30px;
	background: #ddd;
	display: block;
	text-align: center;
	color: #000;
	font-weight: bold;
	font-size: 20px;
	border-radius: 100%;
}
.woocommerce-pagination ul li span.current{
	width: 30px;
	height: 30px;
	background: #f00;
	display: block;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	border-radius: 100%;
}
.service-item .item_product{
	margin-bottom:10px;
}
.shadowover img{
	height:100%;
}
.shadowover{
    position: relative;
    height: 175px;
}
.shadowover:before{content:'';background: #000;opacity: 0.3;position: absolute;left: 0;right: 0;bottom: 0;top: 0;}
.wpcf7-not-valid-tip{display:none!important;}
.mapinclude a{
	color:#000;
}
.instant-quote{
	background: #000;
	padding: 20px 15px !important;!i;!;
	position: relative;
}
.instant-quote a{
	margin-right: 0px !important;!impor;!impo;
}
.instant-quote::before {
    content: "";
    position: absolute;
    right: calc(100% - 1px);
    bottom: 0px;
    width: 12px;
    height: 14px;
    -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    background-color: #000000;
    transition: all 500ms ease;
}
.quote-main-bg {
    background-color: #fff;
  height:unset!important;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 12px;
    scroll-behavior: unset!important; 
  width: 100%;}
.icon-top-header h6 a, .store_phone_svg p a{
	color:#000;
}
.latest_blog_area {
  background: #f9f9ff;
}
.single-recent-blog-post {
  margin-bottom: 30px;
}
.single-recent-blog-post .thumb {
  overflow: hidden;
}
.single-recent-blog-post .thumb img {
  transition: all 0.7s linear;
}
.single-recent-blog-post .details {
  padding-top: 30px;
}
.single-recent-blog-post .details .sec_h4 {
  line-height: 24px;
  padding: 10px 0px 13px;
  transition: all 0.3s linear;
}
.single-recent-blog-post .date {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.single-recent-blog-post:hover img {
  transform: scale(1.23) rotate(10deg);
}
.tags .tag_btn {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  border: 1px solid #eeeeee;
  display: inline-block;
  padding: 1px 18px;
  text-align: center;
}
.tags .tag_btn + .tag_btn {
  margin-left: 2px;
}
.blog_categorie_area {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .blog_categorie_area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1100px) {
  .blog_categorie_area {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.categories_post {
  position: relative;
  text-align: center;
  cursor: pointer;
}
.categories_post img {
  max-width: 100%;
}
.categories_post .categories_details {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(34, 34, 34, 0.75);
  color: #fff;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
.categories_post .categories_details h5 {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.categories_post .categories_details p {
  font-weight: 300;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0px;
}
.categories_post .categories_details .border_line {
  margin: 10px 0px;
  background: #fff;
  width: 100%;
  height: 1px;
}
.categories_post:hover .categories_details {
  background: rgba(222, 99, 32, 0.85);
}
.blog_item {
  margin-bottom: 28px;
}
.blog_details {
  padding: 30px 0 20px 10px;
  box-shadow: 0px 10px 20px 0px rgba(221, 221, 221, 0.3);
}
@media (min-width: 768px) {
  .blog_details {
    padding: 35px 15px 20px 20px;
  }
}
.blog_details p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 21px;
}
.blog_details a {
  color: #080808;
}
.blog_details a:hover {
  color: #09cc7f;
}
.blog_details h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .blog_details h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.blog-info-link li {
  float: left;
  font-size: 14px;
}
.blog-info-link li a {
  color: #999999;
}
.blog-info-link li i,
.blog-info-link li span {
  font-size: 13px;
  margin-right: 5px;
}
.blog-info-link li::after {
  content: "|";
  padding-left: 10px;
  padding-right: 10px;
}
.blog-info-link li:last-child::after {
  display: none;
}
.blog-info-link::after {
  content: "";
  display: block;
  clear: both;
  display: table;
}
.blog_item_img {
  position: relative;
}
.blog_item_img .blog_item_date {
  position: absolute;
  bottom: -10px;
  left: 10px;
  display: block;
  color: #fff;
  background-color: #ed5423;
  padding: 8px 15px;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .blog_item_img .blog_item_date {
    bottom: -20px;
    left: 40px;
    padding: 5px 17px;
  }
}
.blog_item_img .blog_item_date h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .blog_item_img .blog_item_date h3 {
    font-size: 20px;
  }
}
.blog_item_img .blog_item_date p {
  font-size: 18px;
  margin-bottom: 0;
  color: #fff;
}
@media (min-width: 768px) {
  .blog_item_img .blog_item_date p {
    font-size: 14px;
  }
}
.blog_right_sidebar .widget_title {
  font-size: 20px;
  margin-bottom: 15px;
}
.blog_right_sidebar .widget_title::after {
  content: "";
  display: block;
  padding-top: 15px;
  border-bottom: 1px solid #f0e9ff;
}
.blog_right_sidebar .single_sidebar_widget {
  background: #fbf9ff;
  padding: 20px;
  margin-bottom: 30px;
}
.blog_right_sidebar .single_sidebar_widget .btn_1 {
  margin-top: 0px;
}
.blog_right_sidebar .search_widget .form-control {
  height: 50px;
  border-color: #f0e9ff;
  font-size: 13px;
  color: #999999;
  padding-left: 20px;
  border-radius: 0;
  border-right: 0;
}
.blog_right_sidebar .search_widget .form-control::placeholder {
  color: #999999;
}
.blog_right_sidebar .search_widget .form-control:focus {
  border-color: #f0e9ff;
  outline: 0;
  box-shadow: none;
}
.blog_right_sidebar .search_widget .input-group button {
  background: #000000;
  border-left: 0;
  border: 1px solid #f0e9ff;
  padding: 4px 15px;
  border-left: 0;
  cursor: pointer;
}
.blog_right_sidebar .search_widget .input-group button i {
  color: #fff;
}
.blog_right_sidebar .search_widget .input-group button span {
  font-size: 14px;
  color: #999999;
}
.blog_right_sidebar .newsletter_widget .form-control {
  height: 50px;
  border-color: #f0e9ff;
  font-size: 13px;
  color: #999999;
  padding-left: 20px;
  border-radius: 0;
}
.blog_right_sidebar .newsletter_widget .form-control::placeholder {
  color: #999999;
}
.blog_right_sidebar .newsletter_widget .form-control:focus {
  border-color: #f0e9ff;
  outline: 0;
  box-shadow: none;
}
.blog_right_sidebar .newsletter_widget .input-group button {
  background: #fff;
  border-left: 0;
  border: 1px solid #f0e9ff;
  padding: 4px 15px;
  border-left: 0;
}
.blog_right_sidebar .newsletter_widget .input-group button i,
.blog_right_sidebar .newsletter_widget .input-group button span {
  font-size: 14px;
  color: #fff;
}
.blog_right_sidebar .post_category_widget .cat-list li {
  border-bottom: 1px solid #f0e9ff;
  transition: all 0.3s ease 0s;
  padding-bottom: 6px;
}
.blog_right_sidebar .post_category_widget .cat-list li:last-child {
  border-bottom: 0;
}
.blog_right_sidebar .post_category_widget .cat-list li a {
  font-size: 16px;
  line-height: 20px;
  color: #888888;
  display: block;
  padding: 6px 0px;
}
.blog_right_sidebar .post_category_widget .cat-list li a p {
  margin-bottom: 0px;
}
.blog_right_sidebar .post_category_widget .cat-list li + li {
  padding-top: 6px;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body {
  justify-content: center;
  align-self: center;
  padding-left: 20px;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
  transition: all 0.3s linear;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body a:hover {
  color: #fff;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 0px;
}
.blog_right_sidebar .popular_post_widget .post_item + .post_item {
  margin-top: 20px;
}
.blog_right_sidebar .br {
  width: 100%;
  height: 1px;
  background: #eeeeee;
  margin: 30px 0px;
}
.blog-pagination {
  margin-top: 20px;
}
.blog-pagination .page-link {
  font-size: 14px;
  position: relative;
  display: block;
  padding: 0;
  text-align: center;
  margin-left: -1px;
  line-height: 45px;
  width: 45px;
  height: 45px;
  border-radius: 0 !important;
  color: #8a8a8a;
  border: 1px solid #f0e9ff;
  margin-right: 10px;
}
.blog-pagination .page-link i,
.blog-pagination .page-link span {
  font-size: 13px;
}
.blog-pagination .page-item.active .page-link {
  background-color: #fbf9ff;
  border-color: #f0e9ff;
  color: #888888;
}
.blog-pagination .page-item:last-child .page-link {
  margin-right: 0;
}
.single-post-area .blog_details {
  box-shadow: none;
  padding: 0;
}
.single-post-area .social-links {
  padding-top: 10px;
}
.single-post-area .social-links li {
  display: inline-block;
  margin-bottom: 10px;
}
.single-post-area .social-links li a {
  color: #cccccc;
  padding: 7px;
  font-size: 14px;
  transition: all 0.2s linear;
}
.single-post-area .blog_details {
  padding-top: 26px;
}
.single-post-area .blog_details p {
  margin-bottom: 20px;
  font-size: 15px;
}
.single-post-area .quote-wrapper {
  background: rgba(130, 139, 178, 0.1);
  padding: 15px;
  line-height: 1.733;
  color: #888888;
  font-style: italic;
  margin-top: 25px;
  margin-bottom: 25px;
}
.service-page.our-cases-area .cases-caption h3 a {
  color: #000;
  font-weight: 600;
}
@media (min-width: 768px) {
  .single-post-area .quote-wrapper {
    padding: 30px;
  }
}
.single-post-area .quotes {
  background: #fff;
  padding: 15px 15px 15px 20px;
  border-left: 2px solid;
}
@media (min-width: 768px) {
  .single-post-area .quotes {
    padding: 25px 25px 25px 30px;
  }
}
.media.post_item img {
    width: 90px;
}
.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
.form-contact label {
  font-size: 14px;
}
.form-contact .form-group {
  margin-bottom: 30px;
}
.form-contact .form-control {
  border: 1px solid #e5e6e9;
  border-radius: 0px;
  height: 48px;
  padding-left: 18px;
  font-size: 14px;
  background: #fffdfd;
  font-weight: 500;
}
.form-contact .form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-contact .form-control::placeholder {
  font-weight: 500;
  color: #888;
}
.form-contact textarea {
  border-radius: 0px;
  height: 100% !important;
}