



@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed: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');
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

/* 01. root */
:root {
  --theme-colour: #f06236;
  --common-colour: #2e4a5b;
  --common-font: "Barlow Condensed";  
}

body,html {
    font-family: "Hanken Grotesk", sans-serif; 
    overflow-x: hidden ;
}
p { 
    font-size: 16px;
    line-height: 30px;
    color: #646464;
    margin: 0;
    font-weight: 400;
}
*{
    margin: 0;
    padding: 0;
}
figure {
    margin-bottom: 0;
}
a,h1,h2,h3,h4,h5,h6{ 
    margin: 0;
    color: var(--common-colour);
    font-family: var(--common-font);
} 
 h1,h2,h3,h4,h5,h6{  
    font-family: var(--common-font);
} 
a { 
    margin: 0; 
} 
a{
    text-decoration: none;
}

.logo a img{
	max-width:200px;
}
ul{
    padding: 0;
    margin: 0;
}
li{ 
    display: block;

}
figure {
    overflow: hidden;
}
.gap {
    padding-top: 50px;
    padding-bottom: 50px;
}
.no-top {
    padding-top: 0;
}
.no-bottom {
    padding-bottom: 0;
} 

.bg-light2{
    background: #e7eef2!important;
}
/* 02. navbar */
header {
    position: absolute;
    width: 100%;
    z-index: 211; 
}   
header .navbar {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    padding: 0;
}
header .navbar-logo {
  color: #ff3f34;
  text-decoration: none;
  font-size: 25px;
  padding: 0px 20px;
}
header .navbar-links {
  list-style-type: none;
  display: flex;
}
header .navbar-links li:not(:last-child) {
    padding-right: 42px;
}
header .navbar-links li a {
    display: block;
    text-decoration: none;
    color: #707070;
    transition: 0.4s all;
    padding-bottom: 10px;
    padding-top: 10px;
}
header .navbar-links li.navbar-dropdown {
  position: relative;
}
header .navbar-links li.navbar-dropdown:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translatey(0px);
    z-index: 1111;
}
header .navbar-links li.navbar-dropdown:hover .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    border-left: 3px solid var(--theme-colour);
    opacity: 0;
    top: 20%;
}
header li.sub-menu-item-children:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    z-index: 1;
    right: 31px;
    background-color: black;
    clip-path: polygon(68% 50%, 0 0, 0 100%);
    top: 44%;
}
header .navbar-links li.navbar-dropdown .sub-menu li:hover .sub-menu {
    opacity: 1;
}
header .navbar-links li.navbar-dropdown .sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    transform: translatey(10px);
    left: 0;
    width: 230px;
    box-shadow: 0px 10px 10px 3px hsl(0deg 0% 0% / 16%);
    z-index: 111;
    transition: 0.4s all;
}
header .navbar-links li.navbar-dropdown .sub-menu a {
    font-size: 16px;
    padding-left: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 500;
    border: 0;
    position: relative;
    text-transform: capitalize;
    color: #000;
    background-color: #FFF;
}
header .navbar-links li.navbar-dropdown .sub-menu li a:hover {
    color: var(--theme-colour);
}
header .navbar-links li.navbar-dropdown .sub-menu li {
    position: relative;
}
header .navbar-links li.navbar-dropdown .sub-menu li:before {
    content: "";
    z-index: 11;
    position: absolute;
    height: 1px;
    background-color: #58585829;
    width: 75%;
    bottom: 0;
    left: 25px;
}
header li.menu-item-children > a:before {
    content: "";
    background-image: url(../img/down-arrow.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 28px;
    width: 8px;
    height: 8px;
}
header .navbar-links li:hover > a {
    border-bottom: 5px solid var(--theme-colour);
}
header .navbar-links li > a {
    border-bottom: 5px solid transparent;
    color: var(--common-colour);
    text-transform: capitalize;
    font-size: 17px!important;
    font-weight: 600;
} 
header nav.navbar ul.sub-menu li {
    padding: 0;
} 

.fon-18{
	font-size: 18px!important;
}

.contact-header div a{
	font-size: 18px!important;
	font-weight: 600;
}
/* 03. two-bar */
header .two-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 12px;
}
header .logo {
    z-index: 1;
}
header .header-search i{
    color: #fff;
    font-size: 20px;
    margin-right: 16px;
}
.header-menu-right {
    display: flex;
    align-items: center;
}  
.header-menu-right svg {
    width: 20px;
    fill: #000000;
    height: auto;
} 
/* 04. mobile-nav */
header .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #fff;
    padding: 50px 40px 15px;
    z-index: 5;
    transition: 0.45s ease-in-out;
    transform: translateX(-101%);
    -webkit-transform: translateX(-101%);
    -moz-transform: translateX(-101%);
    -o-transform: translateX(-101%);
    overflow-y: auto;
}
header .mobile-nav ul li a svg {
    width: 11px;
}
header .for #nav-icon4{
  color: black;   
}
header #nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon4 span:nth-child(2) {
  top: 13px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.responsive-bar {
    display: none;
}
#nav-icon4 span:nth-child(3) {
  top: 25px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
} 
#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
} 
#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 35px;
  left: 8px;
} 
i#nav-icon4 {
    display: none;
}
#nav-icon4 {
  width: 40px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
  font-size: 25px;
  color: white;
}

#nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.mobile-nav > ul > li.menu-item-has-children:before {
    color: #fff;
    position: absolute;
    top: 17px;
    right: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 11px;
}
.mobile-nav > ul > li.menu-item-has-children.active:before {
    transform: rotate(0deg);
    color: var(--theme-colour);
}
.mobile-nav > ul > li {
    position: relative;
    border-bottom: 0px solid #d4d4d4;
    padding: 10px 0;
    display: block;
}
.mobile-nav > ul > li:not(:last-child) {
    border-bottom: 1px solid #8f8f8f69;
}
.mobile-nav > ul li > a {
    font-size: 20px;
    line-height: 26px;
    text-transform: capitalize;
    color: #000000;
}
.mobile-nav > ul > li > a {
}
.mobile-nav > ul > li.menu-item-has-children > ul.sub-menu {
    padding-left: 25px;
    padding-top: 10px;
    padding-bottom: 5px;
    position: absolute;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translatey(15px);
    -webkit-transform: translatey(15px);
    -moz-transform: translatey(15px);
    -o-transform: translatey(15px);
    border-top: 1px solid #5b5b5b;
    margin-top: 8px;
}
.mobile-nav > ul > li.menu-item-has-children.active > ul.sub-menu li {
    padding: 5px 0;
    position: relative;
}
.res-log img {
    width: auto;
}
.mobile-nav > ul > li.menu-item-has-children.active > ul.sub-menu li:after {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 19px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: -18px;
    background-color: var(--theme-colour);
}
.mobile-nav ul > li.menu-item-has-children:before {
    content: "";
    background-image: url(../img/down-arrow.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    right: 0;
    width: 10px;
    height: 10px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}
.mobile-nav > ul li.menu-item-has-children.active ul.sub-menu li:before {
    top: 12px;
    background-color: transparent;
    left: auto;
    content: "";
    position: absolute;
    transform: rotate(0deg);
}
.mobile-nav > ul  li.menu-item-has-children  ul.sub-menu {
    padding-left: 25px;
    padding-top: 10px;
    padding-bottom: 5px;
    position: absolute;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -o-transform: translateX(15px);
    border-top: 1px solid #d1d1d1;
    margin-top: 8px;
}
.mobile-nav > ul  li.menu-item-has-children.active > ul.sub-menu{
    position: relative;
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transition-delay: 0.1s;
}
.res-log {
    margin-bottom: 30px;
}
.res-rights p{
    color: #d6d6d6;
    font-weight: bold;
    letter-spacing: 5px;
    margin-top: 30px;
}

.mobile-nav.open {
    transform: translateX(0) !important;
    z-index: 33333333;
    box-shadow: 3px 3px 39px -4px rgba(0,0,0,0.75);
-webkit-box-shadow: 3px 3px 39px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 3px 3px 39px -4px rgba(0,0,0,0.75);
}
li.menu-item-has-children.active {
    background-color: transparent;
}
.mobile-nav a#res-cross:before {
    content: "\f057";
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--common-colour);
    font-size: 28px;
}
#mobile-menu i {
    color: #fff;
    background-color: transparent;
    font-size: 24px;
}
#mobile-menu {
    z-index: 1;
    display: none;
}
.responsive-bar-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
#mobile-menu i {
    margin-right: 20px;
    font-size: 26px;
}
.bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    flex-wrap: wrap;
}

.marquee-item img{
	width:46px;
}
 
/* 05. Search Popup */
.search-popup{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: #2e4a5be0;
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}
.search-popup{
    width: 100%;
}
.search-active .search-popup{
    transform: translateY(0%);
    margin-top: 0;
}
.search-popup .close-search {
    top: 6%;
    position: absolute;
    left: 94%;
    margin: 0 auto;
    border-radius: 50%;
    text-align: center;
    background-color: #021935;
    width: 50px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    -webkit-transition: all 500ms ease;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border: 0;
}
.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}
.search-popup form{
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin:-35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.search-active .search-popup form{
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}
.search-popup .form-group{
    position:relative;
    margin:0px; 
    overflow: hidden;
}
.checkbox-flex {
    display: flex;
}
.search-popup .form-group input[type="text"], .search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
    border: 0;
}
.search-popup .form-group input[type="submit"], .search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color:var(--common-colour);
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    border: none;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder{
    color:#000000;
}

.search-popup .close-search.style-two{
    position: absolute;
    right: 25px;
    left: auto;
    color:#ffffff;
    width:auto;
    height:auto;
    top:25px;
    margin:0px;
    border:none;
    background:none !important;
    box-shadow:none !important;
    -webkit-transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
}

.search-box-btn {
    display: inline-block;
    padding-left: 22px;
}
.search-box-btn i {
    display: inline-block;
    color: #fff;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: .5s;
}
.upp.search-box-btn i {
    color: #9E9FA1;
}
.search-box-btn.search-box-outer span i {
    font-size: 20px;
    display: inline-block;
    color: #fff;
    padding-left: 17px;
    position: relative;
    z-index: 1;
} 
.upp.search-box-btn.search-box-outer span i {
    color: #9E9FA1;
} 
.search-box-btn.search-box-outer span i:after {
    position: absolute;
    content: "0";
    right: -10px;
    top: -4px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background: #ED1C24;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    font-size: 12px;
} 
button.close-search i {
    font-size: 18px;
    color: #fff;
    display: inline-block;
}
span.flaticon-multiply i {
    display: inline-block;
    color: #ED1C24;
}
.header-search {
    display: flex;
    align-items: center;
}
.header-search-button.search-box-outer a {
    padding-right: 7px;
    border: 1px solid #D8D8D8;
    margin-right: 17px;
    padding-right: 17px;
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    color: #000;
    align-items: center;
    justify-content: center;
    padding: 0;
} 
.btn i {
    margin-left: 13px;
    font-size: 16px;
} 
.header-search-button.search-box-outer a:hover {
    background-color: var(--theme-colour);
    color: #FFF;
    border-color: var(--theme-colour);
}
.header-search-button.search-box-outer a:hover svg {
    fill: #fff;
}
/* 06. location */
.location svg {
    width: 30px;
    fill: white;
    height: auto;
}
/*=======================
   79. Preloader
=======================*/
 .preloader {
    background-color: var(--theme-colour);
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999999999999999999;
    right: 0;
    bottom: 0;
    transition-duration: 1s;
    -webkit-transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}
.preloader {
    bottom: 0%;
}
.page-loaded .preloader {
     bottom: -100%; 
}
 #loader:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  margin: 35px auto 0;
  color: #FFF;
  font-weight: 600;
  font-size: 14px; 
  letter-spacing: 2px;
  text-transform: uppercase;
  content: "Loading";
  -webkit-transition: none;
  transition: none;
}
#loader:after {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -38px;
    height: 70px;
    width: 70px;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: fa-spin 10s infinite linear;
    animation: fa-spin 10s infinite linear;
    background-image: url(../img/preloader.png);
    content: "";
}
/* 07. Go To Top */
 #scroll-percentage {
     position: absolute;
     box-shadow: 0px 0px 20px 0px rgba(184, 184, 184, 0.75);
     height: 60px;
     width: 60px;
     background-color: var(--common-colour);
     border-radius: 50%;
     position: fixed;
     bottom: 30px;
     right: 30px;
     transform: scale(0);
     display: grid;
     place-items: center;
     cursor: pointer;
     visibility: hidden;
     opacity: 0;
     -webkit-transition: all 0.3s;
     transition: all 0.3s;
     z-index: 1011; 
 }

 #scroll-percentage.active {
     bottom: 30px;
     transform: scale(1);
     opacity: 1;
     visibility: visible;
     animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
     transition: 0.3s; 
 } 
 #scroll-percentage-value {
     height: calc(100% - 6px);
     width: calc(100% - 6px);
     background-color: #fff;
     color: #000;
     border-radius: 50%;
     display: grid;
     place-items: center;
     font-size: 14px;
     font-weight: 600;
 } 
 #scroll-percentage-value i {
     font-size: 20px;
 } 
 @keyframes scrollToTop {
     0% {
         -webkit-transform: translate3d(0, 80%, 0);
         transform: translate3d(0, 80%, 0);
         visibility: visible
     }

     to {
         -webkit-transform: translateZ(0);
         transform: translateZ(0)
     }
 } 
 @keyframes wobble-vertical {
     16.65% {
         transform: translateY(8px);
     }

     33.3% {
         transform: translateY(-6px);
     }

     49.95% {
         transform: translateY(4px);
     }

     66.6% {
         transform: translateY(-2px);
     }

     83.25% {
         transform: translateY(1px);
     }

     100% {
         transform: translateY(0);
     }
 } 
/* 08. btn */
.btn{
 outline: none;
 cursor: pointer;
 border: none;
 padding: 14px 30px;
 margin: 0;
 position: relative;
 display: inline-block;
 text-transform: capitalize;
 font-weight: 700;
 font-size: 15px;
 border-radius: 500px;
 overflow: hidden;
 background-color: var(--common-colour);
 color: #ffffff;
} 
.btn span {
 position: relative;
 z-index: 10;
 transition: color 0.4s;
} 
.btn::before,
.btn::after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
} 
.btn::before {
 content: "";
 background-color: var(--theme-colour);
 width: 120%;
 left: -10%;
 transform: skew(30deg);
 transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
} 
.btn:hover::before {
 transform: translate3d(100%, 0, 0);
} 
/* 09. hero-section */  
.hero-section {
    background-color: #F4F4FF;
    padding-top: 150px;
    padding-bottom: 0;
}
ul.experience-team {
    display: flex;
    margin-left: 14px;
} 
.experience {
    display: flex;
    align-items: center;
    gap: 18px;
} 
.counter {
    display: flex;
    gap: 60px;
    padding-top: 50px;
} 
ul.experience-team li img {
    border-radius: 50%; 
} 
ul.experience-team li {
    margin-left: -15px;
} 
ul.experience-team a {
    width: 60px;
    height: 60px;
    background-color: var(--common-colour);
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    border: 2px solid #fff;
} 
ul.experience-team a:hover {
    background-color: var(--theme-colour);
}
.experience h6 {
    font-weight: bold;
    color: var(--common-colour);
    padding-bottom: 3px;
} 
.experience > div span {
    color: var(--common-colour);
}  
.counter h2 {
    font-size: 52px;
    font-weight: bold;
    color: var(--common-colour);
} 
.counter span {
    color: var(--common-colour);
} 
.hero-text > span {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--common-colour);
} 
.hero-text > span i {
    color: #FC4F4F;
    padding-right: 10px;
} 
.hero-text {
    position: relative;
} 
.hero-text img.shaps-3 {
    position: absolute;
    top: 0;
    right: 0;
    animation: bellRing 5s infinite;
}
.hero-text h1 {
    font-size: 82px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--common-font);
} 
.hero-text h1 span {
    color: var(--theme-colour);
}
.hero-text p {
    font-size: 22px;
    line-height: 34px;
    padding-bottom: 45px;
}
.hero-img {
    position: relative;
}
.hero-img img {
    width: 125%;
}
@keyframes bellRing {
  0%,
  100% {
    transform-origin: top;
  } 
  15% {
    transform: rotateZ(10deg);
  } 
  30% {
    transform: rotateZ(-10deg);
  } 
  45% {
    transform: rotateZ(5deg);
  } 
  60% {
    transform: rotateZ(-5deg);
  } 
  75% {
    transform: rotateZ(2deg);
  }
} 
/* 10. ul shaps */
ul.shaps li {
    position: absolute; 
}
ul.shaps li:nth-child(1) {
    top: 24%;
    left: 10%;
    bottom: auto;
    animation: topshap 3s infinite;
}
ul.shaps li:nth-child(2) {
    top: 27%;
    right: -20%;
    bottom: auto;
    animation: topshap 6s infinite;
}
ul.shaps li:nth-child(3) {
    top: 6%;
    right: 6%; 
}
ul.shaps li:nth-child(4) {
    right: -33%;
    bottom: 21%; 
}
ul.shaps li:nth-child(5) {
    top: 76%;
    left: -15%;
}   
ul.shaps li:nth-child(3) img,
ul.shaps li:nth-child(4) img,
ul.shaps li:nth-child(5) img {
    animation: fa-spin 10s infinite linear; 
}

/* 11. heading */
.heading span {
    font-weight: bold;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 22px;
    color: #2e4a5b;
    font-family: "Barlow Condensed", sans-serif;
    padding-bottom: 6px;
    display: block;
}
.heading h2 {
    font-size: 40px;
    font-weight: 600; 
} 
.heading {
    padding-bottom: 30px;
    /*width: fit-content;*/
}
/* 12. services */
.services h4 a {
    font-size: 24px;
    font-weight: bold; 
    font-family: var(--common-font);
}
.services {
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.07);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
    padding: 40px;
    position: relative;
    margin: 15px;
	min-height:400px;
	border-radius:16px;
} 
.services:before {
    width: 100%;
    height: 0%;
    background-color: var(--theme-colour);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0; 
}
.services:hover:before {
    height: 100%;
}
.services > i {
    background-color: #F05DA8;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    padding: 15px;
    box-shadow: 0px 0px 24px 0px rgba(240,93,168,0.4);
-webkit-box-shadow: 0px 0px 24px 0px rgba(240,93,168,0.4);
-moz-box-shadow: 0px 0px 24px 0px rgba(240,93,168,0.4);
}
.services p {
    padding-top: 10px;
    padding-bottom: 20px;
    position: relative;
} 
.services a {
    font-weight: bold;position: relative;
    font-size: 20px;
} 
.services a i {
    margin-left: 12px;
    position: relative;
}
.services svg {
    stroke: #ffffff; 
    position: relative;
} 
.services:hover a,.services:hover p {
    color: #fff;
} 
.services:hover > i {
    background-color: #fff !important;
} 
.services:hover i svg {
    stroke: var(--common-colour);
    transform: rotate3d(1, 1, 1, 360deg);
} 
.services:hover a i {
    background-color: transparent;
}
.services.two > i {
    background-color: #69b741;
    box-shadow: 0px 0px 24px 0px rgba(105,183,65,0.4);
-webkit-box-shadow: 0px 0px 24px 0px rgba(105,183,65,0.4);
-moz-box-shadow: 0px 0px 24px 0px rgba(105,183,65,0.4);
}
.services.three > i {
    background-color: #58CBF2;
    box-shadow: 0px 0px 24px 0px rgba(88,203,242,0.4);
-webkit-box-shadow: 0px 0px 24px 0px rgba(88,203,242,0.4);
-moz-box-shadow: 0px 0px 24px 0px rgba(88,203,242,0.4);
}
.services.for > i {
    background-color: #9B52E1;
    box-shadow: 0px 0px 24px 0px rgba(155,82,225,0.4);
-webkit-box-shadow: 0px 0px 24px 0px rgba(155,82,225,0.4);
-moz-box-shadow: 0px 0px 24px 0px rgba(155,82,225,0.4);
}
/* 13. services-slider */
.swiper.services-slider {
    /*margin-left: -100px;
    margin-right: -100px;*/
    margin-top: -110px;
    padding-top: 110px;
}
.services-slider .swiper-button {
    position: absolute;
    top: 0px;
    width: 130px;
    right: 0%;
    /* background-color: #fff0bd; */
    display: block;
    height: 60px;
    z-index: 11;
    border-radius: 51px;
    z-index: 1111111;
} 
.services-slider.swiper-button-prev:after,.services-slider .swiper-button-next:after {
    display: none;
} 
.services-slider .swiper-pagination {
    left: 86%;
    position: absolute;
    width: 100px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
.services-slider .swiper-button-prev,
.services-slider .swiper-button-next { 
    width: 50px;
    height: 50px;
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    color: var(--common-colour);
} 
.services-slider .swiper-button-prev:hover,
.services-slider .swiper-button-next:hover {
     color: #fff;
     background-color: var(--theme-colour);
     color: #f9f9f9;
     border-color:transparent;
}

/* 13. services-slider2 */
.swiper.services-slider2 {
    /*margin-left: -100px;
    margin-right: -100px;*/
    margin-top: -110px;
    padding-top: 110px;
}
.services-slider2 .swiper-button {
    position: absolute;
    top: 0px;
    width: 130px;
    right: 0%;
    /* background-color: #fff0bd; */
    display: block;
    height: 60px;
    z-index: 11;
    border-radius: 51px;
    z-index: 1111111;
} 
.services-slider2.swiper-button-prev:after,.services-slider2 .swiper-button-next:after {
    display: none;
} 
.services-slider2 .swiper-pagination {
    left: 86%;
    position: absolute;
    width: 100px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
.services-slider2 .swiper-button-prev,
.services-slider2 .swiper-button-next { 
    width: 50px;
    height: 50px;
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    color: var(--common-colour);
} 
.services-slider2 .swiper-button-prev:hover,
.services-slider2 .swiper-button-next:hover {
     color: #fff;
     background-color: var(--theme-colour);
     color: #f9f9f9;
     border-color:transparent;
}
/* 14. hover-img */
.hover-img:hover img {
   transform: scale(1.1) rotate(3deg);
}
.hover-img img {
    width: 100%;
}
.heading p {
    /*border-left: 3px solid #5050f4;
    padding-left: 27px; */
    margin-top: 25px;
} 
/* 15. list-style */
ul.list-style {
    padding-top: 40px;
    padding-bottom: 34px;
} 
ul.list-style li {
    padding-bottom: 18px;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
    padding-left: 20px;
    position: relative;
    color: var(--common-colour);
	font-size: 20px;
}
ul.list-style li:before {
    content: "";position: absolute;
    width: 10px;
    height: 10px;
    background-color: #f06236;
    border-radius: 50%;
    left: 0;
    top: 8px;
}
/* 16. about-text */
.about-text.heading {
    padding-bottom: 0;
    padding-left: 16px;
}
.about-text.heading h2 {
    font-size: 42px;
}
.about-img {
    width: 100%;
}
.about-text > img {
    margin-left: 30px;
    border-left: 1px solid #D8D8D8;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.about-service > div:hover i  {
  animation: bellRing 3s infinite;
}
/* 17. circle progressbar */
.progressbar {
    display: inline-block;
    width: 150px;
    margin-right: 0px;
}
.circle {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    margin-top: 10px;
    display: inline-block;
    position: relative;
    text-align: center;
    position: relative;
    z-index: 1;
} 
.circle div {
    color: var(--common-colour);
    position: absolute;
    top: 44%;
    left: 50%;
    margin: -20px 0 0 -86px;
    width: 100%;
    text-align: center;
    line-height: 40px;
    font-size: 40px;
    transform: translate(10px, 10px);
    font-weight: bold;
} 

.marquee-item img{
    width:40px;
}
.circle span {
    display: block;
    color: black;
    margin-top: 12px;
}
.progressbar-text h2 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    padding-top: 4px;
} 
.progressbar-text {
    padding-bottom: 17px;
    padding-left: 30px;
}
/* 18. marquee */
.marquee-icon {
    background-color: #f06236;
    padding: 16px;
	border:1px dashed #fff;
} 
.marquee-content {
    display: flex;
} 
.marquee-item {
    display: flex;
    align-items: center;
} 
.marquee-item h3 {
    font-size: 28px!important;
    font-weight: bold;
    color: #fff;
}
.marquee-content {
    animation: scroll-one 130s linear infinite;
} 
@keyframes scroll-one {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
} 
@keyframes scroll-two {
    0% { transform: translateX(0); } 
    100% {  transform: translateX(100%); }
}   
.marquee-content {
    display: flex;
} 
.marquee {
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 11;
} 
.marquee-icon {
    display: flex;
}
.marquee-item {
    margin-left: 60px;
    width: max-content;
    gap: 30px;
}  
.marquee-text {
    text-align: center;
    padding-top: 60px;
}
.marquee-text p {
    font-size: 18px;
}
.marquee.two .marquee-icon {
    background-color: var(--common-colour);
    transform: rotate(-1.5deg);
} 
.marquee.two {
    margin-top: -80px;
    z-index: 1;
    padding-bottom: 106px;
    margin-left: -10px;
}
.marquee.two .marquee-content {
    animation: scroll-two 40s linear infinite;
} 
.marquee.two .marquee-content.two {
    margin-left: -100%;
}
/* 19. project-style */
.project-style {
    position: relative;
} 
.project-style img {
    width: 100%;
} 
.project-style {
    position: relative;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 20px;
} 
.project-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
} 
.project-text span {
    color: #fff;
    line-height: 24px;
    background-color: #ffffff26;
    padding: 10px 15px;
    display: inline-block;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 2px;
}  
.project-text h5 a {
    color: #fff;
    font-size: 22px;
    color: #fff;
    line-height: 34px;
    background-color: #ffffff26;
    padding: 15px;
    display: block;
    border-radius: 10px;
    border-top-left-radius: 0;
    padding-top: 3px;
    font-weight: 700;
    padding-bottom: 7px;
} 
.project-style > a {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--common-colour);
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 5px solid #fff;
    z-index: 11;
} 
.project-style:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(360deg, var(--common-colour), transparent);
    z-index: 1;
}
.project-style:hover span,.project-style:hover h5 a {
    color: var(--common-colour);
    background-color: #fff;
}
.project-style:hover > a {
    background-color: var(--theme-colour);
}
/* 20. choose-us */
.choose-us {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 25px;
} 
.choose-us + .choose-us {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}
.choose-us i {
    width: 90px;
    height: 90px;
    background-color: #F05DA8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 24px 0px rgba(240,93,168,0.4);
-webkit-box-shadow: 0px 0px 24px 0px rgba(240,93,168,0.4);
-moz-box-shadow: 0px 0px 24px 0px rgba(240,93,168,0.4);
} 
.choose-us i svg {
    width: 90px;
    height: 90px; 
    padding: 20px;
} 
.choose-us h4 {
    font-weight: bold;
    font-size: 32px;
    padding-bottom: 7px;
} 
.choose-us + .choose-us i {
    background-color: #58CBF2;
    box-shadow: 0px 0px 24px 0px rgba(88,203,242,0.4);
-webkit-box-shadow: 0px 0px 24px 0px rgba(88,203,242,0.4);
-moz-box-shadow: 0px 0px 24px 0px rgba(88,203,242,0.4);
} 
.choose-us:hover i svg {
    stroke: var(--common-colour);
    transform: rotate3d(1, 1, 1, 360deg);
}
.choose-img {
    text-align: end;
    margin-right: 40px;
    position: relative;
    margin-top: 50px;
} 
.circle-img {
    position: absolute;
    top: -10%;
    left:5%;
    width: 212px;
    height: 212px;
    background-color: #ffffffb8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
} 
.circle-img img {
    width: 80px;
    height: 80px;
    padding: 17px;
    background-color: #2e4a5b;
    border-radius: 50%;
} 
.circle-img img.circle {
    position: absolute;
    width: auto;
    background-color: transparent;
    height: auto;
    animation: fa-spin 15s infinite linear;
    border-radius: 0;
	top:-8px;
}
.choose-img:before {
    content: "";
    position: absolute;
    width: 71%;
    height: 100%;
    background-color: #5050f3;
    left: 38px;
    z-index: -1;
    transform: rotate(5deg);
    top: 13%;
}
.meets-expertise {
    /*padding-bottom: 200px;*/
    border-bottom:1px solid #CFCECE;
}
/* 21. heading.two */
.heading.two {
    
    margin: auto;
   /* width: 60%;*/
} 
.heading.two span {
    padding-bottom: 10px;
    display: block;
   font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
}
/* 22. section-pricing */
.section-pricing {
    position: relative;
    background-color: #F4F4FF;
}
.pricing-plan {
    background-color: #fff;
    padding: 30px;
    position: relative;
    z-index: 11; 
}
.pricing-plan:hover {
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
}
.pricing-plan ul.list-style li {
    font-weight: 400;
} 
.pricing-plan ul.list-style li:before {
    background-color: #021833;
    width: 8px;
    height: 8px;
} 
.pricing-plan h5 {
    font-weight: bold;
    padding-bottom: 10px;
} 
.pricing-plan h3 {
    font-size: 52px;
    font-weight: bold;
    padding-bottom: 10px;
} 
.pricing-plan h3 span {
    font-size: 16px;
    padding-left: 6px;
}
 .pricing-plan ul.list-style {
    border-top: 1px solid #D8D8D8;
    padding-top: 26px;
    margin-top: 21px;
    padding-bottom: 30px;
    position: relative;
} 
.pricing-plan ul.list-style:before {
    content: "";
    position: absolute;
    width: 50%;
    background-color: var(--theme-colour);
    top: -1px;
    height: 1px;
}  
.pricing-plan img {
    position: absolute;
    right: 30px;
    top: 30px;
}
.pricing-plan.two {
    background-color: var(--theme-colour);
} 
.pricing-plan.two h5,
.pricing-plan.two > span,
.pricing-plan.two h3,
.pricing-plan.two li {
    color: #fff;
}
.pricing-plan.two ul.list-style li:before {
    background-color: #fff;
} 
.pricing-plan.two ul.list-style:before {
    display: none;
}
.pricing-plan.two .btn {
    border-color: #fff;
}
.pricing-plan.two .btn:hover {
    border-color: transparent;
    background-color: var(--common-colour);
}
.section-pricing ul.shaps li:nth-child(1) {
    top: 16%;
    left: 4%;
}
.section-pricing ul.shaps li:nth-child(2) {
    top: 27%;
    right: 4%;
}
.section-pricing ul.shaps li:nth-child(1) img,
.section-pricing ul.shaps li:nth-child(2) img {
    animation: fa-spin 10s infinite linear;     
}
.section-pricing ul.shaps li:nth-child(3) img,
.section-pricing ul.shaps li:nth-child(4) img {
    animation: fa-spin 20s infinite linear;     
} 
.section-pricing ul.shaps li:nth-child(3) {
    top: auto;
    bottom: 6%;
} .section-pricing ul.shaps li:nth-child(4) {
    top: 24%;
    left: 7%;
} 
/* 23. ul.star */
ul.star li i {
    color: #FFCC4A;
    font-size: 18px;
} 
ul.star li h6 {
    padding-left: 5px;
}
ul.star {
    display: flex;
    font-size: 14px;
    gap: 4px;
    margin-bottom: 10px;
} 
/* 24. review */
.review p {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500; 
    padding-bottom: 21px;
} 
.review {
    position: relative; 
}
.review-admin {
    display: flex;
    align-items: center;
    gap: 15px;
} 
.review-admin h5 {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 4px;
}
.review img.quotes {
    position: absolute;
    right: 10%;
    bottom: 8px;
    background-color: transparent;
    border: 0;
    padding: 0;
}
.swiper.review-slider {
    position: relative;
} 
.swiper.review-slider:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #bfbfbf;
    left: 50%;
    z-index: -1;
}
.review-slider .swiper-button {
    position: absolute;
    top: 50%;
    width: 78px;
    background-color: #F4F4FF;
    z-index: 1;
    height: 78px;
    border-radius: 50%; 
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} 
.review-slider .swiper-button i {
    color: #011834;
} 
.review-slider .swiper-button i:hover {
    color: var(--theme-colour);
}
.brand-slide .swiper-slide {
    text-align: center;
}
/* 25. blog-one-style */
.btn-left {
    text-align: right;
}
.blog-one-style h6 a {
        padding: 10px;
    position: absolute;
    font-size: 16px;
    background-color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-align: center;
    padding: 19px;
    line-height: 53PX;
    font-weight: bold;
    right: 5%;
    top: 39%;
    box-shadow: 0px 7px 31px -6px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 7px 31px -6px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 7px 31px -6px rgba(0,0,0,0.15);
} 
.blog-one-style:hover h6 a {
    background-color: var(--theme-colour);
    color: #fff;
}
.blog-one-style figure {
    margin-bottom: 20px;
}
.blog-one-style {
    position: relative;
} 
.blog-one-style h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: bold;
    padding-bottom: 20px;
    padding-top: 10px;
} 
.blog-one-style h3 a:hover {
    color: var(--theme-colour);
}
.blog-one-style .admin,.blog-one-style .comment {
    width: fit-content;
    display: inline;
    margin-right: 16px;
} 
.blog-one-style .admin svg, .blog-one-style .comment svg {
    transform: translateY(-2px);
}
.blog-one-style .comment {
     margin-right: 0px;
} 
.blog-one-style .admin a,.blog-one-style .comment a {
    color: #646464;
    display: inline-flex;
    align-items: center;
    gap: 7px;
} 
.blog-one-style .admin a:hover,
.blog-one-style .comment a:hover {
    color: var(--theme-colour);
}
.section-blog {
    position: relative;
}
.section-blog ul.shaps li:nth-child(1) {
    top: 18%;
    left: 5%;
}
.section-blog ul.shaps li:nth-child(1) img,
.section-blog ul.shaps li:nth-child(2) img {
    animation: fa-spin 10s infinite linear;
}
.section-blog ul.shaps li:nth-child(2) {
    top: 92%;
    right: 9%;
}
/* 26. footer one */
footer {
    position: relative;
    background-color: #e7eef2;
}

.footre-logo a img{
    background:#fff;
    padding:10px;
    border-radius:12px;
}
/* 27. subscribe */
.subscribe {
    background-color: #2e4a5b;
    padding: 50px;
    display: block;
    align-items: center;
    border-radius: 20px;
} 
.subscribe h2 {
    font-size: 52px;
    font-weight: bold;
    color: #fff;
    line-height: 62px;
} 

.subscribe h2 a{
    display: inline-block;
    float:right;
}
.subscribe form { 
    width: 60%; 
} 
.subscribe form input {
    background-color: #fff;
    border: 0;
    width: 100%;
    height: 80px;
    padding-left: 30px;
    outline: none;
    border-radius: 12px;
} 
.subscribe form {
    position: relative;
} 
.subscribe form .btn {
    position: absolute;
    right: 7px;
    top: 11.5px;
    border-radius: 10px;
}
/* 28. social-icon */
ul.social-icon {
    display: flex;
    gap: 10px;
} 
ul.social-icon li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #444;
    border-radius: 50%;
} 
ul.social-icon li:hover a {
    background-color: #2e4a5b;
    color: #fff;
    border-color: transparent;
}
.footre-logo p {
    padding-top: 14px;
    padding-bottom: 30px;
} 
.footer-bottom {
    padding-top: 100px;
    /*padding-bottom: 100px;*/
}
/* 29. footer-link */
.footer-link {
    border-left: 1px solid #D8D8D8;
    padding-left: 80px;
    margin-left: 40px;
}
.footer-link h5 {
    font-weight: bold;
    font-size: 26px;
    text-transform: capitalize;
    padding-bottom: 18px;
}
ul.footer-link-list li:not(:last-child) {
    padding-bottom: 16px;
}
ul.footer-link-list li a:hover {
    color: #f06236;
}
/* 30. contact-footer */
.contact-footer ul.footer-link-list li span,
.contact-footer ul.footer-link-list li a{
    font-weight: 700;
    /*font-family: "Hanken Grotesk", sans-serif;*/
    font-size: 20px;
} 
.contact-footer ul.footer-link-list li h6 i {
    margin-right: 5px;
} 
.contact-footer ul.footer-link-list li h6 {
    padding-bottom: 6px;
    text-transform: capitalize;
    font-family: "Hanken Grotesk", sans-serif;
}
.footer-link.contact-footer {
    padding-left: 70px;
}
/* 31. copyright */
.copyright {
    padding-bottom: 20px;
    justify-content: space-between;
    padding-top: 20px;
} 

.footer-link-list li a{
	font-size: 17px;
}
.copyright span {
    color: #f06236;
} 
.copyright ul {
    display: flex;
    gap: 30px;
} 
.copyright ul a:hover {
    color: #5555ff;
}
.copyright ul li a {
    color: #646464;
    font-size: 16px;
    font-family: "Hanken Grotesk", sans-serif;
}
/********************* home page 2 ******************/
/* 32. header 2 */
header.two {
    background-color: #fff;
    padding-bottom: 10px;
    position: absolute;
} 
.contact-header {
    display: flex;
    align-items: center;
}
/* 33. header two top-bar */
.top-bar {
    display: flex;
    align-items: center;
} 
.top-bar ul.social-icon {
    justify-content: end;
    gap: 18px;
} 
.top-bar ul.social-icon a {
    width: auto;
    height: auto;
    border: 0;
} 
.header-two-top {
    border-bottom: 1px solid #D8D8D8;
} 
.top-bar ul.social-icon a {
    color: #646464;
    font-size: 20px;
} 
.top-bar ul.social-icon li:hover a {
    border: 0;
    background-color: transparent;
    color: var(--theme-colour);
}
.contact-header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}  
.contact-header a {
    display: block;
    padding: 3px;
    color: #646464;
} 
.contact-header a:hover {
    color: var(--theme-colour);
}
.contact-header > div:last-child {
    border: 0;
    margin: 0;
}
.contact-header > div {
    border-right: 1px solid #d8d8d8;
    padding-right: 25px;
    margin-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}
/* 34. hero-style-two */
.hero-style-two .experience .btn {
    background-color: #fff;
} 
.hero-style-two .experience .btn:hover {
    color: #000;
} 
.circle-image {
    position: absolute;
    left: 37%;
    top: 16%;
    display: flex;
} 
.circle-image img {
    animation: fa-spin 15s infinite linear;
}
.circle-image i {
    background-color: var(--theme-colour);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    transform: rotate(327deg);
    margin-left: -73px;
}
.hero-section.hero-style-two {
    background-color: #011834;
    padding-top: 40px;
}
.hero-style-two .hero-text {
    position: relative;
    padding-top: 177px;
} 
.hero-style-two .hero-text h1 {
    color: #fff;
}
.hero-style-two .counter {
    display: flex;
    gap: 100px;
    padding-top: 50px;
    position: absolute;
    bottom: 0;
    background-color: #fff;
    padding: 60px;
    width: 50vw;
    border-top-left-radius: 40px;
    padding-bottom: 40px;
}
.hero-section.style-two {
    background-color: #011834;
} 
.hero-style-two .hero-text h1 {
    color: #fff;
} 
.hero-style-two .counter > div:last-child {
    border-right: 0;
    padding-right: 0;
} 
.hero-style-two .counter > div {
    border-right: 1px solid #D8D8D8;
    padding: 15px 0;
    padding-right: 70px; 
}
.hero-style-two .hero-text img.shaps-3 {
    filter: grayscale(111111);
    position: absolute;
    top: auto;
    right: -7%;
    bottom: -7%; 
    width: 60px;
    animation: topshap 6s infinite;
}
.hero-style-two .hero-text h1 span {
    color: #fff;
}
.hero-style-two .hero-text p {
    font-size: 22px;
    color: #fff;
}
.hero-style-two .experience h6,
.hero-style-two .experience > div span {
    color: #fff;
} 
.hero-style-two ul.shaps li:nth-child(2) img,
.hero-style-two ul.shaps li:nth-child(1) img {
    width: auto;
} 
.hero-style-two ul.shaps li:nth-child(3) {
    top: 11%;
    right: -25%;
    bottom: auto;
} 
.hero-style-two ul.shaps li:nth-child(4) {
    top: 61%;
    width: 16px;
    right: -5%;
    bottom: auto;
} 
.hero-style-two ul.shaps li:nth-child(5) {
    top: 52%;
    left: 21%;
    bottom: a;
}
.hero-text {
    position: relative; 
}
.hero-style-two .hero-img img {
    padding-top: 40px;
    width: 125%;
}
/* 35. services-two */
.services-two {
    padding: 30px;
    border: 1px solid #D8D8D8;
} 
.services-two i {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7d7d7;
    border-radius: 50%;
    z-index: 5;
    position: relative;
} 
.services-two h3 a {
    font-size: 22px;
    font-weight: bold;
    padding-top: 20px;
    display: block;
    padding-bottom: 10px;
    z-index: 5;
    position: relative;
} 
.services-two p { 
    z-index: 5;
    position: relative;
} 
.services-two span {
    bottom: -85px;
    font-size: 140px;
    display: block;
    position: absolute;
    font-weight: bold;
    color: #011833;
    font-family: "Barlow Condensed", sans-serif;
} 
.services-two {
    position: relative;
    padding-bottom: 100px;
    overflow: hidden;
}
.services-two:before {
    width: 100%;
    height: 0% ;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--theme-colour);
}
.services-two:hover:before {
    height: 100%;
}
.services-two:after {
    width: 100%;
    height: 0% ;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0; 
    background-image : url(../img/graph-1.png);
    z-index: 0;
}
.services-two:hover:after {
    height: 100% ;
}
.services-two svg {
    stroke: var(--common-colour);
}
.services-two:hover svg {
    stroke: #fff;
    transform: rotate3d(1, 1, 1, 360deg);
}
.services-two:hover span, 
.services-two:hover p ,
.services-two:hover a   {
    color: #fff;
}
/* 36. section-about-two */
.section-about-two .heading p {
    border: 0;
    padding: 0;
}
.about-text-two h3 {
    font-weight: bold;
    padding-left: 22px;
    font-size: 24px;
} 
.about-text-two > div:hover svg {
    transform: rotate3d(1, 1, 1, 360deg);
}
.about-text-two {
    display: flex;
    justify-content: space-between;
    position: relative;
} 
.about-text-two > div {
    width: 45%;
} 
.about-text-two:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #D8D8D8;
    left: 49%;
}
.about-service {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-top: 60px;
} 
.about-service > div {
    display: flex;
    align-items: center;
    gap: 23px;
} 
.about-service span {
    display: block; 
} 
.about-service a {
    font-weight: bold;
}
.about-two-img {
    position: relative;
}
.about-two-img img { 
    border-bottom-left-radius: 150px;
    border-top-right-radius: 150px;
}
.about-two-img .circle-img img {
    border-radius: 50%;
}
.about-two-img .circle-img img.circle {
    border-radius: 0;
}
.about-two-img .circle-img { 
    top: -8%;  
    border-radius: 50%; 
    left: -3%;
    z-index: 111;
}
/* 37. progress-bar */
.progress{
    width: 100%;
    height: 24px;
    border-radius: 0;
} 
.progress-bar {
    background: #011833;
}
.progressbar-active{
    animation-name: progress;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
}
@keyframes progress{
    0%{
        width:0;
    }
    100%{
        width:100%;
    }
}
/* 38. portfolio-section */
.portfolio-section {
    background-color: #F5F5F5;
}
.portfolio-section h2 {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #D8D8D8;
    font-size: 200px;
    text-transform: uppercase; 
    font-weight: 900;
    text-align: center;
    padding-bottom: 10px;
    font-family: "Hanken Grotesk", sans-serif;
}
.portfolio img {
     width: 100%;
 } 
.portfolio {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
} 
.portfolio i {
    bottom: 0;
    width: 80px;
    height: 80px;
    background-color: var(--theme-colour);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
    transform: rotate(322deg);
}
.portfolio a:hover i {
    background-color: var(--common-colour);
    transform: rotate(360deg);

}
.portfolio-text {
    right: 30px;
    position: absolute;
    text-align: right;
    bottom: 0px;
    opacity: 0;
} 
.portfolio:hover .portfolio-text { 
    bottom: 30px;
    opacity: 1;
}  
.portfolio-text a,.portfolio-text span {
    color: #fff;
}
.portfolio-text a {
    display: block;
    font-size: 20px;
    font-weight: bold;
}  
.portfolio-text a:hover {
    color: var(--theme-colour);
}
.portfolio img {
    border-radius: 20px;
    border-bottom-left-radius: 30px;
} 
.portfolio > a {
    position: absolute;
    bottom: 0;
    z-index: 1111;
}
.portfolio:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%; 
    border-radius: 20px;
    background-image: linear-gradient(180deg, #ff000000, var(--common-colour));
    bottom: 0;
}
.portfolio:hover:before { 
    height: 100%;  
}
/* 39. btn-center */
.btn-center {
    text-align: center;
    padding-top: 60px;
} 
.btn-center .btn {
    background-color: var(--theme-colour);
    border: 1px solid #D8D8D8;
    color: #011834;
} 
.btn-center .btn:before {
    background-color: #F5F5F5;
} 
.btn-center .btn:hover {
    color: #fff;
    border-color: transparent;
}
/* 40. appiontment form */
form.appiontment {
    padding: 40px;
    border: 1px solid #D8D8D8;
    border-radius: 20px;
    background-color: #fff;
} 
form.appiontment input {
    width: 100%;
    height: 50px;
    padding-left: 20px;
    border: 1px solid #D8D8D8;
    margin-bottom: 24px;
    border-radius: 10px;
    outline: none;
} 
form.appiontment textarea {
    width: 100%;
    height: 180px;
    outline: none;
    border: 1px solid #d7d7d7;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 18px;
} 
.appiontment .btn {
    width: 100%;
}
/* 41. appiontment-img */
.appiontment-img {
    position: relative;
} 
.appiontment-img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--theme-colour);
    clip-path: polygon(22% 14%, 100% 45%, 100% 100%, 0% 100%);
    left: 0;
} 
.appiontment-img img {
    position: relative;
    z-index: 11;
} 
.appiontment-section {
    background-repeat: no-repeat;
    background-position: right;
}
.appiontment-section ul.shaps li:nth-child(1) {
    top: 5%;
    left: 82%;
}
.appiontment-section ul.shaps li:nth-child(3) {
    top: 21%;
    right: 98%;
}
 .appiontment-sectionul.shaps li:nth-child(4) {
    right: -11%;
    bottom: 21%;
}
/* 42. emergency-call */
.emergency-call span {
    display: block;
    color: #646464;
    padding-bottom: 3px;
}
.emergency-call {
    background-color: #fff;
    padding: 24px;
    position: absolute;
    z-index: 11;
    bottom: 40px;
    right: 5%;
    display: flex;
    align-items: center;
    border-radius: 20px;
} 
.emergency-call i {
    background-color: var(--theme-colour);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-right: 11px;
} 
.emergency-call a {
    font-weight: bold;
}
.emergency-call a:hover {
    color: var(--theme-colour);
}
.emergency-call:before {
    content: "";
    position: absolute;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    width: 30px;
    height: 20px;
    background-color: #fff;
    bottom: -20px;
    left: 46%;
}
/* 43. team-text */
.team-text {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
} 
.team-text span {
    font-weight: bold;
    padding-bottom: 10px;
    display: block;
    color: var(--common-colour);
} 
.team-text a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: #D8D8D8 1px solid;
    border-radius: 50%;
} 
.team-text a:hover {
    color: var(--theme-colour);
    transform: rotate(90deg);
}
.team-text a:hover i {  
    color: #fff;
    background-color: var(--theme-colour);
    border-color: var(--theme-colour) ;
 }
.team-text a {
    font-weight: bold;
} 
.team-img {
    position: relative;
} 
.team-img ul.social-icon {
    position: absolute;
    bottom: 20px;
    left: 0px;
    gap: 5px;
    opacity: 0;
} 
.team-img ul.social-icon li a {
    background-color: #fff;
    border: 0;
} 
.team-img ul.social-icon li a:hover {
    background-color: var(--theme-colour);
    color: #fff;
}
.team:hover .team-img ul.social-icon {
    bottom: 20px;
    left: 20px;
    opacity: 1;
}
/* 44. review-two */
.review-two h6 {
    font-size: 28px;
    font-weight: bold;
    padding-right: 100px;
    line-height: 38px;
} 
.review-two-img {
    display: flex;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 24px;
    margin-bottom: 52px;
    align-items: center;
}
.review-two h4 {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 5px;
} 
.review-two span {
    color: #646464;
} 
.swiper-review-two-img .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
} 
.swiper-review-two-img .swiper-wrapper .swiper-slide {
    width: 100% !important; 
}
.swiper-review-two-img {
    border-right: 1px solid #d8d8d8;
    margin-right: 40px;
}
.swiper-review-two-img .swiper-wrapper .swiper-slide img {
    width: 80px;
    border-radius: 50%;
    padding: 4px;
} 
.swiper-review-two-img .swiper-slide-thumb-active img {
    border: 1px solid var(--theme-colour);
    padding: 4px;
    width: 80px;
}
.swiper-review-two {
    position: relative;
} 
.swiper-review-two .swiper-pagination {
    width: 100px;
    right: 0;
    position: absolute;
    right: 0%;
    left: auto;
}
 .swiper-review-two .swiper-pagination span {
    width: 12px;
    height: 12px;
}
.swiper-review-two span.swiper-pagination-bullet-active {
    background-color: var(--theme-colour);
}
/* 45. blog-two-style */
.blog-two-style ul.mental-health {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 13px;
    padding-bottom: 6px;
    position: relative;
} 
.blog-two-style {
    border: 1px solid #cfcfcf;
    padding: 30px;
} 
.blog-two-style ul.mental-health li:nth-child(1):before {
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: var(--theme-colour);
    border-radius: 50%;
    content: "";
    top: 7px;
    left: 0;
} 
.blog-two-style ul.mental-health li:nth-child(2):before {
    content: "/";
    left: -5px;
    position: absolute;
    font-size: 20px;
    color: #646464;
    top: -4px;
} 
.blog-two-style ul.mental-health li {
    padding-left: 14px;
    position: relative;
} 
.blog-two-style h4 a {
    font-weight: bold;
    text-transform: capitalize;
    line-height: 34px;
    font-size: 24px;
    padding-bottom: 20px;
    display: block;
}
.blog-two-style h4 a:hover {
    color: var(--theme-colour);
}
.blog-two-style .btn {
    background-color: var(--theme-colour);
    border: 1px solid #D8D8D8;
    color: #011834;
} 
.blog-two-style .btn:before {
    background-color: #fff;
} 
.blog-two-style .btn:hover {
    color: #fff;
    border-color: transparent;
}
.blog-two-style ul.mental-health li:nth-child(1) {
    color: var(--theme-colour);
}
.portfolio-img svg {
    position: absolute;
    z-index: 111;
    left: -2px;
    bottom: -1px;
    fill: #f5f5f5;
} 
/* 46. footer two */
footer.footer-two {
    background-color: var(--common-colour);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: relative;
}
footer.footer-two .contact-footer ul.footer-link-list li h6,
footer.footer-two .contact-footer ul.footer-link-list li span,
footer.footer-two .footre-logo p, 
footer.footer-two .footer-link a{
    color: #cbd5e1;
}    
footer.footer-two .footer-link h5 {
    color: #fff;
    display: inline-block;
    position: relative;
    padding-bottom: 7px;
    margin-bottom: 20px;
} 
.footer-two ul.footer-link-list li:not(:last-child) {
    padding-bottom: 16px;
}
.footer-two .footer-link {
    border-left: 0;
    z-index: 111;
    position: relative;
}
.footer-two .footer-link { 
    padding-left: 60px;
    margin-left: 40px;
}
.footer-two .copyright ul {
    display: flex;
    gap: 10px;
}
.footer-two ul.footer-link-list li a i {
    padding-right: 10px;
}
.footer-two ul.footer-link-list li a:hover i {
    padding-left: 10px;
}
.footer-two ul.social-icon li a { 
    background-color: #ffffff14;
    color: #fff;
    border: 0;
}
.footer-two ul.social-icon li a:hover {
    background-color: var(--theme-colour);
}
.footer-two .copyright {
    border: 1px solid #3A4E65;
    align-items: center;
    border-radius: 50px;
    padding: 12px 24px;
    margin-top: 76px;
    z-index: 111;
    position: relative;
}
.footer-two .copyright p {
    color: #cbd5e1;
}
footer.footer-two .footer-link h5:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    bottom: 0;
    border-radius: 73px;
    background-image: linear-gradient(90deg, #ff000000, var(--common-colour));
}
footer.footer-two img.footer-line {
    position: absolute;
    top: 18%;
    left: 35%;
}
/* 47. instagram-img */
footer .instagram-img h3 {
     color: #fff; 
    text-transform: uppercase;
    font-size: 52px;
} 
.instagram-img {
    /*padding-left: 70px;*/
}
.compensate-for-scrollbar {
     margin-right: 0px !important; 
}
.instagram-img ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}
.footer-two-bottom {
    margin-top: -38px;
}
.instagram-img ul li figure:before {
    width: 100%;
    height: 0%;
    position: absolute;
    content: "";
    background-color: var(--theme-colour);
    opacity: .3;
    bottom: 0;
} 
.instagram-img ul li figure:hover:before {
    height: 100%;
}
.instagram-img ul li figure {
    position: relative;
    width: 100%;
    height: 100%;
}
/* 48. skill-focus */
.skill-focus span {
    font-size: 24px;
    font-weight: bold;
 } 
.skill-focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
} 
.skill-wrapper {
    padding-top: 53px;
} 
/* 49. white_content */
.textright {
    float: right;
    position: absolute;
    right: 6%;
    top: 2%;
}
.white_content {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 400px !important;
    height: 100%;
    padding: 70px 20px;
    background-color: var(--common-colour);
    z-index: 1002;
    overflow: hidden;
    padding-bottom: 0;
}
.white_content h2 {
    color: #fff;
    font-weight: 800;
    font-size: 31px;
    padding-bottom: 10px;
}
.cls-left h6 {
    display: none;
}
.cls-left ul li a {
    font-size: 18px;
    padding-bottom: 12px;
    color: black;
    position: relative;
    display: inline;
}
.white_content i {
    font-size: 35px;
    position: absolute;
    top: 5%;
    color: #fff;
    right: 0px;
}
.white_content h3 {
    font-weight: 800;
    color: #fff;
    padding-bottom: 10px;
    padding-top: 20px;
}
.white_content .social-medias a{
    color: #fff;
}
.white_content .social-medias a {
    font-size: 16px;
    position: relative;
    margin-right: 30px;
}
.white_content .social-medias {
    margin-top: 23px;
}
.white_content .social-medias a:after {
    content: "";
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.white_content img {
    border-radius: 12px; 
    width: 100%;
}
.white_content .social-medias a:before {
    border-bottom: 1px solid #6a6a6a;
    width: 100%;
}
.white_content .social-medias a:after {
    width: 0;
    border-bottom: 1px solid;
}
.white_content .social-medias a:hover:after {
    width: 100%;
}
.white_content p {
    color: #fff;
    display: flex;
    padding-top: 14px;
    width: 86%;
}
.white_content h4 {
    font-size: 20px;
    color: #fff;
    padding-bottom: 40px;
    width: 89%;
    line-height: 30px;
}
.white_content i:hover{
    color: #fff;
}
.white_content p i {
    position: relative;
}
.white_content p a {
    color: #fff;
}
p.num svg {
    fill: var(--theme-colour);
    width: 20px;
    margin-right: 10px;
    height: auto;
} 
/* 50. hero three */
.hero-section-three {
    padding-top: 180px;
    background-color: #F5F5F5;
    padding-bottom: 140px;
}
.hero-section-three {
    padding: 220px 0;
    background-color: #F5F5F5;
} 
.hero-text-three h1 {
    font-size: 164px;
    text-transform: uppercase;
    font-weight: bold;
   font-family: "Barlow Condensed", sans-serif;
}
.hero-section-three ul.shaps li:nth-child(1) {
    top: 16%;
    left: 10%;
    bottom: auto;
    animation: topshap 10s infinite;
}
.hero-section-three ul.shaps li:nth-child(2) {
    top: 77%;
    right: 5%;
    bottom: auto;
    animation: topshap 5s infinite;
}
@keyframes topshap {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(50px);
    }
    0% {
        transform: translateY(0px);
    }
}
/* 51. image-slider */
.image-slider img {
    height: 100vh;
    object-fit: cover;
    width: 100%;
} 
.image-slider .swiper-button span {
    width: 160px;
    height: 160px;
    background-color: #ffffff52;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    text-transform: uppercase;
} 
.image-slider .swiper-button span:hover {
    background-color: #fff;
    color: #000;
}
.image-slider .swiper-button > div {
    width: 160px;
} 
.image-slider:hover .swiper-button .swiper-button-next {
    right: 20px;
}
.image-slider:hover .swiper-button .swiper-button-prev {
    left: 20px;
}
.image-slider .swiper-button .swiper-button-next {
    right: -200px;
}
.image-slider .swiper-button .swiper-button-prev {
    left: -200px;
}
/* 52. member-connected */
.member-connected {
    display: flex;
    align-items: center;
    width: 100%;
} 
.member-connected h4 {
    font-size: 52px;
    font-weight: bold;
    padding-left: 5px;
} 
.member-connected h5 {
    font-size: 16px;
    width: 50%;
    padding-left: 10px;
    line-height: 24px;
}
/* 53. dentistry */
.dentistry {
    align-items: center;
    display: flex;
} 
.dentistry h2 {
    font-size: 155px;
    font-weight: bold;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Barlow Condensed", sans-serif;
}
.dentistry h2 span {
    color: #fff;
    position: relative;
    z-index: 1;
} 
.dentistry h2 span:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(270deg, #ff000000, var(--common-colour));
    z-index: -1;
    top: 0;
}
/* 54. dental-services */
.dental-services {
    stroke : var(--common-colour);
    border: 1px solid #D8D8D8;
    text-align: center;
    padding: 30px;
}
.row-two {
    margin-right: -110px;
    margin-left: -110px;
}
.dental-services h3 a {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 16px;
    display: block;
    position: relative;
} 
.dental-services .btn.two {
    background-color: var(--common-colour); 
}
.dental-services > i {
    width: 90px;
    height: 90px;
    border: 1px solid #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 10px;
    position: relative;
} 
.dental-services p {
    padding-bottom: 20px;
    position: relative;
} 
.dental-services {
    position: relative;
}
.dental-services:before {
    position: absolute;
    width: 100%;
    height: 0%;
    background-color: var(--theme-colour);
    bottom: 0;
    content: "";
    left: 0;
}
.btn.two {
    background-color: var(--theme-colour);
    border: 1px solid #D8D8D8;
    color: #011834;
} 
.btn.two:before {
    background-color: #fff;
} 
.btn.two:hover {
    color: #fff;
    border-color: transparent;
}
.dental-services:hover p,
.dental-services:hover h3 a {
    color: #fff;
}
.dental-services:hover > i {
    background-color: #fff;
}
.dental-services:hover:before {
    height: 100%;
}
.dental-services:hover i svg {
    stroke: var(--common-colour);
    transform: rotate3d(1, 1, 1, 360deg);
}
/* 55. section-about-two */
.section-about-two ul.list-style li:before { 
    width: 8px;
    height: 8px; 
}
.section-about-two ul.list-style {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 40px;
}
.section-about-two ul.list-style li {
    width: 45%;
}
.section-about-two ul.list-style:before {
    left: 46%;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #D8D8D8;
    content: "";
    transform: translate(-50%, -50%);
    top: 50%;
}
.section-about-two {
    position: relative;
} 
.section-about-two img {
    position: relative;
    z-index: 11;
}
.section-about-two img.plus {
    position: absolute;
    top: 0;
    right: 7%;
    z-index: -1;
    z-index: -1;
}
.section-about-two img.dots-img {
    animation: fa-spin 20s infinite linear;
    position: absolute;
    bottom: 7%;
    right: 41%;
    z-index: -1;
}
/* 56. dental-project */
.dental-project {
    position: relative;
}  
.dental-project img {
    width: 100%;
}
.dental-project .dental-project-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 75%;
} 
.dental-project .dental-project-text span {
    background-color: #fff;
    color: #021833;
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    line-height: 26px; 
    margin-bottom: 5px;
    margin-left: 15px;
    opacity: 0;
}  
.dental-project-text h3 a {
    background-color: #5050f3;
    padding: 10px;
    font-size: 24px;
    color: #fff;
    width: 100%;
    padding-left: 12px;
    margin-left: -15px;
    opacity: 0;
} 
.dental-project-text h3 a {
    color: #fff;
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;
} 
.dental-project-text h3 a i {
    background-color: #ffffff26;
    padding: 14px 16px;
    font-size: 18px;
}
.dental-project:hover .dental-project-text span {
    margin-left: 0px;
    opacity: 1;
}
.dental-project:hover .dental-project-text h3 a {
    margin-left: 0px;
    opacity: 1;
}
.dental-project-text h3 a:hover {
    background-color: var(--common-colour);
} 
.dental-project-slide {
    margin-left: -100px;
    margin-right: -100px;
    margin-top: -110px;
    padding-top: 110px;
}
.dental-project-slide .swiper-button {
    position: absolute;
    top: 0px;
    width: 130px;
    right: 10%; 
    display: block;
    height: 60px;
    z-index: 11;
    border-radius: 51px;
    z-index: 1111111;
} 
.dental-project-slide.swiper-button-prev:after,.dental-project-slide .swiper-button-next:after {
    display: none;
} 
.dental-project-slide .swiper-pagination {
    left: 86%;
    position: absolute;
    width: 100px;
}   
.dental-project-slide .swiper-button-prev,
.dental-project-slide .swiper-button-next { 
    width: 50px;
    height: 50px;
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    color: var(--common-colour);
} 
.dental-project-slide .swiper-button-prev:hover,
.dental-project-slide .swiper-button-next:hover {
     color: #fff;
     background-color: var(--theme-colour);
     color: #f9f9f9;
     border-color:transparent;
}
/* 57. working-process */
.working-process {
    text-align: center;
    position: relative;
} 
.working-process-img {
    position: relative;
    width: 100%;
    height: 252px;
} 
.working-process span {
    font-size: 52px;
    font-weight: bold;
    color: var(--common-colour);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
} 
.working-process:hover span {
    color: var(--theme-colour);
} 
.working-process-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 1;
} 
.working-process h3 {
    font-weight: bold;
    font-size: 24px;
    padding-bottom: 10px;
    padding-top: 24px;
}
.working-process-img img.color-img {
    opacity: 0; 
}
.working-process:hover .working-process-img img.color-img {
    opacity: 1; 
}
.working-process-section {
    position: relative;
} 
.working-process-section img.working-process-line {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* 58. reviewtwo-slider */
.reviewtwo-slider .review {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #D8D8D8;
}
.reviewtwo-slider .review-admin { 
    padding-top: 12px;
}
.reviewtwo-slider .review img.quotes {
    position: absolute;
    right: 10%;
    bottom: 48px;
}
.reviewtwo-slider { 
    margin-top: -110px;
    padding-top: 110px;
}
.review-admin img {
    border-radius: 50%;
} 
.reviewtwo-slider .swiper-button {
    position: absolute;
    top: 0px;
    width: 130px;
    right: 10%; 
    display: block;
    height: 60px;
    z-index: 11;
    border-radius: 51px;
    z-index: 1111111;
} 
.reviewtwo-slider.swiper-button-prev:after,.reviewtwo-slider .swiper-button-next:after {
    display: none;
} 
.reviewtwo-slider .swiper-pagination {
    left: 86%;
    position: absolute;
    width: 100px;
}   
.reviewtwo-slider .swiper-button-prev,
.reviewtwo-slider .swiper-button-next { 
    width: 50px;
    height: 50px;
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    color: var(--common-colour);
} 
.reviewtwo-slider .swiper-button-prev:hover,
.reviewtwo-slider .swiper-button-next:hover {
     color: #fff;
     background-color: var(--theme-colour);
     color: #f9f9f9;
     border-color:transparent;
}
.reviewtwo-slider .review:hover {
    background-color: #5050f3;
    border: 1px solid #5050f3;
} 
.reviewtwo-slider .review:hover p,
.reviewtwo-slider .review:hover h5,
.reviewtwo-slider .review:hover span {
    color: #fff;
} 
.reviewtwo-slider .review:hover img.quotes {
    filter: invert(1);
}
/* 59. blog-one-style.two */
.blog-one-style.two h3 a {
    font-size: 20px;
    line-height: 26px;
}
.blog-one-style.two h6 a {
    position: relative;
    background-color: transparent;
    color: #000;
    text-align: left;
    padding: 0;
    line-height: 22px;
    font-size: 22px;
    box-shadow: none;
}
.blog-one-style.two .blog-text {
    display: flex;
    align-items: self-start;
}
.blog-one-style h3 a {
    font-size: 22px;
}
.blog-one-style.two h6 a span {
    font-size: 14px;
} 
.blog-one-style.two:hover h6 a {
    color: var(--theme-colour);
}
.blog-one-style.two .blog-text > div {
    border-left: 1px solid #9b9b9b;
    margin-left: 15px;
    padding-left: 22px;
}
.blog-one-style.two .blog-text > div > a {
    font-weight: bold;
}
.blog-one-style.two .blog-text > div > a i {
    padding-left: 10px;
}
.blog-one-style.two .blog-text > div > a:hover {
    color: var(--theme-colour);
}
/* 60. footer.three */
footer.three {
    background-color: var(--common-colour);
} 
footer.three .subscribe {
    padding: 0;
    background-color: transparent;
} 
footer.three .footer-link {
    padding: 0;
    margin: 0;
    border: 0;
} 
footer.three .footer-link h5 {
    color: #fff;
} 
footer.three .footer-link ul.footer-link-list li a {
    color: #cbd5e1;
} 
footer.three .footre-logo p {
    color: #cbd5e1;
} 
footer.three ul.social-icon li a {
    background-color: #ffffff1c;
    border: 0;
    color: #fff;
}
footer.three .copyright p,footer.three .copyright a,
footer.three .contact-footer ul.footer-link-list li h6,
footer.three .contact-footer ul.footer-link-list li span {
    color: #cbd5e1;
}
footer.three .footer-link ul.footer-link-list li a:hover {
    color: var(--theme-colour);
} 
footer.three ul.social-icon li a:hover { 
    background-color: var(--theme-colour);
}
.instagram-img.footer-link li {
    width: 31%;
    height: auto;
} 
.instagram-img.footer-link li img {
    width: 100%;
  }
.instagram-img.footer-link ul {
    margin-top: 0;
    gap: 10px;
    flex-wrap: wrap;
} 
footer.three { 
    background-repeat: no-repeat;
    background-position: right bottom;
    position: relative;
}
footer.three .copyright a:hover {
    color: var(--theme-colour);
}
/* 61. banner */
.banner {
    background-color: #e7eef2;
}
.banner {
    position: relative;
    padding-top: 150px;
	min-height:350px;
}
.banner ul.shaps li:nth-child(1) img {
    width: 80px;
}
.banner ul.shaps li:nth-child(3) {
    top: 23%;
    right: 14%;
}
.banner ul.shaps li:nth-child(4) {
    right: 91%;
    bottom: auto;
    top: 26%;
}
.banner  ul.shaps li:nth-child(2) {
    top: 72%;
    right: 3%;
    bottom: auto;
    animation: topshap 5s infinite;
}
/* 62. breadcrumb */
.title-area-data h2 {
    font-size: 50px;
    font-weight: bold;
    text-transform: capitalize;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: "-";
}
.breadcrumb-item.active {
    text-transform: capitalize;
}
.breadcrumb li {
    font-size: 22px;
}
.breadcrumb {
    padding-top: 10px;
}
.banner-img img {
    /*width: 120%;*/
}
.banner ul.shaps li:nth-child(1) {
    top: 53%;
    left: 61%;
    bottom: auto;
} 
.title-area-data {
    position: relative;
} 
.title-area-data img {
    position: absolute;
    width: 46px;
    top: -22px;
    left: -32px;
}
/* 63. blog-page */
.blog-page .blog-one-style {
    margin-bottom: 40px;
}
/* 64. service-page */

.service-page .services > i {
    background-color: #fff; 
    border: 1px solid #e5e5e5;
}
.service-page .services svg {
    stroke: inherit;
}
.service-page .services {
    margin: 0px; 
    margin-bottom: 30px;
}
/* 65. pricing-page */
.pricing-page .pricing-plan {
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
}
.project-page .project-style {
    position: relative;
    margin-right: 0px; 
    margin-left: 0px; 
    margin-bottom: 20px;
} 
/* 67. sidebar */
.sidebar {
    border: 1px solid #D8D8D8;
    padding: 30px;
    margin-bottom: 24px;
	border-radius: 12px;
    display: block;
	
} 

.tags-list li{
	display: inline-block;
}
.sidebar ul.social-icon li a {
    border-color: #D8D8D8;
}
.sidebar h3 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 20px;
    color: var(--common-colour);
    text-transform: capitalize;
}
/* 68. search-hare */
form.search-hare input {
    width: 100%;
    height: 60px;
    padding-left: 24px;
    border: 1px solid #d8d8d8;
    outline: none;
} 
form.search-hare button {
    position: absolute;
    right: 20px;
    background-color: transparent;
    border: 0;
    font-size: 16px;
    top: 17px;
    color: var(--common-colour);
}  
form.search-hare {
    position: relative;
}
/* 69. services-list */
ul.services-list li a {
    border: 1px solid #d8d8d8;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
    color: #646464;
    z-index: 1;
    position: relative;
} 
ul.services-list li {
    width: 100%;
    position: relative;
} 
ul.services-list {
    width: 100%;
} 
ul.services-list li:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: #5555ff;
} 
ul.services-list li:hover:before {
    width: 100%;
} 
ul.services-list li:hover a {
    color: #fff;
}
ul.services-list li:not(:last-child) {
    margin-bottom: 24px;
}
/* 70. services-details */
.services-details > i {
    align-items: center;
    background-color: #5555ff;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
} 
.services-details h2 {
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 52px;
    font-weight: bold;
}
.services-details h3 {
    padding-top: 50px;
    padding-bottom: 10px;
    font-size: 32px; 
    font-weight: bold;
}
.services-details-img {
    padding-top: 0px;
    padding-bottom: 20px;
} 
/* 71. accordion */ 
.accordion-item.active .icon:after {
  width: 0;
}
.accordion-item{
    border: 0;
}
.accordion-item.active .icon:before {
    background: var(--common-colour);
}
.accordion-img figure.accordion-img-two {
    background-color: var(--common-colour);
    margin-top: -156px;
    width: fit-content;
    margin-left: 130px;
}
.accordion-item .heading {
    display: block;
    text-transform: capitalize;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 24px;
    position: relative;
    transition: 0.3s ease-in-out;
}
.accordion-item .icon {
    display: block;
    position: absolute;
    top: 11px;
    transform: translateY(-50%);
    right: 13px; 
}
.accordion-item.active .title {
    color: var(--common-colour);
    background-color: #ffffff;
    border: 0;
}
 
.progress {
    height: 8px;
} 
.accordion-item .content {
  display: none;
}
.content p{
    font-size: 18px;
    font-weight: 500;
    color: #666;
}
.title {
    text-align: start;
    padding-right: 0;
    color: var(--common-colour);
    font-size: 24px;
    background-color: #fff;
    font-weight: 700;
    border-bottom: 2px solid #d8d8d8;
    padding-bottom: 24px;
}
.accordion-item.active .title {
    color: var(--common-colour);
    font-size: 24px;
}
.accordion-item.active {
    background-color: #fff; 
    border-bottom: 2px solid #d8d8d8;
}
.content {
    padding-bottom: 24px;
    padding-top: 0px;
    background-color: #24243500;
}
a.heading{
    width: 100%;
    margin: 0;
    padding: 0;
}
.accordion-item {
    background-color: transparent;
}
.accordion-item {
    margin-bottom: 10px; 
    margin-bottom: 24px;
}
.accordion-img {
    position: relative;
}
img.extra-images-two {
    position: absolute;
    top: 43%;
    right: 0;
    z-index: 1;
    animation: top-bottom 2s infinite ;
}
.accordion-img img.dots {
    top: auto;
    z-index: -0;
    right: -5%;
    bottom: 0;
}
.accordion-item.active .icon {
    transform: rotate(45deg);
    top: 0;
} 
.accordion {
    padding-top: 50px;
    padding-bottom: 25px;
}
/* 72. stap-pagination */
.stap-pagination {
    justify-content: space-between;
    display: flex;
    margin-top: 60px;
} 
.stap-pagination a {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 20px;
} 
.stap-pagination a:hover i {
    background-color: var(--common-colour);
}
.stap-pagination i {
    background-color: #5555ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 73. project-details */
.project-details {
    padding-top: 50px;
} 
.project-details h2 {
    font-size: 52px;
    font-weight: bold;
    padding-bottom: 10px;
} 
.project-details h3 {
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 10px;
} 
.project-details-img {
    padding-top: 50px;
}
.project-information {
    margin-top: 50px;
    background-color: #F4F4FF;
    padding: 30px;
} 
.project-information ul.information-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    gap: 30px;
} 
.project-information ul.information-list li {
    width: 42%;
} 
.project-information h4 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 30px;
} 
.project-information ul.information-list li h6 {
    padding-top: 10px;
    font-size: 16px;
    font-weight: bold;
} 
.project-information ul.information-list li a:hover {
    color: var(--theme-colour) ;
}
.project-information ul.information-list:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #D8D8D8;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}
.project-information  ul.social-icon { 
    padding-top: 40px;
}
.project-information ul.social-icon li a {
    border: 0;
    background-color: #fff;
}
.project-information ul.social-icon li:hover a {
    background-color: #4e4eeb;
    color: #fff;
    border-color: transparent;
}
/* 74. blog-details-page */
.blog-details-page .blog-one-style figure {
    margin-bottom: 40px;
}
.blog-one-style h2 {
    font-size: 52px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
}
.blog-detail-text h3 {
    font-size: 52px;
    font-weight: bold;
    padding-bottom: 10px;
} 
.blog-detail-text {
    padding-top: 50px;
    padding-bottom: 50px;
}
/* 75. quotes */
.quotes {
    background-color: #f4f4ff;
    padding: 30px;
    border-left: 5px solid #5555ff;
    margin-top: 50px; 
} 
.quotes > div {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
} 
.quotes h5 {
    font-size: 24px;
    font-weight: bold;
    position: relative;
} 
.quotes h5:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--theme-colour);
    top: 12px;
    right: -110%;
}
.quotes p {
    font-weight: bold;
    color: var(--common-colour);
}  
/* 76. tags-hare */
.tags-hare {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #D8D8D8;
    border-top: 1px solid #D8D8D8;
} 
ul.tags-list {
    display: flex;
    gap: 10px;
    margin-right: auto;
} 
ul.tags-list a {
    background-color: #f8f8f8;
    padding: 10px 20px;
    display: block;
} 
ul.tags-list a:hover {
    background-color: #f06236;
    color: #fff;
} 
.tags-hare h4 {
    font-size: 24px;
    font-weight: bold;
    padding-right: 24px;
}
.blog-details-page .stap-pagination {
    background-color: #f4f4ff;
    padding: 20px;
}
.blog-admin {
    border: 1px solid #d8d8d8;
    padding: 50px;
    display: flex;
    align-items:  center;
    gap: 35px;
    position: relative;
    margin-top: 60px;
} 
.blog-admin h5 {
    font-size: 24px;
    font-weight: bold;
} 
.blog-admin a {
    position: absolute;
    background-color: var(--common-colour);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    color: #fff;
    top: 50px;
    right: 50px;
} 
.blog-admin p {
    padding-top: 12px;
}
.blog-admin a:hover {
    background-color: var(--theme-colour);
}
/* 77. blog-comment */
ul.blog-comment-list li {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
} 
ul.blog-comment-list li.children {
    margin-left: 80px;
}
ul.blog-comment-list li h5 {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 10px;
} 
ul.blog-comment-list li a {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    border: 1px solid #e5e5e5;
    padding: 4px 10px;
    font-size: 16px;
}
ul.blog-comment-list li a:hover {
    background-color: var(--theme-colour);
    color: #fff;
    border-color: var(--theme-colour) ;
} 
ul.blog-comment-list li:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 30px;
} 
.blog-comment {
    padding-top: 50px;
} 
.blog-comment h3 {
    font-size: 52px;
    font-weight: bold;
    padding-bottom: 50px;
}
ul.blog-comment-list li p {
    width: 88%;
}
/* 78. blog-heading */
.blog-heading {
    padding-top: 60px;
}
.blog-heading h3 {
    font-size: 52px;
    font-weight: bold;
    padding-bottom: 40px;
} 
form.appiontment.blog-form .btn,form.appiontment.contact-form .btn,
form.appiontment.contact-form input, form.appiontment.contact-form textarea, form.appiontment.contact-form,
form.appiontment.blog-form input, form.appiontment.blog-form textarea, form.appiontment.blog-form {
    border-radius: 0px;
} 
form.appiontment.blog-form .btn {
    border-radius: 0px;
}
.sidebar.instagram-img.footer-link {
    margin-left: 0;
}
.sidebar .btn {
    border-radius: 0;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
} 
.sidebar .btn i {
    padding-right: 10px;
}  
.sidebar ul.tags-list {
   display:inline-block;
   
} 
.sidebar ul.tags-list li a {
    font-size: 16px;
    border: 1px solid #d8d8d8;
    padding: 5px 15px;
	border-radius:100px;
	margin:5px 4px!important;
}
/* 79. appiontment.contact-form */
form.appiontment.contact-form {
    padding: 0;
    border: 0;
}
/* 80. contact-information */
.contact-information {
    padding: 50px;
    background-color: var(--common-colour);
} 
.contact-information h3 {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    padding-bottom: 30px;
} 
.contact-information ul.information-list a,.contact-information ul.information-list h6 {
    color: #fff;
    display: block;
    font-size: 20px;
} 
.contact-information ul.information-list span {
    color: #fff;
    padding-bottom: 5px;
    display: block;
} 
.contact-information ul.information-list li:not(:last-child) {
    border-bottom: 1px solid #304F74;
    margin-bottom: 20px;
    padding-bottom: 20px;
} 

.contact-information {
    width: 96%;
    margin-left: auto;
}
.contact-information ul.social-icon {
    padding-top: 48px;
}
.contact-information ul.social-icon a {
    color: #000000;
    background-color: #fff;
    border: 0;
}
ul.information-list a:hover {
    color: var(--theme-colour);
}

/* 81. map */
.map {
    margin-bottom: 40px;
    margin-top:40px;
    width: 100%;
} 
.map iframe {
    width: 100%;
    height: 450px;
}
/* 82. pagination */
ul.pagination {
    justify-content: center;
    display: flex;
    margin-top: 40px;
}
ul.pagination li a {
    border-radius: 60px !important;
    font-weight: 600;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #021833;
}
ul.pagination li {
    margin-left: 7px;
} 
ul.pagination li a:hover {
    background-color: var(--theme-colour);
    color: #fff;
    border-color: var(--theme-colour);
} 
/* 83. transition time */
.emergency-call a,.pricing-plan,
.blog-admin a,ul.blog-comment-list li a,ul.information-list a,ul.pagination li a,
.stap-pagination a i,.project-information ul.information-list li a,ul.tags-list a,
.blog-one-style h6 a,ul.services-list li:before,ul.services-list li a,.portfolio-text a,
.reviewtwo-slider .review img.quotes,.blog-one-style .admin a,.blog-one-style.two h6 a,
.blog-one-style .comment a,.blog-one-style.two .blog-text > div > a,.image-slider .swiper-button,
.reviewtwo-slider .review p,.reviewtwo-slider .review h5,.reviewtwo-slider .review span,
.working-process-img img,.working-process span,.reviewtwo-slider .review,.accordion-item .icon,
.dental-services > i,.dental-services i svg,.dental-project-text span,.dental-project-text h3 a,
.white_content .social-medias a:after,.dental-services:before,.dental-services h3 a,.dental-services p,
.team-text a i,.team-img ul.social-icon,.team-text a,.blog-two-style h4 a,.dental-services h3,
.services-two span,.services-two:before,.services-two p, .services-two svg,.instagram-img ul li figure:before,
.swiper-button-prev,ul.social-icon li a,.services-two:after,ul.experience-team a,.swiper-button > div ,
.swiper-button-next,.blog-one-style h3 a,.portfolio:before,.contact-header a,.image-slider .swiper-button,
.project-text span,.project-style a,.choose-us i svg,footer a,.portfolio-text,.portfolio i,
.services:before,.services > i,.services a,.services p,.services svg,.footer-two ul.footer-link-list li a i,
.header-search-button.search-box-outer a,.hover-img img,.about-text-two svg,.image-slider .swiper-button span {
    transition: .4s ease-in-out;
} 

.footer-links-list h4 i{
    font-size: 20px;
}

.fon-14{
    font-size: 14px!important;
    font-weight: 400;
}