body{
    /* height: 100vh; */
    /* background: url('image/bg-m.png') no-repeat; */
    background-size: cover;  
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
  }

 
  
  .flip-card-inner {
    position: relative;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #c1daff;
    padding: 20px;
    color: black;
    border-radius: 12px;
   
}

.flip-card-back {
    background-color: #2980b9;
    color: white;
    transform: rotateY(180deg);
    border-radius: 12px;

}

  .modal-open .container-fluid, .modal-open  .container {
    -webkit-filter: blur(5px) grayscale(80%);
    }
  .card{
    overflow: hidden;
    border: 0 !important;
    border-radius: 20px !important;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
  }
  .inquiry-image{
    background: url('image/inquiry.png') center;
  }

  #img-1{
    background: url('image/building.png') center;
    background-size: cover;
  }
  @media only screen and (min-width: 990px) {
    .img-new{
      width: 45%;
      background: url('image/cut-copy.jpg') center;
      background-size: cover;
    }
  }
  
  .img-logo{
   
    height: 70px;
    position: relative;
    left: 10px;
    background: url('image/bg-none-mt.png') center;
    background-size: cover;
  }

  .nav-image{
    width: 50px;
    height: 60px;
    background: url('image/mini-logo.png') center;
    background-size: cover;
  }
  .card-body{
    padding: 2rem;
  }
  
  .title{
    margin-bottom: 2rem;
  }
  
  .form-input{
    position: relative;
  }
  
  .form-input input{
    width: 100%;
    height: 45px;
    padding-left: 40px;
    margin-bottom: 20px;
    box-sizing: border-box;
    box-shadow: none;
    border: 1px solid #00000020;
    border-radius: 50px;
    outline: none;
    background: transparent;
  }
  
  .form-input span{
    position: absolute;
    top: 10px;
    padding-left: 15px;
    color: #007bff;
  }
  
  .form-input input::placeholder{
    color: black;
    padding-left: 0px;
  }
  
  .form-input input:focus, .form-input input:valid{
    border: 2px solid #007bff;
  }
  
  .form-input input:focus::placeholder{
    color: #454b69;
  }
  
  .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{
    background-color: #007bff !important;
    border: 0px;
  }
  
  .form-box button[type="submit"]{
    margin-top: 10px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    background: #007bff;
    color: #fff;
    font-size: 90%;
    font-weight: bold;
    letter-spacing: .1rem;
    transition: 0.5s;
    padding: 12px;
  }
  
  .form-box button[type="submit"]:hover{
    background: #0069d9;
  }
  
  .forget-link, .register-link{
    color: #007bff;
    font-weight: bold;
  }
  
  .forget-link:hover, .register-link:hover{
    color: #0069d9;
    text-decoration: none;
  }
  
  .form-box .btn-social{
    color: white !important;
    border: 0;
    font-weight: bold;
  }
  
  .form-box .btn-facebook{
    background: #4866a8;
  }
  
  .form-box .btn-google{
    background: #da3f34;
  }
  
  .form-box .btn-twitter{
    background: #33ccff;
  }
  
  .form-box .btn-facebook:hover{
    background: #3d578f;
  }
  
  .form-box .btn-google:hover{
    background: #bf3b31;
  }
  
  .form-box .btn-twitter:hover{
    background: #2eb7e5;
  }
  
  
  
  /*customize*/
  
    .input, .input:hover, .input:focus, .input:active {
    background: transparent !important;
    border: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    border-bottom: 1.5px solid gray !important;
    border-bottom-right-radius: 0px !important;
     border-bottom-left-radius: 0px !important;
  
  }
  .btn-customize{
    position: relative;
    width: 200px;
    height: 50px;
    border: 2px solid #1a429a ;
    border-radius: 50px;
    background: #1a429a;
    z-index: 1;
  }
  .circle{
    position: absolute;
    width: 50px;
    height: 50px;
    background: yellow !important;
    border-radius: 50px;
    left: -3px;
    top: -2px;
    z-index: 2;
    transition: .3s cubic-bezier(1,0,.8,1);
  }
  .btn-customize:hover .circle{
    width: 202px;
  }
  .arrow{
    position: absolute;
    width: 13px;
    height: 13px;
    border-top: 3px solid #24388e ;
    border-right: 3px solid #24388e;
    transform: rotate(45deg);
    top: 20px;
    left: 17px;
    transition: .3s;
  }
  .btn-customize:hover .arrow{
    left: 40px;
  
  }
  .arrow:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: #24388e;
    transform: rotate(-45deg);
    left: -10px;
    top: 6px;
    opacity: 0;
    transition: .3s;
  
  }
    .btn-customize:hover .arrow:before{
      opacity: 1;
    }
    .text{
      position: absolute;
      color: yellow;
      top: 0;
      left: 65px;
      front-size: 32px;
      line-height: 45px;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-weight: 600;
      z-index: 3;
      transition: .3s;
    }
    .btn-customize:hover .text{
      color: #24388e;
    }
  
    ::placeholder {
    color: gray;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: gray;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
   color: gray;
  }


  .link-icon {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
  }
  
  .fa:hover {
      opacity: 0.9;
  }
  .fa-facebook:hover{
    color:yellow !important;

  }
  .fa-facebook {
    background: #3B5998;
    color: white;
  }
  
  .fa-twitter {
    background: #55ACEE;
    color: white;
  }
  
  .fa-google {
    background: #dd4b39;
    color: white;
  }
  
  .fa-linkedin {
    background: #007bb5;
    color: white;
  }
  
  .fa-youtube {
    background: #bb0000;
    color: white;
  }
  
  .fa-instagram {
    background: #125688;
    color: white;
  }
  
  .fa-pinterest {
    background: #cb2027;
    color: white;
  }
  
  .fa-snapchat-ghost {
    background: #fffc00;
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  }
  
  .fa-skype {
    background: #00aff0;
    color: white;
  }
  
  .fa-android {
    background: #a4c639;
    color: white;
  }
  
  .fa-dribbble {
    background: #ea4c89;
    color: white;
  }
  
  .fa-vimeo {
    background: #45bbff;
    color: white;
  }
  
  .fa-tumblr {
    background: #2c4762;
    color: white;
  }
  
  .fa-vine {
    background: #00b489;
    color: white;
  }
  
  .fa-foursquare {
    background: #45bbff;
    color: white;
  }
  
  .fa-stumbleupon {
    background: #eb4924;
    color: white;
  }
  
  .fa-flickr {
    background: #f40083;
    color: white;
  }
  
  .fa-yahoo {
    background: #430297;
    color: white;
  }
  
  .fa-soundcloud {
    background: #ff5500;
    color: white;
  }
  
  .fa-reddit {
    background: #ff5700;
    color: white;
  }
  
  .fa-rss {
    background: #ff6600;
    color: white;
  }

 
  /* PORTAL VIEW */

  /* .btn {
  background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
} */
@media only screen and (max-width: 990px) {
  #title-header-log {
      width: 101%;
      padding: 20px;

  }

  #humburger-icon {
      display: none;
  }

  #loading-login {
      left: 100px;
  }
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
}

#container {
  min-height: 93.7%;
  position: relative;
}

a {
  text-decoration: none;
}

.links {
  border: 1px solid #80808057;
  border-radius: 16px;
  width: 300px;
  margin-bottom: 5px;
  font-size: 24px;
}

.links:hover {
  background-color: lightblue;
}

.nav-background {
  background-image: linear-gradient(to right, #084298e6, #aeaaaa5c);
}

.d-none {
  color: white;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.btn-portal:hover {
  background-color: yellow !important;
  color: #154b9c;
}

.btn-portal {
  background-color: #154b9c;
  color: white
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 200px;
  perspective: 1000px;
  margin-bottom: 20px;
}

.nav-link {
  color: yellow
}

td {
  font-size: 12px;

}

.cus-info {
  font-size: 12px;
  line-height: 3px;
}

th {
  font-size: 14px;
}

.blurr {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  filter: blur(1px);
  -webkit-filter: blur(1px);
}

.title-box {
  font-family: inherit;
  font-weight: 700;
  font-size: 55%;
  color: #154b9c
}

.box-content:hover {
  transform: scale(1.2);


}

.box-content {
  align-items: center;
}


.image-color {
  /* -webkit-filter: grayscale(100%);
          filter: grayscale(100%); */
  /* opacity: .8; */
  width: 100%;

}

.image-color:hover {
  /* -webkit-filter: grayscale(0%);
          filter: grayscale(0%); */
  opacity: 1;
}

.card-img-top {
  width: -webkit-fill-available !important;
}

.card {
  border-radius: unset !important;
}

.card-text {
  font-size: 80%;
}

.card-body {
  /* padding: unset !important; */
  padding-bottom: 10px !important;
  padding-top: 10px !important;

}


.read-more{
  color: #154b9c;
  font-weight: 600;
  font-size: 80%;
  text-decoration: none;
}


.frame-fixed {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 0;
  border: #ffe800 solid 20px;
  background-color: #ffe800;


}

.border-inside {
  -webkit-border-radius: 8px;
  -moz-border-radius: #ffe800 8px;
  border-radius: #ffe800 8px;
  background: white;
}

/*(1) owl-stage box*/
.owl-carousel .owl-stage {
  display: flex;
}

/*(2) the direct div of each element in the owl carousel*/
.items {
  height: 100%;
}

.thumbnail-height {
  max-height: 44%;
  min-height: 44%;
}

.content-photo {
  min-height: 15vh;
}

.not-found {
  min-height: 35vh;
}

@media only screen and (max-width:900px) {

  .content-photo {
      min-height: 15vh;
  }

  .not-found {
      min-height: 23vh;
  }

  .thumbnail-height {
      max-height: 25% !important;
      min-height: 47% !important;

  }

  #title-header-logo {
      width: 100% !important;
  }

  #mobile-icon {
      display: block !important;

  }

}

#title-header-logo {
  width: 14%;
}

#mobile-icon {
  display: none;
}


@media only screen and (max-width: 767px){
  .modal-dialog{
      height: 90%;
  }
  
  .text-watch-desk{
      max-height: 195px;
      overflow-x: scroll;
      position: static;
  }
  
  .watch_title{
      font-size: 18px !important;
      padding: 15px 15x !important;
  }

  .mobile-view{
      overflow-y: scroll; 
      overflow-x:hidden;
      height:740px
  }

  #full-title{
      position: relative;
      right: 6px;
      padding-bottom: 0px !important;
  }

  .text-watch-fulldesc{
      max-height: 224px; 
      overflow-x: overlay;
      position: relative !important;
      bottom: 95px !important;

  }

  .picture{
      position: relative; 
      bottom: 30px !important; 
      left: 15%; 
      width: 70%; 
      height:auto;
  }

}

@media only screen and (max-width: 375px){
    #full-title{
    position: relative;
    padding-bottom: 0px !important;
    height: 90px;
    right: 6px;
  }

  .line{
    position: relative;
    bottom: 50px;
    right: 10px;
  }

  .picture{
      bottom: 90px !important;
      width: 100% !important;
      position: relative;
      left: 1% !important;
      
  }

  .text-watch-fulldesc{
      bottom: 185px !important;
      margin-left: 7px;
      width: 96.5%;
      height: 150px !important;
  }
}
