/* Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Root Var */
:root {
  /* Root Theme Color */
  --theme-color: #000;
  --theme-color-second: #fff;
  --theme-color-third: #5cb95d;
  --theme-color-fourth: #ca3c3a;
  /* Root Font */
  --heading-font: "smarty-webfont";
  --paragraph-font: "Poppins", sans-serif;
  /* --span-font: 'spanist'; */
  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font);
}

/* Font Face */
@font-face {
  font-family: "smarty-webfont";
  src: url(../fonts/smarty-webfont.ttf);
}

/* @font-face {
  font-family: "";
  src: url();
} */

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: var(--heading-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 21px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: 48px;
  font-weight: 700;
}

h3 {}

h4 {}

h5 {}

h6 {}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 70px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--theme-color-fourth);
  border-radius: 25px;
  text-align: center;
  border: 2px solid var(--theme-color-fourth);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
  flex-wrap: wrap;
  gap: 7px;
}

a.comon-btn {
  background: var(--theme-color-fourth);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 0;
  border-radius: 5px;
  width: 190px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a.comon-btn:hover {
  background: #121212;
  color: var(--theme-color-second);
}

a.comon-btn2 {
  background: var(--theme-color-third);
  color: #fff;
  width: 215px;
}

a.comon-btn2:hover {
  background: #121212;
  color: var(--theme-color-second);
}

a.comon-btn3 {
  background: var(--theme-color-fourth);
  color: #fff;
  width: 215px;
}

a.comon-btn3:hover {
  background: #121212;
  color: var(--theme-color-second);
}

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: var(--theme-color-second);
}

a.navbar-brand img {
  width: 190px;
}

.header_menu li a {
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
  padding: 28px 18px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: #ca3c3a;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

.header_menu .hd_info {
  margin-left: 18px;
}

/* Banner Section */
.banner_sec {
  padding: 110px 0 40px;
  background: url(../image/banner_sec.jpg);
  color: #fff;
}

.banner_sec2 {
  background: url(../image/banner_sec2.jpg);
}

.banner_sec3 {
  background: url(../image/banner_sec3.jpg);
}

.banner_sec .social_icon ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner_sec .social_icon ul li img {
  width: 100px;
}

.banner_sec .social_icon {
  padding-top: 130px;
}

.main_banner .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  z-index: 1111 !important;
}

.main_banner .carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #fff;
}

/* ************ */
.home_sec2 {
  padding-top: 100px;
  padding-bottom: 155px;
}

/* ****** */

.home_sec3 .content {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  color: #000;
  box-shadow: var(--shadow-large);
  height: 100%;
}

.home_sec3 .content img {
  width: 55px;
  margin-bottom: 15px;
}

.home_sec3 .content h6 {
  font-size: 18px;
  margin-bottom: 10px;
}

.home_sec3 .content p {
  font-size: 15px;
  line-height: 1.6;
  color: #434343;
}

.home_sec3 .content a {
  color: var(--theme-color-fourth);
}

/* ****************** */
.hosting_sec .plan_card {
  background: #fff;
  border-radius: 0;
  padding: 24px 0;
  box-shadow: 0 0 11px 2px #adadadad;
  text-align: center;
}

.hosting_sec .plan_card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hosting_sec .price {
  background: #d84343;
  color: #fff;
  padding: 10px 0;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 19px;
}

.hosting_sec .plan_card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.hosting_sec .plan_card ul li {
  color: #444;
  margin-bottom: 9px;
}

.hosting_sec .note {
  color: #888;
  padding: 0 20px;
}

.hosting_sec .bottom_text {
  margin-top: 40px;
}

.hosting_sec .bottom_text p {
  color: #777;
}

.hosting_sec .hidden-content h6 {
  font-family: var(--paragraph-font);
  font-size: 17px;
}

/* ************ */
.home_sec4 h2 {
  font-size: 52px;
}

.home_sec4 .comon-btn {
  width: 245px;
}

.home_sec4 {
  padding-top: 480px;
}

/* customer testimonial  */
.customer_testimonial .test-box {
  height: 100%;
  border-radius: 9px !important;
  padding: 36px 24px !important;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 2px 9px;
}

.customer_testimonial .test-box ul {
  display: flex;
  gap: 0px;
  color: #e0aa15;
  font-size: 16px;
}

.customer_testimonial .test-box .content {
  margin-bottom: 35px;
}

.customer_testimonial .test-box .content p {
  color: #000;
  opacity: 0.7;
  font-size: 15px;
  line-height: 1.7;
}

.customer_testimonial .test-box .name p {
  font-family: var(--paragraph-font);
  margin-bottom: 0;
  font-size: 16px;
}

.customer_testimonial .test-box .content h6 {
  font-size: 17px;
  font-family: var(--paragraph-font);
}

.customer_testimonial .accordion-button {
  background-color: var(--theme-color-third);
  color: #fff;
  box-shadow: none !important;
}

.customer_testimonial .box-menu-card {
  background-color: #eeeeee;
  border-radius: 15px;
}

.customer_testimonial .box-menu-card h2 {
  font-size: 40px;
}

.customer_testimonial .box-menu-card .rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.customer_testimonial .accordion-item {
  color: #000;
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
}

.customer_testimonial .accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "+";
  background-image: none !important;
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

.customer_testimonial .accordion-button:not(.collapsed)::after {
  background-image: none !important;
  transform: rotate(0deg);
  content: "-";
}

/* ************** */
.home_sec_8 form input, .home_sec_8 form textarea, .home_sec_8 form select {
  background-color: transparent;
  border: 1px solid #000;
  padding: 17px 18px;
  font-size: 16px;
  border-radius: 8px;
  color: #1e1e1e;
}

.home_sec_8 form:placeholder-shown {
  color: #1e1e1e;
}

.home_sec_8 form textarea {
  height: 180px;
}

.home_sec_8 img {
  height: 100%;
}

.home_sec_8 form button {
  background-color: var(--theme-color-fourth);
  border: none;
  padding: 15px 18px;
  border-radius: 8px;
  color: #fff;
  width: 100%;
  font-size: 16px;
  text-transform: uppercase;
}

.home_sec_8 .left_content .left_content {
  position: absolute;
  top: 50px;
  left: 40px;
  color: #fff;
  width: 90%;
}

.home_sec_8 .left_content .left_content a {
  color: #fff;
}

.home_sec_8 h3 {
  line-height: 1.1;
  margin-bottom: 4px;
}

.home_sec_8 .contact_info ul li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  font-size: 16px;
}

.home_sec_8 .contact_info {
  position: absolute;
  bottom: -175%;
}


/* Blog Page */
#bg-blue .blog-box a p {
  color: #000;
  margin-bottom: 5px !important;
  font-size: 15px;
}

#bg-blue .blog-box a h5 {
  font-weight: 400;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}

.blog-sec .blog-box ul li a {
  font-size: 15px;
  color: var(--theme-color-fourth);
  font-weight: 500;
}

.blog-sec2 .blog-box2 {
  height: 100%;
  box-shadow: var(--shadow-large);
  padding: 30px 20px;

}

.blog-sec .blog-box ul {
  display: flex;
  align-items: start;
  gap: 5px 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

#bg-blue .read-btn {
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.blog-sec .blog-box {
  position: relative;
}

.blog-sec .blog-box h5 {
  font-family: var(--paragraph-font);
  font-size: 17px;
  line-height: 1.5;
  min-height: 51px;
}

.blog-sec .blog-box .btom_content {
  position: absolute;
  bottom: 10px;
  padding: 0 24px;
}

/* Footer Sec */

footer {
  padding: 80px 0;
}
footer a h2{
  color: var(--theme-color-fourth);
}

footer .ft_logo .content p {
  margin-bottom: 0;
  padding-left: 25px;
  font-size: 15px;
  line-height: 1.5;
}

footer .ft_contact_info ul li {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 19px;
  margin-bottom: 21px;
}

footer .ft_contact_info ul li a {
  font-size: 18px;
  color: #a8a8a8 !important;
}

footer .ft_contact_info ul {
  margin-bottom: 0;
  justify-content: start;
  gap: 65px;
}

footer .ft_menu_content ul {
  display: flex;
  gap: 60px;
  text-transform: uppercase;
  font-size: 16px;
  justify-content: start;
  margin-bottom: 0;
}

footer .ft_menu_content ul li a {
  color: #d2d2d2;
  font-size: 18px;
}

footer .ft_menu_content {
  padding-bottom: 25px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  margin-top: 40px;
}

footer .copy_content .social_icon a img {
  width: 38px;
}

footer .copy_content .social_icon {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: end;
}

footer .copy_content p {
  color: #ccc;
}

footer .copy_content {
  margin-top: 25px;
}

.inner-banner {
  background-color: #2d2d2d !important;
  color: #fff;
  padding: 165px 0 50px;
}

.get-in-touch form input {
  width: 100%;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #d7d7d7;
}

.get-in-touch form select {
  width: 100%;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
}

.get-in-touch form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #d7d7d7;
  height: 130px;
}

.get-in-touch form button {
  width: 100%;
  padding: 15px;
  border: none;
  background-color: #225f9f;
  font-weight: 600;
  color: #fff;
}

.get-in-touch h4 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #adadad;
  margin-bottom: 8px !important;
}

.get-in-touch h3 {
  font-size: 500;
  font-weight: 700;
}

footer {
  padding: 85px 0 50px;
}

.footer .social_icon a {
  display: flex;
  height: 50px;
  width: 50px;
  border-radius: 60px;
  background-color: #fff;
  color: #000;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.footer .social_icon a:hover {
  background-color: #225f9f;
  color: #fff;
}


.get-in-touch-2 .new-max {
  border: 2px solid var(--theme-color);
}

.get-in-touch-2 .contact-info a {
  letter-spacing: 1px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.get-in-touch-2 .contact-info h5 {
  margin-bottom: 10px;
  color: #001a32;
}


.get-in-touch-2 form input, .get-in-touch-2 form select {
  padding: 12px;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid;
  border-color: #001a32;
  background: transparent;
  padding-left: 0;
  color: #858585;
}

.get-in-touch-2 form textarea {
  padding: 12px;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid;
  border-color: #001a32;
  background: transparent;
  height: 90px;
  padding-left: 0;
}

.get-in-touch-2 form button {
  background-color: #001a32;
  width: 100%;
  border: none;
  color: #ffffff;
  padding: 12px;

  text-transform: uppercase;

  letter-spacing: 4px;
}

.map {
  line-height: 0;
}

.map iframe {
  width: 100%;
}

footer .ft_contact_info h5 {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 19px;
}

.social_icon {
  display: flex;
  align-items: center;
  gap: 6px;
}

footer .ft_contact_info {
  display: flex;
  justify-content: start;
  margin-bottom: 0;
  gap: 65px;
}

footer a.comon-btn {
  background: #fff !important;
  color: #000 !important;
  font-size: 20px;
  border-radius: 50%;
  width: 110px !important;
  text-transform: uppercase;
  height: 110px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1;
  line-height: 1.2;
}

/****** Inner Banner *******/
#inner-banner {
  background: #000;
  padding: 50px 0 40px;
  color: #fff;
}

#inner-banner h1 {
  font-size: 58px;
  font-weight: 500;
}

#inner-banner .breadcrumb a {
  color: var(--theme-color-second);
  font-weight: 600;
}

#inner-banner .breadcrumb-item.active {
  color: #fff;
}

#inner-banner .breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: rgba(255, 255, 255, 0.75);
  content: var(--bs-breadcrumb-divider, "/");
}

#inner-banner .breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: 7px;
  content: var(--bs-breadcrumb-divider, "/");
}


/* contact-info */
.contact_page .contact_shadoW {
  box-shadow: 1px 2px 15px 2px #9b9b9b91;
}

.contact_page .contact_details {
  background-color: #fff;
  padding: 30px;
  padding-top: 50px;
}

.contact_page .contact_details h3 {
  margin-bottom: 30px;
  font-size: 30px;
}

.contact_page .contact_details h4 {
  margin-bottom: 30px;
  font-size: 23px;
}

.contact_page .contact_details h5 i {
  margin-right: 9px;
  color: #fff;
  font-size: 22px;
  width: 45px !important;
  height: 45px !important;
  background: var(--theme-color-third);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
}

.contact_page .contact_details p a, .contact_page .contact_details p, .contact_page .contact_details li {
  color: #747474;
  font-size: 17px;
}

.contact_page .contact_details li {
  list-style: none;
  line-height: 27px;
}

.contact_page .contact_form {
  background-color: var(--theme-color);
  padding: 50px 25px;
  color: #fff;
  height: 100%;
}

.contact_page .contact_form h2 {
  text-align: center;
  margin-bottom: 35px;
}

.contact_page .contact_form input,
.contact_page .contact_form textarea {
  padding: 16px 18px;
  width: 100%;
  border-radius: 5px;
  border: none;
  outline: none;
}

.contact_page .contact_form button.comon-btn {
  background: var(--theme-color-third);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 14px 0px;
  border-radius: 50px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  border: none;
  transition: all .5s;
}

.contact_page .contact_form button.comon-btn:hover {
  background: var(--theme-color-fourth);
  color: #fff;
}

.contact_page .contact_details h5 {
  margin-bottom: 22px;
  margin-top: 20px;
  font-size: 17px;
  color: #505050;
  display: flex;
  align-items: center;
  font-family: var(--paragraph-font);
}

.contact_page .contact_details h5 span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.4;
}

.contact_page .contact_details h5 a {
  color: var(--theme-color);
  font-size: 16px;
  font-family: var(--paragraph-font);
}

.inner_banner_sec h1 {
  font-size: 68px;
}

#our-product2 .card img {
  height: 375px;
  object-fit: cover;
}

.map {
  width: 100%;
  border: none !important;
  line-height: 0;
}

/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px 20px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}

.main-sec .heading a {
  color: var(--theme-color);
}

.main-sec h4 {
  font-size: 21px;
}

.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 5px 35px;
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
}

.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}

.main-sec h1 {
  font-size: 42px;
  font-weight: 600;
}

.main-sec h3 {
  font-size: 28px;
  font-weight: 600;
}

.inner-blog-left-sec img {
  height: 350px;
  object-fit: cover;
}

/* ********* */
.hidden-content {
  display: none;
}

/* ************ */
#hosting_sec2 .plan_card {
  height: 100%;
}

/* *********** */
.domain_pricing {
  background: #e6e6e6;
}

.domain_pricing .table_box {
  width: 100%;
}

.domain_pricing .table_box h3 {
  background: #0d2b3e;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 18px;
  margin: 0;
}

.domain_pricing table {
  width: 100%;
  border-collapse: collapse;
  background: #f2f2f2;
}

.domain_pricing th, .domain_pricing td {
  border: 1px solid #999;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}

.domain_pricing thead {
  background: #dcdcdc;
  font-weight: 500;
}

.domain_pricing tbody tr:nth-child(even) {
  background: #eeeeee;
}

.hosting_sec2 ul li a {
  color: var(--theme-color-second);
}

.hosting_sec2 ul li {
  margin-bottom: 8px;
}

/* CONTACT SEC */

.contact-info-top {
  margin-top: 14px;
}

.contact .p-contact {
  margin: initial !important;
}

.contact .contact-info form {
  margin-top: 15px;
}

.contact .contact-top {
  background: #fff;
  padding: 43px 12px;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  /* border-right: 1px solid #999; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 8px;
}

.contact .contact-icon {
  position: relative;
}

.contact .contact-info-top a {
  color: #282828;
  font-size: 16px;
}

.gaping {
  margin-bottom: 15px !important;
}

.contact .contact-info-top p {
  color: #282828;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 0;
}

.contact .contact-icon i {
  background: var(--theme-color-fourth);
  width: 55px;
  height: 55px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.contact .contact-left-el {
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  background: #f7f7f7;
}

.contact .contact-left-el1 {
  margin-bottom: 26px;
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
}

.contact .contact-left-el,
.contact-left-el1 a {
  color: #777777;
  transition: all .3s ease-in-out;
}

.contact .contact-form {
  background: #fff;
  padding: 35px 25px;
  box-shadow: 0px 10px 40px rgb(235, 235, 235);
}

.contact .contact-left {
  background: #fff;
  padding: 35px 25px;
  box-shadow: 0px 10px 40px rgb(235, 235, 235);
  width: 100%;
  height: 100%;
}

.contact .contact-left-el,
.contact-left-el1 a:hover {
  color: #f3a918;
}

.contact .contact-form input {
  height: 55px;
  border-radius: 5px;
  color: #666666;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 0 12px;
  outline: none;
}

.contact .contact-form select {
  height: 55px;
  border-radius: 5px;
  color: #666666;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 0 12px;
  outline: none;
  background: transparent;
}

.contact .contact-form textarea {
  border-radius: 5px;
  color: #666666;
  padding: 9px 12px;
  width: 100%;
  border: 1px solid #e2e2e2;
  outline: none;
}

.contact .contact-form button {
  background: var(--theme-color-fourth);
  border: 1px solid var(--theme-color-fourth);
  padding: 15px 0px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  width: 100%;
  transition: all 0.5s ease-in-out;
  font-size: 15px;
  letter-spacing: 0px;
  font-weight: 500;
}

.contact .contact-form button:hover {
  background: #000;
  border: 1px solid #000000;
  color: #fff;
}

.map {
  line-height: 0;
}

.contact-info-top h4 {
  color: #000000;
  font-weight: 400;
  font-size: 21px;
  margin-bottom: 5px;
  margin-top: 22px;
}

.contact .contact-info-top a {
  color: #282828;
  font-size: 16px;
  word-break: break-all;
}

.contact .btom_content h5 {
  color: var(--theme-color);
}

.contact .btom_content a {
  color: var(--theme-color-fourth);
  text-decoration: underline;
}

#home_sec3 .content img {
  width: 45px;
  margin-bottom: 15px;
}

#home_sec3 .content h6 {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: var(--paragraph-font);
}


/*new added css*/

section#bg-blue .row.paginate{
    
    margin: 40px 0;
    input.btn.btn-default
}

.paginate a {
    background-color: #CA382B;
}
.paginate strong {
    background-color: #CA382B;
}


.contact .contact-form input[type="checkbox"] {
    height: 15px;
    border-radius: 5px;
    color: #666666;
    border: 1px solid #e2e2e2;
    width: 15px !important;
    padding: 0 12px;
    outline: none;
}

.contact .contact-form label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
}

.contact .contact-form textarea {
    border-radius: 5px;
    color: #666666;
    padding: 9px 12px;
    width: 100%;
    border: 1px solid #e2e2e2;
    outline: none;
    margin-bottom: 16px;
}

.dform_container input.text {
    padding: 17px 18px !important;
}

input.btn.btn-primary.btn-lg.submit-button {
    background: var(--theme-color-fourth);
    border: 1px solid var(--theme-color-fourth);
    padding: 15px 0px;
    outline: none;
    cursor: pointer;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    width: 100%;
    transition: all 0.5s ease-in-out;
    font-size: 15px;
    letter-spacing: 0px;
    font-weight: 500;
}


.search-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:15px;
    margin-bottom:30px;
    border-bottom:1px solid #e5e5e5;
}

.search-keyword,
.search-count{
    font-size:18px;
    font-weight:500;
    font-family: var(--heading-font);
}

.no-results{
    background:#fff;
    border-radius:10px;
}

@media (max-width:767px){

    .search-meta{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

}