/*========== Common css ========*/
@font-face {
	font-family: "Open Sans", sans-serif;
	src: url(../font/OpenSans-VariableFont_wdth,wght.ttf);
	font-weight: bolder;
 }
 @font-face {
	font-family: "Open Sans", sans-serif;
	src: url(../font/OpenSans-Italic-VariableFont_wdth,wght.ttf);
	font-weight: bold;
 }
 
 @font-face {
	font-family: "Quicksand";
	src: url(../font/Quicksand-Bold.ttf);
	font-weight: bold;
 }

  @font-face {
	font-family: "Quicksand";
	src: url(../font/Quicksand-Light.ttf);
	font-weight: light;
 }

  @font-face {
	font-family: "Quicksand";
	src: url(../font/Quicksand-Medium.ttf);
	font-weight: medium;
 }

  @font-face {
	font-family: "Quicksand";
	src: url(../font/Quicksand-Regular.ttf);
	font-weight: regular;
 }

  @font-face {
	font-family: "Quicksand";
	src: url(../font/Quicksand-SemiBold.ttf);
	font-weight: semibold;
 }	

:root {
  --first-color: #2F5249;
  --second-color: #437057;
  --third-color: #FFB823;
  --main-font: "Open Sans", sans-serif;
  --title-font: "Quicksand", sans-serif;
  --font-color: #1a1a1a;
  --font-size: 16px;
  --font-weight: 400;
  --border-radius: 10px;
  --white-color: #fff;
  --h5: 16px;
  --light-color: #cbcaca;
  --theme-border: 1px solid #cbcaca;
}

body {
	font-size: var(--font-size);
	font-family: var(--main-font);
	font-weight: var(--font-weight);
	color: var(--font-color);
}

img{
	width: 100%;
}

.container {
	max-width: 1230px;
	padding: 0 15px;
}

h1,h2,h3,h4,h5 {
	font-family: var(--title-font);
	font-size: 48px;
	color: var(--first-color);
	font-weight: 700;
}

h2{
	font-size: 36px;
}

h3{
	font-size: 24px;
}

h4{
	font-size: 18px;
}

h5{
	font-size: 16px;
}

.theme-padding{
	padding: 100px 0 0;
	position: relative;
}

a{
	color: var(--font-color);
	transition: all 0.5s ease;
	cursor: pointer;
	text-decoration: none;
}

a:hover{
	color: var(--first-color);
	text-decoration: none;
}

.form-control {
	border-radius: var(--border-radius);
	border: var(--theme-border);
	min-height: 50px;
}

.margin-bottom-minus-30{
	margin-bottom: -30px;
}

.margin-top-30{
	margin-top: 30px;
}

.margin-bottom-30{
	margin-bottom: 30px;
}

.arrow-padding{
	padding-right: 130px;
}

ul {
	padding: 0;
	list-style: none;
	margin-bottom: 0;
}
.margin-right-15{
	margin-right: 15px;
}
.white-text{
	color: var(--white-color);
}

.theme-text-color{
	color: var(--font-color);
}

.width-auto{
	width: auto;
}

.main-title {
	margin-bottom: 50px;
	display: flex;
  	align-items: center;
}

.main-title span {
	position: relative;
	display: inline-block;
	padding-left: 150px;
}

.main-title span::after {
	content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 140px;
      height: 2px;
      background-color: var(--first-color);
      border-radius: 2px;
}

/*========== Button ========*/

.theme-btn {
	position: relative;
	padding: 10px 15px;
	border: none;
	background: var(--third-color);
	color: var(--white-color);
	cursor: pointer;
	transition: all 0.5s ease;
	border-radius: var(--border-radius);
	position: relative;
	z-index: 1;
}

.theme-btn::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: var(--second-color);
	transition: all 0.5s ease;
	border-radius: var(--border-radius);
  	z-index: -1;
}	

.theme-btn:hover:after{
	width: 100%;
}

.box-btn {
	width: 50px;
	height: 50px;
	padding: 0;
	text-align: center;
  	line-height: 50px;
}

.btn-2 {
	background-color: var(--first-color);
}

.btn-2.theme-btn::after{
	background-color: var(--second-color);
}

.fixed .theme-btn:hover::after,
.close-submenu.theme-btn:hover::after {
	background: var(--first-color);
}

/*========== Header ========*/

header {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.logo img {
	width: 200px;
}

header.fixed{
	position: fixed;
    top:0; 
	left:0;
    width: 100%;
	transition: all 0.5s ease;
	background: var(--second-color);
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	z-index: 99;
}

.header-inner {
	border-bottom: 1px solid var(--second-color);
	padding: 15px 0;
}

/*========== main menu ========*/

.main-menu {
	position: absolute;
	top: 0;
	right: -100%;
	width: 500px;
	height: 100vh;
	background: var(--second-color);
	transition: right 0.3s ease;
	z-index: 1000;
	overflow: hidden;
	overflow-y: auto;
}

.main-menu.show {
  	right: 0; /* Slide in */
}

.main-menu::-webkit-scrollbar {
  width: 6px;
}

.main-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.submenu, .inner-submenu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 500px;
	height: 100vh;
	background: var(--second-color);
	transition: right 0.3s ease;
	z-index: 1000;
	 overflow-y: auto;   /* <--- Enable vertical scroll */
    -webkit-overflow-scrolling: touch; 
}

.submenu.open,
.inner-submenu.open {
  right: 0;
}

.inner-submenu {
  z-index: 1100; /* Above main submenu */
}

.close-submenu,
.close-inner-submenu {
  display: block;
  text-decoration: none;
}

.close-submenu:hover {
  background: var(--first-color);
}

.close-inner-submenu:hover {
	background: transparent;
	color: var(--third-color);
}

.main-menu li a {
	color: var(--white-color);
	display: block;
	font-size: var(--h5);
}

.main-menu li a:hover {
	color: var(--third-color);
}

.link-section li {
	padding: 15px 50px;
	border-bottom: 1px dashed var(--light-color);
	position: relative;
}

.main-menu li a .inner-menu-arrow {
    position: absolute;
    right: 30px;
    top: 35%;
    left: auto;
}

.open-btn {
	padding: 15px;
}

/*========== search box ========*/



/*========== Main Banner ========*/

.main-banner {
	width: 100%;
	background: var(--first-color) url(../image/main-banner.png) center center;
	min-height: 100px;
	padding-top: 86px;
	padding-bottom: 200px;
}

.icon-img {
	position: absolute;
	width: auto;
	left: 0;
	top: 0;
}

.icon-img.first {
	left: -20%;
}

.icon-img.second {
	top: auto;
	bottom: -20%;
  	left: 10%;
}

.icon-img.third {
	left: auto;
	right: 0;
	top: 60%;
}

.icon-img.fourth {
	top: auto;
	bottom: -60%;
	left: -80%;
}

.icon-img {
  object-fit: cover;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/*========== team expert ========*/

.inner-box {
	background: var(--second-color);
	border-radius: var(--border-radius);
	color: var(--white-color);
	margin-top: -140px;
	padding: 30px;
}

.person-image {
	text-align: center;
	position: relative;
	z-index: 1;
	align-content: end;
}

.person-image::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 40%;
	background-color: var(--third-color);
	bottom: 0;
	left: 0;
	transition: all 0.5s ease;
	z-index: -1;
	border-radius: var(--border-radius);
}

.inner-box:hover .person-image::after{
	height: 100%;
}

/*========== service ========*/
.service-icon {
	font-size: 50px;
	color: var(--third-color);
	transition: all 0.5s ease;
}

.service-inner:hover .service-icon{
	color: var(--first-color);
}

.service-inner h3 {
	color: var(--main-font);
	position: relative;
	padding-top: 30px;
}

.service-inner h3::after {
	content: "";
	position: absolute;
	width: 50%;
	height: 2px;
	border-radius: var(--border-radius);
	background: var(--third-color);
	left: 0;
	top: 15px;
	transition: all 0.5s ease;
}

.service-inner:hover h3::after{
	width: 100%;
}

/*========== courses ========*/

.nav-tabs .nav-item {
	margin-right: 30px;
	margin-bottom: 30px;
}

.nav-tabs {
	border: none;
}

.nav-tabs .nav-link {
	border: 2px solid var(--first-color);
	border-radius: var(--border-radius);
	color: var(--first-color);
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
	color: var(--third-color);
	border-color: var(--third-color);
}

.course-image img {
	border-radius: var(--border-radius);
	transition: all 1s ease;
}

.course-inner:hover .course-image img {
	transform: scale(1.5);
}

.price {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: var(--first-color);
	color: var(--white-color);
	padding: 15px 15px;
	border-radius: var(--border-radius);
}

.course-title {
	padding: 10px 0;
	border-top: 1px solid var(--light-color);
	display: block;
	margin-top: 10px;
}

.course-title h3{
	transition: all 0.5s ease;
}

.course-title:hover h3{
	color: var(--third-color);
}

.course-image {
	margin-bottom: 15px;
	overflow: hidden;
	border-radius: var(--border-radius);
}

/*========== Slick slider ========*/

.slick-slide {
	padding: 0 15px;
}

.arrow-btn {
	position: absolute;
	top: 5px;
	right: 15px;
}

.arrow-btn.prev {
	right: 80px;
}

.slick-dots li button {
  width: 16px;
  height: 16px;
  background-color: var(--second-color);
  border-radius: 100%;
  transition: background-color 0.3s ease;
  font-size: 0;
  border: none;
}

.slick-dots li.slick-active button {
  background-color: var(--third-color); /* Active dot color */
  width: 25px;
}

.slick-dots {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.slick-dots li {
	margin: 0 2px;
}

/*========== brand logo ========*/

.brand-image {
	background: var(--first-color);
	border-radius: var(--border-radius);
	padding: 30px;
	align-items: center;
	display: flex;
	justify-content: center;
}

.brand-inner{
	background-image: url(../image/brand-bg.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 0;
}

.brand-image img {
	width: 164px;
	height: 130px;
}

/*========== Team section ========*/

.team-main-sec {
	background-image: url(../image/team-bg.png);
	background-position: top right;
	background-repeat: no-repeat;
	padding-top: 50px;
	padding-bottom: 80px;
}

.team-item-inner {
	padding-right: 120px;
}

.team-detail {
	width: 100%;
	background: var(--first-color);
	border-radius: var(--border-radius);
	width: 100%;
	color: var(--white-color);
	padding-bottom: 10px;
	margin-right: -30px;
	z-index: 0;
	margin-bottom: 30px;
}

.team-detail .name {
	display: block;
	padding: 10px;
	background: var(--third-color);
	color: var(--font-color);
	font-weight: 600;
	text-align: center;
	border-radius: var(--border-radius);
	margin-bottom: 10px;
}

.team-detail ul li {
	padding-bottom: 5px;
}

.team-detail ul {
	padding: 0 15px;
}

.custom-dots {
	display: flex;
	gap: 10px;
	margin-top: 30px;
	align-items: center;
	flex-wrap: wrap;
	padding: 10px 0;
}

.dot-thumb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.dot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--first-color);
}

.custom-dots .dot-thumb.active img {
    border-color: var(--third-color);
}

.dot-thumb.dot-plus {
  background-color: var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.team-icon-one {
	top: 50%;
	left: 36%;
}

.team-icon-two {
	left: 20%;
	top: 36%;
}

.team-item-inner img {
	border-radius: var(--border-radius);
}

/*========== count down ========*/
.countdown-inner {
	background: var(--third-color);
	padding: 30px;
	border-radius: var(--border-radius);
	z-index: 1;
}

.circle-wrapper {
	position: relative;
	width: 352px;
	height: 352px;
	border: 2px solid var(--first-color);
	border-radius: 50%;
	margin: 30px auto 20px;
}

.rotating-circle {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	animation: rotate 20s linear infinite;
}

.dot {
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: var(--first-color);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform-origin: center;
}


/* 5 dots at equal 72-degree intervals */
.dot1 { transform: rotate(0deg)    translateY(-186px); }
.dot2 { transform: rotate(72deg)   translateY(-166px); }
.dot3 { transform: rotate(144deg)  translateY(-152px); }
.dot4 { transform: rotate(216deg)  translateY(-170px); }
.dot5 { transform: rotate(288deg)  translateY(-196px); }

.dot::after {
	content: "";
	position: absolute;
	width: 26px;
	height: 26px;
	border: 2px solid var(--third-color);
	background: transparent;
	border-radius: 50%;
	top: 2px;
	left: 2px;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.content-box {
	position: absolute;
	width: 150px;
	background-color: var(--white-color);
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-box .icon {
	font-size: 30px;
	color: var(--first-color);
}

.box1 { top: 100px; left: 0; transform: translateX(-50%); }
 .box2 {
	top: -30px;
	right: 0px;
} 
.box3 {
	bottom: -20px;
	right: 0;
}

.girl-img {
	position: absolute;
	width: auto;
	right: 15px;
	bottom: 0;
	z-index: -1;
}

/*========== offer strip ========*/
.offer-strip-inner {
	width: 100%;
	overflow: hidden;
	background-color: var(--first-color);
	color: var(--white-color);
	white-space: nowrap;
	padding: 10px 0;
	position: relative;
}

.scroll-track {
  display: flex;
  animation: scroll-left 20s linear infinite;
}

.scroll-text {
  display: inline-block;
  padding-right: 30px; /* spacing between messages */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*========== testimonial ========*/
.testi-image {
	width: 150px;
	height: 150px;
	margin-right: 15px;
}

.testi-image img {
	border-radius: var(--border-radius);
	width: 150px;
	height: 150px;
}

.review{
	color: var(--third-color);
}

.review-block::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--third-color);
	top: 12px;
	left: 0;
	z-index: -1;
}

.review-block .review{
	width: auto;
	float: inline-end;
	background: var(--white-color);
	padding-left: 15px;
}

/*========== newsletter ========*/
.newsletter {
	background-image: url(../image/newsletter-bg.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px;
	border-radius: var(--border-radius);
}

.newsletter-inner {
	background-color: rgba(255,255,255,0.6);
	border-radius: var(--border-radius);
	padding: 50px;
	min-height: 700px;
}

.newsletter-png {
	position: absolute;
	width: auto;
	bottom: 0;
	right: 50px;
}

/*========== blog ========*/
.blog-img img {
	border-radius: var(--border-radius);
}
.blog-detail {
	padding: 0 30px;
	margin-top: -30px;
	position: relative;
}
.blog-detail-inner {
	background: var(--first-color);
	padding: 30px;
	border-radius: var(--border-radius);
	color: var(--white-color);
}
.post-title {
	color: var(--third-color);
}
.author-detail i {
	margin-right: 5px;
}

/*========== footer ========*/

footer.theme-padding {
	padding: 30px 0;
	background: var(--first-color);
	margin-top: 100px;
}

.footer-logo img {
	max-width: 170px;
}

footer a {
    color: #fff;
}

footer li:hover a{
	color: var(--third-color);
}
.footer-link ul,
.footer-contact ul {
	padding: 0;
	list-style: none;
	margin: 0;
}

.footer-link ul li a {
	padding: 0 0 10px;
	display: block;
	position: relative;
}

.footer-link ul li:last-child a {
	padding: 0;
}

.footer-title {
	margin-bottom: 15px;
	color: var(--third-color);
}

.footer-contact li {
	display: flex;
	align-content: center;
	margin-bottom: 10px;
}

.footer-contact li .icon {
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 28px;
	background: var(--first-color);
	margin-right: 5px;
}

.footer-bottom {
	padding: 30px 0 0;
	border-top: 1px solid var(--white-color);
	margin-top: 30px;
	justify-content: space-between;
	color: var(--white-color);
}

.footer-link ul li {
	padding-left: 20px;
	position: relative;
	transition: all 0.5s ease;
}

.footer-link ul li:hover {
	padding-left: 25px;
}

.footer-link ul li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 10px;
	height: 10px;
	background: var(--white-color);
	border-radius: var(--border-radius);
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease; /* Safari, older Chrome */
    -moz-transition: all 0.5s ease;    /* old Firefox */
    -o-transition: all 0.5s ease;      /* old Opera */
}

.footer-link ul li:hover::after {
	background: var(--third-color);
	width: 15px;
}

.footer-contact {
	color: var(--white-color);
}

.social-icon {
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	background: var(--third-color);
	border-radius: var(--border-radius);
	transition: all 0.5s ease;
	padding: 0;
}

.social-icon:hover{
	color: var(--white-color);
}

/*========== back to top ========*/

.back-top-btn {
	position: fixed;
	right: 15px;
	bottom: 15px;
	opacity: 0;
	z-index: 999;
}

.back-top-btn.show{
	opacity: 1;
}

/*========== loader ========*/

#loading {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 99;
  }
  
  #loading-image {
	z-index: 100;
	width: 64px;
	height: 64px;
  }

/*========== breadcrumb ========*/

.main-breadcrumb {
	padding: 150px 0 70px;
	background: var(--first-color) url("../image/main-banner.png") no-repeat center center;
	background-size: cover;
	text-align: center;
}

.breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
}

.breadcrumb-item.active {
	color: var(--third-color);
}

.breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item::before {
	color: #fff;
}

/*========== left column ========*/

.filter-section {
	background: #fff;
	padding: 15px;
	margin-bottom: 30px;
	border: 2px solid var(--first-color);
	border-radius: var(--border-radius);
}

.form-check {
	margin-bottom: 5px;
}

.filter-section .main-title {
	font-family: var(--title-font);
	margin-bottom: 15px;
}

.form-check-input:checked {
	background-color: var(--first-color);
	border-color: var(--first-color);
}

.form-check-input:focus {
	border-color: var(--first-color);
	box-shadow: 0 0 0 .25rem rgb(244, 218, 218);
}

.form-control:focus {
	box-shadow: none;
}

.left-column .form-control {
	border: 1px solid #6c757d;
}

.filter-section .main-title span::after {
	width: 15px;
}

.filter-section .main-title span {
	padding-left: 20px;
}

.full-left-column .dropdown .btn {
	min-width: 150px;
	text-align: left;
	border: 2px solid var(--first-color);
	padding: 12px 15px;
}

.full-left-column {
	margin-bottom: 30px;
	display: flex;
	align-content: center;
	align-items: center;
	gap: 15px;
	border: 2px solid var(--first-color);
	border-radius: var(--border-radius);
	padding: 15px;
	flex-wrap: wrap;
}

.full-left-column .dropdown-toggle::after {
	position: absolute;
	right: 15px;
	top: 24px;
}

.full-left-column .dropdown-menu.show {
	min-width: 200px;
	padding: 15px;
}

/* course detail-page */
.instructor-block {
	padding: 30px;
	border: 2px solid var(--first-color);
	border-radius: var(--border-radius);
}

.instructor-detail {
	background: var(--first-color);
	color: var(--white-color);
	padding: 15px;
	border-radius: var(--border-radius);
	margin-bottom: 15px;
}

.course-include .icon {
	color: var(--first-color);
}

.course-include .icon i {
	width: 20px;
	margin-right: 15px;
}

.course-include {
	padding: 15px 0;
	border-bottom: 1px solid var(--light-color);
}

.course-include:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.course-include:first-child {
	padding-top: 0;
}

.accordion-button:not(.collapsed) {
	background-color: var(--first-color);
	color: var(--white-color);
}

.accordion-button {
	background-color: var(--second-color);
	color: var(--white-color);
}

.accordion-button::after {
	filter: invert(100%);
}

.accordion-button:focus {
	box-shadow: none;
}

.comment-box {
	margin-bottom: 30px;
}
.comment-box .customer-image {
	width: 150px;
	height: 150px;
}

/* left related blog */

.left-blog .image {
	width: 30%;
}
.left-blog .desc {
	width: 70%;
	padding-left: 15px;
}
.left-blog {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--light-color);
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.left-blog:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}
.link-btn {
	display: block;
	transition: all 0.5s ease;
}
.link-btn:hover{
	color: var(--first-color);
}

/* left tags */
.blog-tags {
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	gap: 15px;
}
.blog-tags li {
	border: 1px solid var(--first-color);
	border-radius: var(--border-radius);
	padding: 5px 10px;
	transition: all 0.5s ease;
	cursor: pointer;
}
.blog-tags li:hover{
	color: var(--third-color);
	border-color: var(--third-color);
}

.blog-main-image img {
	border-radius: var(--border-radius);
}

blockquote {
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    position: relative;
    margin: 30px 0;
    font-style: italic;
    font-weight: 600;
}

blockquote .quote-icon {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
    color: var(--first-color);
}

.about-img img {
    border-radius: var(--border-radius);
}

.contact-info .contact-box:last-child {
    margin-bottom: 0;
}

/*========== pagination ========*/

.page-link{
	color: var(--first-color);
}

.page-link:hover {
	color: var(--second-color);
}

.active > .page-link, .page-link.active,
.page-link.active:hover {
	background: var(--first-color);
	border-color: var(--first-color);
	color: #fff;
}

.pagination {
	margin-bottom: 30px;
}


/*========== Responsive ========*/

@media (max-width: 1199px) {
	.team-item-inner {
		padding-right: 30px;
	}
	
}

@media (max-width: 991px) {
	.newsletter-inner{
		min-height: auto;
	}
	.newsletter{
		margin-bottom: 50px;
	}
	.newsletter-png{
		width: 150px;
		right: 0;
	}
	
}

@media (max-width: 767px) {
	.newsletter,.newsletter-inner{
		padding: 15px;
	}
	.newsletter-png{
		display: none;
	}
	.main-menu,
	.inner-submenu {
		width: 100%;
	}

	h1 {
		font-size: 26px;
	}

	.logo img {
		width: 160px;
	}

	.main-banner{
		padding-top: 106px;
	}

	h2 {
		font-size: 24px;
	}

	.theme-padding {
		padding: 50px 0 0;
	}

	footer.theme-padding{
		margin-top: 50px;
	}

	.nav-tabs .nav-item {
		margin-right: 15px;
		margin-bottom: 15px;
	}

	.main-title span::after {
		width: 40px;
	}

	.main-title span {
		padding-left: 50px;
	}

	.team-main-sec{
		padding-top: 30px;
  		padding-bottom: 0;
	}
	.blog-detail {
		padding: 0 15px;
		margin-top: -15px;
	}
	.blog-detail-inner{
		padding: 15px;
	}
	
}

@media (max-width: 567px) {

	.rotating-circle{
		display: none;
	}

	.circle-wrapper{
		width: 272px;
  		height: 272px;
	}
	
}

@media (max-width: 479px) {
	.team-item-inner {
		padding-right: 0;
		display: block !important;
	}
	.team-detail{
		margin-right: 0;
	}

	.content-box {
		position: static;
		transform: none;
		margin: 0 auto;
		margin-bottom: 15px;
	}
	.circle-wrapper {
		width: auto;
		height: auto;
		border: none;
		margin: 0;
	}
	.testi-slider-item > div {
		flex-wrap: wrap;
	}
	.testi-image {
		margin-bottom: 15px;
	}
	.link-section li {
		padding: 15px 15px;
	}
}



