.htmove-image-box-one {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100%;
  border-radius: 4px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.htmove-image-box .htmove-image-box-thumbnail{
  overflow: hidden;
}

.htmove-image-box-one .htmove-image-box-thumbnail {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 270px;
      -ms-flex: 1 0 270px;
          flex: 1 0 270px;
  width: 270px;
}

.htmove-image-box-one .htmove-image-box-thumbnail::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  background-color: #222222;
}

.htmove-image-box-one .htmove-image-box-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.htmove-image-box-one .htmove-image-box-content {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  padding: 30px;
}

.htmove-image-box-one .htmove-image-box-content .htmove-image-box-title {
  font-family: "Space Grotesk";
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  color: #1D39D7;
}

.htmove-image-box-one .htmove-image-box-content .htmove-image-box-text {
  margin-bottom: 30px;
}

.htmove-image-box-one .htmove-image-box-content .htmove-image-box-text .htmove-description {
  font-size: 15px;
  line-height: 1.75;
  color: #999999;
}

.htmove-image-box-one .htmove-image-box-content .htmove-image-box-text .htmove-description p:last-child {
  margin-bottom: 0;
}

.htmove-image-box-one .htmove-image-box-content .htmove-image-box-btn {
  font-size: 14px;
  font-weight: 500;
  line-height: 46px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  padding: 0 25px;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  color: #1D39D7;
  border: 1px solid #1D39D7;
  border-radius: 3px;
  background-color: transparent;
}

.htmove-image-box-one .htmove-image-box-content .htmove-image-box-btn:hover {
  color: #FFFFFF;
  background-color: #1D39D7;
}

.htmove-image-box-one:hover .htmove-image-box-thumbnail::before {
  opacity: 0.4;
}

.htmove-image-box .htmove-image-box-content .htmove-image-box-btn-2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  color: #1D39D7;
}

.htmove-image-box .htmove-btn-cion{
  margin-left: 8px;
}

.htmove-image-box .htmove-image-box-content .htmove-image-box-btn-2 .htmove-btn-cion {
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.htmove-image-box .htmove-image-box-content .htmove-image-box-btn-2:hover .htmove-btn-cion {
  margin-left: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .htmove-image-box-one .htmove-image-box-thumbnail {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 200px;
        -ms-flex: 1 0 200px;
            flex: 1 0 200px;
    width: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .htmove-image-box-one .htmove-image-box-thumbnail {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 220px;
        -ms-flex: 1 0 220px;
            flex: 1 0 220px;
    width: 220px;
  }
}

@media only screen and (max-width: 575px) {
  .htmove-image-box-one {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .htmove-image-box-one .htmove-image-box-thumbnail {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    width: 100%;
  }
}

/*Image Position*/
.htmove-image-box{
  display: flex;
}
.htmove-image-box.htmove-image-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.htmove-image-box.htmove-image-top,.htmove-image-box.htmove-image-bottom {
  flex-flow: column;
}
.htmove-image-box.htmove-image-top .htmove-image-box-thumbnail,.htmove-image-box.htmove-image-bottom .htmove-image-box-thumbnail{
  width: 100%;
  flex: 1 0 100%;
}

.htmove-image-box.htmove-image-bottom {
  flex-direction: column-reverse;
}
.htmove-image-content-center .htmove-image-box.htmove-image-top .htmove-image-box-thumbnail,.htmove-image-content-bottom .htmove-image-box.htmove-image-top .htmove-image-box-thumbnail{
  margin: auto;
}
.htmove-image-content-right .htmove-image-box .htmove-image-box-thumbnail{
  margin-left: auto;
}

/* Button Icon Position */
.htmove-button-icon-left a[class*="htmove-image-box-btn"]{
  flex-direction: row-reverse;
}
.htmove-button-icon-left a[class*="htmove-image-box-btn"] .htmove-btn-cion{
  margin-left: 0;
  margin-right: 8px;
}
.htmove-button-icon-left a[class*="htmove-image-box-btn"]:hover .htmove-btn-cion{
  margin-left: 0 !important;
}

.htmove-image-box-two {
  overflow: hidden;
  border-radius: 4px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.htmove-image-box-two .htmove-image-box-thumbnail {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
}

.htmove-image-box-two .htmove-image-box-thumbnail::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  background-color: #222222;
}

.htmove-image-box-two .htmove-image-box-thumbnail img {
  width: 100%;
}

.htmove-image-box-two .htmove-image-box-thumbnail .htmove-image-box-btn {
  font-size: 14px;
  font-weight: 500;
  line-height: 46px;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  padding: 0 25px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  opacity: 0;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 100px;
  background-color: transparent;
}

.htmove-image-box-two .htmove-image-box-thumbnail .htmove-image-box-btn:hover {
  color: #222222;
  background-color: #FFFFFF;
}

.htmove-image-box-two .htmove-image-box-content {
  padding: 25px;
}

.htmove-image-box-two .htmove-image-box-content .htmove-image-box-title {
  font-family: "Space Grotesk";
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
  color: #1D39D7;
}

.htmove-image-box-two .htmove-image-box-content .htmove-image-box-text .htmove-description {
  font-size: 15px;
  line-height: 1.75;
  color: #999999;
}

.htmove-image-box-two .htmove-image-box-content .htmove-image-box-text p:last-child {
  margin-bottom: 0;
}

.htmove-image-box-two:hover .htmove-image-box-thumbnail::before {
  opacity: 0.6;
}

.htmove-image-box-two:hover .htmove-image-box-thumbnail .htmove-image-box-btn {
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  opacity: 1;
}