@import url('https://fonts.googleapis.com/css2?family=News+Cycle:wght@400;700&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 {
  --theme-color: #000000;
  --theme-color-second:#61acde;
  --theme-color-third: #fcaec0;

  --heading-font:  "Poppins", sans-serif;
  --paragraph-font: "News Cycle", sans-serif;
  --span-font: 'spanist';



  --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: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "News Cycle", sans-serif;
  /* color: var(--theme-color) !important; */
}

@font-face {
  font-family: 'head-font';
  src: url(../fonts/Gilroy-Bold.ttf);
}
@font-face {
  font-family: 'spanist';
  src: url(../fonts/Kitto-PersonalUse.otf);
}
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: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

/* .span-font {
  font-family: var(--span-font);
} */

p {
    margin: 0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

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: 80px;
  line-height: 1;
}

h2 {
  font-size: 45px;
}

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: 80px 0px;
}

.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;
}

/* navbar----------- */


@-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%;
  }
}

* {
  box-sizing: border-box;
}
.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: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  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;
  z-index: 999;
}

.m-backtotop > div.text {
  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: 0px;
  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;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.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;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
    width: 115px;
}
.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 6px;
  border-radius: 500px;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}
a.btn-2{
  background: var(--theme-color-third);
}

a.btn-inherit{
  width: fit-content;
}

a.comon-btn:hover {
  background: var(--theme-color);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}
.header_menu li a {
    color: #0c0c0c;
  font-size: 17px;
    text-transform: capitalize;
    padding: 29px 7px;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
}
.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: var(--theme-color-second);
  }

  .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: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}



#main_header .phone-heaqder {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000000;
    font-weight: 600;
}

#main_header .phone-heaqder i{
  height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 600px;
    background-color: #25d366;
    color: white;
    font-size: 22px;

}

#main_header .phone-heaqder p{
      font-size: 14px;
    text-transform: uppercase;
    margin-bottom: -5px !important;
    display: block;
}

.banner_sec h1{
  color: #fff;
} 

.banner_sec h1 span{
background: #FFFFFF;
background: linear-gradient(to right, #FFFFFF 14%, #61ACDE 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}
.banner_sec h4 {
    color: #fff;
    font-size: 40px;
    line-height: 1;
}


.home_sec_1 h2 span{
  color: var(--theme-color-second);
}

.home_sec_1 .cat-box {
    overflow: hidden;
    position: relative;
    background-color: var(--theme-color-second);
    border-radius: 35px;
}

.home_sec_1 .cat-box img{
	height:280px;
	object-fit:cover;
    border-radius: 35px;
	
}
.home_sec_1 .cat-box .over-lay {
    width: 100%;
    margin: 0 auto;
    color: #fff;
    background-color: var(--theme-color-second);
    text-align: center;
    height: 100%;
    border-radius: 7px;
    padding: 5%;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}
.home_sec_1 .cat-box .over-lay h4{
  font-size: 19px;
}


.home_sec_2 h2 span{
  color: var(--theme-color-third);
}

.home_sec_2 h2 b{
  background: #245374;
background: linear-gradient(to right, #245374 14%, #61ACDE 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}


.home_sec_2 ul li img{
  width:60px;
  height:60px;
  object-fit: contain;
}

.home_sec_2 ul li  {
  display: flex;
  gap: 18px;
  align-items: self-start;
  margin-bottom: 15px;
}
.home_sec_2 ul li h5{
  margin-bottom: 5px;
}
.home_sec_2 ul li p {
    font-size: 18px;
}

.home_sec_3 h2 {
    font-weight: 400;
}

.home_sec_3 h2 b{
    background: #245374;
background: linear-gradient(to right, #245374 14%, #61ACDE 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.home_sec_4_cat_area {
  background: #FEF6D0;
background: linear-gradient(180deg, rgba(254, 246, 208, 1) 37%, rgba(255, 255, 255, 1) 100%);
}

.home_sec_4_cat_area h2 b{
   background: #245374;
background: linear-gradient(to right, #245374 14%, #61ACDE 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.home_sec_4_cat_area h2 span{
  color: var(--theme-color-third);
}


.home_sec_5 h2 b{
    background: #245374;
background: linear-gradient(to right, #245374 14%, #61ACDE 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.home_sec_5 h2 span{
  color: var(--theme-color-third);
}



.home_sec_6 h2 b{
  background: #245374;
background: linear-gradient(to right, #245374 14%, #61ACDE 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.home_sec_6 .review-box img{
  width: 40px!important;
  margin: 0 auto;
  margin-bottom: 25px;
}

.home_sec_6 .review-box p{
  font-size: 14px;
}

.home_sec_6 .review-box .content {
  overflow-y: scroll;
  height: 155px;
  scrollbar-width: none;       /* Firefox */
}

.home_sec_6 .review-box .content::-webkit-scrollbar {
  display: none;               /* Chrome, Safari */
}


.home_sec_6  .owl-nav img{
  width: 45px;
}

.home_sec_6 button.owl-prev {
    position: absolute;
    top: 40%;
    left: -49px;
}

.home_sec_6 button.owl-next {
    position: absolute;
    top: 40%;
    right: -49px;
}


.home_sec_7 h2 b {
  background: #245374;
  background: linear-gradient(to right, #245374 14%, #61ACDE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.home_sec_7 .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #000000;
    text-align: left;
    background-color: #dedede;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
    box-shadow: none!important;
    font-family: var(--paragraph-font);
    font-weight: 500;
}

.home_sec_7 .accordion-item{
  border-radius: 10px!important;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #dedede!important;
}

.home_sec_7 .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    transform: rotate(-180deg);
}

.home_sec_7 .accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #ffffff;
    
}

.home_sec_7 .faq-box-sec{
  border-radius: 19px;
  text-align: center;
}

.home_sec_7 .faq-box-sec h4{
  font-size: 35px;
}


.home_sec_8 h2 b{
   background: #245374;
  background: linear-gradient(to right, #245374 14%, #61ACDE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home_sec_8 .blog-box{
  background-color: #dedfe5;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.home_sec_8 .blog-box.bg-2 {
    height: 310px;
}
.home_sec_8 .blog-box h5{
  font-size: 21px;
}

.home_sec_8 .blog-box a u{
  font-size: 14px;
}

.home_sec_8 .blog-box.bg-2 h5{
  margin-bottom: 5px;
  font-size: 17px;
}
.home_sec_8 .blog-box.bg-2 p{
  font-size: 15px;
  margin-bottom: 0;
}

.home_sec_8 .blog-box.bg-2  a u{
  font-size: 12px;
}

.home_sec_8 .blog-box.bg-2 img {
    height: 144px;
    object-fit: cover;
}

.home_sec_8 .blog-box img {
    object-fit: cover;
    height: 357px;
}

.home_sec_9 .send-us {
    border-radius: 18px;
    background: #ffffff;
    /* background: linear-gradient(140deg, rgba(41, 92, 126, 1) 57%, rgba(91, 164, 212, 1) 100%); */
    color: #000;
}
.home_sec_9 .send-us h2{
  background: #245374;
  background: linear-gradient(to right, #245374 14%, #61ACDE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home_sec_9 .send-us form ::placeholder{
  text-transform: capitalize;
}

.home_sec_9 .send-us form input {
    padding: 15px;
    border: none;
    border-radius: 35px;
    background: #dedede;
}

.home_sec_9 .send-us form textarea{
  padding: 15px;
  border: none;
  border-radius: 35px;
  height: 155px;
     background: #dedede;
}

.home_sec_9 .send-us form button{
  padding: 15px;
  border: none;
  border-radius: 35px;
  width: 100%;
  background-color: var(--theme-color-third);
  color: #fff;
  transition: 0.6s;
}
.home_sec_9 .send-us form button:hover{
  padding: 15px;
  border: none;
  border-radius: 35px;
  width: 100%;
  background-color: var(--theme-color-second);
  color: #fff;
  transition: 0.6s;

}

/* footer  */

.footer{
  padding: 80px 0;
  color: #fff;
}

.footer .ft-head h6{
  font-size: 20px;
}

.footer .ft-head a{
  font-size: 14px;
}

.footer .social {
  display: flex;
  gap: 15px;
  margin: 35px 0;
}

.footer .social a{
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: center;
}

.footer .social a i{
  display: flex;
  height: 35px;
  width: 35px;
  background-color: var(--theme-color-second);
  color: #000000;
  align-items: center;
  justify-content: center;border-radius: 600px;
}

.footer .social a i.ri-instagram-fill{
  background-color: var(--theme-color-third);
}

.footer .list-menu {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer .list-menu li a{
  color: #fff;
  font-size: 14px;
  margin: 35px 0;
}

.footer  .cpuright-box span{
  font-size: 14px;
  color: #fff;
}

.banner_sec_img_video {
  position: relative;
  font-weight: 600;
}

.banner_sec_img_video .over-lay {
  position: absolute;
  top: 20%;
  width: 100%;
  left: 0;
  right: 0;
}

.banner_sec_img_video h1 span{
  color: var(--theme-color-third);
  background: #245374;
  background: linear-gradient(to right, #245374 14%, #61ACDE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner_sec_img_video h4{
  font-size: 30px;
}

.home_sec_2 .cat-img {
    height: 440px;
    object-fit: contain;
}

.inner_banner {
  padding: 125px 0 30px;
}




.inner-blog-left-sec {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: rgba(149, 157, 165, 0.2);
    padding: 15px 19px 35px;
    border-radius: 8px;
    background: #fff;
    color: #000;
}

.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;
  /* font-size: 29px; */
}

.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;
}

.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;
}


/* 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;
    border-radius: 8px;
    background: #fff;
    color: #000;
}
.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 {
  /* position: absolute;
top: 0;
right: 0;
width: 50px;
height: 100%; */
  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;
    font-weight: 600;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}

.home_sec_5 .img-box h5{
  margin: 0;
}
.home_sec_5 .img-box {
  border: 1px solid var(--theme-color-second);
  border-radius: 30px;
  height: 100%;
}

.home_sec_5 .img-box  img{
  border-radius: 20px;
  height: 250px;
  object-fit: cover;
}


.home_sec_5 video{
  border-radius: 20px;
}
.home_sec_5 .past-adopt-box h4 {
 color: var(--theme-color-second);
}

.home_sec_5 .past-adopt-box p{
  color:#666;
}

.addoption_form form input, .addoption_form select , .addoption_form textarea , .addoption_form button{
  padding: 15px;
  color: var(--theme-color-second);
   font-size: 14px;
 
  border: none;
  border: 1px solid var(--theme-color-third);
  border-radius: 10px;
  width: 100%;
}
.addoption_form form ::placeholder{
  font-size: 14px;
  color: var(--theme-color-second);
}
.addoption_form button{
  background-color: var(--theme-color-third);
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.addoption_form textarea{
  height: 155px;
}

.avaialble_kitten_2 h3{
  font-size: 25px;
  color: var(--theme-color-second);
}

.avaialble_kitten_2 h2{
  color: var(--theme-color-third);
  font-size: 30px;
}

.avaialble_kitten_2 h4 {
font-size: 20px;
color: #666;
}

.avaialble_kitten_2 .reservation-box h4{
  color:#000;
  font-size: 25px;
}


.social-media-feed {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 9999;
}


.social-media-feed  ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color-second);
  height: 50px;
  width: 50px;
  color: #000000;

}

.social-media-feed  ul li a.insta-fill{
  background-color: var(--theme-color-third);
}
form.wpcf7-form.init p {
    margin-bottom: 0px !important;
}


.center {
  display: flex;
justify-content: center;
margin-top: 40px;
}

a.page-numbers {
    color: #000000;
    padding: 10px 10px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: #9bcb3b;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3;
border-radius: 5px;
}
a.page-numbers {
    color: #000000;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0 5px;
    padding: 10px 15px;
    font-size: 18px;
    transition: background-color 0.5s;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: var(--theme-color-third);
    color: #fff;
    margin: 0 5px;
    font-size: 18px;
    border-radius: 5px;
    padding: 10px 15px;
    z-index: 3;
    transition: all .15s ease-in-out;
}

/* Fix extra gaps */
.blog-pagination ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.blog-pagination ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.blog-pagination.section {
    padding-top: 10px;
    padding-bottom: 10px;
}
input#search-form-1 {
width: 100%;
}
.single-post label {
    width: 100%;
}
.search-form label {
width: 100% !important;
}
/* Blog Leave A Comment */
.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;
}


#respond {
/*     max-width: 600px; */
    margin: 0 auto;
}
#respond #reply-title small a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
border: none;
}
#respond form p{
color: #6d6d6d;
 margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 20px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 20px;
}

#respond .form-submit {
    margin-top: 20px;
}

#respond .submit {
    background-color: #FF6601;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
color: #0f3ca1 !important;
text-decoration: underline;
display: inline-block !important;
}
#comments .comment-author a{
color: #000 !important;
}
#comments .comment-metadata a{
color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
margin-right: 10px !important;
}
div#respond label {
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

div#respond input,  div#respond textarea{
    padding: 10px;
    border-radius: 6px;
}

div#respond input#wp-comment-cookies-consent {
    width: 20px;
    height: 17px;
}

div#respond p.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: nowrap;
} 

div#respond p.comment-form-cookies-consent  label{
margin:0px!important;
}

div#respond input#submit {
    background: var(--theme-color-second);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

/*  */
#main_header .right-side a.btn-orange {
  background-color: orange;
}
#main_header.sticky-top-1.sticky .right-side a.vdio-test span {
  font-size: 11px;
}

#main_header.sticky-top-1.sticky .right-side a.vdio-test {

  font-size: 14px;
  line-height: 1.5;
}

#main_header .hd_info a.comon-btn {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 7px 12px;
  height: 53px;
  align-items: center;
  width: 10rem;
  background: transparent;
  color: #000;
  font-weight: 600;
  gap: 0;
  font-size: 14px;
  border: none !important;
}

#main_header.sticky-top-1.sticky .right-side a.vdio-test {

  width: 8rem;

  line-height: 1.5;
}

#main_header.sticky-top-1.sticky a.navbar-brand {
  margin-right: 22px;
}
#main_header .hd_info a.comon-btn {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 7px 12px;
    height: 53px;
    align-items: center;
    width: 10rem;
    background: transparent;
    color: #000;
    font-weight: 600;
    gap: 0;
    font-size: 14px;
    border: none !important;
}



/* Contact Page */

.contact-info-content {
  background: var(--theme-color-second);
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}

.contact-info-content .icon {
  width: 60px;
  height: 60px;
  background: #fff;
  margin: auto;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-second);
  font-size: 30px;
}

.contact-info-content .icon-info {
  margin-top: 20px;
}

.contact-info-content .icon-info h4 {
  color: #fff;
  margin-bottom: 4px !important;
  font-weight: 400;
}

.contact-info-content .icon-info p {
  color: #eee;
  font-size: 16px;
  font-weight: 400;
  word-break: break-all;
}

.contact-info-content .icon-info p a {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.contact-info span {
  color: #cb1818;
  font-size: 16px;
  /* font-family: "Pacifico", cursive; */
  font-weight: 300;
  letter-spacing: 1.6px;
}

.contact-page-form h2 {
  color: #111;
  font-size: 40px;
}

.map {
  line-height: 0;
}
.map iframe{
 width: 100%;
}
.contact-info input {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.contact-info select {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.input:focus {
  color: #5F656F;
  background-color: #fff;
  border-color: #5F656F;
  outline: 0;
  box-shadow: none;
}

.contact-info textarea {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.contact-info button {
  padding: 15px 0px;
  background: #000000;
  color: #fff;
  border: none;
  letter-spacing: 1px;
  transition: 1s;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
}

.form-check input {
  width: 25px;
}

.form-check {
  display: flex;
  align-items: baseline;
  padding-left: 0;
  /* justify-content: center; */
}

/* 	.home_sec_1 .cat-box .over-lay {
    width: 100%;
    margin: 0 auto;
    color: #fff;
    background-color: var(--theme-color-second);
    text-align: center;
    height: 100%;
    border-radius: 7px;
    padding: 5%;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
} */

.inner_cat h3{
  color: var(--theme-color-second);
}

.inner_cat img{
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

.inner_cat_1 img{
   height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

@media (min-width: 1000px) {
	
.home_sec_1 .cat-box .over-lay h4 {
    font-size: 22px;
    margin-bottom: 12px !important;
}

.home_sec_1 .cat-box .over-lay h5 {
    font-size: 17px;
}

}


ul.cat_point {
    list-style-type: disc;
    margin-left: 70px;
}
.center {
  display: flex;
justify-content: center;
margin-top: 40px;
}

a.page-numbers {
    color: #000000;
    padding: 10px 10px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: #9bcb3b;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3;
border-radius: 5px;
}

/* new css 24-12-2025 */

.inner_cat h3 {
  color: var(--theme-color-second);
}

.inner_cat img {
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

.inner_cat_1 img {
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

/* ********* */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  position: relative;
  border-radius: var(--radius);
  padding: 40px 29px 70px;
  min-height: 280px;
  border-radius: 40px;
}

.trust-card h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 13px;
  line-height: 1.25;
}

.trust-card p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  color: #2f2b3dcc;
}

.card-purple {
  background: #cdc7ff;
}

.card-blue {
  background: #c6eaff;
}

.card-cyan {
  background: #c8f8ff;
}

.card-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 35px;
  height: 35px;
  background: #e6f06d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

/* ************ */

.page_sec1 .gallery img,
.page_sec1 .gallery .video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  background: #ddd;
}

.page_sec1 .video {
  position: relative;
  overflow: hidden;
}

.page_sec1 .main-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
}

.page_sec1 .title-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page_sec1 .title-row h1 {
  font-size: 36px;
  margin: 0;
}

.page_sec1 .love-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 9px;
}

.page_sec1 .social-row {
  display: flex;
  gap: 10px;
  margin: 14px 0 20px;
}

.page_sec1 .social-row span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef1f7;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  justify-content: center;
}

.page_sec1 .block {
  background: var(--card);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  padding-top: 10px;
}

.page_sec1 .about p {
  color: #374151;
}

.page_sec1 .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page_sec1 .info-card {
  border: 1px solid #61acde;
  border-radius: 12px;
  padding: 10px 12px;
  background: #61acde36;
}

.page_sec1 .info-card span {
  display: block;
  font-size: 17px;
  color: #4d4d4d;
  margin-bottom: 2px;
  font-weight: 600;
}

.page_sec1 .guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.page_sec1 .guarantee-card {
  border-radius: 12px;
  padding: 12px;
  background: #61acde36;
  border: 1px solid #61acde;
}

.page_sec1 .family img {
  width: 100%;
  border-radius: 18px;
  margin-top: 10px;
}

.page_sec1 .sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page_sec1 .price-box {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
}

.page_sec1 .price-box p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.page_sec1 .price-option {
  border: 2px solid #000;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 17px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #61acde5e;
}

.page_sec1 .price-option.active {
  background-color: #61acde5e;
}

.page_sec1 .price-option small {
  display: block;
  font-size: 15px;
  color: var(--text-muted);
}

.page_sec1 .amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 12px;
  font-weight: 600;
}

.page_sec1 .btn-primary {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-weight: 600;
  cursor: pointer;
  background: #61acde;
  margin-bottom: 10px;
}

.page_sec1 .btn-secondary {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 12px;
  background: #fcaec0;
  cursor: pointer;
  color: #000;
}

.page_sec1 .payment-icons {
  display: flex;
  gap: 8px;
  margin: 12px 0 8px;
}

.page_sec1 .payment-icons span {
  flex: 1;
  border-radius: 6px;
  background: #eef1f7;
  padding: 6px;
  text-align: center;
}

.page_sec1 .secure-text {
  color: var(--text-muted);
  margin-top: 6px;
}

.page_sec1 .travel-box {
  background: #f2f4fa;
  border-radius: 18px;
  padding: 38px 20px;
}

.page_sec1 .travel-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.page_sec1 .travel-row {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid #dde1ee;
}

.page_sec1 .travel-row:last-child {
  border-bottom: none;
}

.page_sec1 .video {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: #ddd;
}

.page_sec1 .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page_sec1 .owl-nav img {
  width: 45px;
  border-radius: 0;
  object-fit: contain;
}

.page_sec1 button.owl-prev {
  position: absolute;
  top: 40%;
  left: -49px;
}

.page_sec1 button.owl-next {
  position: absolute;
  top: 40%;
  right: -49px;
}
.header_menu li a {
    color: #0c0c0c;
    font-size: 15px;
    text-transform: capitalize;
    padding: 29px 15px;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 14px;
}

a.navbar-brand img {
    width: 135px;
}

.header_menu li a:hover {
    color: var(--theme-color-third);
}

#main_header .social {
    border-left: 1px solid #afafaf;
    padding: 4% 18px;
}
h1 {
    font-size: 82px;
    line-height: 1;
    letter-spacing: 0.00em;
    font-weight: 600;

}

.banner_sec_img_video h1 span {
    color: var(--theme-color-third);
    background: #245374;
    background: linear-gradient(to right, #303133 14%, #303133 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner_sec_img_video h1{
 color:#303133; 
}
.banner_sec_img_video h4 {
    font-size: 30px;
    font-size: 42.6px;
    font-weight: 600;
    color: #303133;
}
.banner_sec_img_video .over-lay {
    position: absolute;
    top: 15%;
    width: 100%;
    left: 0;
    right: 0;
}
.banner_sec_img_video  p {
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 15px;
}
#main_header .social a {
    font-size: 18px;
    color: #262626;
}