@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Roboto", serif;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

p {
  color: var(--c1);
  padding: 0;
  margin: 0;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

:root {
  --c1: rgb(0 0 0);
  /* Black */
  --c2: rgb(255 255 255);
  /* White */
  --c3: rgb(41 98 255);
  /* Red */
  --c4: rgb(11 11 11);
  /* Background Color */
  --fbg: rgb(15 16 18);
  /* Background Color */
  --bg: rgb(247 247 247);
  --f1: "Nunito", serif;
}
.wrapper {
  overflow: hidden;
}
.spacing {
  padding: 80px 0px;
}
.bg-color-a ul li a {
  color: var(--c1);
  transition: all 0.4s ease-in;
}
a.web-hover {
  display: inline;
  background-image: linear-gradient(to bottom, #fff 0%, #fff 98%);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: left 100%;
  transition: all 0.7s ease-in-out;
}
a.web-hover:hover {
  background-size: 100% 2px;
}
.title-animation-black-normal a {
  color: #000;
  display: inline;
  padding-bottom: 0;
  background-image: linear-gradient(to bottom, #000 0%, #000 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.7s;
}
.title-animation-black-normal a:hover {
  background-size: 100% 1px;
}

/* inner-wrapper */

.inner-header {
  height: 400px;
  background-position: center !important;
  background-attachment: fixed !important;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}

.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}

.inner-header .container {
  position: relative;
}

.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}

/* loader */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid var(--c2);
  border-radius: 50%;
  border-color: var(--c2) var(--c3);
  animation: s6 1s infinite linear;
}

.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.custom-loader::before {
  border-color: var(--c2) var(--c1);
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}

#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}
/* responcive-menu */
.responsive-menu {
  background-color: #fff;
  z-index: 999999;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  transition: all 0.5s;
}

.responsive-menu.active {
  left: 0;
}

.responsive-menu-main {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
}

.responsive-logo a img {
  width: 140px;
  margin-bottom: 50px;
}

.responsive-links ul li a {
  color: var(--c1);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid #c1c1c1;
  width: 100%;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.responsive-icon {
  position: absolute;
  right: 20px;
  top: 40px;
  font-size: 32px;
}

.resp-social {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--c3);
  padding: 6px 0px;
}

.resp-social ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.resp-social ul li a {
  color: #fff;
  font-size: 18px;
  padding: 10px;
}
/* topheader */
.header-top {
  padding: 10px 0px;
  background-color: #292929;
}

.trend i {
  color: var(--c2);
  background-image: linear-gradient(45deg, #0034c2, #2962ff);
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 50px;
  line-height: 25px;
  font-size: 12px;
  margin-right: 7px;
}

.trend p {
  color: var(--c2);
  font-size: 13px;
}

.trend:after {
  content: "|";
  color: #bbb;
  padding-left: 10px;
}

.trend {
  display: flex;
  align-items: center;
}

.trend-heading p a {
  color: var(--c2);
  font-size: 13px;
}

.header-top-left {
  display: flex;
  gap: 30px;
}

.header-top-right {
  display: flex;
  color: var(--c2);
  gap: 10px;
  font-size: 14px;
  justify-content: end;
}

.top-head-date i {
  margin-right: 6px;
}

.top-head-social-link ul {
  display: flex;
  gap: 15px;
}

.top-head-date:after {
  content: "|";
  color: #bbb;
  padding-left: 10px;
}

.top-head-social-link ul li a {
  font-size: 13px;
  color: var(--c2);
  transition: all 0.6s ease-in-out;
}

ul.tophead-social li a:hover {
  color: var(--c3);
}

.top-head-social-link {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
}

/* headerbottom */
.header-bottom {
  position: relative;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgb(161 161 161 / 48%);
}
.header-strick {
  position: fixed;
  width: 100%;
  left: 0;
  height: 95px;
  top: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgb(255 255 255);
  box-shadow: 0 0 90px 0 rgb(0 0 0 / 10%);
  border-bottom: 1px solid rgb(161 161 161 / 48%);
}

.header-logo img {
  width: 160px;
}

.header-menu ul {
  display: flex;
  gap: 40px;
  justify-content: center;
}

ul.nav-bar li a {
  font-family: var(--f1);
  font-weight: 600;
  color: var(--c1);
  padding: 38px 0px;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.header-menu-icon a:hover i {
  color: var(--c3);
}

.header-menu-icon a i {
  color: var(--c1);
  font-size: 20px;
  transition: all 0.4s ease-in;
}

ul.nav-bar li a:hover {
  color: var(--c3);
}

ul.nav-bar li a:hover:after {
  color: var(--c3);
  transform: rotate(180deg) translateX(-6px);
  transition: all 0.4s ease;
}

/*ul.nav-bar li a:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  transform: rotate(0deg);
  display: inline-block;
  padding-left: 6px;
  font-size: 12px;
  transition: all 0.4s;
}*/

.header-menu ul.nav-bar li a:hover:before {
  width: 100%;
}

.header-menu ul.nav-bar li a:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--c3);
  transition: all 0.4s ease-in-out;
}

.header-menu ul.nav-bar li {
  position: relative;
}

/* dropdown */
/* .header-dropdown {
  display: flex;
  gap: 80px;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 100px;
  background-color: bisque;
  padding: 30px;
}
ul.drop-down {
  display: block;
} */

.header-menu-icon button {
  background: unset;
  border: unset;
  outline: unset;
  color: #0f1012;
}
.header-menu-icon:hover button {
  color: var(--c3);
  outline: 0;
  background: unset;
  border: unset;
  outline: unset;
}
.modal-search {
  padding: 50px 0px;
}
.modal-search input[type="text"] {
  padding: 10px 0px;
  background-color: unset;
  border: 1px solid var(--c2);
  color: var(--c2);
  outline: 0;
  border-radius: 5px;
  width: 370px;
  padding-left: 20px;
}
.modal-search input::placeholder {
  color: var(--c2);
  text-transform: uppercase;
  text-align: start;
}
.modal-search input[type="submit"] {
  background-color: var(--c2);
  color: var(--c3);
  font-size: 18px;
  text-transform: uppercase;
  border: unset;
  padding: 10px 30px;
  border-radius: 5px;
}
.modal-content {
  border: unset;
  background-color: unset;
}
.modal {
  background-color: rgb(41 98 255 / 78%);
}
.modal.show {
  display: flex !important;
  align-items: center;
}
.modal-cross {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--c2);
}
/* banner-section */
.box-content h6,
.box-main-vertical h6 {
  background-color: #2962ff;
  border-radius: 2px;
  color: var(--c2);
  padding: 6px 9px 5px;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.2;
}

.box-content a {
  color: var(--c2);
  padding-bottom: 0;
  transition: all 0.7s;
}

.box-content h3,
.box-main-vertical h3 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--f1);
}

.box-image a {
  display: block;
  height: 100%;
}

.box-content-absoulate {
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0px;
  padding: 50px;
  z-index: 3;
}

.box-image {
  height: 100%;
  margin-bottom: 20px;
}

.box-main {
  position: relative;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.box-main .overlay {
  position: relative;
}

.overlay:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, black, transparent);
  z-index: 1;
}

.box-main:hover .box-image img,
.top-stories-item:hover .box-image img {
  transform: scale(1.1);
}

.box-item ul {
  display: flex;
  gap: 12px;
}

.box-item ul li {
  color: rgb(208 208 208);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.box-item ul li i {
  margin-right: 6px;
}

.box-image img,
.box-vertical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}

.box-main-vertical h3 a:hover,
.stories h3 a:hover {
  color: var(--c3);
}

.box-main-vertical h3 a {
  font-size: 18px;
  color: var(--c1);
  transition: all 0.6s ease-in-out;
}

.box-main-vertical {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.box-vertical-main-items .box-main-vertical:last-child {
  margin-bottom: 0;
}

.box-vertical-image {
  border-radius: 5px;
  overflow: hidden;
  width: 35%;
}

.box-main-vertical:hover .box-vertical-image img {
  transform: scale(1.1);
}

.box-vertical-image a {
  display: block;
  height: 100%;
}

.box-vertical-content {
  width: 65%;
}
.box-item ul li a:hover {
  color: var(--c3);
}
/* topstories */
section.top-stories {
  background-color: #fbf8f5;
  position: relative;
}

section.top-stories::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 75px;
  right: 20px;
  top: 0;
  background-image: url(../images/storiebg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

section.top-stories::after {
  content: "";
  position: absolute;
  width: 222px;
  height: 90px;
  right: 0;
  bottom: 0;
  background-image: url(../images/storiebg1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.story-bg::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 47px;
  left: -130px;
  top: 160px;
  background-image: url(../images/storiebg2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.top-stories-head h2 {
  font-size: 28.44px;
  color: var(--c1);
  font-weight: 700;
}

.top-stories-head span.titledot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #2962ff;
  margin-right: 7px;
  margin-left: 15px;
  display: inline-block;
  transition: all ease 0.31s;
}

.top-stories-head {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  position: relative;
}

.top-stories-head span.titleline {
  border: 1px solid #e5e5e5;
  border-width: 1px 0;
  height: 4px;
  flex-grow: 1;
}

.box-content.stories h3 a {
  color: var(--c1);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 700;
  transition: all 0.6s ease-in-out;
}
.box-content.stories h3 a:hover {
  color: var(--c3);
}

.stories h6 {
  margin-bottom: 10px;
  display: inline-block;
  color: #a5a6aa;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1;
  background: url();
  padding: 0;
}

.box-content.stories a {
  color: var(--c1);
}

.box-content.stories h3 {
  padding: 0;
  margin: 0;
  font-family: var(--f1);
}

.top-stories-item .box-image {
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
}

/* newsection */
section.New .box-vertical-main-items .box-main-vertical {
  display: flex;
  flex-direction: row-reverse;
}

section.New .box-vertical-main-items .box-vertical-image {
  border-radius: 5px;
  overflow: hidden;
  width: 48%;
  height: 100%;
}

section.New .box-content-absoulate {
  padding: 25px;
}

section.New .box-content h3,
.box-main-vertical h3 {
  margin-bottom: 12px;
  font-size: 33px;
  font-weight: 700;
}
section.New .box-vertical-main-items.POPULAR {
  margin-bottom: 30px;
}

/* stylesection */
section.New .box-vertical-main-items .circle {
  width: 120px;
  height: 100px;
}
.Style .box-content h3 {
  font-size: 24px !important;
  line-height: 1.4;
  margin-bottom: 10px;
}

.Style {
  row-gap: 24px;
}

.stay h2,
.POPULAR h2 {
  font-size: 20px;
}

ul.social-main {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 5px;
}

ul.stay-content .facebok {
  background-image: linear-gradient(-90deg, #2c6dd2 0%, #1155bf 100%);
}

ul.social-main.followx {
  background-image: linear-gradient(-90deg, #56c3f0 0%, #13a4e7 100%);
}

ul.social-main.printest {
  background-image: linear-gradient(-90deg, #bd081c 0%, #9b0c1c 100%);
}

ul.social-main.dribble {
  background-image: linear-gradient(-90deg, #f43079 0%, #f7679d 100%);
}

ul.social-main.insta {
  background-image: linear-gradient(-90deg, #bc2a8d 0%, #8a3ab9 100%);
}

ul.social-main.youtube {
  background-image: linear-gradient(-90deg, #ff5252 0%, #ed1c24 100%);
}

ul.social-main:hover .stay-icon i {
  background-color: var(--c2);
  color: var(--c1);
}

ul.social-main li a {
  display: flex;
  align-items: center;
  position: relative;
}

.stay-icon i {
  position: relative;
  font-size: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-right: 20px;
  background: rgb(255 255 255 / 0.1);
  border-radius: 50%;
  transition: all ease 0.6s;
}

.stay-icon i:after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #fff;
}

.stay-text span,
.stay-follower span {
  font-weight: 500;
  color: #fff;
}

.stay-follower {
  position: absolute;
  right: 14px;
}

.stay-text {
  margin-left: 20px;
}
.stay-connect {
  margin-bottom: 15px;
}

.POPULAR .box-main-vertical {
  display: flex;
  flex-direction: row !important;
}

.POPULAR h3 a {
  font-size: 18px;
  overflow: hidden;
  line-height: 1.4;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.circle a {
  border-radius: 50%;
  overflow: hidden;
}

.Popular-absoulate,
.news-absoulate {
  position: relative;
}

.Popular-absoulate {
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 20px;
}

.Popular-absoulate:last-child {
  border: unset;
}

.counter {
  left: 70px;
  position: absolute;
  top: 0px;
  text-align: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: #555;
  font-size: 0.75rem;
  color: #fff;
  transition: all ease 0.31s;
}

.news-counter {
  position: absolute;
  right: 126px;
  bottom: 0;
  width: 27px;
  text-align: center;
  height: 27px;
  border-top-right-radius: 3px;
  background-color: #fff;
  font-size: 1rem;
  color: #2962ff;
}

.circle a:hover .POPULAR .counter {
  background-color: #fff;
}

.powerful:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(38deg, #512da8 0%, #2962ff 100%);
  opacity: 0.9;
}

.powerful a,
.powerful h4,
.powerful h3 {
  position: relative;
  z-index: 1;
}

.powerful a img {
  padding-bottom: 10px;
  width: 170px;
}

.powerful,
.lastest-suscribe {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background-size: cover;
}

.powerful h3 {
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--c2);
  z-index: 1;
}

.powerful h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--c2);
  margin-bottom: 12px;
  line-height: 1.8;
  z-index: 1;
}

.web-btn a {
  margin-top: 20px;
  padding: 13px 20px 11px;
  background-color: var(--c3);
  color: var(--c2);
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.6px;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.web-btn a:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  background-color: #0034c2;
}

.web-btn a:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: all 0.3s;
  z-index: -1;
}

/* technology */
.Technology {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.Technology .swiper-content.box-content.stories h3 a {
  font-size: 36px;
  color: var(--c2);
}

.swiper-content-absoulate {
  padding-bottom: 150px;
}
.Technology .swiper-content .box-item ul {
  justify-content: center;
}
.technology-slider {
  display: flex;
}
.swiper-content .box-item ul li {
  color: var(--c2);
}
.technology-item .box-main-vertical {
  gap: 15px;
  margin-bottom: 0;
  filter: grayscale(1);
  align-items: center;
  z-index: 999;
}
.technology-item .box-main-vertical h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--c2);
}
section.Technology.overlay:before {
  z-index: 0;
}
.technology-item .box-main-vertical h6 {
  font-size: 14px;
}
.slick-slide.slick-current.slick-active.slick-center
  .technology-item
  .box-main-vertical {
  filter: grayscale(0);
}
.technology-item .vertical-image {
  width: 240px;
  height: 130px;
  border-radius: 4px;
  overflow: hidden;
}
.swiper-content-icon a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2962ff;
  color: #fff;
  font-size: 20px;
  animation: pulseShadowlgprimary 2000ms linear infinite;
  line-height: 60px;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}
@keyframes pulseShadowlgprimary {
  0% {
    box-shadow: 0 0 0 0 rgb(41 98 255 / 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px #fff0;
  }
  100% {
    box-shadow: 0 0 0 0 #fff0;
  }
}
.swiper-content-icon a:hover {
  background-color: #082a88;
}
/* lastest-section */
.lastest-news-img img {
  border-radius: 4px;
  padding-bottom: 10px;
}

.lastest-items .box-main-vertical p {
  color: #6c6f72;
  margin-bottom: 12px;
}

.lastest-items .box-main-vertical h3 a {
  font-size: 22px;
  line-height: 1.4;
}

.lastest-items .box-vertical-main-items {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #c7c7c7;
}

.box-item ul li a {
  padding-left: 4px;
}

.lastest-btn a {
  position: relative;
  background: #fff0;
  border: 1px solid #e5e5e5;
  font-size: 12px;
  color: #646464;
  padding: 12px 30px;
  transition: all 0.4s ease;
  letter-spacing: 0.8px;
  margin-top: 25px;
}

.lastest-btn a i {
  margin-left: 8px;
}
.lastest-btn a:hover i {
  transform: rotate(180deg);
}
.lastest-btn a:hover {
  color: var(--c2);
}

button.web-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  z-index: -1;
  inset: 0px;
  border-radius: 0px 4px 4px 0px;
  transition: 0.31s ease-out;
}
.lastest-form form button {
  position: relative;
  background-color: rgb(41, 98, 255);
  color: rgb(255, 255, 255);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.6px;
  z-index: 1;
  padding: 15px 20px;
  overflow: hidden;
  transition: 0.31s;
  border: unset;
  width: 100%;
  margin-top: 20px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.lastest-form form button:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  background-color: #0034c2;
}

.lastest-form form button:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: all 0.3s;
  z-index: -1;
}

.lastest-form input {
  font-size: 14px;
  color: #6c6f72;
  height: 53px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background-color: #fff;
  text-align: center;
  width: 100%;
  outline-color: var(--c3);
}

.lastest-suscribe p {
  font-size: 14px;
}

.lastest-suscribe h4 {
  position: relative;
  padding-bottom: 20px;
  font-weight: 600;
  color: var(--c1);
  margin-bottom: 20px;
}

.lastest-suscribe {
  padding: 40px 35px 35px 35px;
  border-radius: 4px;
  margin-bottom: 34px;
}

.lastest-suscribe h4::after,
.lastest-suscribe h4::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background-color: #2962ff;
  height: 1px;
}

.lastest-suscribe h4::after {
  width: 44px;
}

.lastest-suscribe h4::before {
  bottom: 8px;
  width: 74px;
}

.lastest-connect a .stay-follower span {
  background-color: #fff;
  width: 40px;
  text-align: center;
  padding: 10px 15px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #c2c2c2;
  font-size: 14px;
}

.lastest-absoulte:hover .lastest-connet-img img {
  transform: translate3d(10px, 0, 0) scale3d(1.2, 1.2, 1.2);
}

.lastest-absoulte .lastest-connet-img img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  transform: translate3d(-10px, 0, 0) scale3d(1.2, 1.2, 1.2);
  transition: transform 0.4s;
}

.lastest-absoulte:hover .lastest-connect-content .stay-follower span {
  background-color: var(--c3);
}

.lastest-connect-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 15px 12px;
  z-index: 99;
}

.lastest-absoulte a {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

.lastest-connet-img {
  overflow: hidden;
}

.lastest-connect.lastest-absoulte.overlay:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.5);
  z-index: 1;
  border-radius: 4px;
}

.lastest-connect.lastest-absoulte.overlay::before {
  opacity: 0;
}

.lastest-connect.lastest-absoulte.overlay {
  position: relative;
}

.summer-sale img {
  margin: 40px 0px;
  border-radius: 5px;
}

.box-content.stories h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.box-image.Budget {
  margin-bottom: 10px;
}

.loadmore-wrap .before-line {
  border: 1px solid #e5e5e5;
  border-width: 1px 0;
  height: 4px;
  width: 100%;
  display: block;
  margin-right: 10px;
  flex: 1;
  transition: all ease 0.31s;
}

.loadmore-wrap .after-line {
  border: 1px solid #e5e5e5;
  border-width: 1px 0;
  height: 4px;
  display: block;
  margin-left: 10px;
  width: 100%;
  flex: 1;
  transition: all ease 0.31s;
}

.loadmore-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin: 50px 0px;
}

.loadmore-wrap a:hover {
  background-color: var(--c3);
  color: var(--c2);
}

.loadmore-wrap a i {
  margin-left: 10px;
}

.loadmore-wrap a {
  color: var(--c1);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.6px;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px 14px;
  line-height: 1.4;
  font-size: 15px;
  background-color: #f8f8f8;
  box-shadow: unset;
  transition: all ease 0.4s;
}

.lastest-items .box-vertical-main-items:last-child {
  border: unset;
}

/* featured */
section.featureed {
  padding-top: 0px;
}
.featured {
  padding: 20px;
}

.box-content.box-content-absoulate.featured h3 {
  font-size: 29px;
  margin-bottom: 10px;
  margin-top: -3px;
}

.feartued-items .box-vertical-main-items {
  margin-bottom: 20px;
}

.feartued-items .box-vertical-main-items .box-main-vertical {
  gap: 20px;
  align-items: center;
}

.feartued-items
  .box-vertical-main-items
  .box-main-vertical
  .box-vertical-image {
  width: 45%;
}

.feartued-items
  .box-vertical-main-items
  .box-main-vertical
  .box-vertical-content {
  width: 55%;
}

.featured-head {
  padding: 40px 0px;
}

/* blog-stories */
.blog-stories-img {
  animation: bouncebubble infinite 5s;
  -webkit-animation: bouncebubble infinite 5s;
}
@keyframes bouncebubble {
  1% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateX(-10px);
  }
  100% {
    transform: translate(0);
    transform: translateX(0);
    transform: translateY(0);
  }
}
.blog-stories-img img {
  width: 400px;
  margin: 0 auto;
}
.blog-stories-content.lastest-form form {
  background-color: var(--c2);
  border-radius: 4px;
}
.blog-stories-content h2 {
  font-size: 32px;
  color: var(--c1);
  line-height: 1.4;
  margin-bottom: 30px;
}

.blog-stories-content form input {
  width: 77%;
  border: unset;
  background-color: unset;
  padding: 15px 20px;
  text-align: start;
  outline: 0;
}

.blog-stories-content.lastest-form button {
  width: 22%;
  padding: 16px 0px 15px 0px;
  border-radius: 0px 4px 4px 0px;
  margin: 0px;
}

section.blog-stories {
  background-color: #f7f7f7;
}

/* footer */
footer.footer {
  background-color: #0f1012;
}

.footer-logo a img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-item p {
  color: #d0d0d0;
  margin-right: 40px;
  margin-bottom: 28px;
}

.footer-item ul {
  display: flex;
  gap: 5px;
}

ul.tophead-social.footer-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  font-size: 15px;
  text-align: center;
  background: rgb(255 255 255 / 0.102);
  border-radius: 50%;
  transition: all 0.4s ease;
  color: var(--c2);
}
ul.tophead-social.footer-social li a:hover {
  background-color: var(--c3);
}
ul.tophead-social.footer-social li a:hover i {
  animation: toBottomFromTop 0.5s forwards;
}
@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
.footer-item .tagcloud a {
  background: #fff0;
  border-radius: 4px;
  border: 1px solid #252525;
  color: #d0d0d0 !important;
  font-size: 15px !important;
  margin: 0 2px 4px 0;
  padding: 10px 13px;
  transition: all 0.3s;
}
.footer-item .tagcloud a:hover {
  background-color: var(--c3);
}
.footer-item h4 {
  display: block;
  position: relative;
  color: var(--c2);
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 700;
}
.categories-item ul {
  display: block;
}
.categories {
  display: flex;
  gap: 40px;
  margin-top: -10px;
}
.categories-item ul li a:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--c2);
  border-radius: 5px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}
.categories-item ul li a {
  color: #d7cbcb;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  transition: all 140ms ease-in-out;
  position: relative;
  margin-left: 20px;
  font-family: var(--f1);
}
.categories-item ul li a:hover:before {
  background-color: var(--c3);
}
.recent-item {
  margin-top: -20px;
}
.recent-item .Popular-absoulate {
  border: unset;
  margin: 0;
  padding-bottom: 20px;
}
.recent-item .circle {
  height: 104px;
  width: 100px;
}
.recent-item .counter {
  left: 75px;
  top: 7px;
}
.recent-item .box-main-vertical {
  gap: 20px;
  align-items: center;
}
.box-main-vertical.Popular-absoulate:hover .counter {
  background-color: var(--c3);
}
.recent-item .box-vertical-content.stories.POPULAR h3 a {
  color: var(--c2);
}
.recent-item .POPULAR h3 a {
  font-size: 17px;
}
.recent-item .box-vertical-content.stories.POPULAR h3 a:hover {
  color: var(--c3);
}
.footer-bottom {
  margin-top: 70px;
  border-top: 1px solid #252525;
  font-size: 17px;
  text-align: center;
  padding: 25px 0;
}
.footer-bottom span,
.footer-bottom span a {
  color: #d0d0d0;
}
.footer-bottom span a:hover {
  color: var(--c2);
}
/* singlepage */
.single h1 {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: all ease 0.31s;
  font-family: var(--f1);
  font-weight: 700;
}
.single a {
  color: var(--c1);
}
.single-connect ul.stay-content {
  display: flex;
  gap: 8px;
}
.single-connect .single-icon i {
  color: #fff;
  transition: all ease 0.6s;
}
.single-connect ul.social-main li a {
  width: 44px;
  height: 40px;
  justify-content: center;
}
.single-connect ul.social-main {
  padding: 0;
}
.single-connect {
  margin: 20px 0px 30px 0px;
}
.single-tabs h4 {
  color: var(--c1);
  text-transform: uppercase;
  margin-bottom: 0;
}
.single-tag .tagcloud a {
  color: rgb(100 100 100) !important;
  border: 1px solid rgb(229 229 229);
}
.single-tag .tagcloud a:hover {
  color: var(--c2) !important;
}
.single-paragraph p {
  margin-bottom: 20px;
  color: #6c6f72;
}
.blockquote {
  background: #f7f7f7;
  border-radius: 4px;
  border: none;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  text-align: left;
  padding: 35px 50px 35px 50px;
  color: #444;
  border-left: 4px solid #5d5d5d;
}
cite:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 31px;
  height: 2px;
  background-color: #c1c1c1;
  transform: translatey(-50%);
}
cite {
  display: block;
  font-size: 14px;
  color: #646464;
  font-weight: 500;
  font-style: normal;
  margin-top: 12px;
  padding-left: 50px;
  letter-spacing: 2px;
  z-index: 1;
  position: relative;
}
.blockquote p:before {
  position: absolute;
  content: "\f10d";
  font-size: 38px;
  color: #e4e4e4;
  top: -48px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}
.blockquote p {
  position: relative;
  margin-top: 45px;
  margin-bottom: 0;
  z-index: 1;
  line-height: 1.6;
}
.single-blog-img {
  position: relative;
  margin-bottom: 40px;
}
.blog-img a {
  display: block;
}
section.single-blog .circle {
  height: 103px;
  width: 97px;
}
section.single-blog .counter {
  left: 76px;
  top: 20px;
}
section.single-blog .Popular-absoulate {
  padding-bottom: 20px;
  padding-top: 0px;
}
section.single-blog .footer-item {
  margin-top: 30px;
  padding-bottom: 10px;
}
/* categories-single */
.single-categories-btn a {
  margin: 0;
}
/* end inner-wrapper */
