@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* font-family: "Cinzel", serif; */
/* font-family: "Montserrat", sans-serif; */
/* font-family: "Lexend", sans-serif; */
/* font-family: "Inter", sans-serif; */

:root {
    --color-one: #25126d;
	  --color-two: #890c25;
	  /* --color-two: #b9886d; */
    --color-primary-rgb: 33, 205, 173;
    --color-secondary-rgb: 0, 38, 120;
    --font-one: 'Outfit', sans-serif;
    --font-two: "Inter", sans-serif;
    --font-three: "Cinzel", serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
}
html,
body{
    background-color: #fff;
    overflow-x: hidden;
    font-family: var(--font-one);
}
html {
    scroll-behavior: smooth;
}

img{
    max-width: 100%;
}
a {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

button,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none !important;
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    position: relative;
    margin: 0px;
    background: none;
    color: var(--color-four);
    font-weight: 600;
    line-height: 1.31;
    font-family:  var(--font-two);
}

textarea {
    overflow: hidden;
}

.text,
p {
    position: relative;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--color-four);
    font-size: 15px;
}

/* Typography */

.h1,
h1 {
    font-size: 36px;
}

.h2,
h2 {
    font-size: 32px;
}

.h3,
h3 {
    font-size: 28px;
}

.h4,
h4 {
    font-size: 24px;
}

.h5,
h5 {
    font-size: 20px;
}

.h6,
h6 {
    font-size: 18px;
}

/* common css */
.testi-section{
  background: #f3f7fa;
}
.bg-gray-gradient-secondary {
	background: linear-gradient(to left, #fff1f1 0%, #e8f3fb 30%, #fff7f4 100%);
}
.section-space{
  padding: 80px 0;
}
.eg-title-tag{
  position: relative;
}
.section-title{
  margin-bottom: 21px;
}
.sub-title{
    text-transform: uppercase;
    color: var(--color-one);
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    font-size: 20px;
    border-radius: 4px;
    border: 1px solid #b9e5de;
    padding: 7px 19px;
}
.section-title .sm-title {
color: var(--color-two);
font-size: 15px;
font-weight: 500;
padding-left: 40px;
margin-bottom: 6px;
display: inline-block;
position: relative;
}
.section-title .sm-title::before{
  content: '';
  position: absolute;
  left: 0;
  top: -5px;
  width: 50px;
  height: 44px;
  background: url(../images/icon/sm-title.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.sm-title img{
  max-height: 21px;
}

.section-title .title{
  font-size: 35px;
  color: black;
  font-weight: 600;
  line-height: 1.18;
  font-family:  var(--font-two);
}
.section-title .title span{
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-style: italic;
}
.section-title.text-center .title{
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.scrolltop{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-one);
    cursor: pointer;
    position: fixed;
    z-index: 99;
    bottom: 60px;
    text-shadow: 1px 1px 0px white;
    right: -15px;
    line-height: 1;
    opacity: 0;
    transform: rotate(-90deg);
    transition: all 250ms linear;
}
.scrolltop.active{
    opacity: 1;
}
.list-style-none{
    list-style: none;
}
.text-gray{
  color: gray;
}
.text-clamp1 {
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.text-clamp2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.text-clamp3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.text-clamp4 {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.thm-btn {
  width: fit-content;
  height: fit-content;
  padding: 15px 40px;
  font-size: 16px;
  color: white;
  background: var(--color-one);
  /* border-radius: 50px; */
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  border-radius: 5px;
}
.thm-btn::after{
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-two);
  -webkit-transition: all .55s ease-in-out;
  transition: all .25s ease-in-out;
  -webkit-transform: translateY(-100%) skew(25deg) scale(0);
  transform: translateY(-100%) skew(25deg) scale(0);
}
.thm-btn:hover:after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}
.thm-btn2{
  background: var(--color-two);
  color: white;
}
.thm-btn2::after{
  background: var(--color-one);
}
.thm-btn:hover {
  color: white;
  box-shadow: 0px 0px 2px rgb(211, 211, 211);
}
.border-left-social{
  border-left: 1px solid gray;
  padding-left: 26px;
  margin-left: 21px;
}
.socaial-icons{
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
}
.socaial-icons li{
    display: inline-block;
    margin-right: 22px;
}
.socaial-icons li a{
    color: var(--color-one);
    transition: all 250ms ease;
    text-decoration: none;
    font-size: 22px;
}
.conts-head .socaial-icons li a{
  font-size: 17px;
}
.socaial-icons li:nth-child(1) a {
  color: #16599b;
}

.socaial-icons li:nth-child(2) a {
  color: red;
}

.socaial-icons li:nth-child(3) a {
  color: #ea4c89;
}

.socaial-icons li:nth-child(4) a {
  color: black;
}
.socaial-icons li:nth-child(5) a {
  color: red;
}
.socaial-icons li:nth-child(6) a {
  color: black;
}

.socaial-icons li:nth-child(7) a {
  color: green;
}
.socaial-icons-sidebar{
    margin-top: 25px;
    width: 100%;
}

.fa-arrow-circle-up  {
	font-size:30px;}
.pl-lg-50{
  padding-left: 50px;
}
@media (max-width: 768px) {
  .sticky-icon{
    display: none;
  }
  .section-title .title{
    font-size: 25px;
  }
  .pl-lg-50{
    padding-left: 0px;
  }
}

/* nav bar css */
/* .header{
  background: var(--color-two);
} */
.conts-head{
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}
.header-btn{
  display: flex;
  gap: 5px;
  align-items: center;
}

.header-btn i{
  font-size: 12px;
  font-weight: 600;
  height: 25px;
  width: 25px;
  margin-right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: white; */
  background: #00282812;
}
.header-btn span{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgb(202, 202, 202);
}
.header-btn a{
  font-size: 16px;
  font-weight: 400;
  color: white;
}
.conts-head .socaial-icons{
  margin-bottom: 0;
}
.conts-head .socaial-icons a{
  color: black;
  font-size: 18px;
}
.conts-head .sc-title{
  font-size: 13px;
  color: white;
  margin-bottom: 4px;
}
.conts-head .socaial-icons a:hover{
  color: var(--primary-clr);
}
.navbar{
  background: var(--color-one);
  width: 100%;
  padding: 0;
}
.navbar.sticky-nav{
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 30 !important;
    width: 100%;
    padding: 0px;
    background: linear-gradient(var(--color-one), var(--color-two));
    box-shadow: 0px 0px 4px white;
    animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-90px);
	}
	100% {
		transform: translateY(0px);
	}
}
.navbar-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
    width: 100%;
}
.header .logo ,
.navbar-box .logo {
  min-width: 150px;
}
.navbar .logo{
  display: none;
}

.navbar-box .logo a{
    position: relative;
    z-index: 2;
}
.header .logo img,
.navbar-box .logo img{
    max-height: 64px;
}
.navbar-box .hamburger {
  font-size: 28px;
  color: white;
  cursor: pointer;
  width: 40px;
}
.navbar .thm-btn2{
  padding: 23px 40px;
  border-radius: 0;
}
.hamburger .nav-sidebar-menu-1,
.hamburger .nav-sidebar-menu-2,
.hamburger .nav-sidebar-menu-3 {
  display: block;
  height: 2px;
  background: white;
  margin-bottom: 7px;
  transition: all 260ms ease-in-out;
}
/* Initial widths */
.hamburger .nav-sidebar-menu-1 { width: 21px; }
.hamburger .nav-sidebar-menu-2 { width: 34px; }
.hamburger .nav-sidebar-menu-3 { width: 28px; }
/* On hover: trigger infinite width animation */
.hamburger .nav-sidebar-menu-1 {
  animation: widen-bar1 1s infinite alternate;
}
.hamburger .nav-sidebar-menu-2 {
  animation: widen-bar2 1s infinite alternate;
}
.hamburger .nav-sidebar-menu-3 {
  animation: widen-bar3 1s infinite alternate;
}
/* Keyframes for width animations */
@keyframes widen-bar1 {
  0%   { width: 21px; }
  100% { width: 34px; }
}
@keyframes widen-bar2 {
  0%   { width: 34px; }
  100% { width: 21px; }
}
@keyframes widen-bar3 {
  0%   { width: 28px; }
  100% { width: 34px; }
}

.sticky-nav .hamburger:hover .nav-sidebar-menu-3,
.sticky-nav .hamburger:hover .nav-sidebar-menu-2,
.sticky-nav .hamburger:hover .nav-sidebar-menu-1{
  background: var(--color-two);
}
.navbar-box .nav-links{
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0px;
    padding-left: 12px;
}
.navbar-box .nav-links li{
  padding: 25px;
  position: relative;
  color: black;
  display: flex;
  align-items: center;
  gap: 5px;
  border-left: 1px solid rgba(201, 199, 199, 0.434);
  /* border-right: 1px solid rgba(201, 199, 199, 0.592); */
}
.navbar-box .nav-links li:last-child{
    border-right: 1px solid rgba(201, 199, 199, 0.434);
}
.navbar-box .nav-links li.has-sub-menu{
  padding: 25px 35px 25px 15px;
}
.navbar-box .nav-links li.has-sub-menu li.has-sub-menu {
     padding: 0px 35px 0px 0px;
}
.navbar-box .nav-links .dwn-arrow{
  position: absolute;
  right: 15px;
  color: white;
  font-size: 12px;
}
/* .navbar.sticky-nav .navbar-box .nav-links li{
  padding: 21px 30px 21px 15px;
  position: relative;
  color: white;
} */
.navbar.sticky-nav .logo img{
  border-radius: 50%;
}
.navbar.sticky-nav .logo{
  display: block;
}
.navbar-box .nav-links li a{
  font-size: 13px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
}
.navbar-box .nav-links > li > ul > li > ul,
.navbar-box .nav-links > li > ul{
  list-style: none;
  position: absolute;
  top: 100%;
  z-index: 4;
  border-radius: 0px;
  overflow: visible;
  left: 0;
  padding-left: 0;
  width: 280px;
  border: 1px solid rgb(246, 243, 243);
  transition: all 260ms ease;
  transform: scaleY(0);
  transform-origin: top;
  -webkit-transform: perspective(600px) rotateX(-90deg) translateX(-50%);
  transform: perspective(600px) rotateX(-90deg) translateX(-50%);
  background: white;
}

.navbar-box .has-sub-menu .has-sub-menu:hover > ul,
.navbar-box .has-sub-menu:hover > ul{
    transform: scaleY(1);
}
.navbar-box .has-sub-menu .has-sub-menu ul{
    left: 280px;
    top: 0;
}
.navbar.sticky-nav .navbar-box .nav-links li ul li,
.navbar-box .nav-links li ul li{
    padding: 0;
}
.navbar-box .nav-links li ul li a{
    padding: 10px 25px;
    display: block;
    position: relative;
    color: black;
    width: 100%;
}
.navbar-box .nav-links li ul li:not(:last-child) a {
    border-bottom: 1px solid #DED8D3;
}
.navbar-box .nav-links li a::before,
.navbar-box .nav-links li ul li a::before{
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    display: block;
    margin: auto;
    background: var(--color-two);
    z-index: -1;
    transition: all 250ms ease;
}
.navbar-box .nav-links li a:hover::before,
.navbar-box .nav-links li ul li a:hover::before{
    width: 100%;
    right: 0;
    left: 0;
}
.navbar-box .nav-links li:hover > .dwn-arrow,
.navbar-box .nav-links li:hover > a{
    color: var(--color-two);
}
.sticky-nav .navbar-box .nav-links li:hover > .dwn-arrow,
.sticky-nav .navbar-box .nav-links li:hover > a{
    color: white;
}
.sticky-nav .navbar-box .nav-links .sub-menu li:hover > .dwn-arrow,
.sticky-nav .navbar-box .nav-links .sub-menu li:hover > a{
    color: var(--color-one);
}

.logo-search .logo img{
  max-height: 65px;
}
.logo-search{
  display: flex;
  align-items: center;
  padding: 4px 12px;
  justify-content: space-between;
}
.serch-box {
  position: relative;
  width: fit-content;
}
.serch-box button{
  position: absolute;
  right: 17px;
  background: transparent;
  top: 8px;
  border: none;
  z-index: 2;
  color: gray;
  outline: none;
}
.serch-box button:focus{
  outline: none;
  border: none;
}
.serch-box input{
  background: #f2f2f2;
  font-size: 14px;
  padding: 10px 35px 10px 16px;
  height: fit-content;
  border-radius: 28px;
  min-width: 300px;
  width: fit-content;
  outline: none;
  line-height: 1;
  border: 1px solid rgb(213, 210, 210) !important;
}
.serch-box2{
  margin: 12px auto;
}
.serch-box2 input{
  padding: 16px 15px;
}
.serch-box2 button{
  color: black;
  right: 24px;
  background: transparent;
  top: 15px;

}
.search_box {
    position: absolute;
    z-index: 100;
    background: white;
    max-height: 400px;
    overflow-y: auto;
}
.search_box a h6,
.search_box a{
    transition: all 250ms linear;
    font-size: 16px;
    color: black;
}
.search_box a h6:hover,
.search_box a:hover{
    color: var(--color-two) ;
}

.sidebar-contact{
  position: relative;
  z-index: 1;
  margin-top: 35px;
}
.sidebar-contact .ft-cont {
  display: flex;
  margin-bottom: 18px;
}
.sidebar-contact .ft-cont i{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: white;
  background: var(--color-one);
  /* border: 3px solid var(--color-two); */
}
.sidebar-contact .ft-cont p{
  color: black;
}
.sidebar-contact .ft-cont span {
  color: var(--color-two);
}
.sidebar-contact .ft-cont  a{
  display: block;
  color: var(--color-one);
  font-weight: 600;
  transition: all 250ms;
}
.sidebar-contact .ft-cont a:hover{
  color: var(--color-two);
}
/* mobile menu */
.cstm-mobile-menu{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100Vh;
    background: rgba(0, 0, 0, 0.663);
    z-index: 500;
    transition: all 190ms ease-in-out;
    transform: translateX(-101%);
}
.cstm-mobile-menu.active{
    transform: translateX(0);
}
.cstm-mobile-menu .cstm-mobile-overlay{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: url(../images/icon/cross-out.png), pointer;
    z-index: 2;
}
.cstm-menu-wrapper{
    width: 400px;
    max-width: 92%;
    background: white;
    height: 100%;
    position: relative;
    padding: 25px;
    overflow-y: auto;
    z-index: 4;
}
.close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    font-size: 20px;
    z-index: 4;
    cursor: pointer;
}
.cstm-mobile-menu-nav {
    margin-top: 28px;
    display: none;
}
.desktop-sidebar{
    margin-top: 28px;
    display: flex;
}
.desktop-sidebar .about-sidebar{
  color: rgb(79, 77, 77);
}
.cstm-mobile-menu-nav ul li{
    position: relative;
    padding: 6px;
    border-bottom: 1px dotted gray;
}
.cstm-mobile-menu-nav ul li:last-child{
    border-bottom: none;
}
.cstm-mobile-menu-nav ul{
    list-style: none;
    padding-left: 6px;
}
.cstm-mobile-menu-nav ul li .dwn-arrow{
    cursor: pointer;
    position: absolute;
    top: 9px;
    right: 5px;
    padding: 5px;
    background: gray;
    color: black;
    line-height: 1;
}
.cstm-mobile-menu-nav ul li a{
    color: black;
    font-size: 16px;
    padding: 4px;
    display: inline-block;
    font-weight: 600;
}
.cstm-mobile-menu-nav ul.sub-menu {
    padding-left: 8px;
    transition: max-height 300ms ease-in-out, opacity 200ms ease-in-out;
    max-height: 0;
    opacity: 0;
}
.cstm-mobile-menu-nav ul.sub-menu.active {
    max-height: fit-content;
    opacity: 1;
    overflow-y: auto;
}
.cstm-mobile-menu .logo img{
    max-height: 80px;
}

.header-btn{
  display: flex;
  gap: 5px;
  align-items: center;
}

.header-btn span{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgb(35, 34, 34);
}
.header-btn,
.header-btn a{
  font-size: 16px;
  font-weight: 600;
  color: #25126d;
}
.header-btn img{
  max-height: 15px;
  width: auto;
}
@media (max-width: 1200px) {
    .navbar-box .nav-links{
        padding-left: 0px;
    }
}
/*.navbar-box .logo a{*/
/*  display: none;*/
/*}*/
@media (max-width: 1000px) {
    .desktop-sidebar,
    .nav-menu-header .nav-links{
        display: none;
    }
    .navbar-box .logo{
        min-width: 85px;
    }
    .cstm-mobile-menu-nav{
        display: block;
    }
    /* .navbar-box .hamburger, */
    .navbar-box .logo a,
    .header-btn{
        display: flex;
    }
    .navbar-box .logo img{
        max-height: 50px;
    }
    .serch-box input{
      min-width: 300px;
    }
}
.lg-w-fit{
  width: fit-content;
}
@media (max-width: 767px) {
    .serch-box input{
      min-width: 190px;
      margin-right: 8px;
      padding: 7px 35px 7px 16px;
    }
    .serch-box button{
      top: 4px;
    }
    .cstm-mobile-menu .logo img {
        max-height: 55px;
    }   
    .navbar-box{
      justify-content: space-between;
    } 
    .logo-search .logo{
      display: none;
    }
    .conts-head{
      justify-content: center;
    }
    .navbar .thm-btn2{
          padding: 14px 40px;
    }
    .lg-w-fit{
      width: 100%;
    }
}

/* banner below */

.experience-card-two .counter {
	font-size: 90px;
	line-height: 1;
	font-weight: 600;
	color: var(--color-one);
	margin-bottom: 50px;
}

.experience-card-two h3 {
	margin: 0;
	border-top: 2px solid black;
	display: inline-block;
	padding-right: 60px;
	padding-top: 15px;
	font-size: 32px;
}

.theme-style-three .experience-card-two .counter {
	color: var(--color-one);
}

.feature-item {
	background: rgba(255, 255, 255, 0.35);
	padding: 50px;
	border-radius: 10px;
	transition: all 0.35s ease-in-out;
	border: 2px solid white
}

.feature-item:hover {
	background: white
}

.feature-item .icon img {
	height: 70px;
	margin-bottom: 30px;
}

.feature-item .bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #e7e7e7;
	padding-top: 25px;
}

.feature-item .bottom span {
	font-size: 50px;
	font-weight: 700;
	opacity: 0.16;
	line-height: 1;
}

.feature-item .bottom a {
	display: inline-block;
	background: var(--color-one);
	color: white;
	height: 50px;
	width: 50px;
	text-align: center;
	line-height: 50px;
	font-size: 20px;
	border-radius: 50%;
	transform: rotate(-45deg);
}
.card-style-two {
    background: white;
    z-index: 1;
    position: relative;
    text-align: left;
    display: inline-block;
    padding: 30px;
    border-radius: 10px;
    margin-top: 21px;
}
.card-style-two .thumb {
    margin-left: 18px;
}
.card-style-two img {
    height: 50px;
    width: 50px;
    max-width: 50px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -20px;
}
.card-style-two::after {
    background: url(../images/resources/9-dark.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    position: absolute;
    right: -25px;
    top: -25px;
    content: "";
    height: 35px;
    width: 35px;
}
.feature-item:hover .bottom a {
	transform: rotate(0);
}

.theme-style-three .feature-item .bottom a {
	background: var(--color-one);
}

.feature-item:hover {
	border: 2px solid var(--color-one);
}

.theme-style-three .feature-item:hover {
	border: 2px solid var(--color-one);
}
.feature-area {
	position: relative;
	z-index: 1;
}

.feature-area .shape {
	position: absolute;
	right: 0;
	bottom: -70px;
	z-index: -1;
	max-width: 25%;
}

/* about start */
.about-thumb {
	position: absolute;
	left: 0;
	width: 40%;
	bottom: 0;
	top: 50px;
}

.about-thumb img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	border-top-right-radius: 10px;
}

.about-info .top-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.about-info .top-info img {
	border-radius: 10px;
}

.about-info .top-info .h2-tx {
	font-size: 100px;
	line-height: 1;
	border-bottom: 2px solid;
	padding-bottom: 25px;
	margin-top: -15px;
	text-transform: capitalize;
}

.about-info .top-info .h2-tx strong {
	display: block;
}

.about-info p {
	margin: 0;
}
a.round-text {
    display: inline-block;
    height: 150px;
    width: 150px;
    background: white;
    position: absolute;
    right: -70px;
    top: 50px;
    padding: 15px;
    border-radius: 50%;
    border: 1px solid #e7e7e7;
}
a.round-text i {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 40px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-one);
}
a.round-text img {
    animation: spinner 20s infinite linear;
}
@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}

@keyframes spinner {
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg);
	}
}
@media (max-width: 768px) {
  .about-thumb{
    width: 86%;
    position: static;
    margin: 31px auto;
  }
  a.round-text {
    height: 100px;
    width: 100px;
    right: 9px;
    top: 0px;
  }
  .about-thumb img{
    border-radius: 10px;
  }
  .about-info .top-info .h2-tx {
    font-size: 62px;
  }
}


/* service section */
.service-section{
  background: url(../images/resources/serv-bg.png);
  background-color: var(--color-one );
}
.service-card{
  padding: 15px;
  border: 1px solid #dddddd;
  min-height: 577px;
  background: #f5f2f2;
  border-radius: 10px;                
}
.service-card img{
  width: 100%;
  margin-bottom: 10px; 
  border-radius: 10px;
}
.service-content{
  margin: 12px 26px;
  padding-bottom: 21px;
  border-bottom: 1px dashed gray;
  margin-bottom: 25px;
}
.service-name{
  font-size: 20px;
  color: black;
  font-weight: 600;
  margin: 6px 0;
  min-height: 45px;
  line-height: 1.29;
  display: block;
  transition: all 250ms linear;
}
.service-name:hover{
  color: var(--color-two);
}
.service-card .thm-btn{
  width: 100%;
  text-align: center;
}

/* Brand text slider */
.brand-items {
	position: relative;
	display: flex;
	align-items: center;
}

.brand {
  background: var(--color-two);
}
.brand .brand-items {
	padding-top: 100px;
	padding-bottom: 100px;
	margin-top: -20px;
}

.brand-conetnt {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: slide-left 50s linear infinite;
}

.brand-conetnt .h2-tx {
	margin: 0;
	font-size: 120px;
	margin: 0 100px;
	font-weight: 600;
	line-height: 1;
  display: block;
  white-space: nowrap;
  color: white;
	text-transform: capitalize;
}

.bg-dark .brand-conetnt .h2-tx {
	color: white;
}

.brand-conetnt .item:nth-child(2n) .h2-tx {
	border: none;
	text-decoration: none;
	color: transparent;
	-webkit-text-stroke: 1px white;
}

.brand-conetnt .item {
	position: relative;
}

.brand-conetnt .item::after {
	position: absolute;
	right: -75px;
	top: 50%;
	content: "";
	height: 100px;
	width: 125px;
	background: url(../images/icon/cap.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	transform: translateY(-50%);
	margin-top: 10px;
}

.color-secondary .brand-conetnt .item::after {
	background: url(../img/icon/52.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
}

@-webkit-keyframes slide-left {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes slide-left {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}
@media (max-width: 768px) {
  .brand-conetnt .h2-tx{
    font-size: 70px;
  }
}

/* testimonial */
.testimonial{
  background: var(--color-two);
}
.testimonial .swiper-wrapper {
    transition-timing-function: linear !important;
    animation-delay: 0 !important;
}
.testi-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 20px auto;
  font-family: 'Segoe UI', sans-serif;
}

.testi-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  line-height: 1.6;
}

.testi-text i {
  color: #ff9800;
  margin: 0 4px;
}

.testi-stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.testi-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.testi-role {
  font-size: 14px;
  color: #777;
  margin: 2px 0 0;
}

/* Why choose us */
.thumb-style-four {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.thumb-style-four .fun-fact {
	background: rgba(255, 255, 255, 0.6);
	color: var(--color-heading);
	padding: 30px;
	display: flex;
	border: 2px solid white;
	border-radius: 10px;
}

.thumb-style-four .fun-fact .counter {
	font-size: 60px;
	line-height: 1;
	margin-bottom: 5px;
	font-weight: 600;
}

.thumb-style-four .fun-fact span.medium {
	font-size: 20px;
}

.thumb-style-four .right {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.thumb-style-four .left img {
	object-fit: cover;
	object-position: center;
}

.thumb-style-four .right .thumb {
	margin-left: -30%;
}

.thumb-style-four .right .thumb {
	position: relative;
	z-index: 1;
}

.thumb-style-four .right .thumb .video-play-button {
	position: absolute;
	left: 42%;
	top: 42%;
	transform: translate(-50%, -50%);
}

.color-secondary .video-play-button {
	background: var(--color-two);
}

.thumb-style-four .fun-fact img {
	height: 80px;
	margin-right: 30px;
}

.thumb-style-four img {
	border-radius: 10px;
}

ul.list-style-five {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.list-style-five li {
	font-weight: 500;
	color: var(--color-heading);
	margin-top: 30px;
	display: flex;
}

.info-style-one ul.list-style-five {
	border-top: 1px dashed #d2e3f9;
	margin-top: 30px;
}

.bg-gray-gradient-secondary .info-style-one ul.list-style-five {
	border-color: #b2cfca;
}

ul.list-style-five li .icon i {
	display: inline-block;
	height: 60px;
	width: 60px;
	text-align: center;
	line-height: 60px;
	background: #d9e9e6;
	border-radius: 50%;
	margin-right: 25px;
	font-size: 25px;
	color: var(--color-heading);
}

.bg-gray-gradient-secondary ul.list-style-five li .icon i {
	background: #c6dcd8;
}

.color-secondary ul.list-style-five li .icon i {
	background: #ecfffb;
}

ul.list-style-five li p {
	margin: 0;
}

ul.list-style-six {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.list-style-six li {
	position: relative;
	z-index: 1;
	padding-left: 25px;
	font-weight: 500;
	margin-top: 8px;
	font-size: 18px;
}

ul.list-style-six li::after {
	position: absolute;
	left: 0;
	top: 6px;
	content: "";
	height: 18px;
	width: 18px;
	background: url(../img/icon/check.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}

@media (max-width: 768px) {
  .thumb-style-four .right .thumb{
    margin-left: 0;
  }
  .thumb-style-four{
    display: block;
  }
  .thumb-style-four .right{
    width: 100%;
    margin-bottom: 25px;
  }
  .thumb-style-four .left{
    display: none;
  }
}
/* steps card */
.step-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  min-height: 160px;
  position: relative;
  z-index: 4;
}
.step-card::before{
  content: "";
  position: absolute;
  left: 70%;
  top: -80%;
  width: 90%;
  min-height: 126px;
  border: 1px solid #bdbaba;
  border-bottom: none;
  z-index: 2;
}
.step-card.last-card::before{
  display: none;
}
.step-label {
  position: absolute;
  top: -14px;
  left: 39%;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}
.step-card p{
  margin-bottom: 0;
}
.step-1 { border-color: #ffa500; }
.step-1 .step-label { background: #ffa500; }

.step-2 { border-color: #8e44ad; }
.step-2 .step-label { background: #8e44ad; }

.step-3 { border-color: #1abc9c; }
.step-3 .step-label { background: #1abc9c; }

.step-4 { border-color: #c0392b; }
.step-4 .step-label { background: #c0392b; }

.process-gif{
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 290px;
}
@media (min-width: 992px) {
  .step-4 { margin-top: -80px; }
  .step-3 { margin-top: 0px; }
  .step-2 { margin-top: 80px; }
  .step-1 { margin-top: 160px; }
}

@media (max-width: 991px) {
  .step-card {
    margin-bottom: 30px;
  }
  .step-card::before{
    display: none;
  }
  .process-gif{
    max-width: 100px;
  }
}

/* Contact */
.concact-sect{
  background: linear-gradient(#0093c908,#0093c912) ,url(../images/bg/appoinment-v1-pattern.png) ;
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
.concact-sect .socaial-icons li a{
  color: black;
}

 .form-area{
  background: white;
  width: 100%;
  padding: 45px;
  border-radius: 8px;
  /* margin-top: -170px; */
 }
.concact-sect select,
.concact-sect textarea,
.concact-sect input{
  width: 100%;
  padding: 16px 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  margin-bottom: 15px;
}
.concact-sect textarea{
  height: 135px;
}
.contact-detl{
  padding: 25px ;
  background: white;
  border-radius: 8px;
}
.contact-detl img{
  max-height: 40px;
}
.contact-detl .h6{
  color: var(--color-two);
}
.contact-detl .add-p,
.contact-detl a{
  color: var(--color-one);
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: all 250ms linear;
}
.contact-detl a:hover{
  color: var(--color-two);
}
.contact-detl a i{
  font-size: 15px;
  margin-bottom: 0;
}

/* blogs */

/* ============================================================== 
    # Home Blog Two
=================================================================== */
.home-blog-style-two-item .info {
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin-top: 25px;
	padding: 30px;
	padding-top: 0;
}

ul.blog-meta {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

ul.blog-meta li {
	display: inline-block;
	transition: all 0.35s ease-in-out;
	font-size: 16px;
}

ul.blog-meta li i {
	font-weight: 100;
	margin-right: 5px;
}

ul.blog-meta li a {
	display: inline-block;
	color: var(--color-paragraph);
	font-weight: 400;
}

ul.blog-meta li a:hover {
	color: var(--color-one);
}

.color-secondary ul.blog-meta li a:hover {
	color: var(--color-one);
}

.theme-style-three ul.blog-meta li a:hover {
	color: var(--color-one);
}

.theme-skyblue ul.blog-meta li a:hover {
	color: var(--color-one);
}

.home-blog-style-two-item .blog-title {
  line-height: 1.3;
}
.home-blog-style-two-item .blog-title a{
  color: black;
  font-size: 21px;
  transition: all 250ms linear;
}
.home-blog-style-two-item .blog-title a:hover{
  color: var(--color-two);
}

.home-blog-style-two-item .thumb {
	position: relative;
	overflow: hidden;
}

.home-blog-style-two-item .thumb ul.blog-meta {
	position: absolute;
	left: 0;
	bottom: 0;
	background: white;
	margin: 0;
	padding: 20px 30px;
	border-top-right-radius: 10px;
	padding-bottom: 2px;
}

.home-blog-style-two-item {
	overflow: hidden;
	border-radius: 10px;
	background: white;
	box-shadow: 0px 15px 20px -10px rgb(109 117 143 / 33%);
}

.home-blog-style-two-item .thumb ul.blog-meta::after {
	position: absolute;
	right: -15px;
	bottom: 0px;
	content: "";
	height: 35px;
	width: 15px;
	border-bottom-left-radius: 20px;
	box-shadow: 0 20px 0 0 white;
}

.home-blog-style-two-item .thumb img {
	transition: all 0.35s ease-in-out;
}

.home-blog-style-two-item:hover .thumb img {
	transform: scale(1.1);
}

.home-blog-style-two-item .thumb ul.blog-meta li a {
	display: inline-block;
	border-radius: 30px;
	padding: 0px 11px;
	font-size: 14px;
	border: 1px solid var(--color-one);
}

.color-secondary .home-blog-style-two-item .thumb ul.blog-meta li a {
	border: 1px solid var(--color-one);
}

.theme-style-three .home-blog-style-two-item .thumb ul.blog-meta li a {
	border: 1px solid var(--color-one);
}

.theme-skyblue .home-blog-style-two-item .thumb ul.blog-meta li a {
	border: 1px solid var(--color-one);
}

a.btn-read-more {
	text-transform: uppercase;
	color: gray
}

a.btn-read-more i {
	display: inline-block;
	transform: rotate(-45deg);
	font-size: 16px;
	position: relative;
	top: 0px;
}

a.btn-read-more:hover {
	color: var(--color-one);
}

.color-secondary a.btn-read-more:hover {
	color: var(--color-one);
}

.theme-skyblue a.btn-read-more:hover {
	color: var(--color-one);
}

.color-secondary a.btn-read-more:hover {
	color: var(--color-one);
}

.theme-style-three a.btn-read-more:hover {
	color: var(--color-one);
}

/* faq */
.faq-style-one button.accordion-button {
	color: var(--color-heading);
	font-size: 20px;
	font-weight: 600;
	padding: 25px !important;
	background: transparent;
	padding-right: 60px !important;
	position: relative;
	box-shadow: inherit;
	border-bottom: 1px solid transparent !important;
	text-transform: none;
}

.faq-style-one button.accordion-button::after {
	display: none;
}

.faq-style-one button.accordion-button::before {
	background: transparent;
	content: "+";
	font-family: "Font Awesome 5 Pro";
	font-weight: 1;
	font-size: 28px;
	position: absolute;
	top: 21px;
	right: 25px;
}

.faq-style-one button.accordion-button:not(.collapsed)::before {
	transform: none;
	content: "-";
}

.faq-style-one button.accordion-button:focus {
	background: transparent;
	color: var(--color-heading);
	border: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	padding-left: 0;
	font-weight: 600;
}

.faq-style-one .accordion-item:first-child {
	margin-top: 0;
}

.faq-style-one.accordion-item h2 {
	margin: 0;
	border: none;
}

.faq-style-one .accordion-body {
	padding: 30px;
	position: relative;
	z-index: 1;
	border-top: 1px solid #e7e7e7;
}

.faq-style-one .accordion-body p {
	margin: 0;
}

.faq-style-one button.accordion-button strong {
	display: inline-block;
	height: 35px;
	width: 35px;
	line-height: 34px;
	text-align: center;
	border-radius: 50%;
	margin-right: 12px;
	border: 1px solid #e7e7e7;
}

.faq-style-one.accordion-item {
	background: rgba(255, 255, 255, 0.4);
	border: none;
	margin-top: 15px;
	border: 1px solid #e7e7e7;
	border-radius: 10px;
	overflow: hidden;
}

.faq-style-one .accordion-item:first-child {
	margin-top: 0;
}

.bg-gray-gradient-secondary .faq-style-one.accordion-item {
	border: 2px solid white;
}

.bg-gray-gradient-secondary .faq-style-one.accordion-item .accordion-body {
	border-top: 2px solid white;
}

/* footer start */
.footer-sect{
  /*background: linear-gradient(rgba(0, 0, 0, 0.597), rgba(0, 0, 0, 0.767)) , url(../images/bg/footer-bg.jpg);*/
  background: linear-gradient(var(--color-two), var(--color-one));
  padding-top: 110px;
  background-size: cover;
}
.ft-logo img{
  max-width: 100%;
  border-radius: 5px;
}
.footer-link-box{
  overflow: hidden;
    border-radius: 8px;
    border-radius: 8px;
    padding: 50px 50px 32px;
    background-color: var(--color-one);
    border: 1px solid transparent;
    background: linear-gradient(#25126d, #5a0e46) padding-box, linear-gradient(98.4deg, #FF8025 0%, rgba(195, 153, 0, 0) 30.57%, rgba(195, 108, 18, 0) 66.14%, #C11336 100%) border-box;
}
footer .socaial-icons li a{
  color: white !important;
}
.widget-title{
  color: red;
}
.footer-widget{
  align-items: center;
  gap: 10px;
  list-style: none;
  padding-left: 0;
}
.footer-widget li{
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
}
.footer-widget li:after {
  content: "\27A4";
  position: absolute;
  top: 5px;
  left: 0px;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  color: white;
  transition: all 250ms linear ;
}
.footer-widget li:hover::after{
  color: white;
}
.footer-widget a{
  font-weight: 500;
  color: #d0d4d4;
  transition: all 250ms linear ;
}
.footer-widget a:hover{
  color: rgb(174, 45, 45);
}
.footer-contact{
  position: relative;
  z-index: 1;
}
.footer-contact .ft-cont {
  display: flex;
  margin-bottom: 18px;
}
.footer-contact .ft-cont i{
  display: flex;
  justify-content: center;
  margin-top: 5px;
  margin-right: 10px;
  color: white;
}
.footer-contact .ft-cont p{
  color: rgb(230, 227, 227);
}
.footer-contact .ft-cont span {
  color: var(--color-two);
}
.footer-contact .ft-cont  a{
  display: block;
  color: rgb(230, 227, 227);
  font-weight: 600;
  transition: all 250ms;
}
.footer-contact .ft-cont a:hover{
  color: var(--color-two);
}
.gallery__slider img{
  border-radius: 6px;
}
.copyright{
  margin-top: 60px;
  color: white;
  border-top: 1px solid rgba(128, 128, 128, 0.523);
}
.copyright a{
    color: #ebe3e4;
}
.floated-abt{
  max-width: 550px;
  float: left;
  margin-right: 24px;
}
@media (max-width: 767px) {
  .floated-abt{
    max-width: 100%;
    float: none;
    margin-right: 0px;
    margin-bottom: 24px;
  }
}

/* breadcrumb */
.breadcrumb-area{
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.352), rgba(0, 0, 0, 0.352)), url(../images/bg/bread.jpg);
}
.breadcrumb-area h1{
  color: white;
  text-align: center;
}
.breadcrumb-area li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-two);
}
.breadcrumb{
  background: white;
  border-radius: 5px;
  width: fit-content;
  margin: auto;
  padding: 6px 25px;
  margin-top: 15px;
}
.breadcrumb-item+.breadcrumb-item::before{
  color: black;
}

/* share and whatsapp */
.share-btn-box{
  position: relative;
  z-index: 5;
}
.share-btn {
  font-size: 26px;
  font-weight: 600;
  color: black;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-share {
  width: fit-content;
  height: fit-content;
}

.social-share ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.social-share ul li button,
.social-share ul li a {
  color: #fff;
  font-size: 19px;
  line-height: 24px;
  height: 24px;
  width: 34px;
  text-align: center;
  padding: 4px 8px !important;
  border-radius: 3px;
  text-transform: capitalize;
  display: block;
  height: fit-content;
  box-shadow: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.social-share ul li button:hover,
.social-share ul li a:hover {
  opacity: 0.8;
}

.social-share ul li button.facebook,
.social-share ul li a.facebook {
  background: #3B5999;
}

.social-share ul li button.twitter,
.social-share ul li a.twitter {
  background: #1DA1F2;
}

.social-share ul li button.whatsapp,
.social-share ul li a.whatsapp {
  background: #20cb45;
}

.social-share ul li a.google-plus {
  background: #fe6d4c;
}

.social-share ul li button.linkedin,
.social-share ul li a.linkedin {
  background: #0a66c2;
}

.social-share ul li button.telegram {
  background: #0a9ac2;
}

.social-share ul li button.email {
  background: #c2410a;
}




.what-app {
  position: fixed;
  z-index: 99;
}

.btn-whatsapp-pulse-border {
  bottom: 30px;
  left: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 30px;
  right: 20px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 34px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.what-app i {
  font-size: 54px;
  color: #fff;
}

@keyframes pulse-border {
  0% {
      padding: 25px;
      opacity: 0.75;
  }

  75% {
      padding: 50px;
      opacity: 0;
  }

  100% {
      opacity: 0;
  }
}

.video-pulse {
  background: white;
  color: var(--color-two);
  position: relative;
  z-index: 5;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 34px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  cursor: pointer;
}
.video-pulse i{
  margin-left: 6px;
}
.video-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid var(--color-two);
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
      padding: 25px;
      opacity: 0.75;
  }

  75% {
      padding: 50px;
      opacity: 0;
  }

  100% {
      opacity: 0;
  }
}

@media (max-width: 768px) {
  .video-h br{
    display: none;
  }
}