@charset "UTF-8";
a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
  outline: none;
}

ol, ul, li {
  padding: 0;
  list-style: none;
  margin: 0;
}

label {
  font-weight: normal;
}

input[type=text], input[type=email], input[type=password] {
  padding-left: 12px;
  padding-right: 12px;
}

select {
  padding-left: 8px;
}

input[type=number] {
  padding-left: 5px;
}

textarea {
  padding: 8px 12px 5px 12px;
}

input, textarea, select, button, a {
  outline: none;
}

button {
  border: none;
  background: none;
  outline: none;
  -webkit-user-select: none;
          user-select: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
  -webkit-object-fit: cover;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
}
@keyframes lac {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-25deg);
  }
  20% {
    transform: rotate(25deg);
  }
  30% {
    transform: rotate(-25deg);
  }
  40% {
    transform: rotate(25deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes zoomin {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0.1;
  }
}
@keyframes zoomout {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}
@keyframes xoay {
  0% {
    transform: skewX(163deg) scaleX(1.1) translate(-39px, 15px) rotateX(0deg);
  }
  50% {
    transform: skewX(163deg) scaleX(1.1) translate(-39px, 15px) rotateX(180deg);
  }
  100% {
    transform: skewX(163deg) scaleX(1.1) translate(-39px, 15px) rotateX(360deg);
  }
}
@keyframes laolen {
  0% {
    transform: translate(0, -15px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -15px);
  }
}
@keyframes cross {
  0% {
    left: -110%;
    top: 90%;
  }
  50% {
    left: -10%;
    top: -30%;
  }
  100% {
    left: -10%;
    top: -10%;
  }
}
@keyframes c-rotateZ {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes c-zoom {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}
body {
  line-height: 1.5;
  font-family: "Roboto";
  color: #000;
  font-size: 16px;
}

h1, h2, h3, h4, h5, p, form {
  margin: 0;
  padding: 0;
}

button, input, select {
  outline: none !important;
}



.smooth {
  transition: all 0.2s ease-in-out;
}
.s-content ol {
  list-style: decimal;
  margin-left: 15px;
  margin-bottom: 10px;
}
.s-content ul {
  list-style: initial;
  margin-left: 15px;
  margin-bottom: 10px;
}
.s-content li {
  list-style: inherit;
  margin-bottom: 5px;
}
.s-content p {
  margin-bottom: 10px;
}
.s-content img {
  display: block;
  max-width: 100%;
  margin: 10px auto;
  width: auto !important;
  height: auto !important;
}
.s-content table, .s-content iframe {
  max-width: 100%;
}

.back-to-top {
  display: none;
  position: fixed;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  z-index: 999;
  width: 40px;
  height: 40px;
  line-height: 40px;
  right: 15px;
  bottom: 15px;
  background: #fff;
  color: #fff;
  animation: laolen 1s infinite;
}

.back-to-top:hover {
  background: #fff;
  opacity: 0.8;
}
.btn_video span, .btn-call span, .btn-mess span {
  display: inline-block;
  font-size: 30px;
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  color: #fff;
  background: #fff;
  position: relative;
}

.btn-call span i, .btn-mess span i {
  animation-name: lac;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@media(min-width: 992px)
{
  .modal-lg, .modal-xl
  {
    max-width: 950px;
  }
}
.btn-call span:before, .btn-mess span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: solid 1px #fff;
  animation-name: zoomin;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

.btn_video span:after, .btn-call span:after, .btn-mess span:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
  animation-name: zoomout;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.ef-hv {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ef-hv:after, .ef-hv:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  z-index: 0;
}
.ef-hv:after {
  transform: translate(100%, -100%) rotateZ(45deg) scale(1.5);
  transition: 0.7s ease;
}
.ef-hv:before {
  opacity: 0;
  visibility: hidden;
  background: #ffffff5c;
  transition: 1s ease;
}
.ef-hv:hover:before {
  opacity: 1;
  visibility: visible;
}
.ef-hv:hover:after {
  transform: translate(-100%, 100%) rotateZ(45deg) scale(1.5);
}
.c-img {
  display: block;
  position: relative;
  padding-top: 100%;
}

.c-img img, .c-img .bg, .c-img iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

header {
  position: relative;
  z-index: 111;
  padding: 10px 0;
  background: #f4701f;
  border-bottom: 1px solid #afafae;
  transition: 0.3s;
}

.fix-top {
  background: #f4701f;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
@media all and (min-width: 1200px){
  .menu_main > ul > li > a {
    font-size: 17px;
    padding: 10px 15px;
  }
}
@media all and (min-width: 991px){
  .menu_main{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .menu_main > ul > li {
    display: inline-block;
  }
  .menu_main > ul > li > a {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 12px;
  }
}
.banner_main{
  position: relative;
}
.banner_main .tns-controls button, 
.project_main .tns-controls button, 
.images_main .tns-controls button,
.prolib_img .tns-controls button {
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.prolib_img .tns-controls button{
  background: rgba(0, 0, 0, 0.2196078431372549);
  border-radius: 5px;
  top: 40%;
}
.prolib_img .tns-controls button:hover{
  background: rgba(0, 0, 0, 0.4)
}
.banner_main .tns-controls button:first-child, 
.project_main .tns-controls button:first-child, 
.images_main .tns-controls button:first-child,
.prolib_img .tns-controls button:first-child {
  left: 5%;
}
.banner_main .tns-controls button:first-child:after, 
.project_main .tns-controls button:first-child:after, 
.images_main .tns-controls button:first-child:after,
.prolib_img .tns-controls button:first-child:after {
  content: url("../images/left.png");
}
.banner_main .tns-controls button:last-child, 
.project_main .tns-controls button:last-child, 
.images_main .tns-controls button:last-child,
.prolib_img .tns-controls button:last-child {
  right: 5%;
}
.banner_main .tns-controls button:last-child:after, 
.project_main .tns-controls button:last-child:after, 
.images_main .tns-controls button:last-child:after,
.prolib_img .tns-controls button:last-child:after {
  content: url("../images/right.png");
}
.prolib_img .tns-controls button:first-child {
  left: 15%;
}
.prolib_img .tns-controls button:last-child{
  right: 15%;
}
.banner_main .c-img {
  padding-top: 8%;
}

.title_36 {
  font-size: 36px;
  font-weight: bold;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.intro_main {
  background: #f4f4f4;
  padding: 40px 0;
}
.intro_main .short_intro {
  font-size: 16px;
}
.intro_main .btn_intromain {
  font-size: 16px;
  padding: 10px 40px;
  background: #ef5a20;
  display: inline-block;
  color: #fff;
}

.pro_main {
  padding: 40px 0;
}
.pro_main .title_pro_main {
  font-size: 36px;
  max-width: 850px;
  text-align: center;
  margin: 0 auto 20px auto;
}
.pro_main .pro_item {
  text-align: center;
  background: #f4f4f4;
  padding: 30px 15px;
  cursor: pointer;
  transition: 0.3s;
  height: 100%;
}
.pro_main .pro_item:hover {
  background: #0093fb;
  color: #fff;
}
.pro_main .pro_item:hover .short_pro_item {
  color: #fff;
}
.pro_main .pro_item:hover .img_pro {
  background: #fff;
}
.pro_main .pro_item .name_pro {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.pro_main .pro_item .short_pro_item {
  font-size: 16px;
  color: #707070;
}
.pro_main .pro_item .img_pro {
  margin-bottom: 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.pro_main .pro_item .img_pro img {
  object-fit: contain;
  max-height: 43px;
}

.project_main {
  background: #f4f4f4;
  padding: 40px 0;
  position: relative;
}
.project_main .project_item {
  padding: 15px;
}
.project_main .project_item .c-img, .project_main .project_item .img_project {
  padding-top: 56%;
  margin-bottom: 20px;
}
.project_main .project_item .name_project {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.project_main .project_item .name_project:hover {
  color: #f69556;
}
.project_main .project_item .short_project {
  color: #636363;
}
.project_main .tns-inner {
  margin: 0 -15px !important;
}

.images_main .tns-controls button:first-child, .project_main .tns-controls button:first-child {
  left: 3%;
}
.images_main .tns-controls button:first-child:after, .project_main .tns-controls button:first-child:after {
  content: url("../images/leftd.png");
}
.images_main .tns-controls button:last-child, .project_main .tns-controls button:last-child {
  right: 3%;
}
.images_main .tns-controls button:last-child:after, .project_main .tns-controls button:last-child:after {
  content: url("../images/rightd.png");
}

.images_main {
  padding: 40px 0;
  position: relative;
}
.images_main .title_img {
  margin-bottom: 20px;
}
.images_main .images_main_item {
  padding: 0 15px;
}
.images_main .images_main_item .c-img {
  padding-top: 64%;
  margin-bottom: 15px;
}
.images_main .images_main_item .name_images {
  font-size: 22px;
  font-weight: bold;
}
.images_main .images_main_item .name_images:hover {
  color: #f69556;
}
.images_main .tns-inner {
  margin: 0 -15px !important;
}

.pad0 {
  padding-left: 0;
  padding-right: 0;
}

.row0 {
  margin-left: 0;
  margin-right: 0;
}

.why_choose {
  padding: 50px 0;
  background: #f4f4f4;
}
.why_choose .img_why {
  height: 100%;
}
.why_choose .img_why img {
  height: 100%;
}
.why_choose .why_item {
  background-color: #0093fb;
  padding: 60px 50px;
}
.why_choose .why_item .title_why {
  color: #fff;
  margin-bottom: 20px;
}
.why_choose .why_item .why_content {
  font-size: 15px;
  color: #fff;
  position: relative;
}
.why_choose .why_item .why_content:before {
  content: "";
  position: absolute;
  width: 2px;
  background: #6dafdd;
  top: 5px;
  height: 90%;
  left: 27px;
  z-index: 1;
}
.why_choose .why_item .why_content .why_content_item {
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
}
.why_choose .why_item .why_content .img_why_content {
  display: block;
  min-width: 55px;
  max-width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.feel_main {
  padding: 50px 0;
}
.feel_main .feel_slide {
  display: flex;
}
.feel_main .feel_item {
  display: flex !important;
  margin-right: 2px;
}
.feel_main .feel_item .info_cus {
  width: 20%;
  margin-right: 15px;
}
.feel_main .feel_item .info_cus img {
  display: block;
  margin-bottom: 20px;
}
.feel_main .feel_item .info_cus .name_cus {
  font-size: 16px;
  font-weight: 500;
}
.feel_main .feel_item .info_cus .posi_cus {
  color: #b7b7b7;
}
.feel_main .feel_item .text_feel_item {
  pointer-events: none;
  width: 75%;
  padding: 0 30px;
  color: #717171;
}
.feel_main .feel_item .text_feel_item .text_content_item {
  position: relative;
}
.feel_main .feel_item .text_feel_item .text_content_item:before {
  content: '"';
  position: absolute;
  top: 30px;
  left: -20px;
  font-size: 60px;
  line-height: 0;
}
.feel_main .feel_item .text_feel_item .text_content_item:after {
  content: '"';
  position: absolute;
  bottom: -10px;
  right: 0;
  font-size: 60px;
  line-height: 0;
}

.form_foo {
  padding: 50px 0;
  background: #0093fb;
}
.form_foo .form_item {
  background: #3f75ff;
  font-size: 14px;
  color: #fff;
  padding: 40px 20px;
  height: 100%;
}
.form_foo .form_item form {
  color: #fff;
}
.form_foo .form_item form input, .form_foo .form_item form textarea {
  width: 100%;
  border-radius: 25px;
  border: none;
  background: #5383ff;
  margin-bottom: 20px;
  color: #fff;
}
.form_foo .form_item form input::-webkit-input-placeholder { /* Edge */
  color: #fff;
}

.form_foo .form_item form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

.form_foo .form_item form input::placeholder {
  color: #fff;
}
.form_foo .form_item form textarea::-webkit-input-placeholder { /* Edge */
  color: #fff;
}

.form_foo .form_item form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

.form_foo .form_item form textarea::placeholder {
  color: #fff;
}
.form_foo .form_item form input {
  height: 45px;
}
.form_foo .form_item form .btn_form {
  padding: 10px 40px;
  border-radius: 25px;
  background: #ef5a20;
  color: #fff;
  transition: 0.3s;
}
.form_foo .form_item form .btn_form:hover{
  transform: scale(1.1);
}
footer {
  background: #242424;
  color: #aaa;
  padding: 10px 0;
}
footer .m10 {
  margin-bottom: 10px;
}
footer .social_foo {
  display: flex;
  color: #fff;
  align-items: center;
}
footer .social_foo .social_foo_item {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .social_foo .mar20 {
  margin-right: 20px;
}
.form_foo .form_item form input::-webkit-input-placeholder,.form_foo .form_item form textarea::-webkit-input-placeholder {
  color: #fff;
}
.form_foo .form_item form input::-moz-placeholder,.form_foo .form_item form textarea::-moz-placeholder{
  color: #fff;
}
.form_foo .form_item form input:-ms-input-placeholder,.form_foo .form_item form textarea:-ms-input-placeholder{
  color: #fff;
}
.form_foo .form_item form input:-moz-placeholder,.form_foo .form_item form textarea:-moz-placeholder{
  color: #fff;
}
.hover_images{
  position: relative;
}
.hover_images:before{
  position: absolute;
  content: url('../images/plus.png');
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
}
.hover_images:hover:before{
  opacity: 1;
}
.img_form_foo img{
  height: 100%;
  max-height: 500px;
}
.project_main .project_item .img_project{
  overflow: hidden;
}
.info_cus img,.img_project img{
  transition: 5s;
}
.info_cus img:hover,.img_project:hover img{
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.t-img-hover {
  display: block;
  position: relative; 
  height: 100%;
}
.t-img-hover:before, .t-img-hover:after {
  content: "";
  background: rgba(243, 238, 238, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
.t-img-hover:hover:before {
  opacity: 1;
  top: 50%;
  bottom: 50%; }
.t-img-hover:hover:after {
  opacity: 1;
  left: 50%;
  right: 50%; }
.menu-btn{
  display: none;
}
.menu_main > ul > li > a{
  transition: 0.3s;
}
.menu_main > ul > li > a:hover{
  color: #000;
}
.menu_main > ul > li > a.active{
  color: #000;
}
.logo_mobile img{
  max-width: 75px;
}
.img_banner img{
  object-fit: contain;
  max-height: 507px;
}
@media all and (min-width: 1200px){
  .title_pro_main{
    font-size: 35px !important;
  }
}
@media all and (max-width: 1200px){
  /*.img_banner img{
    height: 80vh;
  }*/
}
@media all and (max-width: 991px){
  .modal .prolib_img .proimg_thumb .item_img img
  {
    object-fit: cover;
  }
  .prolib_img .tns-controls button:first-child {
  left: 5%;
}
.prolib_img .tns-controls button:last-child{
  right: 5%;
}
  /*.img_banner img{
    height: 60vh;
  }*/
  header{
    position: relative;
    background: #f4701f;
    padding:10px 0;
  }

  .menu-btn{
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: #fff !important;
  }
  .logo_mobile{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
   .menu_mobile {
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background: #f3f8fb;
    }
     .menu_mobile {
         display: none;
    }
     .menu_mobile ul li a {
         display: block;
         font-size: 18px;
         padding: 10px 20px;
    }
     .menu_main {
         border-top: none;
         margin-top: 0;
         text-align: left;
    }
     .menu_main > ul > li {
         float: none;
         display: block;
         margin: 0;
    }
    .menu_main > ul > li > a {
     display: block;
     padding: 10px 20px;
     border-top: solid 1px rgba(255, 255, 255, 0.2);
     font-size: 14px;
     transition: 0.3s;
    }
    
     .menu_main > ul > li > a:not(:only-child):after {
         content: none;
    }
     .menu_main > ul > li > a:before, .menu_main > ul > li > a:after {
         content: none;
    }
     .menu_main > ul ul {
         display: none;
         position: static;
         background: rgba(0, 0, 0, 0.1);
         -webkit-transition: none;
         transition: none;
         opacity: 1;
         pointer-events: all;
         margin: 0;
         padding: 0;
    }
     .menu_main > ul ul a {
         padding: 10px 20px 10px 40px;
         background: none;
         display: block;
         border-top: solid 1px rgba(255, 255, 255, 0.2);
         border-bottom: none;
    }
     .menu_main > ul ul ul a {
         padding-left: 60px;
    }
     .menu_main > ul ul li:hover > a {
         background: none;
    }
     .menu_main li i {
         width: 41px;
         height: 41px;
         float: right;
         margin-top: 1px;
         font-size: 18px;
         line-height: 42px;
         text-align: center;
         top: 0;
         position: relative;
         z-index: 1;
         cursor: pointer;
         background: rgba(0, 0, 0, 0.15);
         font-style: normal;
         color: #fff;
    }
     .menu_main li i:after {
         font-family: "FontAwesome";
         content: "";
    }
     .menu_main li i.active:after {
         content: "\f106";
    }
    /*MEnu */
  .title_36{
    font-size: 30px;
  }
  .why_choose .why_item{
    padding:30px 20px;
  }
  .why_choose .img_why img{
    height: 100%;
    max-height: 300px;
    width: 100%;
  }
   .feel_main .feel_item .text_feel_item{
    width: 100%;
    padding:0 15px;
  }
  .feel_main .feel_item .info_cus{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .feel_main .feel_item{
    display: block !important;
  }
  .feel_main .feel_item .info_cus img {
    max-width: 30%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
  }
  .title_feel{
    text-align: center;
  }
  .img_form_foo img {
    max-height: 300px;
    width: 100%;
  }
  .pro_main .title_pro_main{
    font-size: 30px;
  }
  .project_main .project_item .name_project,.pro_main .pro_item .name_pro,.images_main .images_main_item .name_images{
    font-size: 19px;
  }
  .intro_main .short_intro{
    font-size: 15px;
  }
}
@media all and (max-width: 768px){
  .feel_main .feel_item .info_cus img{
    max-width: 40%;
  }
  .pro_main .title_pro_main,.title_36{
    font-size: 25px;
  }
}
@media all and (max-width: 600px){
  .feel_main .feel_item .info_cus img{
    max-width: 50%;
  }
  .project_main .project_item .name_project{
    margin-bottom: 10px;
  }
  .project_main .tns-controls button, .images_main .tns-controls button{
    top: 45%;
  }

}
@media all and (max-width: 576px){
  /*.img_banner img{
    height: 50vh;
  }*/
  footer .container{
    display: block !important;
    text-align: center;
  }
  .img_form_foo img,.why_choose .img_why img{
    max-height: 250px;
  }
  footer .social_foo{
    margin-bottom: 15px;
    justify-content: center;
  }
  .pa5760{
    padding-left: 5px;
    padding-right: 5px;
  }
  .row576{
    margin-left: -5px;
    margin-right: -5px;
  }
  .mb30{
    margin-bottom: 20px;
  }
  .why_choose .why_item{
    padding:30px 10px;
  }
  .why_choose .why_item .why_content .img_why_content{
    margin-right: 15px;
  }
}
@media all and (max-width:450px){
  .col100{
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .banner_main .tns-controls button{
      top: 35%;
  }
}
.info_cpy{
  color: #fff;
}
.title_info_cpy{
  font-size: 20px;
  margin-bottom: 10px;
}
.address{
  margin-bottom: 10px;
}
.address .icon{
  display: inline-block;
  width: 40px;
}
.img_cus_intro_main img{
  max-height: 380px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.modal-content-aa{
  padding:40px 20px;
  background: transparent;
  border:none !important;
}
.name_images_poup{
  margin-bottom: 20px;
  color: #fff;
}
.modal .prolib_img .pro_img .c-img{
  padding-top: 25%;
}
.modal .prolib_img .proimg_thumb{
  display: flex;
  margin-top: 10px;
}
.modal .prolib_img .proimg_thumb .item_img{
  display: block;
  text-align: center;
  cursor: pointer;
}
.modal .prolib_img .proimg_thumb .item_img img{
  min-width: 100px;
  max-width: 100px;
  height: 100px;
  border:2px solid #ebebeb;

}
.modal .img_pro{
  display: block;
  width: 100%;
  text-align: center;
  padding:20px 0;
}
.modal .img_pro img{
    max-height: 390px;
    min-height: 390px;
    max-width: 590px;
    object-fit: cover;
    border: 2px solid #ebebeb;
    width: 100%;
}
.images_main_item{
  cursor: pointer;
}
.modal-backdrop.show{
  opacity: 0.8 !important;
}
.modal .tns-outer:last-child .tns-inner
{
	max-width: 680px;
    margin: auto!important;
}
.modal .prolib_img .proimg_thumb
{
      margin: auto;
}
#imagesModal .modal-dialog
{
  background: #000;
}