/*
Visual Composer Elements CSS
*/

/* ---------------------------------
    Section Heading
   --------------------------------- */
.vc-section-heading{
    text-align: left;
}
.vc-section-heading h1{
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 42px;
}

.vc-section-heading.shadow-ok h1{
    text-shadow: 0px 2px 4px rgba(1, 1, 1, 0.6);
}

.vc-section-heading.large h1{ font-size: 42px;}
.vc-section-heading.medium h1{ font-size: 35px;}
.vc-section-heading.small h1{ font-size: 28px;}

.vc-section-heading.left{ text-align: left;}
.vc-section-heading.right{ text-align: right;}
.vc-section-heading.center{ text-align: center;}

@media(max-width: 767px){
    .vc-section-heading.large h1{ font-size: 35px;}
    .vc-section-heading.medium h1{ font-size: 28px;}
    .vc-section-heading.small h1{ font-size: 24px;}
}


/* ---------------------------------
    Theme Button
   --------------------------------- */
.vc-theme-button{
    text-align: left;
}
.vc-theme-button a{
    display: inline-block;
    background-color: #8d8f90;
    padding: 8px 28px 7px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 140px;
    box-shadow: 0px 13px 40px 0px rgba(1, 1, 1, 0.53);
}
.vc-theme-button a:hover, .vc-theme-button a:focus{
    background-color: #e77200;
    color: #fff; 
}
.applynow-button a{
	background-color: #e8a85f;
}

/* ---------------------------------
    News Slider
   --------------------------------- */
.news-slider{
    margin-bottom: 20px;
}
.news-slider .news-box{
    width: 100%;
    display: block;
}
.news-slider .news-box .news-image{
    width: 100%;
    display: block;
    height: 180px;
    position: relative;
    overflow: hidden;
}
.news-slider .news-box .news-image > a{
    display: block;
    height: 100%;
}
.news-slider .news-box .news-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.news-slider .news-box .news-image:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}
.news-slider .news-box .news-image .date-box{
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #8d8f90;
    color: #fff;
    text-align: center;
    width: 55px;
    padding: 8px 3px;
    text-transform: uppercase;
}
.news-slider .news-box .news-image .date-box span{
    display: block;
    font-size: 18px;
}
.news-slider .news-box .news-image .date-box span:first-child{
    font-weight: 800;
}
.news-slider .news-box .news-content{
    background-color: #ebebeb;
    padding: 15px;
    min-height: 210px;
}
.news-slider .news-box .news-content .news-title{
    color: #444;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}
.news-slider .news-box .news-content .news-title:hover{
    color: #8d8f90;
}
.news-slider .news-box .news-content .news-desc{
    font-size: 14px;
    text-align: justify;
    margin-bottom: 15px;
}
.news-slider .news-box .news-content .news-more-link:after{
    content: '\f101';
    font-family: 'Fontawesome';
    margin-left: 6px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.news-slider .news-box .news-content .news-more-link:hover:after{
    margin-left: 12px;
}

@media(min-width: 768px){
    .news-slider .news-box .news-image{
        height: 220px;
    }
    .news-slider .news-box .news-content{
        min-height: 207px;
        max-height: 207px;
        overflow: hidden;
    }
}

/* ---------------------------------
    Testimonial Slider
   --------------------------------- */
.testimonial-slider .testi-box{
    position: relative;
    color: #fff;
}
.testimonial-slider .testi-box .testi-content{
    padding: 15px 25px;
    margin-bottom: 10px;
}
.testimonial-slider .testi-box .testi-content p{
    margin-bottom: 0;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
}
.testimonial-slider .testi-box .testi-author{
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-slider .testi-box .testi-author .testi-auth-image{
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    border-radius: 100%;
    float: left;
    margin-right: 15px;
}
.testimonial-slider .testi-box .testi-author .testi-auth-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}
.testimonial-slider .testi-box .testi-author .testi-auth-data{
    float: left;
    font-weight: 300;
}
.testimonial-slider .testi-box .testi-author .testi-auth-name{
    font-size: 18px;
    text-transform: uppercase;
}
.testimonial-slider .testi-box .testi-author .testi-auth-place{
    font-size: 15px;
}
.testimonial-slider .testi-box .testi-author:after{
    display: table;
    content: '';
    clear: both;
}

.testimonial-slider .owl-nav > div{
    display: inline-block;
    background-color: transparent;
    color: #fff;
    font-size: 25px;
    top: 13%;
}

.testimonial-slider.dark .testi-box,
.testimonial-slider.dark .owl-nav > div{ 
    color: #444;
}
.testimonial-slider.light .testi-box,
.testimonial-slider.light .owl-nav > div{ 
    color: #fff;
}

@media(min-width: 992px){
    .testimonial-slider .testi-box .testi-content{
        padding: 15px 60px;
    }
}

/* ---------------------------------
    Icon Box
   --------------------------------- */
.vc-icon-box{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.vc-icon-box .icon-sec{
    float: left;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    line-height: 35px;
    font-size: 20px;
    text-align: center;
    background-color: #444;
    color: #fff;
}
.vc-icon-box .data-sec{
    float: left;
    padding-left: 10px;
}
@media(max-width: 768px){
    .vc-icon-box .data-sec{
        font-size: 14px;
    }
}

/* ---------------------------------
    Info Box
   --------------------------------- */
.vc-info-box{
    display: table;
    vertical-align: top;
    margin-bottom: 35px;
}
.vc-info-box > div{
    display: table-cell;
    vertical-align: top;
}
.vc-info-box .info-data{
    padding-left: 15px;
    padding-right: 15px;
}
.vc-info-box .info-image{
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
}
.vc-info-box .info-image img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100%;
}
.vc-info-box .info-heading{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.vc-info-box .info-heading,
.vc-info-box .info-heading a{
    color: #323232;
}
.vc-info-box .info-description{
    font-size: 15px;
    line-height: 1.6;
}

@media(max-width: 767px){
    .vc-info-box .info-image{
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
    .vc-info-box .info-image img{
        width: 50px;
        height: 50px;
    }
    .vc-info-box .info-heading{
        font-size: 18px;
    }
    .vc-info-box .info-description{
        font-size: 14px;
    }
}

/* ---------------------------------
    Video Box
   --------------------------------- */
.video-widget-box{
    width: 100%;
    height: 500px;
    display: block;
    position: relative;
    border: 3px solid #fff;
    text-align: center;
    overflow: hidden;
}
.video-widget-box > a{
    display: block;
}
.video-widget-box .video-thumb{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.video-widget-box .video-content{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: #fff;
    background-color: transparent;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.video-widget-box .video-content .video-title{
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2em;
}
.video-widget-box .video-content .play-icon{
    height: 60px;
    width: auto;
}
.video-widget-box:hover .video-content{
    background-color: rgba(0,0,0,0.5);
}

@media(max-width: 767px){
    .video-widget-box{
        height: 170px;
    }
    .video-widget-box .video-content{
        background-color: rgba(0,0,0,0.5);
    }
    
}

/* ---------------------------------
    Service Slider
   --------------------------------- */
.service-box{
    display: block;
    width: 100%;
    height: 200px;
    text-align: center;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}
.service-box > a{
    display: block;
    width: 100%;
    height: 100%;
}
.service-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.service-box .service-title{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #8d8f90;
    color: #fff;
    padding: 4px 15px;
    min-height: 50px;
    line-height: 1.2;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.service-slider .owl-dots{
    text-align: center;
}

@media(min-width: 992px){
    .service-box{
        height: 230px;
    }
}

/* ---------------------------------
    Projects Gallery
   --------------------------------- */
.gallery-filter{
    margin-bottom: 40px;
    text-align: center;
}
.gallery-filter ul{
    list-style-type: none;
    padding-left: 15px;
    padding-right: 15px;
}
.gallery-filter ul li{
    display: inline-block;
    cursor: pointer;
    padding: 5px 20px;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.gallery-filter ul li:hover,
.gallery-filter ul li.current{
    color: #8d8f90;
}
.gallery-filter ul li:after{
    content: '/';
    color: #444 !important;
    padding-left: 20px;
    display: none;
}
.gallery-filter ul li:last-child:after{
    content: '';
}
.project-box{
    width: 100%;
    height: 180px;
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
    -webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.5s; /* Firefox < 16 */
        -ms-animation: fadein 0.5s; /* Internet Explorer */
         -o-animation: fadein 0.5s; /* Opera < 12.1 */
            animation: fadein 0.5s;
}
.project-box > a{
    display: block;
}
.project-box > a > img{
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.project-box .overlay{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity .2s ease-in-out;
   -moz-transition: opacity .2s ease-in-out;
   -webkit-transition: opacity .2s ease-in-out;
}
.project-box .overlay .overlay-content span.pro-title{
    display: block;
    font-size: 17px;
    margin-bottom: 5px;
}
.project-box .overlay .overlay-content span.pro-service{
    display: block;
    font-size: 14px;
}
.project-box .overlay span.icon-view{
    font-size: 30px;
}
.project-box .overlay:after{
    content: '';
    border: 1px solid rgba(255,255,255,0.4);
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.ajax-loader{
    display: none;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@-moz-keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media(min-width: 992px){
    .project-box,
    .project-box > a > img{
        height: 220px;
    }
    .project-box .overlay{
        opacity: 0;
    }
    .project-box:hover .overlay{
        opacity: 1;
    }
}
@media(max-width: 767px){
    .gallery-filter ul li{ 
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
    }
    .gallery-filter.dark ul li{ 
        color: #8d8f90;
        border: 1px solid #8d8f90;
        background-color: #fff;
    }
    .gallery-filter.dark ul li.current{ 
        color: #fff;
        background-color: #8d8f90;
    }
    .gallery-filter.light ul li{ 
        color: #8d8f90;
        background-color: #fff; 
    }
    .gallery-filter.light ul li.current{ 
        color: #fff;
        background-color: #8d8f90; 
    }
}

/* ---------------------------------
    Single Project Page
   --------------------------------- */
.single-project-wrapper .project-services{
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 15px;
}
.single-project-wrapper .project-services ul{
    list-style-type: none;
    display: inline-block;
    padding-left: 5px;
}
.single-project-wrapper .project-services ul li{
    display: inline-block;
    margin-right: 4px
}
.single-project-wrapper .project-services ul li:after{
    content: ', ';  
}
.single-project-wrapper .project-services ul li:last-child:after{
    content: '';  
}

/* ---------------------------------
    Service Box
   --------------------------------- */
.vc-service-box{
    display: block;
    width: 100%;
    height: 200px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}
.vc-service-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.vc-service-box .service-box-content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
}
.vc-service-box .service-box-content .service-box-title{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.2;
}
.vc-service-box .service-box-content .service-box-link{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

.vc-service-box:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.vc-service-box .service-box-overlay{
    position: absolute;
    background-color: rgba(0,0,0,0.3);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

@media(min-width: 992px){
    .vc-service-box{
        height: 350px;
        margin-bottom: 0;
    }
    .vc-service-box .service-box-content .service-box-title{ font-size: 32px; }
    .vc-service-box .service-box-content .service-box-link{ font-size: 17px;}
}

/* ---------------------------------
    Social Icons
   --------------------------------- */
.vc-social-list{
    margin-bottom: 20px;
}
.vc-social-list ul{
    margin: 0 -3px;
    padding: 0;
    list-style-type: none;
}
.vc-social-list ul li{
    display: inline-block;
}

/* Default */
.vc-social-list ul li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    margin-left: 3px;
    margin-right: 3px;
    text-align: center;
    color: #444;
}

/* Border */
.vc-social-list.iconic.bordered ul li a{
    border: 1px solid #999;
}
.vc-social-list.iconic.bordered.round ul li a{
    border-radius: 50px;
}

/* Filled */
.vc-social-list.filled ul li a{
    font-size: 28px;
}

/* Alignment */
.vc-social-list.left{ text-align: left;}
.vc-social-list.center{ text-align: center;}
.vc-social-list.right{ text-align: right;}

/* Colors */
.vc-social-list.actual ul li a[title="Facebook"]{ color: #3b5998;}
.vc-social-list.actual ul li a[title="Instagram"]{ color: #c32aa3;}
.vc-social-list.actual ul li a[title="Twitter"]{ color: #00b6f1;}
.vc-social-list.actual ul li a[title="LinkedIn"]{ color: #007bb6;}
.vc-social-list.actual ul li a[title="Pinterest"]{ color: #cb2027;}
.vc-social-list.actual ul li a[title="Youtube"]{ color: #ff0000;}
.vc-social-list.actual ul li a[title="Google+"]{ color: #df4a32;}
.vc-social-list.actual ul li a[title="Yelp"]{ color: #d32323;}

.vc-social-list.actual ul li a:hover{ color: #8d8f90;}

.vc-social-list.mono ul li a[title="Facebook"]:hover{ color: #3b5998;}
.vc-social-list.mono ul li a[title="Instagram"]:hover{ color: #c32aa3;}
.vc-social-list.mono ul li a[title="Twitter"]:hover{ color: #00b6f1;}
.vc-social-list.mono ul li a[title="LinkedIn"]:hover{ color: #007bb6;}
.vc-social-list.mono ul li a[title="Pinterest"]:hover{ color: #cb2027;}
.vc-social-list.mono ul li a[title="Youtube"]:hover{ color: #ff0000;}
.vc-social-list.mono ul li a[title="Google+"]:hover{ color: #df4a32;}
.vc-social-list.mono ul li a[title="Yelp"]:hover{ color: #d32323;}

.vc-social-list.mono.light ul li a{ color: #fff;}

.vc-social-list.actual.iconic.bordered ul li a[title="Facebook"]{ border-color: #3b5998;}
.vc-social-list.actual.iconic.bordered ul li a[title="Instagram"]{ border-color: #c32aa3;}
.vc-social-list.actual.iconic.bordered ul li a[title="Twitter"]{ border-color: #00b6f1;}
.vc-social-list.actual.iconic.bordered ul li a[title="LinkedIn"]{ border-color: #007bb6;}
.vc-social-list.actual.iconic.bordered ul li a[title="Pinterest"]{ border-color: #cb2027;}
.vc-social-list.actual.iconic.bordered ul li a[title="Youtube"]{ border-color: #ff0000;}
.vc-social-list.actual.iconic.bordered ul li a[title="Google+"]{ border-color: #df4a32;}
.vc-social-list.actual.iconic.bordered ul li a[title="Yelp"]{ border-color: #d32323;}

.vc-social-list.iconic.bordered ul li a[title="Facebook"]:hover{ background-color: #3b5998; border-color: #3b5998;}
.vc-social-list.iconic.bordered ul li a[title="Instagram"]:hover{ background-color: #c32aa3; border-color: #c32aa3;}
.vc-social-list.iconic.bordered ul li a[title="Twitter"]:hover{ background-color: #00b6f1; border-color: #00b6f1;}
.vc-social-list.iconic.bordered ul li a[title="LinkedIn"]:hover{ background-color: #007bb6; border-color: #007bb6;}
.vc-social-list.iconic.bordered ul li a[title="Pinterest"]:hover{ background-color: #cb2027; border-color: #cb2027;}
.vc-social-list.iconic.bordered ul li a[title="Youtube"]:hover{ background-color: #ff0000; border-color: #ff0000;}
.vc-social-list.iconic.bordered ul li a[title="Google+"]:hover{ background-color: #df4a32; border-color: #df4a32;}
.vc-social-list.iconic.bordered ul li a[title="Yelp"]:hover{ background-color: #d32323; border-color: #d32323;}

.vc-social-list.iconic.bordered ul li a:hover{ color: #fff;}


/* ---------------------------------
    Profile Box
   --------------------------------- */
.profile-min-outer {
	
}
.profile-min-in{
	min-height: 260px;
} 
 
.profile-pic {
	width: 200px;
    height: 216px;
	margin-bottom: 15px;
	text-align:center;
	margin:0 auto;
	background-color:#000000;
}
.profile-pic img{
	width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top;
}
.profile-min-text {
	text-align:center;
	margin-top:10px;
}
.profile-name p{
	font-size: 16px;
    color: #747474;
    font-family: CircularStdMedium,"sans-serif";
    line-height: 1.1;
}
.descr-min{
	margin-top: -5px;
}
.descr-min p{
	color: #747474;
	font-size: 13px;
    line-height: 1.3;
    text-align: center;
	font-family: CircularStdBook,"sans-serif";
}

.profile-popup-min{
	display:none;
}

.profile-popup-text{
	text-align: left;
    margin: 10px 0px 0px 16px;
    float: left;
	min-height: 90px;
    width: 85%;
}
.profile-popup-text .profile-name p{
	font-size:22px;
	color:#747474;
	font-family: CircularStdMedium,"sans-serif";
}
.profile-popup-text .descr-min p{
	color: #747474;
	font-size: 16px;
    line-height: 1.3;
    text-align: left;
	font-family: CircularStdBook,"sans-serif";
}
.descr-large {
	color: #747474;
    font-size: 15px;
    line-height: 1.3;
    font-family: CircularStdBook,"sans-serif";
    text-align: left;
}
.profile-popup-large .profile-pic {
    width: 80px;
    height: 90px;
    float: left;
}
.profile-pic :hover{
	opacity:0.75;
	background-color:#000000;
	color:#000000;
}

@media (min-width:992px){
	.profile-popup-min{
		min-width: 800px;
		width: 800px;
		max-width: 1000px;
 	}
	.profile-popup-large {
		margin: 30px;
	}
}

@media (max-width:991px){
	.profile-pic {
		width: 160px;
		height: 175px;
		margin-bottom: 15px;
		text-align:center;
		margin:0 auto;
	}
	.profile-pic img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: top;
	}

	.profile-popup-text {
		text-align: left;
		float: left;
		min-height: 125px;
		width: 80%;
	}
		
	.profile-popup-large .profile-pic {
		width: 100px;
		height: 110px;
		margin-left: 0px;
	}
	
	.profile-min-text {
		text-align: center;
		margin-top: 15px;
		width: 98%;
		margin: 15px auto;
		
	}
}
@media (max-width:767px){
	.profile-min-outer {
		overflow: hidden;
	}
	
	.profile-pic {
		width: 157px;
		height: 170px;
		margin-bottom: 15px;
		text-align:center;
		margin:0 auto;
	}
	.profile-pic img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: top;
	}
	.profile-popup-text {
		text-align: left;
		margin: 0;
		position: relative;
		min-height: 90px;
		width: 67%;
		line-height: 0.9;
		margin-left:10px;
		margin-bottom:15px;
	}
	
	.profile-popup-large .profile-pic {
		width: 70px;
		height: 70px;
	}
	.profile-popup-min{
		width: 100%;
		max-width: 1000px;
 	}
	.descr-large {
		color: #747474;
		font-size: 15px;
		line-height: 1.3;
		font-family: CircularStdBook,"sans-serif";
		width: 100%;
		margin: 14px auto 0 auto;
		text-align: justify;
	}
	
	
}
@media (max-width:372px){
	.profile-min-outer {
		overflow: hidden;
		
	}
	.profile-pic {
		width: 130px;
		height: 140px;
		margin-bottom: 15px;
		text-align:center;
		margin:0 auto;
	}
	.profile-pic img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	    object-position: top;
		
	}
	
}

@media screen 
  and (min-device-width: 1200px) 
  and (max-device-width: 1500px) 
  and (-webkit-min-device-pixel-ratio: 1) { 
	  .profile-pic{
		  height: 200px;
	  }
}

