/*===== BLOG STYLE ONE =====*/
.blog-style-one {
  margin-top: 50px;
}
.blog-style-one .blog-image {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.blog-style-one .blog-image .category {
  background-color: var(--primary);
  color: var(--white);
  font-size: 13px;
  padding: 7px 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 30px;
}
.blog-style-one .blog-image img {
  width: 100%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.blog-style-one .blog-image:hover img {
  -webkit-transform: rotate(1deg) scale(1.1);
  -moz-transform: rotate(1deg) scale(1.1);
  -ms-transform: rotate(1deg) scale(1.1);
  -o-transform: rotate(1deg) scale(1.1);
  transform: rotate(1deg) scale(1.1);
}
.blog-style-one .blog-content {
  padding: 30px;
  border: 1px solid var(--light-1);
  border-radius: 0 0 8px 8px;
  border-top: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-style-one .blog-content {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .blog-style-one .blog-content {
    padding: 20px;
  }
}
.blog-style-one .blog-content .blog-title {
  display: block;
  margin-bottom: 10px;
}
.blog-style-one .blog-content .blog-title a {
  font-weight: 600;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  line-height: 30px;
}
@media (max-width: 767px) {
  .blog-style-one .blog-content .blog-title a {
    line-height: 24px;
  }
}
.blog-style-one .blog-content .blog-title a:hover {
  color: var(--primary);
}
.blog-style-one .blog-content span {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-3);
  margin-top: 8px;
  margin-right: 12px;
  display: inline-block;
}
.blog-style-one .blog-content .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.blog-style-one .blog-content .more {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin-top: 30px;
  display: inline-block;
}
.blog-style-one .blog-content .more:hover {
  color: var(--primary-dark);
}

.portfolio-menu button {
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-3);
    line-height: 48px;
    padding: 0 30px;
    position: relative;
    display: inline-block;
    z-index: 5;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
    margin: 0 2px;
    text-transform: uppercase;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .portfolio-menu button {
      font-size: 14px;
      padding: 0 26px;
    }
  }
  @media (max-width: 767px) {
    .portfolio-menu button {
      font-size: 14px;
      padding: 0 22px;
      line-height: 42px;
    }
  }

  .portfolio-menu button::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 4px;
  }
.portfolio-menu button:hover, .portfolio-menu button.active {
    color: var(--primary);
  }
.portfolio-menu button:hover::before,  .portfolio-menu button.active::before {
    opacity: 1;
  }

/* ===== Buttons Css ===== */
.blog-style-nine .blog-content .rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.blog-style-nine .blog-content .rounded-buttons .active.primary-btn-outline, .blog-style-nine .blog-content .rounded-buttons .primary-btn-outline:hover, .blog-style-nine .blog-content .rounded-buttons .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.blog-style-nine .blog-content .rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== BLOG STYLE TEN =====*/
.blog-author-two {
  margin-top: 50px;
}
.blog-author-two .blog-image img {
  width: 100%;
  border-radius: 8px;
}
.blog-author-two .blog-content {
  padding-top: 20px;
}
.blog-author-two .blog-content .sub-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
.blog-author-two .blog-content .blog-title a {
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .blog-author-two .blog-content .blog-title a {
    font-size: 24px;
    line-height: 35px;
  }
}
.blog-author-two .blog-content .blog-title a:hover {
  color: var(--primary);
}
.blog-author-two .blog-content .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.blog-author-two .blog-content .more {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 30px;
  display: inline-block;
}

/*===== BLOG STYLE ELEVEN =====*/
.blog-style-nine {
  margin-top: 50px;
}
.blog-style-nine .blog-image img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.blog-style-nine .blog-content {
  border: 1px solid var(--gray-3);
  border-top: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 16px 16px 28px;
}
.blog-style-nine .blog-content .blog-title a {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-style-nine .blog-content .blog-title a {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .blog-style-nine .blog-content .blog-title a {
    font-size: 24px;
    line-height: 35px;
  }
}
.blog-style-nine .blog-content .blog-title a:hover {
  color: var(--primary);
}
.blog-style-nine .blog-content .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.blog-style-nine .blog-content span {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-3);
  margin-right: 10px;
}
.blog-style-nine .blog-content .blog-date {
  margin-top: 15px;
}
.blog-style-nine .blog-content .rounded-buttons {
  margin-top: 15px;
}/* ===== Buttons Css ===== */
.blog-style-nine .blog-content .rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.blog-style-nine .blog-content .rounded-buttons .active.primary-btn-outline, .blog-style-nine .blog-content .rounded-buttons .primary-btn-outline:hover, .blog-style-nine .blog-content .rounded-buttons .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.blog-style-nine .blog-content .rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}


/*===== BLOG STYLE ELEVEN =====*/
.blog-style-nine {
  margin-top: 30px;
}
.blog-style-nine .blog-image img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.blog-style-nine .blog-content {
  border: 1px solid var(--gray-3);
  border-top: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 16px 16px 28px;
}
.blog-style-nine .blog-content .blog-title a {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-style-nine .blog-content .blog-title a {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .blog-style-nine .blog-content .blog-title a {
    font-size: 24px;
    line-height: 35px;
  }
}
.blog-style-nine .blog-content .blog-title a:hover {
  color: var(--primary);
}
.blog-style-nine .blog-content .text {
  color: var(--dark);
  margin-top: 16px;
}
.blog-style-nine .blog-content span {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-3);
  margin-right: 10px;
}
.blog-style-nine .blog-content .blog-date {
  margin-top: 15px;
}
.blog-style-nine .blog-content .rounded-buttons {
  margin-top: 15px;
}

/* ===== Buttons Css ===== */
.blog-style-eight .blog-content .rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.blog-style-eight .blog-content .rounded-buttons .active.primary-btn-outline, .blog-style-eight .blog-content .rounded-buttons .primary-btn-outline:hover, .blog-style-eight .blog-content .rounded-buttons .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.blog-style-eight .blog-content .rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== BLOG STYLE EIGHT =====*/
.blog-style-eight {
  margin-top: 10px;
}
.blog-style-eight .blog-image img {
  width: 100%;
  border-radius: 8px;
}
.blog-style-eight .blog-content {
  padding-top: 16px;
}
.blog-style-eight .blog-content .blog-title a {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-style-eight .blog-content .blog-title a {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .blog-style-eight .blog-content .blog-title a {
    font-size: 24px;
    line-height: 35px;
  }
}
.blog-style-eight .blog-content .blog-title a:hover {
  color: var(--primary);
}
.blog-style-eight .blog-content span {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-3);
  margin-top: 8px;
  margin-right: 10px;
  display: inline-block;
}
.blog-style-eight .blog-content .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.blog-style-eight .blog-content .rounded-buttons {
  margin-top: 25px;
}
/*===== BLOG STYLE NINE =====*/
.blog-author-one {
  margin-top: 10px;
  /* background-color: var(--light-2); */
  padding: 30px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .blog-author-one {
    padding: 20px;
  }
}

.blog-author-one .blog-content {
  padding-top: 5px;
  padding-bottom: 5px;
  
}
.blog-author-one .blog-content .sub-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: none;
}
.blog-author-one .blog-content .blog-title a {
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .blog-author-one .blog-content .blog-title a {
    font-size: 24px;
    line-height: 35px;
  }
}
.blog-author-one .blog-content .blog-title a:hover {
  color: var(--primary);
}
.blog-author-one .blog-content .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.blog-author-one .blog-content .more {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 30px;
  display: inline-block;
}

/*===== BLOG MINI STYLE =====*/
.single-mini-blog {
  margin-top: 0px;
}
.single-mini-blog .blog-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 4px;
}
.single-mini-blog .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-mini-blog .blog-content {
  padding-left: 12px;
}
.single-mini-blog .blog-content .blog-title a {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-mini-blog .blog-content .blog-title a {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .single-mini-blog .blog-content .blog-title a {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-mini-blog .blog-content .blog-title a {
    font-size: 16px;
    line-height: 24px;
  }
}
.single-mini-blog .blog-content .blog-title a:hover {
  color: var(--primary);
}
.single-mini-blog .blog-content span {
  font-size: 13px;
  line-height: 18px;
  color: var(--dark-3);
  margin-top: 8px;
  margin-right: 8px;
}
.single-mini-blog.mini-style-two .blog-image img {
  border-radius: 50%;
}

/*===========================
  Section Title One CSS
===========================*/
.section-title-one {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-one {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-title-one {
    margin-bottom: 35px;
  }
}
.section-title-one h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-one h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-one h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}

.form-group {
  margin-bottom: 0;
}

.form-input .help-block {
  margin-top: 2px;
}
.form-input .help-block .list-unstyled li {
  font-size: 12px;
  line-height: 16px;
  color: var(--error);
}
.form-input label {
  font-size: 12px;
  line-height: 18px;
  color: var(--dark-3);
  margin-bottom: 8px;
  display: inline-block;
}
.form-input .input-items {
  position: relative;
}
.form-input .input-items input, .form-input .input-items textarea {
  width: 100%;
  height: 44px;
  border: 2px solid;
  padding-left: 44px;
  padding-right: 12px;
  position: relative;
  font-size: 16px;
}
.form-input .input-items input:focus, .form-input .input-items textarea:focus {
  box-shadow: var(--shadow-4);
}
.form-input .input-items textarea {
  padding-top: 8px;
  height: 130px;
  resize: none;
}
.form-input .input-items i {
  position: absolute;
  top: 11px;
  left: 13px;
  font-size: 20px;
  z-index: 9;
}
.form-input .input-items.default input, .form-input .input-items.default textarea {
  border-color: var(--gray-3);
  color: var(--dark-3);
}
.form-input .input-items.default input:focus, .form-input .input-items.default textarea:focus {
  border-color: var(--primary);
}
.form-input .input-items.default input::placeholder, .form-input .input-items.default textarea::placeholder {
  color: var(--dark-3);
  opacity: 1;
}
.form-input .input-items.default i {
  color: var(--dark-3);
}
.form-input .input-items.active input, .form-input .input-items.active textarea {
  border-color: var(--primary);
  color: var(--black);
}
.form-input .input-items.active input::placeholder, .form-input .input-items.active textarea::placeholder {
  color: var(--black);
  opacity: 1;
}
.form-input .input-items.active i {
  color: var(--primary);
}
.form-input .input-items.error input, .form-input .input-items.error textarea {
  border-color: var(--error);
  color: var(--error);
}
.form-input .input-items.error input::placeholder, .form-input .input-items.error textarea::placeholder {
  color: var(--error);
  opacity: 1;
}
.form-input .input-items.error i {
  color: var(--error);
}
.form-input .input-items.success input, .form-input .input-items.success textarea {
  border-color: var(--success);
  color: var(--success);
}
.form-input .input-items.success input::placeholder, .form-input .input-items.success textarea::placeholder {
  color: var(--success);
  opacity: 1;
}
.form-input .input-items.success i {
  color: var(--success);
}
.form-input .input-items.disabled input, .form-input .input-items.disabled textarea {
  border-color: var(--gray-3);
  color: var(--dark-3);
  background: none;
}
.form-input .input-items.disabled input::placeholder, .form-input .input-items.disabled textarea::placeholder {
  color: var(--dark-3);
  opacity: 1;
}
.form-input .input-items.disabled i {
  color: var(--dark-3);
}
.form-style-two .form-input .input-items input, .form-style-two .form-input .input-items textarea {
  border-radius: 5px;
  padding-left: 12px;
  padding-right: 44px;
}
.form-style-two .form-input .input-items i {
  left: auto;
  right: 13px;
}

/* ===== Buttons Css ===== */
/*===== BLOG STYLE FIVE =====*/
.blog-style-five {
  margin-top: 50px;
}
.blog-style-five .blog-image {
  max-width: 240px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-style-five .blog-image {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .blog-style-five .blog-image {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-style-five .blog-image {
    max-width: 240px;
  }
}
.blog-style-five .blog-image img {
  width: 100%;
  border-radius: 8px;
}
.blog-style-five .blog-content {
  padding-left: 25px;
}
@media (max-width: 767px) {
  .blog-style-five .blog-content {
    padding-left: 0;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-style-five .blog-content {
    padding-left: 20px;
    padding-top: 0;
  }
}
.blog-style-five .blog-content .blog-title a {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-style-five .blog-content .blog-title a {
    font-size: 18px;
  }
}
.blog-style-five .blog-content .blog-title a:hover {
  color: var(--primary);
}
.blog-style-five .blog-content span {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-3);
  margin-top: 8px;
  margin-right: 10px;
  display: inline-block;
}
.blog-style-five .blog-content .text {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-3);
  margin-top: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-style-five .blog-content .text {
    margin-top: 8px;
  }
}
.blog-style-five .blog-content .more {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin-top: 30px;
  display: inline-block;
}
.blog-style-five .blog-content .more:hover {
  color: var(--primary-dark);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-style-five .blog-content .more {
    margin-top: 16px;
  }
}


/*===== portfolio FOUR =====*/
.portfolio-four {
  padding-top: 100px;
  padding-bottom: 100px;
}
.portfolio-four .portfolio-menu {
  margin-top: 50px;
}
.portfolio-four .portfolio-menu button {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-3);
  line-height: 48px;
  padding: 0 30px;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 9px;
  text-transform: uppercase;
  border: 1px solid var(--light-1);
}
.portfolio-four .portfolio-menu button:first-child {
  margin: 0;
}
.portfolio-four .portfolio-menu button:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-four .portfolio-menu button {
    font-size: 14px;
    padding: 0 26px;
  }
}
@media (max-width: 767px) {
  .portfolio-four .portfolio-menu button {
    font-size: 14px;
    padding: 0 22px;
    line-height: 42px;
  }
}
.portfolio-four .portfolio-menu button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-four .portfolio-menu button:hover, .portfolio-four .portfolio-menu button.active {
  color: var(--white);
  border-color: transparent;
}
.portfolio-four .portfolio-menu button:hover::before, .portfolio-four .portfolio-menu button.active::before {
  opacity: 1;
}
.portfolio-four .hide {
  display: none;
}
.portfolio-four .show {
  display: block;
}

.grid-4 {
  margin-top: 50px;
}
/*===== portfolio THREE =====*/
.portfolio-three {
  padding-top: 100px;
  padding-bottom: 100px;
}
.portfolio-three .portfolio-menu {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .portfolio-three .portfolio-menu {
    margin-bottom: 15px;
  }
}
.portfolio-three .portfolio-menu button {
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-3);
  line-height: 48px;
  padding: 0 30px;
  position: relative;
  display: inline-block;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
  margin: 0 2px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-three .portfolio-menu button {
    font-size: 14px;
    padding: 0 26px;
  }
}
@media (max-width: 767px) {
  .portfolio-three .portfolio-menu button {
    font-size: 14px;
    padding: 0 22px;
    line-height: 42px;
  }
}
.portfolio-three .portfolio-menu button::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 4px;
}
.portfolio-three .portfolio-menu button:hover, .portfolio-three .portfolio-menu button.active {
  color: var(--primary);
}
.portfolio-three .portfolio-menu button:hover::before, .portfolio-three .portfolio-menu button.active::before {
  opacity: 1;
}
.portfolio-three .hide {
  display: none;
}
.portfolio-three .show {
  display: block;
}

.portfolio-style-three {
  margin-top: 30px;
}
.portfolio-style-three .portfolio-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.portfolio-style-three .portfolio-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-style-three .portfolio-image .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
  border-radius: 8px;
}
.portfolio-style-three .portfolio-image .portfolio-content {
  padding: 16px;
}
.portfolio-style-three .portfolio-image .portfolio-icon {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}
.portfolio-style-three .portfolio-image .portfolio-icon a {
  font-size: 28px;
  color: var(--white);
  position: relative;
  z-index: 5;
  line-height: 60px;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background-color: var(--primary);
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-style-three .portfolio-image .portfolio-icon a:hover {
  background-color: var(--primary-dark);
}
.portfolio-style-three .portfolio-text {
  padding-top: 16px;
}
.portfolio-style-three .portfolio-title a {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-style-three .portfolio-title a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .portfolio-style-three .portfolio-title a {
    font-size: 20px;
  }
}
.portfolio-style-three .text {
  color: var(--black);
  margin-top: 8px;
}
.portfolio-style-three:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

/* ===== Buttons Css ===== */
.blog-style-four .blog-content .rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.blog-style-four .blog-content .rounded-buttons .active.primary-btn-outline, .blog-style-four .blog-content .rounded-buttons .primary-btn-outline:hover, .blog-style-four .blog-content .rounded-buttons .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.blog-style-four .blog-content .rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== BLOG STYLE FOUR =====*/
.blog-style-four {
  margin-top: 50px;
  padding: 30px;
  background-color: var(--white);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-style-four {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .blog-style-four {
    padding: 15px;
  }
}
.blog-style-four .blog-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.blog-style-four .blog-image::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(transparent, var(--dark-1));
}
.blog-style-four .blog-image img {
  width: 100%;
}
.blog-style-four .blog-image .meta-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
}
.blog-style-four .blog-image .meta-info span {
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  margin-top: 8px;
  margin-right: 8px;
  display: inline-block;
}
.blog-style-four .blog-content {
  padding-top: 25px;
}
.blog-style-four .blog-content .blog-title {
  margin-bottom: 12px;
}
.blog-style-four .blog-content .blog-title a {
  font-weight: 600;
  line-height: 30px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.blog-style-four .blog-content .blog-title a:hover {
  color: var(--primary);
}
.blog-style-four .blog-content .text {
  color: var(--dark-3);
  margin-top: 16px;
}
.blog-style-four .blog-content .rounded-buttons {
  margin-top: 30px;
}
/*============================
  Section Title Three CSS
==============================*/
.section-title-three {
  margin: auto;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-three {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-title-three {
    margin-bottom: 35px;
  }
}
.section-title-three h5 {
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--primary);
  text-transform: none;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .section-title-three h5 {
    font-size: 0.8rem;
  }
}
.section-title-three h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-three h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-three h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.section-title-three p {
  color: var(--dark-3);
}

/*===== portfolio ONE =====*/

.portfolio-one .portfolio-menu button {
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-3);
  line-height: 48px;
  padding: 0 30px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  display: inline-block;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
  margin-right: 4px;
  text-transform: uppercase;
}
.portfolio-one .portfolio-menu button:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-one .portfolio-menu button {
    font-size: 14px;
    padding: 0 26px;
  }
}
@media (max-width: 767px) {
  .portfolio-one .portfolio-menu button {
    font-size: 14px;
    padding: 0 22px;
    line-height: 42px;
  }
}
.portfolio-one .portfolio-menu button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-one .portfolio-menu button:hover, .portfolio-one .portfolio-menu button.active {
  color: var(--white);
}
.portfolio-one .portfolio-menu button:hover::before, .portfolio-one .portfolio-menu button.active::before {
  opacity: 1;
}
.portfolio-one .hide {
  display: none;
}
.portfolio-one .show {
  display: block;
}

.portfolio-style-one {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 30px;
}
.portfolio-style-one .portfolio-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-style-one .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.portfolio-style-one .portfolio-content {
  padding: 16px;
}
.portfolio-style-one .portfolio-icon {
  position: relative;
  display: inline-block;
}
.portfolio-style-one .portfolio-icon a {
  font-size: 30px;
  color: var(--white);
  position: relative;
  z-index: 5;
  line-height: 90px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-style-one .portfolio-icon a:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: transparent;
}
.portfolio-style-one .portfolio-text {
  padding-top: 24px;
}
@media (max-width: 767px) {
  .portfolio-style-one .portfolio-text {
    padding-top: 10px;
  }
}
.portfolio-style-one .portfolio-title a {
  color: var(--white);
  font-size: 24px;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-style-one .portfolio-title a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .portfolio-style-one .portfolio-title a {
    font-size: 20px;
  }
}
.portfolio-style-one .text {
  color: var(--white);
  margin-top: 8px;
  opacity: 0.7;
}
.portfolio-style-one:hover .portfolio-image img {
  -webkit-filter: blur(8px);
  -moz-filter: blur(8px);
  filter: blur(8px);
}
.portfolio-style-one:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}
/*===== portfolio THREE =====*/
.portfolio-three {
  padding-top: 100px;
  padding-bottom: 100px;
}
.portfolio-three .portfolio-menu {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .portfolio-three .portfolio-menu {
    margin-bottom: 15px;
  }
}
.portfolio-three .portfolio-menu button {
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-3);
  line-height: 48px;
  padding: 0 30px;
  position: relative;
  display: inline-block;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
  margin: 0 2px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-three .portfolio-menu button {
    font-size: 14px;
    padding: 0 26px;
  }
}
@media (max-width: 767px) {
  .portfolio-three .portfolio-menu button {
    font-size: 14px;
    padding: 0 22px;
    line-height: 42px;
  }
}
.portfolio-three .portfolio-menu button::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 4px;
}
.portfolio-three .portfolio-menu button:hover, .portfolio-three .portfolio-menu button.active {
  color: var(--primary);
}
.portfolio-three .portfolio-menu button:hover::before, .portfolio-three .portfolio-menu button.active::before {
  opacity: 1;
}
.portfolio-three .hide {
  display: none;
}
.portfolio-three .show {
  display: block;
}

.portfolio-style-three {
  margin-top: 30px;
}
.portfolio-style-three .portfolio-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.portfolio-style-three .portfolio-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-style-three .portfolio-image .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
  border-radius: 8px;
}
.portfolio-style-three .portfolio-image .portfolio-content {
  padding: 16px;
}
.portfolio-style-three .portfolio-image .portfolio-icon {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}
.portfolio-style-three .portfolio-image .portfolio-icon a {
  font-size: 28px;
  color: var(--white);
  position: relative;
  z-index: 5;
  line-height: 60px;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background-color: var(--primary);
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.portfolio-style-three .portfolio-image .portfolio-icon a:hover {
  background-color: var(--primary-dark);
}
.portfolio-style-three .portfolio-text {
  padding-top: 16px;
}
.portfolio-style-three .portfolio-title a {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-style-three .portfolio-title a {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .portfolio-style-three .portfolio-title a {
    font-size: 20px;
  }
}
.portfolio-style-three .text {
  color: var(--black);
  margin-top: 8px;
}
.portfolio-style-three:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}
/*===== BLOG MINI STYLE =====*/
.blog-section {
  padding: 60px 0;
}
.blog-section .section-title-three {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-section .section-title-three {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .blog-section .section-title-three {
    margin-bottom: 35px;
  }
}
.blog-section .section-title-three span {
  text-transform: capitalize;
  color: var(--white);
  background: var(--primary);
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 15px;
  border-radius: 4px;
}
.blog-section .section-title-three h5 {
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
}
.blog-section .section-title-three h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-section .section-title-three h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .blog-section .section-title-three h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.blog-section .section-title-three p {
  color: var(--dark-3);
}

.single-blog {
  margin-top: 10px;
  overflow: hidden !important;
  /* box-shadow: var(--shadow-1); */
  border-radius: 8px;
  /* background-color: var(--white); */
}
.single-blog .blog-img {
  overflow: hidden;
}
.single-blog .blog-img a {
  width: 100%;
}
.single-blog .blog-img img {
  width: 100%;
  transition: all 0.3s ease;
}
.single-blog:hover .blog-img img {
  transform: scale(1.1);
}
.single-blog .blog-content {
  padding: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog .blog-content {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .single-blog .blog-content {
    padding: 20px;
  }
}
.single-blog .blog-content .category {
  font-size: 14px;
  color: var(--primary-dark);
  display: inline-block;
  font-weight: 500;
}
.single-blog .blog-content h4 {
  display: block;
  margin-top: 5px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .single-blog .blog-content h4 {
    line-height: 24px;
  }
}
.single-blog .blog-content h4 a {
  color: var(--black);
  display: inline-block;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.single-blog .blog-content h4 a:hover {
  color: var(--caution);
}
.single-blog .blog-content p {
  display: block;
  margin-top: 20px;
  color: var(--dark);
}
.single-blog .blog-content .author {
  position: relative;
  margin-top: 30px;
  display: flex;
}
@media (max-width: 767px) {
  .single-blog .blog-content .author {
    display: block;
  }
}
.single-blog .blog-content .author .image {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .single-blog .blog-content .author .image {
    margin: 0;
    margin-bottom: 12px;
  }
}
.single-blog .blog-content .author img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.single-blog .blog-content .author .name {
  color: var(--dark);
  display: inline-block;
  margin-bottom: 1px;
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.single-blog .blog-content .author .name:hover {
  color: var(--primary);
}
.single-blog .blog-content .author .meta-content li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}
.single-blog .blog-content .author .meta-content li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.single-blog .blog-content .author .meta-content li a:hover {
  color: var(--primary);
}
.single-blog .blog-content .author .meta-content li::before {
  position: absolute;
  content: "";
  right: -5px;
  top: 50%;
  background-color: var(--gray-2);
  height: 5px;
  width: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.single-blog .blog-content .author .meta-content li:last-child {
  margin: 0;
  padding: 0;
}
.single-blog .blog-content .author .meta-content li:last-child::before {
  display: none;
}
/*===== VIDEO ONE =====*/
.video-one {
  background-color: var(--light-2);
  padding-top: 120px;
  padding-bottom: 100px;
}
.video-one .video-title h5 {
  font-weight: 600;
  color: var(--primary);
}
.video-one .video-title h2 {
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}
.video-one .video-title .text-lg {
  margin-top: 24px;
  color: var(--dark-3);
}
.video-one .video-content {
  position: relative;
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
}
.video-one .video-content img {
  border-radius: 8px;
}
.video-one .video-content a {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding-left: 3px;
}
@media (max-width: 767px) {
  .video-one .video-content a {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 46px;
  }
}
.video-one .video-content a:hover {
  background-color: var(--white);
  color: var(--primary);
}