@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&amp;family=Open+Sans:wght@300;400;500;600;700;800&amp;display=swap");
@import url("https://fonts.cdnfonts.com/css/jost");
/* GENERAL */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  outline: none;
}

:root {
  --color-black: #000;
  --color-orenge: #f75023;
  --color-green: #1cbe59;
  --color-parpuls: #8067f0;

  --font-jost: "Jost", sans-serif;
}
a {
  color: var(--color-black) !important;
  transition: 0.5s;
}
a:hover {
  color: var(--color-orenge) !important;
}
.color-green {
  color: var(--color-green);
}
.color-parpuls {
  color: var(--color-parpuls);
}

.shadow {
  box-shadow: 18px 0px 87px 0px rgb(10 15 70 / 7%);
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 30px;
  word-wrap: break-word;
  font-weight: 400;
  color: var(--color-black);
}
svg {
  fill: currentcolor;
  width: 15px;
  height: 15px;
}
img.svg {
  width: 15px;
  height: 15px;
}
.color-orenge {
  color: var(--color-orenge);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font-jost) !important;
  color: var(--color-black);
}
p {
  color: #6f6b80;
}
h1 {
  font-size: 45px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 16px;
}

a {
  cursor: pointer;
}
html {
    scroll-behavior: smooth;
  }
.cursor {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px dashed var(--color-orenge);
  border-radius: 50%;
  background-color: transparent;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.1s;
}
.cursor2 {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--color-orenge);
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.content:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: var(--color-orenge);
  opacity: 0.3;
}
.content:hover ~ .cursor2 {
  opacity: 0;
}

/* POINTER CHANGE */

#circle-big {
  display: block;
  position: absolute;
  margin-top: -15px;
  margin-left: -15px;
  transition: all 0.08s ease-out;
  width: 30px;
  height: 30px;
  z-index: 9999;
  text-align: center;
  border: 2px solid var(--color-orenge);
  opacity: 0.5;
  border-radius: 50%;
  pointer-events: none;
}

#circle {
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-left: -3px;
  background-color: var(--color-orenge);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#cursor.on-link #circle {
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  opacity: 0.3;
}

#cursor.on-link #circle-big {
  opacity: 0;
}

.navbars {
  position: fixed;
  width: 100%; 
  z-index: 9;
}
header.sticky { 
  background: #fff;
}



.sp-megamenu-parent > li > a,
.sp-megamenu-parent > li > span,
.sp-megamenu-parent > li:last-child > a {
  text-decoration: none;
  color: var(--colorvariable);
  font-family: var(--font-jost);
  font-weight: 500;
  padding: 28px 0px;
  display: block;
  transition: all 0.3s ease;
  font-size: 16px;
  /* line-height: 30px; */
  margin: 0px 48px 0px 0px;
  text-transform: none;
}

.btn-Download {
  text-decoration: none;
  color: var(--color-black);
  background-color: transparent;
  font-family: var(--font-jost);
  font-weight: 500;
  padding: 8px 35px 7px 35px !important;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--color-orenge);
  position: relative;
  font-size: 16px;
  line-height: 30px;
}

.btn-about {
  text-decoration: none;
  color: var(--color-black);
  background-color: var(--color-orenge);
  font-family: var(--font-jost);
  color: #fff;
  font-weight: 500;
  padding: 8px 35px 7px 35px !important;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid var(--color-orenge);
  position: relative;
  font-size: 16px;
  line-height: 30px;
}

.main-area {
  height: 100vh;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  background-image: url("../images/slider/1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-position: 50% 50%;
  box-shadow: 0 0 0 0 #ffffff;
}
.hero_area {
  height: 100vh;
  display: flex;
  align-items: center;
}

.text-decoration-none {
  text-decoration: none !important;
}
.icons {
  color: var(--color-black);
  transition: 0.5s;
}
.icons:hover {
  color: var(--color-orenge);
}
.fa-1x {
  font-size: 1.2em !important;
}
.min-heights {
  width: 300px;
  height: 400px;
}

.ai_img .skills {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  position: absolute;
  box-shadow: 24px 0 72px rgb(54 32 152 / 30%);
  background-color: #390000;
  top: 20px;
  left: -20px;
  animation: anim_moveBottom 3s linear 0s infinite alternate;
}
.ai_img .skills .svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  color: #ff9a00;
}

.photoshop_img .skills {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  position: absolute;
  box-shadow: 24px 0 72px rgb(54 32 152 / 30%);
  background-color: #001631;
  top: 80px;
  right: 110px;
  animation: anim_moveBottom 3s linear 0s infinite alternate;
}
.photoshop_img .skills .svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  color: #00a9ff;
}
.figma_img .sppb-addon-single-image-container {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  position: absolute;
  box-shadow: 24px 0px 72px rgb(54 32 152 / 30%);
  background-color: #fff;
  bottom: 20px;
  left: 100px;
  animation: anim_moveBottom 3s linear 0s infinite alternate;
}
.figma_img .sppb-addon-single-image-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
}

.up-dwon-arrow svg {
  width: 35px !important;
  height: 35px !important;
}

.up-dwon-arrow svg #wheel {
  animation: scroll ease 2s infinite;
}

.imag1 img {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  margin: auto;
}

.img-lefts {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.img-rights {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.img-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.bg_Success {
  position: absolute;
  left: 10px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  top: 4rem;
}
.bg_Projects {
  position: absolute;
  right: 110px;
  bottom: 70px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 12px;
}

.sppb-animated-number {
  font-size: 50px;
  line-height: 66px;
  font-weight: 600;
}
.sppb-animated-number-title {
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin: 0px 0px 0px 17px;
  font-weight: 500;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--color-orenge) !important;
  background-color: transparent !important;
}
.tabs_color {
  color: var(--color-black);
  font-weight: 500;
  font-family: var(--font-jost);
}
.tabs_imgs_a {
  overflow: hidden;
}
.tabs-all-imags {
  transition: 0.5s;
  cursor: pointer;
  overflow: hidden;
}
.tabs-all-imags img {
  transition: 0.5s;
  border-radius: 12px;
}
.tabs-all-imags:hover img {
  transform: scale(1.2);
}
.tabs-all-imags:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.521);
  border-radius: 12px !important;
}
.tabs-all-imags .hover_show_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  transform: translateY(2rem);
  opacity: 0;
}
.tabs-all-imags:hover .hover_show_content {
  transform: translateY(0rem);
  opacity: 1;
  color: #fff;
  z-index: 1;
}

.carousel-indicators .active {
  background-color: var(--color-orenge) !important;
}

.carousel-indicators li {
  width: 15px !important;
  height: 15px !important;
  background-color: rgba(250, 123, 0, 0.78) !important;
  border-radius: 50px;
  top: 4rem;
  cursor: pointer;
}

.blogs-all-imags {
  overflow: hidden;
}

.blogs-all-imags img {
  transition: 0.5s;
  overflow: hidden;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blogs-all-imags:hover img {
  transform: scale(1.2);
}

.blog-time {
  top: 1rem;
  right: 1rem;
  background-color: var(--color-green);
  padding: 10px;
  color: #fff;
}

.Subscribe-area {
  padding-top: 83px;
  padding-right: 90px;
  padding-bottom: 86px;
  padding-left: 90px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  background-image: url("../images/subscribe/dots.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-position: 50% 50%;
  box-shadow: 0 0 0 0 #ffffff;
  position: relative;
}
.Subscribe-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(128, 103, 240, 0.92);
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.send-form-control {
  height: 60px;
  border-radius: 12px 0px 0px 12px !important;
  color: #6f6b80 !important;
  background-color: #fff !important;
  padding-left: 30px !important;
  border: none !important;
}

.send-btn {
  border-radius: 0px 12px 12px 0px !important;
  background-color: var(--color-orenge) !important;
  border: none !important;
  color: #fff !important;
  padding: 0px 35px !important;
}

.sppb-media {
  gap: 15px;
}
.sppb-icon-container > i {
  font-size: 24px;
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.sppb-icon-container {
  box-shadow: 0 0 0 0 #ffffff;
  display: inline-block;
  text-align: center;
  padding: 0 0 0 0;
  color: #8067f0;
  background-color: #ece8fd;
  border-width: 0px;
  border-radius: 159px;
}

.sppb-icon-container {
  width: 88px;
  height: 88px;
  line-height: 88px;
  border-radius: 100%;
  position: relative;
}

.contect-form-control {
  height: 59px;
  color: #6f6b80 !important;
  background-color: #fff !important;
  padding-left: 30px !important;
  border: none !important;
}

.footer {
  background-color: #f2f5fb;
}

.ftr-details li {
    padding: 0 0 15px;
}

.ff-social-icons a {
    color: #fff;
    padding: 0 20px 0 0;
    font-size: 18px;
}

.footer-address-list li {
    color: #6a6a8e;
    display: flex;
    padding: 0 0 5px;
}
.footer-address-list li i {
    margin: 0 15px 0 0;
    display: initial;
    font-size: 21px;
}
.footer-address-list li>span {
    position: relative;
    top: 5px;
}
.footer-address-list li p {
    font-weight: 500;
    line-height: 25px;
}
.instagram-post {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5px;
}


/* blog apge */
.hero_blogs {
  height: 100%;
  padding: 150px 0px;
  background-image: url("../images/slider/1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-position: 50% 50%;
  box-shadow: 0 0 0 0 #ffffff;
}

blockquote {
    margin-bottom: 25px;
    border-left: 5px solid var(--color-orenge);
    padding-left: 50px;
    font-size: 19px;
    font-style: italic;
    color: var(--color-black);
}
.object-covers {
    object-fit: cover;
}
.recentpost {
    width: 100%;
    background-color: #3c3c3c;
    padding: 25px 30px 24px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}
/* ANIMATIONS */

@keyframes anim_moveBottom {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(60px);
  }
}

@keyframes animPulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* */

@media (max-width: 575.98px) {
  .h1,
  h1 {
    font-size: 2.2rem;
  }
  .main-area {
    height: 100%;
  }
  .navbars {
    background-color: #fff;
  }
  .hero_area {
    height: 100%;
    padding-top: 7rem;
  }
  .imgs_avtar {
    text-align: center;
  }
  .ai_img .skills {
    left: 30px;
  }
  .photoshop_img .skills {
    right: 40px;
  }
  .figma_img .sppb-addon-single-image-container {
    left: 0;
    margin: auto;
    right: 0;
  }
  .bg_Success {
    top: 0;
  }
  .bg_Projects {
    right: 16px;
    bottom: 14px;
  }
  .Subscribe-area {
    padding-top: 41px;
    padding-right: 10px;
    padding-bottom: 36px;
    padding-left: 8px;
  }
  .send-form-control {
    height: 49px;
  }
  .send-btn {
    padding: 0px 19px !important;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .navbars {
    background-color: #fff;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbars {
    background-color: #fff;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}
