/* fonts start */
@font-face {
  font-family: Poppins-Regular;
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: Poppins-Italic;
  src: url(../fonts/Poppins/Poppins-Italic.ttf);
}
@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/Poppins/Poppins-Bold.ttf);
}
@font-face {
  font-family: Poppins-Black;
  src: url(../fonts/Poppins/Poppins-Black.ttf);
}
@font-face {
  font-family: Poppins-SemiBold;
  src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
}
@font-face {
  font-family: Merriweather-Regular;
  src: url(../fonts/Merriweather/Merriweather-Regular.ttf);
}
@font-face {
  font-family: Merriweather-Italic;
  src: url(../fonts/Merriweather/Merriweather-Italic.ttf);
}
@font-face {
  font-family: Merriweather-Bold;
  src: url(../fonts/Merriweather/Merriweather-Bold.ttf);
}
/* fonts end */
:root {
  --primary-color: hsl(100, 100%, 100%);
  --secondary-color: #000000;
  --accent-color: hsl(0, 82%, 49%);
  --accent-secondary-color: hsl(112, 65%, 45%);
  /* --accent-gradient-color: linear-gradient(to right, hsl(0, 77%, 54%) 0%, hsl(0, 82%, 49%) 100%); */
  --accent-shadow-color: hsl(0, 82%, 60%);
  --accent-shadow-opacity-color: hsl(0, 82%, 60%, 0.25);
  --accent-text-color: hsl(0, 98%, 2%);
  --accent-text-light-color: hsl(0, 2%, 98%);
  --accent-text-light-on-dark-color: hsl(0, 0%, 70%);
  --accent-background-color: hsl(0, 2%, 98%);
  --accent-background-dark-color: hsl(0, 90%, 10%);
  --accent-background-dark-variant-color: hsl(0, 95%, 5%);
  --accent-selection-color: hsla(0, 82%, 49%, 0.2);
  --header-background-color: hsl(54, 50%, 100%, 0.9);
  --section-background-color: hsl(54, 50%, 100%);
  --featured-item-color: #eeeeee;
  --featured-item-shadow-color: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Dark mode styles */
.dark-mode {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-color: hsl(0, 82%, 49%);
  --accent-secondary-color: hsl(112, 65%, 45%);
  /* --accent-gradient-color: linear-gradient(to right, hsl(0, 77%, 54%) 0%, hsl(0, 82%, 49%) 100%); */
  --accent-shadow-color: hsl(0, 82%, 60%);
  --accent-shadow-opacity-color: hsl(0, 82%, 60%, 0.25);
  --accent-text-color: hsl(0, 2%, 98%);
  --accent-text-light-color: hsl(0, 2%, 98%);
  --accent-text-light-on-dark-color: hsl(0, 0%, 70%);
  --accent-background-color: hsl(0, 98%, 2%);
  --accent-background-dark-color: hsl(0, 90%, 10%);
  --accent-background-dark-variant-color: hsl(0, 95%, 5%);
  --accent-selection-color: hsla(0, 82%, 49%, 0.2);
  --header-background-color: hsl(54, 50%, 0%, 0.9);
  --section-background-color: hsl(54, 50%, 0%);
  --featured-item-color: #111111;
  --featured-item-shadow-color: 0 0 20px rgb(122 122 122 / 10%);
}

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  z-index: 9999;
}

.scroll-indicator-bar {
  height: 100%;
  background-color: var(--accent-color);
  width: 0;
}

/* Hide the scrollbar */
body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}

/* Handle */
body::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 10px;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary-color);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-out;
}

body {
  font-family: "Merriweather-Regular";
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--accent-text-color);
  background-color: var(--primary-color);
}

small {
  font-size: 0.875rem;
}

.c_btn,
.c_btn_outline {
  font-family: "Poppins-Regular";
  color: var(--accent-text-color);
  text-transform: capitalize;
}

h1,
h2,
h3 {
  font-family: "Poppins-Bold";
  color: var(--accent-text-color);
}

h4,
h5,
h6 {
  font-family: "Poppins-SemiBold";
  color: var(--accent-text-color);
}

::-moz-selection {
  background: var(--accent-selection-color);
}

::selection {
  background: var(--accent-selection-color);
}

.c_btn {
  font-size: 1rem;
  color: var(--primary-color) !important;
  background-color: var(--accent-color);
  padding-left: 15px !important;
  padding-right: 15px !important;
  transition: 0.3s;
}

.c_btn:hover {
  color: var(--primary-color) !important;
  background-color: var(--accent-secondary-color);
  border-color: var(--accent-secondary-color);
}

.c_btn_outline {
  font-size: 1rem;
  color: var(--accent-color) !important;
  background-color: var(--accent-background-color);
  border-color: var(--accent-color);
  padding-left: 15px !important;
  padding-right: 15px !important;
  transition: 0.3s;
}
.c_btn_outline:hover, .c_btn_outline:active {
  color: var(--primary-color) !important;
  background-color: var(--accent-color);
}

.c_btn_outline.active {
  color: var(--accent-text-light-color) !important;
  background-color: var(--accent-color) !important;
}

/* common end */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 1rem;
  }
  .c_btn {
    font-size: 16px;
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 1rem;
  }
  .c_btn {
    font-size: 16px;
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  .c_btn {
    font-size: 16px;
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.5rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
}
/* Extra extra large devices (extra large desktops, 1400px and up) */
@media (min-width: 1400px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
}
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #eeeeee;
  z-index: 9999;
}

.scroll-indicator-bar {
  height: 100%;
  background-color: var(--accent-color);
  width: 0;
}

body::-webkit-scrollbar {
  display: none;
}

/* header start */
header {
  padding: 10px 0px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
header.scrolled {
  background-color: var(--header-background-color);
}
header .header_logo img {
  width: 50px;
  margin-right: 10px;
}
header .header_logo h6 {
  color: var(--accent-color);
}
header .navbar .navbar-brand {
  padding: 0px;
}
header .navbar {
  padding: 0px !important;
}
header .navbar .nav_fixed_top .header_nav_content li .nav-link {
  color: var(--accent-text-color) !important;
  padding: 0px 15px;
  transition: 0.5s;
}
header .navbar .nav_fixed_top .header_nav_content li .nav-link:hover {
  color: var(--accent-color) !important;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-toggle {
  color: var(--accent-text-color) !important;
  transition: 0.5s;
  border: none;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-toggle:hover {
  color: var(--accent-color) !important;
  border: none;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-toggle::after {
  content: none;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-menu {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  width: 30vw;
  height: 50vh;
  top: 46px;
  border-radius: 0 0 0.375rem 0.375rem;
  border-top: 1px solid var(--accent-color);
  padding: 15px;
  overflow: hidden;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-menu .row {
  overflow: auto;
  width: 100%;
  height: 100%;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-menu .border_right {
  border-right: 1px solid var(--secondary-color);
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-menu .menu_title {
  font-family: "Merriweather-Bold";
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 15px;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-menu ul {
  padding: 0;
  margin-bottom: 30px;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-menu ul li {
  font-size: 14px;
  margin-bottom: 10px;
  list-style: none;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-menu ul li:first-child {
  margin-top: 10px;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-menu ul li a {
  color: var(--secondary-color) !important;
  text-decoration: none;
}
header .navbar .nav_fixed_top .nav_dropdown .dropdown-menu ul li a:hover {
  color: var(--accent-color) !important;
}
header .navbar .nav_fixed_top .image-container_inside {
  width: 37px;
  height: 37px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px dotted var(--accent-color);
  margin-left: 15px;
  transition: all 0.3s ease;
}
header .navbar .nav_fixed_top .image-container_inside:hover {
  border: 1px solid var(--accent-color);
}
header .navbar .nav_fixed_top .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
}
header .navbar .nav_fixed_top .image:hover {
  transition: transform 0.3s ease;
}
header .navbar .navbar-toggle {
  border: none;
  background-color: transparent;
}
header .navbar .navbar-toggle .hnt_svg {
  fill: var(--accent-color);
  width: 24px;
  height: 24px;
}
header .navbar .navbar-toggle .hnt_svg g {
  stroke: var(--accent-color);
}
header .navbar .navbar-toggle span {
  display: block;
  background-color: var(--accent-color);
  height: 3px;
  width: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  right: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;
}
header .navbar .navbar-toggle span:nth-child(1) {
  margin-top: 0.3em;
  transform: translate(0%, 0%) rotate(0deg);
}
header .navbar .navbar-toggle span:nth-child(2) {
  opacity: 1;
  width: 20px;
}
header .navbar .navbar-toggle span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
}
header .navbar .navbar-toggle:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
}
header .navbar .navbar-toggle:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
header .navbar .navbar-toggle:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
}
header .navbar .image-container {
  overflow: hidden;
  border-radius: 50%;
  border: 1px dotted var(--accent-color);
  /* to make it circular */
}
header .navbar .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
}
header .navbar .image:hover {
  transition: transform 0.3s ease;
}

/* header end */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  header {
    padding: 8px 0px;
  }
  header .header_logo img {
    width: 32px;
  }
  header .navbar .nav_fixed_top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  header .navbar .nav_fixed_top .header_nav_content {
    min-height: 100vh;
    padding: 8px 0px;
  }
  header .navbar .nav_fixed_top .header_nav_content .container {
    padding-bottom: 8px;
    background-color: var(--primary-color);
  }
  header .navbar .nav_fixed_top .header_nav_content {
    background-color: var(--primary-color);
    text-align: center;
  }
  header .navbar .nav_fixed_top .header_nav_content li .nav-link {
    padding: 10px 0px;
  }
  header .navbar .image-container {
    width: 30px;
    height: 30px;
    margin-left: 8px;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  header {
    padding: 8px 0px;
  }
  header .header_logo img {
    width: 32px;
  }
  header .navbar .nav_fixed_top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  header .navbar .nav_fixed_top .header_nav_content {
    min-height: 100vh;
    padding: 8px 0px;
  }
  header .navbar .nav_fixed_top .header_nav_content .container {
    padding-bottom: 8px;
    background-color: var(--primary-color);
  }
  header .navbar .nav_fixed_top .header_nav_content {
    background-color: var(--primary-color);
    text-align: center;
  }
  header .navbar .nav_fixed_top .header_nav_content li .nav-link {
    padding: 10px 0px;
  }
  header .navbar .image-container {
    width: 30px;
    height: 30px;
    margin-left: 8px;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  header {
    padding: 8px 0px;
  }
  header .header_logo img {
    width: 35px;
  }
  header .navbar .nav_fixed_top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  header .navbar .nav_fixed_top .header_nav_content {
    min-height: 100vh;
    padding: 8px 0px;
  }
  header .navbar .nav_fixed_top .header_nav_content .container {
    padding-bottom: 8px;
    background-color: var(--primary-color);
  }
  header .navbar .nav_fixed_top .header_nav_content {
    background-color: var(--primary-color);
    text-align: center;
  }
  header .navbar .nav_fixed_top .header_nav_content li .nav-link {
    padding: 10px 0px;
  }
  header .navbar .image-container {
    width: 33px;
    height: 33px;
    margin-left: 8px;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  header .header_logo img {
    width: 40px;
  }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  header .header_logo img {
    width: 45px;
  }
}
/* Extra extra large devices (extra large desktops, 1400px and up) */
.backtop {
  background-color: var(--accent-background-dark-variant-color);
}
.backtop a {
  text-decoration: none;
  color: var(--accent-text-light-on-dark-color) !important;
}

/* footer start */
.footer {
  background-color: var(--accent-background-dark-color);
  /* footer-top start */
}
.footer .footer_top {
  padding-bottom: 30px;
}
.footer .footer_top .footer_top_desc {
  padding-top: 50px;
}
.footer .footer_top .footer_top_desc h5 {
  font-family: "Merriweather-Bold";
  font-size: 1rem;
  color: var(--accent-text-light-on-dark-color);
}
.footer .footer_top .footer_top_desc_text p {
  color: var(--accent-text-light-on-dark-color);
}
.footer .footer_top .ftl_item {
  padding-top: 50px;
}
.footer .footer_top .ftl_item ul li {
  list-style: none;
}
.footer .footer_top .ftl_item ul li h5 {
  font-family: "Merriweather-Bold";
  font-size: 1rem;
  color: var(--accent-text-light-on-dark-color);
}
.footer .footer_top .ftl_item ul li a {
  font-size: 1rem;
  color: var(--accent-text-light-on-dark-color) !important;
  text-decoration: none;
  transition: 0.3s;
}
.footer .footer_top .ftl_item ul li a:hover {
  color: var(--accent-color) !important;
}
.footer .footer_top .ftl_item ul li .dropdown-toggle {
  color: var(--accent-text-light-on-dark-color) !important;
  text-decoration: none;
  padding: 0px;
  border: none;
}
.footer {
  /* footer-top end */
  /* footer-bottom start */
}
.footer .footer_bottom {
  padding-bottom: 40px;
}
.footer .footer_bottom .footer_bottom_left p {
  color: var(--accent-text-light-on-dark-color);
}
.footer .footer_bottom .footer_bottom_left p a {
  transition: 0.3s ease;
  text-decoration: none;
  color: var(--accent-text-light-on-dark-color) !important;
}
.footer .footer_bottom .footer_bottom_left p a:hover {
  color: var(--accent-color) !important;
}
.footer {
  /* footer-bottom end */
}

/* footer end */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .footer .footer_top .footer_top_desc {
    padding-top: 32px;
  }
  .footer .footer_top .ftl_item {
    padding-top: 32px;
  }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .footer .footer_top .footer_top_desc {
    padding-top: 32px;
  }
  .footer .footer_top .ftl_item {
    padding-top: 32px;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer .footer_top .footer_top_desc {
    padding-top: 35px;
  }
  .footer .footer_top .ftl_item {
    padding-top: 35px;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer .footer_top .footer_top_desc {
    padding-top: 40px;
  }
  .footer .footer_top .ftl_item {
    padding-top: 40px;
  }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer .footer_top .footer_top_desc {
    padding-top: 45px;
  }
  .footer .footer_top .ftl_item {
    padding-top: 45px;
  }
}
/* Extra extra large devices (extra large desktops, 1400px and up) */
/* img hover zoom start */
.img_hover_zoom {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 0.375rem 0.375rem 0 0;
}
.img_hover_zoom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.375rem 0.375rem 0 0;
  transition: transform 2s ease-in-out;
}
.img_hover_zoom iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.375rem;
}
.img_hover_zoom:hover img {
  transform: scale(1.1);
}

/* img hover zoom end */
/* placeholder start */
.c_placeholder {
  background-color: var(--accent-color);
}

.c_placeholder .content {
  visibility: hidden;
}

body.loaded .c_placeholder .content {
  visibility: visible;
}

body.loaded .c_placeholder {
  background-color: transparent;
}

/* placeholder end */
/* banner center image animation start */
.kayden_morph_animation {
  animation: morph 8s ease-in-out infinite;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  border: 5px solid #eeeeee;
  transition: all 1s ease-in-out;
  z-index: 5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
  object-position: left top;
  pointer-events: auto;
  opacity: 1;
  transform: translateZ(0) scale(1);
  transition-property: opacity, transform;
  transition-duration: 0.8s;
}

.kayden_morph_animation {
  animation: morph 8s ease-in-out infinite;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  transition: all 1s ease-in-out;
  z-index: 5;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%);
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    background: linear-gradient(45deg, var(--third) 0%, var(--secondary) 100%);
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 100%);
  }
}
/* banner center image animation end */
.project_animation {
  height: 80px;
  overflow: hidden;
}
.project_animation > div {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  height: 2.81rem;
  margin-bottom: 2.81rem;
}
.project_animation > div:first-child {
  animation: text-animation 10s infinite;
}
@keyframes text-animation {
  0% {
    margin-top: 0;
  }
  10% {
    margin-top: 0;
  }
  20% {
    margin-top: -5.62rem;
  }
  30% {
    margin-top: -5.62rem;
  }
  40% {
    margin-top: -11.24rem;
  }
  60% {
    margin-top: -11.24rem;
  }
  70% {
    margin-top: -5.62rem;
  }
  80% {
    margin-top: -5.62rem;
  }
  90% {
    margin-top: 0;
  }
  100% {
    margin-top: 0;
  }
}

/* button box-shadow animation start */
.at-button {
  animation: at-ripple 0.6s linear infinite;
}

@keyframes at-ripple {
  0% {
    box-shadow: 0 4px 10px rgba(102, 102, 102, 0.1), 0 0 0 0 rgba(102, 102, 102, 0.1), 0 0 0 5px rgba(102, 102, 102, 0.1), 0 0 0 10px rgba(102, 102, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 10px rgba(102, 102, 102, 0.1), 0 0 0 5px rgba(102, 102, 102, 0.1), 0 0 0 10px rgba(102, 102, 102, 0.1), 0 0 0 20px rgba(102, 102, 102, 0);
  }
}
/* button box-shadow animation end */
/* banner start */
.banner {
  background: radial-gradient(hsla(0, 82%, 49%, 0.05) 15%, transparent 16%, transparent 49%, hsla(0, 82%, 49%, 0.05) 50%, transparent 51%), radial-gradient(circle at top left, hsla(0, 82%, 49%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 82%, 49%, 0.05) 40%, transparent 41%), radial-gradient(circle at top right, hsla(0, 82%, 49%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 82%, 49%, 0.05) 40%, transparent 41%), radial-gradient(circle at bottom left, hsla(0, 82%, 49%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 82%, 49%, 0.05) 40%, transparent 41%), radial-gradient(circle at bottom right, hsla(0, 82%, 49%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 82%, 49%, 0.05) 40%, transparent 41%);
  background-size: 3em 3em;
  background-color: var(--accent-background-color);
  margin-top: -60px;
  padding-top: 80px;
  padding-bottom: 50px;
}
.banner .banner_left .banner_left_top {
  display: block;
  padding-top: 50px;
  padding-bottom: 5px;
  font-size: 16px;
}
.banner .banner_left h3 {
  color: var(--accent-color) !important;
}
.banner .banner_left p {
  padding-top: 30px;
  padding-bottom: 30px;
}
.banner .banner_left p i {
  color: var(--accent-color);
}
.banner .banner_left p .banner_left_services {
  font-family: "Merriweather-Bold";
  color: var(--accent-color) !important;
}
.banner .banner_left .banner_left_action {
  margin-bottom: 30px;
}
.banner .banner_left ul {
  padding: 0;
  margin: 0;
}
.banner .banner_left ul li {
  list-style: none;
  display: inline-block;
}
.banner .banner_left ul li a {
  color: var(--accent-color) !important;
  font-size: 14px;
  margin-right: 5px;
  text-decoration: none;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid var(--accent-color);
}
.banner .banner_left ul li a i {
  transition: 0.3s;
}
.banner .banner_left ul li a:hover i {
  transform: scale(0.8);
}
.banner .banner_left .banner_left_glad p {
  font-size: 16px;
  padding-top: 30px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.banner .banner_left .banner_left_glad p span {
  font-family: Merriweather-Bold;
}
.banner .banner_center {
  padding-top: 10px;
}
.banner .banner_right {
  padding-top: 250px;
}
.banner .banner_right p {
  margin-top: 10px;
}
.banner .banner_right .banner_right_top {
  display: block;
  padding-bottom: 10px;
  font-size: 16px;
  color: var(--accent-color);
}
.banner .banner_right .banner_right_explore {
  display: block;
  font-size: 16px;
  margin-top: 30px;
}
.banner .banner_right .banner_right_explore a {
  color: var(--accent-text-color) !important;
  text-underline-offset: 5px;
  transition: 0.3s;
}
.banner .banner_right .banner_right_explore a:hover {
  text-decoration: none;
}

/* banner end */
.statistics {
  padding-bottom: 30px;
}
.statistics .sectionClass {
  position: relative;
  display: block;
}
.statistics .fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}
.statistics .projectFactsWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.statistics #projectFacts .fullWidth {
  padding: 0;
}
.statistics .projectFactsWrap .item {
  width: 25%;
  height: 100%;
  padding: 50px 0px;
  text-align: center;
}
.statistics .projectFactsWrap .item:nth-child(1) {
  background: var(--accent-background-dark-variant-color);
}
.statistics .projectFactsWrap .item:nth-child(2) {
  background: var(--accent-background-dark-color);
}
.statistics .projectFactsWrap .item:nth-child(3) {
  background: var(--accent-background-dark-variant-color);
}
.statistics .projectFactsWrap .item:nth-child(4) {
  background: var(--accent-background-dark-color);
}
.statistics .projectFactsWrap .item p.number {
  font-size: 40px;
  padding: 20px 0;
  font-weight: bold;
}
.statistics .projectFactsWrap .item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 0;
  padding: 10px;
  font-family: "Open Sans";
}
.statistics .projectFactsWrap .item span {
  width: 60px;
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  margin: 0 auto;
}
.statistics .projectFactsWrap .item i {
  vertical-align: middle;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}
.statistics .projectFactsWrap .item:hover i,
.statistics .projectFactsWrap .item:hover p {
  color: white;
}
.statistics .projectFactsWrap .item:hover span {
  background: white;
}
@media (max-width: 786px) {
  .statistics .projectFactsWrap .item {
    flex: 0 0 50%;
  }
}

/* about start */
.about {
  background-color: var(--accent-background-color);
  padding-top: 60px;
  padding-bottom: 60px;
}
.about .about_top {
  text-align: center;
  padding-bottom: 40px;
}
.about .about_top small {
  display: block;
  padding-bottom: 10px;
  color: var(--accent-color);
}
.about .about_top h4 {
  font-family: "Poppins-Bold";
}
.about .about_top h4 a {
  color: var(--accent-text-color) !important;
  text-decoration: none;
  transition: 0.5s;
}
.about .about_top h4 a i {
  font-size: 12px;
}
.about .about_top h4 a:hover {
  color: var(--accent-color) !important;
}
.about .about_top p {
  padding-top: 10px;
}
.about .about_bottom_left {
  margin: 20px;
}
.about .about_bottom_left .book {
  width: 100%;
  height: 23.0991em;
  margin-top: -4.4em;
  position: relative;
  transform: perspective(60em) rotateX(58deg) rotateZ(-34deg) skewY(-7deg);
  box-shadow: -1.4em 1.7em 0.3em -0.3em rgba(0, 0, 0, 0.8), -1.6em 1.8em 0.9em -0.2em rgba(0, 0, 0, 0.5), 0.3em 1.9em 1.3em rgba(0, 0, 0, 0.3);
  border-top-right-radius: 0.4em;
}
.about .about_bottom_left .book img {
  border-top-right-radius: 0.4em;
  box-sizing: border-box;
  width: 100%;
  clip: rect(0em, 18.5em, 23.1em, 0em);
  display: block;
  position: absolute;
  filter: saturate(90%);
}
.about .about_bottom_left .book:before,
.about .about_bottom_left .book:after {
  content: "";
  position: absolute;
  top: 0;
}
.about .about_bottom_left .book:before {
  width: 105%;
  height: 105%;
  left: -5%;
  z-index: -1;
  background-repeat: no-repeat;
  background-image: linear-gradient(115deg, transparent 2.8%, #3f3f3f 3%, #3f3f3f 16%, transparent 16%), linear-gradient(125deg, transparent 10%, #3f3f3f 10%, #3f3f3f 17%, #222 46.8%, transparent 47%), linear-gradient(125deg, transparent 46%, rgba(0, 0, 0, 0.5) 46.5%, rgba(0, 0, 0, 0.25) 49%, transparent 53%), linear-gradient(to right, #444, #666), linear-gradient(#444, #444), linear-gradient(140deg, transparent 45%, #eee 45%, #ccc 96.8%, rgba(170, 170, 170, 0) 97%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 0.4em, 94% 0.2em, 100% 100%;
  background-position: 0 0, 0 0, 0 0, 0 95.8%, 0 100%, 0 0;
}
.about .about_bottom_left .book:after {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, transparent 2%, rgba(0, 0, 0, 0.1) 3%, rgba(0, 0, 0, 0.1) 4%, transparent 5%), linear-gradient(-50deg, rgba(0, 0, 0, 0.1) 20%, transparent 100%), linear-gradient(-50deg, rgba(0, 0, 0, 0.2) 20%, transparent 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 20%, transparent 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 20%, transparent 100%);
  background-size: 100% 100%, 2% 20%, 1% 20%, 2% 20%, 1% 20%;
  background-position: 0 0, 2.2% 100%, 3% 100%, 2.2% 0, 3% 0;
}
.about .about_bottom_left body {
  background-color: #8fbc8f;
  font-size: 15px;
  z-index: 1;
  padding: 60px 20px;
}
.about .about_bottom_left .container {
  width: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 70px 50px;
  margin: 0 auto;
}
.about .about_bottom_left .container > img {
  width: 220px;
}
.about .about_bottom_right {
  padding-top: 20px;
}
.about .about_bottom_right h4 {
  font-family: "Poppins-Bold";
}
.about .about_bottom_right h6 {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* about end */
/* services start */
.services {
  background-color: var(--section-background-color);
  padding-top: 60px;
  padding-bottom: 60px;
}
.services .services_top {
  text-align: center;
  padding-bottom: 40px;
}
.services .services_top small {
  display: block;
  padding-bottom: 10px;
  color: var(--accent-color);
}
.services .services_top h4 {
  font-family: "Poppins-Bold";
}
.services .services_top h4 a {
  color: var(--accent-text-color) !important;
  text-decoration: none;
  transition: 0.5s;
}
.services .services_top h4 a i {
  font-size: 12px;
}
.services .services_top h4 a:hover {
  color: var(--accent-color) !important;
}
.services .services_top p {
  padding-top: 10px;
}
.services .services_top {
  text-align: left;
}
.services .services_item {
  text-decoration: none;
  display: block;
  margin-top: 20px;
  box-shadow: var(--featured-item-shadow-color);
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
}
.services .services_item .si_link {
  display: none;
  position: absolute;
  right: 0;
  padding: 20px;
}
.services .services_item .si_link a {
  text-decoration: none;
  color: var(--accent-color) !important;
}
.services .services_item .services_item_img img {
  width: 100%;
  border-radius: 0.375rem 0.375rem 0 0;
}
.services .services_item .services_item_img {
  width: 100%;
}
.services .services_item .services_item_img button {
  background-color: transparent;
  color: var(--secondary-color) !important;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  border: none;
  line-height: 10px;
  top: 15px;
  right: 15px;
}
.services .services_item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.services .services_item:hover .si_link {
  display: inline-block;
}
.services .services_item:hover img {
  filter: none;
}
.services .services_item h5 {
  padding: 15px 15px 0px;
  color: var(--secondary-color) !important;
}
.services .services_item .si_stars {
  padding: 15px 15px 0px;
  font-size: 0.875rem;
  color: var(--secondary-color) !important;
}
.services .services_item ul {
  padding: 15px !important;
  color: var(--secondary-color) !important;
}
.services .services_item ul li {
  list-style: none;
}
.services .services_item ul li i {
  padding-right: 10px;
}

/* services end */
/* skills start */
.skills {
  background: radial-gradient(hsla(0, 82%, 49%, 0.05) 15%, transparent 16%, transparent 49%, hsla(0, 82%, 49%, 0.05) 50%, transparent 51%), radial-gradient(circle at top left, hsla(0, 82%, 49%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 82%, 49%, 0.05) 40%, transparent 41%), radial-gradient(circle at top right, hsla(0, 82%, 49%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 82%, 49%, 0.05) 40%, transparent 41%), radial-gradient(circle at bottom left, hsla(0, 82%, 49%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 82%, 49%, 0.05) 40%, transparent 41%), radial-gradient(circle at bottom right, hsla(0, 82%, 49%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 82%, 49%, 0.05) 40%, transparent 41%);
  background-size: 3em 3em;
  background-color: var(--accent-background-color);
  padding-top: 60px;
  padding-bottom: 60px;
}
.skills .skills_top {
  text-align: center;
  padding-bottom: 40px;
}
.skills .skills_top small {
  display: block;
  padding-bottom: 10px;
  color: var(--accent-color);
}
.skills .skills_top h4 {
  font-family: "Poppins-Bold";
}
.skills .skills_top h4 a {
  color: var(--accent-text-color) !important;
  text-decoration: none;
  transition: 0.5s;
}
.skills .skills_top h4 a i {
  font-size: 12px;
}
.skills .skills_top h4 a:hover {
  color: var(--accent-color) !important;
}
.skills .skills_top p {
  padding-top: 10px;
}
.skills .skills_top {
  text-align: right;
}
.skills .skills_bottom .progress-title {
  font-family: "Merriweather-Bold";
  font-size: 18px;
  padding: 0px 0px 10px;
}
.skills .skills_bottom .progress {
  height: 25px;
  background: #d4d7e6;
  border-radius: 30px;
  box-shadow: none;
  margin-bottom: 30px;
  overflow: visible;
}
.skills .skills_bottom .progress .progress-bar {
  background-color: var(--accent-color);
  border-radius: 30px;
  box-shadow: none;
  position: relative;
  animation: animate-positive 2s;
}
.skills .skills_bottom .progress .progress-bar:before {
  content: "";
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 10px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.skills .skills_bottom .progress .progress-bar:after {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #cbcbcb;
  border: 8px solid #000;
  position: absolute;
  bottom: -8px;
  right: 0;
  z-index: 1;
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}

/* skills end */
/* portfolio start */
.portfolio {
  background-color: var(--primary-color);
  padding-top: 60px;
  padding-bottom: 60px;
}
.portfolio .portfolio_top {
  text-align: center;
  padding-bottom: 40px;
}
.portfolio .portfolio_top small {
  display: block;
  padding-bottom: 10px;
  color: var(--accent-color);
}
.portfolio .portfolio_top h4 {
  font-family: "Poppins-Bold";
}
.portfolio .portfolio_top h4 a {
  color: var(--accent-text-color) !important;
  text-decoration: none;
  transition: 0.5s;
}
.portfolio .portfolio_top h4 a i {
  font-size: 12px;
}
.portfolio .portfolio_top h4 a:hover {
  color: var(--accent-color) !important;
}
.portfolio .portfolio_top p {
  padding-top: 10px;
}
.portfolio .portfolio_middle .portfolio_middle_title {
  text-align: center;
}
.portfolio .portfolio_middle .portfolio_middle_title .filter-button {
  margin: 0;
  color: var(--accent-text-color);
  font-family: "Merriweather-Bold";
  font-size: 14px;
  padding: 5px 10px;
  transition: 0.5s;
}
.portfolio .portfolio_middle .portfolio_middle_title .filter-button:hover,
.portfolio .portfolio_middle .portfolio_middle_title .filter-button .active {
  color: var(--accent-text-light-color) !important;
  background-color: var(--accent-color) !important;
}
.portfolio .portfolio_bottom .pl_item {
  display: none;
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery {
  margin-top: 20px;
  transition: 0.3s;
  position: relative;
  border-radius: 0.375rem;
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img {
  border-radius: 0.375rem;
  overflow: hidden;
  width: 100%;
  height: 200px;
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.375rem;
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img:hover {
  transition: all 0.3s ease-in-out;
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img:hover .portfolio_bottom_gallery_text {
  display: block !important;
  background-color: var(--primary-color);
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img:hover .pbgi_text {
  display: none;
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img .portfolio_bottom_gallery_text {
  position: absolute;
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
  display: none;
  transform: translate(-50%);
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img .portfolio_bottom_gallery_text .pbgt_title {
  font-family: "Merriweather-Bold";
  padding-bottom: 5px;
  font-size: 16px;
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img .portfolio_bottom_gallery_text .pbgt_desc {
  font-size: 14px;
  padding-bottom: 10px;
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img .portfolio_bottom_gallery_text a {
  text-align: center;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  color: var(--primary-color) !important;
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img .portfolio_bottom_gallery_text a:hover {
  background-color: var(--accent-shadow-color);
}
.portfolio .portfolio_bottom .portfolio_bottom_gallery .portfolio_bottom_gallery_img .portfolio_bottom_gallery_text a i {
  font-size: 14px;
}
.portfolio .portfolio_load_more {
  margin-top: 30px;
  text-align: center;
}

.modal-content {
  background-color: var(--primary-color);
}
.modal-content .pm_link {
  color: var(--accent-color) !important;
}
.modal-content .pm_link:hover {
  color: var(--accent-background-dark-color) !important;
}

/* portfolio end */
/* featured start */
.featured {
  border: 1px dashed var(--accent-color);
  background-color: var(--primary-color);
}
.featured h4 {
  color: var(--accent-color) !important;
}

/* featured end */
/* testimonials start */
.testimonials {
  position: relative;
  background: radial-gradient(hsla(0, 18%, 82%, 0.05) 15%, transparent 16%, transparent 49%, hsla(0, 18%, 82%, 0.05) 50%, transparent 51%), radial-gradient(circle at top left, hsla(0, 18%, 82%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 18%, 82%, 0.05) 40%, transparent 41%), radial-gradient(circle at top right, hsla(0, 18%, 82%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 18%, 82%, 0.05) 40%, transparent 41%), radial-gradient(circle at bottom left, hsla(0, 18%, 82%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 18%, 82%, 0.05) 40%, transparent 41%), radial-gradient(circle at bottom right, hsla(0, 18%, 82%, 0.05) 10%, transparent 10%, transparent 39%, hsla(0, 18%, 82%, 0.05) 40%, transparent 41%);
  background-size: 3em 3em;
  background-color: var(--accent-color);
  padding-top: 60px;
  padding-bottom: 60px;
}
.testimonials .testimonials_top {
  text-align: center;
  padding-bottom: 40px;
}
.testimonials .testimonials_top small {
  display: block;
  padding-bottom: 10px;
  color: var(--accent-color);
}
.testimonials .testimonials_top h4 {
  font-family: "Poppins-Bold";
}
.testimonials .testimonials_top h4 a {
  color: var(--accent-text-color) !important;
  text-decoration: none;
  transition: 0.5s;
}
.testimonials .testimonials_top h4 a i {
  font-size: 12px;
}
.testimonials .testimonials_top h4 a:hover {
  color: var(--accent-color) !important;
}
.testimonials .testimonials_top p {
  padding-top: 10px;
}
.testimonials .testimonials_top {
  text-align: left;
}
.testimonials .testimonials_top small,
.testimonials .testimonials_top h4,
.testimonials .testimonials_top p {
  color: var(--primary-color);
}
.testimonials .testimonials_top small a,
.testimonials .testimonials_top h4 a,
.testimonials .testimonials_top p a {
  color: var(--primary-color) !important;
}
.testimonials .testimonials_bottom_item {
  width: 300px;
  text-align: center;
}
.testimonials .testimonials_bottom_item .card {
  width: 100%;
  height: 300px;
  transform-style: preserve-3d;
  perspective: 250px;
  background-color: transparent;
  border: none;
  border-radius: 0.375rem;
}
.testimonials .testimonials_bottom_item .card .face {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: var(--accent-color);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: 0.5s;
  backface-visibility: hidden;
  border-radius: 0.375rem;
}
.testimonials .testimonials_bottom_item .card .face.front-face {
  border: 1px solid var(--accent-shadow-color);
  padding: 20px;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonials .testimonials_bottom_item .card .face.back-face {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonials .testimonials_bottom_item .card .face.back-face {
  transform: rotateY(180deg);
}
.testimonials .testimonials_bottom_item .card .face.back-face .testimonials_bottom_img {
  width: 300px;
  height: 300px;
  overflow: hidden;
}
.testimonials .testimonials_bottom_item .card .face.back-face .testimonials_bottom_img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testimonials_bottom_item .card .face.back-face .testimonials_bottom_img .testimonials_bottom_title {
  bottom: 20px;
  left: 20px;
  position: absolute;
}
.testimonials .testimonials_bottom_item .card .face.back-face .testimonials_bottom_img .testimonials_bottom_title h4 {
  color: var(--primary-color);
  margin: 0;
  font-size: 16px;
  line-height: 1.2rem;
}
.testimonials .testimonials_bottom_item .card .face.back-face .testimonials_bottom_img .testimonials_bottom_title span {
  font-size: 14px;
  color: var(--primary-color);
  display: block;
}
.testimonials .testimonials_bottom_item .card .face.back-face .testimonials_bottom_img .testimonials_bottom_title span a {
  font-family: "Merriweather-Bold";
  text-decoration: none;
  color: var(--primary-color) !important;
}
.testimonials .testimonials_bottom_item .card .face.back-face .testimonials_bottom_img .testimonials_bottom_title p i {
  color: yellow;
  font-size: 10px;
}
.testimonials .testimonials_bottom_item .card:hover .face.back-face {
  transform: rotateY(0deg);
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testimonials_bottom_item .card .face.front-face {
  position: absolute;
  transform: rotateY(0deg);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.testimonials .testimonials_bottom_item .card .face.front-face .testimonials_bottom_text {
  position: relative;
  height: 100%;
}
.testimonials .testimonials_bottom_item .card .face.front-face .testimonials_bottom_text p {
  position: absolute;
  top: 0px;
  font-family: "Merriweather-Italic";
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1.5rem;
  text-align: left;
}
.testimonials .testimonials_bottom_item .card .face.front-face .testimonials_bottom_text p .fa-quote-right {
  font-size: 1.2rem;
  display: block;
  text-align: right;
}
.testimonials .testimonials_bottom_item .card .face.front-face .testimonials_bottom_text .testimonials_bottom_title {
  position: absolute;
  bottom: 0px;
}
.testimonials .testimonials_bottom_item .card .face.front-face .testimonials_bottom_text .testimonials_bottom_title h4 {
  text-align: left;
  color: var(--primary-color);
  margin: 0;
  font-size: 16px;
}
.testimonials .testimonials_bottom_item .card .face.front-face .testimonials_bottom_text .testimonials_bottom_title h4 small {
  position: relative;
  top: -2px;
  font-size: 12px;
  padding-left: 10px;
  color: yellow;
  display: inline-block;
}
.testimonials .testimonials_bottom_item .card .face.front-face .testimonials_bottom_text .testimonials_bottom_title span {
  font-size: 14px;
  color: var(--primary-color);
  display: block;
}
.testimonials .testimonials_bottom_item .card .face.front-face .testimonials_bottom_text .testimonials_bottom_title span a {
  font-family: "Merriweather-Bold";
  text-decoration: none;
  color: var(--primary-color) !important;
}
.testimonials .testimonials_bottom_item .card:hover .face.front-face {
  transform: rotateY(-180deg);
}
.testimonials .slider-controls {
  position: absolute;
  top: 190px;
}
.testimonials .slider-controls .prev-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--accent-color);
  background-color: var(--primary-color);
  text-align: center;
  border-color: var(--primary-color);
}
.testimonials .slider-controls .prev-btn:hover {
  color: var(--accent-color);
  border-color: var(--primary-color);
}
.testimonials .slider-controls .next-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--accent-color);
  background-color: var(--primary-color);
  text-align: center;
  border-color: var(--primary-color);
}
.testimonials .slider-controls .next-btn:hover {
  color: var(--accent-color);
  border-color: var(--primary-color);
}

/* testimonials end */
/* blog start */
.blog {
  position: relative;
  background-color: var(--primary-color);
  padding-top: 60px;
  padding-bottom: 60px;
}
.blog .blog_top {
  text-align: center;
  padding-bottom: 40px;
}
.blog .blog_top small {
  display: block;
  padding-bottom: 10px;
  color: var(--accent-color);
}
.blog .blog_top h4 {
  font-family: "Poppins-Bold";
}
.blog .blog_top h4 a {
  color: var(--accent-text-color) !important;
  text-decoration: none;
  transition: 0.5s;
}
.blog .blog_top h4 a i {
  font-size: 12px;
}
.blog .blog_top h4 a:hover {
  color: var(--accent-color) !important;
}
.blog .blog_top p {
  padding-top: 10px;
}
.blog .blog_top {
  text-align: right;
}
.blog .blog_featured_item {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-right: 5px;
  background-color: var(--primary-color);
  display: block;
  text-decoration: none;
  color: inherit !important;
  transition: all 0.3 ease-in-out;
  box-shadow: 0px 0px 5px 0px rgba(117, 117, 117, 0.25);
}
.blog .blog_featured_item .bfi_content_container {
  height: 400px;
}
.blog .blog_featured_item .bfi_content_container .bfi_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.blog .blog_featured_item .bfi_content_container .bfi_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.blog .blog_featured_item .bfi_content_container .bfi_text {
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.5019607843) !important;
}
.blog .blog_featured_item .bfi_content_container .bfi_text h4 {
  font-size: 20px;
  line-height: 30px;
  padding-left: 15px;
  padding-right: 15px;
  text-transform: capitalize;
  color: var(--primary-color) !important;
}
.blog .blog_featured_item .bfi_content_container .bfi_text .post-category {
  text-decoration: none;
  color: var(--primary-color) !important;
  text-decoration: underline;
  display: block;
  padding: 10px 15px 0px;
  letter-spacing: 0.2em;
  font-family: "Merriweather-Regular";
  font-size: 12px;
  text-transform: uppercase;
}
.blog .blog_featured_item .bfi_content_container .bfi_text .post-desc {
  padding: 15px;
  color: var(--primary-color) !important;
}
.blog .blog_featured_item:hover {
  box-shadow: none;
}
.blog .blog_featured_item:hover .bfi_content_container .bfi_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.blog .blog_featured_item:hover .bfi_content_container .bfi_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.blog .blog_featured_item:hover .bfi_content_container .bfi_text {
  top: auto;
  bottom: 0px;
}
.blog .blog_featured_item:hover .bfi_content_container .bfi_text h4 {
  color: var(--primary-color);
  padding-bottom: 15px;
}
.blog .blog_featured_item:hover .bfi_content_container .bfi_text .post-desc {
  display: none;
}
.blog .slider-controls {
  position: absolute;
  top: 200px;
  right: 120px;
}
.blog .slider-controls .prev-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  text-align: center;
  border-color: var(--primary-color);
}
.blog .slider-controls .prev-btn:hover {
  color: var(--accent-color);
  border-color: var(--primary-color);
}
.blog .slider-controls .next-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  text-align: center;
  border-color: var(--primary-color);
}
.blog .slider-controls .next-btn:hover {
  color: var(--accent-color);
  border-color: var(--primary-color);
}

/* blog end */
.shop {
  position: relative;
  background-color: var(--featured-item-color);
  padding-top: 60px;
  padding-bottom: 60px;
}
.shop .shop_top {
  text-align: center;
  padding-bottom: 40px;
}
.shop .shop_top small {
  display: block;
  padding-bottom: 10px;
  color: var(--accent-color);
}
.shop .shop_top h4 {
  font-family: "Poppins-Bold";
}
.shop .shop_top h4 a {
  color: var(--accent-text-color) !important;
  text-decoration: none;
  transition: 0.5s;
}
.shop .shop_top h4 a i {
  font-size: 12px;
}
.shop .shop_top h4 a:hover {
  color: var(--accent-color) !important;
}
.shop .shop_top p {
  padding-top: 10px;
}
.shop .shop_top {
  text-align: left;
}
.shop .shop_featured_item {
  margin-left: 5px;
  margin-right: 5px;
  background-color: var(--primary-color);
  box-shadow: 4px 4px 10px -4px rgba(117, 117, 117, 0.25);
}
.shop .shop_featured_item .sfi_text a {
  color: var(--accent-text-color) !important;
  text-decoration: none;
  transition: 0.5s;
}
.shop .shop_featured_item .sfi_text a:hover {
  text-decoration: none;
  color: var(--accent-color) !important;
}
.shop .shop_featured_item .sfi_text a:hover h6 {
  color: var(--accent-color);
}
.shop .shop_featured_item .sfi_text a h6 {
  font-size: 16px;
  line-height: 1.5rem;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.shop .shop_featured_item .sfi_text .rating {
  color: var(--accent-color);
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
}
.shop .shop_featured_item .sfi_text .rating .sfit_number {
  font-size: 12px;
}
.shop .shop_featured_item .sfi_text .sfit_desc {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.shop .shop_featured_item .sfi_text .price {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Merriweather-Bold";
  font-size: 16px;
}
.shop .shop_featured_item .sfi_text .price span {
  font-size: 12px;
  text-decoration: line-through;
}
.shop .shop_featured_item .sfi_text .sfit_btn {
  margin-bottom: 15px;
  margin-left: 15px;
  margin-right: 15px;
}
.shop .shop_featured_item .sfi_text .sfit_btn .sfitb_div button {
  display: inline-block;
}
.shop .shop_featured_item .sfi_img {
  position: relative;
}
.shop .shop_featured_item .sfi_img .img_hover_zoom {
  height: 200px;
}
.shop .shop_featured_item .sfi_img .img_hover_zoom .shop_badge {
  background-color: var(--accent-color);
  font-family: "Merriweather-Regular";
  padding: 5px;
  color: var(--primary-color);
  display: inline-block;
  line-height: 10px;
  font-size: 12px;
  text-align: center;
  top: 15px;
  left: 15px;
}
.shop .shop_featured_item .sfi_img .img_hover_zoom button {
  background-color: transparent;
  color: var(--secondary-color);
  font-size: 16px;
  text-align: center;
  display: inline-block;
  border: none;
  line-height: 10px;
  top: 15px;
  right: 15px;
}
.shop .shop_featured_item .sfi_img .img_hover_zoom img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.shop .slider-controls {
  position: absolute;
  top: 180px;
}
.shop .slider-controls .prev-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  text-align: center;
  border-color: var(--primary-color);
}
.shop .slider-controls .prev-btn:hover {
  color: var(--accent-color);
  border-color: var(--primary-color);
}
.shop .slider-controls .next-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  text-align: center;
  border-color: var(--primary-color);
}
.shop .slider-controls .next-btn:hover {
  color: var(--accent-color);
  border-color: var(--primary-color);
}
.shop {
  /* product start */
}
.shop .product {
  padding-top: 20px;
  padding-bottom: 20px;
}
.shop .wnrb_img span {
  position: absolute;
  background-color: #fff;
  top: 10px;
  right: 10px;
}
.shop .wnrb_img span i {
  font-size: 20px;
  padding: 5px;
}
.shop .product_left i {
  border: none;
  font-size: 16px;
  padding-right: 5px;
  color: red;
}
.shop .product_left span {
  font-size: 16px;
  color: red;
}
.shop .wnrb_text a h2 {
  font-family: Lato-Regular;
  font-size: 20px;
}
.shop .pl_text p {
  border: none;
  font-size: 18px;
  padding-left: 0px;
}
.shop .product_right p {
  font-size: 18px;
  line-height: 30px;
}
.shop .product_right p:nth-child(2) {
  color: red;
  text-decoration: line-through;
}
.shop {
  /* product end */
}

/* contact start */
.contact {
  background-color: var(--accent-background-color);
  padding-top: 60px;
  padding-bottom: 60px;
}
.contact .contact_top {
  text-align: center;
  padding-bottom: 40px;
}
.contact .contact_top small {
  display: block;
  padding-bottom: 10px;
  color: var(--accent-color);
}
.contact .contact_top h4 {
  font-family: "Poppins-Bold";
}
.contact .contact_top h4 a {
  color: var(--accent-text-color) !important;
  text-decoration: none;
  transition: 0.5s;
}
.contact .contact_top h4 a i {
  font-size: 12px;
}
.contact .contact_top h4 a:hover {
  color: var(--accent-color) !important;
}
.contact .contact_top p {
  padding-top: 10px;
}
.contact .contact_top {
  text-align: left;
}
.contact .contact_form {
  text-align: center;
}
.contact .contact_form p {
  margin: 0;
}
.contact .contact_form form {
  margin-top: 20px;
}
.contact .contact_form form .cf_name,
.contact .contact_form form .cf_email,
.contact .contact_form form .cf_message,
.contact .contact_form form .cf_send {
  padding: 10px 20px;
  font-size: 18px;
  margin-bottom: 10px !important;
}
.contact .contact_form form .form-control {
  color: var(--accent-text-color);
  border: 1px solid var(--accent-selection-color);
  background-color: var(--primary-color);
}
.contact .contact_form form .form-control:focus {
  color: var(--accent-text-color);
  background-color: var(--primary-color);
  border-color: var(--accent-selection-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--accent-shadow-opacity-color);
}
.contact .contact_location div div i {
  font-size: 16px;
  padding: 12px 12px;
  color: var(--accent-text-light-color);
  background-color: var(--accent-color);
}
.contact .contact_location div div .fa-phone {
  padding: 12px 10px;
}
.contact .contact_location div div .fa-envelope {
  padding: 12px 10px;
}
.contact .contact_location .contact_info_wrap {
  padding: 10px 5px;
  text-align: left;
}
.contact .contact_location .contact_info_wrap .contact_info_title {
  font-family: "Merriweather-Bold";
  font-size: 18px;
  margin-bottom: 0px;
}
.contact .contact_location .contact_info_wrap .contact_info_text {
  display: block;
}

/* contact end */
/* map start */
.map {
  background-color: var(--accent-background-color);
  padding-top: 20px;
  padding-bottom: 20px;
}
.map .map_api {
  max-height: 400px;
}

/* map end */
/* profile start */
.profile .profile-nav,
.profile .profile-info {
  margin-top: 30px;
}
.profile .profile-nav .user-heading {
  background: #fbc02d;
  color: #fff;
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  padding: 30px;
  text-align: center;
}
.profile .profile-nav .user-heading.round a {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}
.profile .profile-nav .user-heading a img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.profile .profile-nav .user-heading h1 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 5px;
}
.profile .profile-nav .user-heading p {
  font-size: 12px;
}
.profile .profile-nav ul {
  margin-top: 1px;
}
.profile .profile-nav ul > li {
  border-bottom: 1px solid #ebeae6;
  margin-top: 0;
  line-height: 30px;
}
.profile .profile-nav ul > li:last-child {
  border-bottom: none;
}
.profile .profile-nav ul > li > a {
  border-radius: 0;
  -webkit-border-radius: 0;
  color: #89817f;
  border-left: 5px solid #fff;
}
.profile .profile-nav ul > li > a:hover,
.profile .profile-nav ul > li > a:focus,
.profile .profile-nav ul li.active a {
  background: #f8f7f5 !important;
  border-left: 5px solid #fbc02d;
  color: #89817f !important;
}
.profile .profile-nav ul > li:last-child > a:last-child {
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
}
.profile .profile-nav ul > li > a > i {
  font-size: 16px;
  padding-right: 10px;
  color: #bcb3aa;
}
.profile .r-activity {
  margin: 6px 0 0;
  font-size: 12px;
}
.profile .p-text-area,
.profile .p-text-area:focus {
  border: none;
  font-weight: 300;
  box-shadow: none;
  color: #c3c3c3;
  font-size: 16px;
}
.profile .profile-info .panel-footer {
  background-color: #f8f7f5;
  border-top: 1px solid #e7ebee;
}
.profile .profile-info .panel-footer ul li a {
  color: #7a7a7a;
}
.profile .bio-graph-heading {
  background: #fbc02d;
  color: #fff;
  text-align: center;
  font-style: italic;
  padding: 40px 110px;
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  font-size: 16px;
  font-weight: 300;
}
.profile .bio-graph-info {
  color: #89817e;
}
.profile .bio-graph-info h1 {
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 20px;
}
.profile .bio-row {
  width: 50%;
  float: left;
  margin-bottom: 10px;
  padding: 0 15px;
}
.profile .bio-row p span {
  width: 100px;
  display: inline-block;
}
.profile .bio-chart,
.profile .bio-desk {
  float: left;
}
.profile .bio-chart {
  width: 40%;
}
.profile .bio-desk {
  width: 60%;
}
.profile .bio-desk h4 {
  font-size: 15px;
  font-weight: 400;
}
.profile .bio-desk h4.terques {
  color: #4cc5cd;
}
.profile .bio-desk h4.red {
  color: #e26b7f;
}
.profile .bio-desk h4.green {
  color: #97be4b;
}
.profile .bio-desk h4.purple {
  color: #caa3da;
}
.profile .file-pos {
  margin: 6px 0 10px 0;
}
.profile .profile-activity h5 {
  font-weight: 300;
  margin-top: 0;
  color: #c3c3c3;
}
.profile .summary-head {
  background: #ee7272;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #ee7272;
}
.profile .summary-head h4 {
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.profile .summary-head p {
  color: rgba(255, 255, 255, 0.6);
}
.profile ul.summary-list {
  display: inline-block;
  padding-left: 0;
  width: 100%;
  margin-bottom: 0;
}
.profile ul.summary-list > li {
  display: inline-block;
  width: 19.5%;
  text-align: center;
}
.profile ul.summary-list > li > a > i {
  display: block;
  font-size: 18px;
  padding-bottom: 5px;
}
.profile ul.summary-list > li > a {
  padding: 10px 0;
  display: inline-block;
  color: #818181;
}
.profile ul.summary-list > li {
  border-right: 1px solid #eaeaea;
}
.profile ul.summary-list > li:last-child {
  border-right: none;
}
.profile .activity {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
.profile .activity.alt {
  width: 100%;
  float: right;
  margin-bottom: 10px;
}
.profile .activity span {
  float: left;
}
.profile .activity.alt span {
  float: right;
}
.profile .activity span,
.profile .activity.alt span {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #eee;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
.profile .activity.terques span {
  background: #8dd7d6;
}
.profile .activity.terques h4 {
  color: #8dd7d6;
}
.profile .activity.purple span {
  background: #b984dc;
}
.profile .activity.purple h4 {
  color: #b984dc;
}
.profile .activity.blue span {
  background: #90b4e6;
}
.profile .activity.blue h4 {
  color: #90b4e6;
}
.profile .activity.green span {
  background: #aec785;
}
.profile .activity.green h4 {
  color: #aec785;
}
.profile .activity h4 {
  margin-top: 0;
  font-size: 16px;
}
.profile .activity p {
  margin-bottom: 0;
  font-size: 13px;
}
.profile .activity .activity-desk i,
.profile .activity.alt .activity-desk i {
  float: left;
  font-size: 18px;
  margin-right: 10px;
  color: #bebebe;
}
.profile .activity .activity-desk {
  margin-left: 70px;
  position: relative;
}
.profile .activity.alt .activity-desk {
  margin-right: 70px;
  position: relative;
}
.profile .activity.alt .activity-desk .panel {
  float: right;
  position: relative;
}
.profile .activity-desk .panel {
  background: #f4f4f4;
  display: inline-block;
}
.profile .activity .activity-desk .arrow {
  border-right: 8px solid #f4f4f4 !important;
}
.profile .activity .activity-desk .arrow {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  display: block;
  height: 0;
  left: -7px;
  position: absolute;
  top: 13px;
  width: 0;
}
.profile .activity-desk .arrow-alt {
  border-left: 8px solid #f4f4f4 !important;
}
.profile .activity-desk .arrow-alt {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  display: block;
  height: 0;
  right: -7px;
  position: absolute;
  top: 13px;
  width: 0;
}
.profile .activity-desk .album {
  display: inline-block;
  margin-top: 10px;
}
.profile .activity-desk .album a {
  margin-right: 10px;
}
.profile .activity-desk .album a:last-child {
  margin-right: 0px;
}

/* profile end */
/* unsorted start */
body {
  cursor: url("../images/logo/logo-mouse.png"), auto;
}

a,
button,
.btn,
.nav-link,
.header_nav_toggler,
.filter-button,
area {
  cursor: url("../images/logo/logo-mouse-link.png"), pointer;
}

/* Header styles */
.nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Image map styles */
#banner_image_container {
  position: relative;
}

/* Modal */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
  border-bottom: none;
  position: relative;
}

.modal-body {
  padding: 30px;
}

.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 3rem;
  color: #000;
  cursor: pointer;
}

.special-offer {
  background: #e31616;
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin: 20px 0;
}

/* unsorted end */
/* import end */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* banner start */
  .banner_left {
    text-align: center;
  }
  .banner_left_top {
    padding-top: 50px;
    padding-bottom: 15px;
    font-size: 15px;
  }
  .banner_left p {
    padding-top: 15px;
    padding-bottom: 25px;
  }
  .banner_left_action {
    margin-bottom: 15px;
  }
  .banner_left ul li a {
    width: 25px;
    height: 25px;
  }
  .banner_left_glad p {
    font-size: 15px;
    padding-top: 25px;
  }
  /* banner end */
  .statistics .projectFactsWrap .item:nth-child(1) {
    background: var(--accent-background-dark-variant-color);
  }
  .statistics .projectFactsWrap .item:nth-child(2) {
    background: var(--accent-background-dark-color);
  }
  .statistics .projectFactsWrap .item:nth-child(3) {
    background: var(--accent-background-dark-color);
  }
  .statistics .projectFactsWrap .item:nth-child(4) {
    background: var(--accent-background-dark-variant-color);
  }
  /* featured start */
  .featured {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  /* featured end */
  /* about start */
  .about {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .about .about_top {
    padding-bottom: 50px;
  }
  .about .about_top small {
    padding-bottom: 5px;
  }
  .about .about_top h4 a {
    color: var(--accent-text-color) !important;
    text-decoration: none;
    transition: 0.5s;
  }
  .about .about_top h4 a i {
    font-size: 12px;
  }
  .about .about_top h4 a:hover {
    color: var(--accent-color) !important;
  }
  .about .about_top p {
    padding-top: 10px;
  }
  .about .about_bottom_right {
    padding-top: 50px;
  }
  /* about end */
  /* services start */
  .services {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  /* services end */
  /* blog start */
  .bfid_text a h3,
  .bfid_text a {
    text-align: center;
  }
  .bfit_btn {
    text-align: center;
  }
  .blog_left {
    padding: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .blog {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .blog_top {
    padding-bottom: 30px;
  }
  .blog_left_img {
    margin-bottom: 10px;
  }
  .blog_read_more span {
    font-size: 16px;
  }
  .blog_read_more i {
    font-size: 16px;
  }
  .blog_right_text p {
    padding-top: 0px;
  }
  /* blog end */
  /* action start */
  .action {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .action .action_bg_color .action_text {
    text-align: center;
    padding: 0px 10px;
  }
  .action .action_bg_color .action_text p {
    padding-top: 12px;
  }
  .action .action_bg_color .action_button {
    text-align: center !important;
    padding: 0px 10px 20px;
  }
  /* action end */
  /* contact start */
  .contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact .contact_form p {
    font-size: 18px;
  }
  .contact .contact_form form .cf_name,
  .contact .contact_form form .cf_email,
  .contact .contact_form form .cf_message,
  .contact .contact_form form .cf_send {
    padding: 8px 15px;
    font-size: 16px;
    margin-bottom: 10px !important;
  }
  .contact .contact_info {
    margin-bottom: 20px;
  }
  .contact .contact_info .contact_location div div:last-child {
    padding-left: 0px;
  }
  .contact .contact_info .contact_location div div i {
    font-size: 12px;
    padding: 8px 8px;
  }
  .contact .contact_info .contact_location div div .fa-phone {
    padding: 8px 6px;
  }
  .contact .contact_info .contact_location div div .fa-envelope {
    padding: 8px 6px;
  }
  /* contact end */
  /* skills start */
  .skills {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  /* skills end */
  /* portfolio start */
  .portfolio {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .portfolio .portfolio_middle .portfolio_middle_title {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .portfolio .portfolio_middle .portfolio_middle_title::-webkit-scrollbar {
    display: none;
  }
  .filter-button h3 {
    font-size: 18px;
  }
  /* portfolio end */
  /* testimonials start */
  .testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .testimonials_bottom {
    margin-left: 10px;
    margin-right: 10px;
  }
  /* testimonials end */
  /* about page start */
  .about_language {
    margin-left: 20px;
    margin-right: 20px;
  }
  /* about page end */
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* banner start */
  .banner_left {
    text-align: center;
  }
  .banner_left_top {
    padding-top: 25px;
    padding-bottom: 15px;
    font-size: 15px;
  }
  .banner_left p {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .banner_left_action {
    margin-bottom: 15px;
  }
  .banner_left ul li a {
    width: 26px;
    height: 26px;
  }
  .banner_left_glad p {
    font-size: 15px;
    padding-top: 15px;
  }
  /* banner end */
  .statistics .projectFactsWrap .item:nth-child(1) {
    background: var(--accent-background-dark-variant-color);
  }
  .statistics .projectFactsWrap .item:nth-child(2) {
    background: var(--accent-background-dark-color);
  }
  .statistics .projectFactsWrap .item:nth-child(3) {
    background: var(--accent-background-dark-color);
  }
  .statistics .projectFactsWrap .item:nth-child(4) {
    background: var(--accent-background-dark-variant-color);
  }
  /* featured start */
  .featured {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  /* featured end */
  /* about start */
  .about {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .about_top {
    padding-bottom: 30px;
  }
  .about_top small {
    padding-bottom: 5px;
  }
  /* about end */
  /* services start */
  .services {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .services_top span {
    font-size: 15px;
    padding-bottom: 5px;
  }
  /* services end */
  /* blog start */
  .blog_left {
    padding: 15px;
    margin-left: 30px;
    margin-right: 30px;
  }
  .blog {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .blog_top {
    padding-bottom: 30px;
  }
  .blog_top span {
    font-size: 15px;
    padding-bottom: 5px;
  }
  .blog_left_img {
    margin-bottom: 10px;
  }
  .blog_read_more span {
    font-size: 16px;
  }
  .blog_read_more i {
    font-size: 16px;
  }
  .blog_right_text p {
    padding-top: 0px;
  }
  /* blog end */
  /* action start */
  .action {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .action .action_bg_color .action_text {
    text-align: center;
    padding: 0px 10px;
  }
  .action .action_bg_color .action_text p {
    padding-top: 5px;
  }
  .action .action_bg_color .action_button {
    text-align: center !important;
    padding: 0px 10px 20px;
  }
  /* action end */
  /* contact start */
  .contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact .contact_form p {
    font-size: 18px;
  }
  .contact .contact_form form .cf_name,
  .contact .contact_form form .cf_email,
  .contact .contact_form form .cf_message,
  .contact .contact_form form .cf_send {
    padding: 8px 15px;
    font-size: 16px;
    margin-bottom: 10px !important;
  }
  .contact .contact_info {
    margin-bottom: 20px;
  }
  .contact .contact_info .contact_location div div i {
    padding: 10px 10px;
  }
  .contact .contact_info .contact_location div div .fa-phone {
    padding: 10px 8px;
  }
  .contact .contact_info .contact_location div div .fa-envelope {
    padding: 10px 8px;
  }
  /* contact end */
  /* skills start */
  .skills {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  /* skills end */
  /* portfolio start */
  .portfolio {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  /* portfolio end */
  /* testimonials start */
  .testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .testimonials_bottom {
    margin-left: 30px;
    margin-right: 30px;
  }
  /* testimonials end */
  /* about page start */
  .about_language {
    margin-left: 0px;
    margin-right: 0px;
  }
  /* about page end */
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* banner start */
  .banner_left_top {
    padding-top: 25px;
    padding-bottom: 20px;
    font-size: 15px;
  }
  .banner_left ul li a {
    width: 28px;
    height: 28px;
  }
  .banner_left_glad p {
    font-size: 15px;
  }
  .banner_left p {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .banner_left_action {
    margin-bottom: 20px;
  }
  /* banner end */
  .statistics .projectFactsWrap .item:nth-child(1) {
    background: var(--accent-background-dark-variant-color);
  }
  .statistics .projectFactsWrap .item:nth-child(2) {
    background: var(--accent-background-dark-color);
  }
  .statistics .projectFactsWrap .item:nth-child(3) {
    background: var(--accent-background-dark-color);
  }
  .statistics .projectFactsWrap .item:nth-child(4) {
    background: var(--accent-background-dark-variant-color);
  }
  /* featured start */
  .featured {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  /* featured end */
  /* about start */
  .about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* about end */
  /* services start */
  .services {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .services_top span {
    font-size: 15px;
  }
  /* services end */
  /* blog start */
  .blog {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* blog end */
  /* action start */
  .action {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .action .action_bg_color .action_text {
    padding: 0px 10px;
  }
  .action .action_bg_color .action_text p {
    padding-top: 5px;
  }
  .action .action_bg_color .action_button {
    padding: 0px 10px;
  }
  /* action end */
  /* contact start */
  .contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .contact .contact_form form .cf_name,
  .contact .contact_form form .cf_email,
  .contact .contact_form form .cf_message,
  .contact .contact_form form .cf_send {
    padding: 8px 15px;
    font-size: 16px;
    margin-bottom: 10px !important;
  }
  .contact .contact_location div div i {
    padding: 10px 10px;
  }
  .contact .contact_location div div .fa-phone {
    padding: 10px 8px;
  }
  .contact .contact_location div div .fa-envelope {
    padding: 10px 8px;
  }
  /* contact end */
  /* skills start */
  .skills {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* skills end */
  /* portfolio start */
  .portfolio {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* portfolio end */
  /* testimonials start */
  .testimonials {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .testimonials .testimonials_bottom_item {
    margin: 5px 5px;
  }
  .testimonials .testimonials_bottom_item .card .face.back-face {
    padding: 10px;
  }
  .testimonials .testimonials_bottom_item .card .face.back-face {
    padding: 10px;
  }
  /* testimonials end */
  /* about page start */
  .about_language {
    margin-left: 0px;
    margin-right: 0px;
  }
  /* about page end */
}
/* Large devices (desktops, 992px and up) */
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* about page start */
  .about_language {
    margin-left: 35px;
    margin-right: 35px;
  }
  /* about page end */
}
/* Extra extra large devices (extra large desktops, 1400px and up) */
@media (min-width: 1400px) {
  /* banner start */
  .banner .banner_right {
    padding-top: 255px;
  }
  /* banner end */
  /* about page start */
  .about_language {
    margin-left: 35px;
    margin-right: 35px;
  }
  /* about page end */
}
