* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}
.container {
  max-width: 100%;
  margin: auto;
}
:root {
  --white: #ffffff;
  --primary-100: #67b0d1;
  --primary-200: #49788c;
  --primary-300: #2f4d5a;
  --content-color-100: #777777;
  --content-color-200: #444444;
}
.col-xs-1{width: 8.3333%;}
.col-xs-2{width: 16.6666%;}
.col-xs-3{width: 25%;}
.col-xs-4{width: 33.3333%;}
.col-xs-5{width: 41.6666%;}
.col-xs-6{width: 50%;}
.col-xs-7{width: 58.3333%;}
.col-xs-7{width: 66.6666%;}
.col-xs-9{width: 75%;}
.col-xs-10{width: 83.3333%;}
.col-xs-11{width: 91.6666%;}
.col-xs-12{width: 100%;}
.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xxl-1,.col-xxl-2,.col-xxl-3,.col-xxl-4,.col-xxl-5,.col-xxl-6,.col-xxl-7,.col-xxl-8,.col-xxl-9,.col-xxl-10,.col-xxl-11,.col-xxl-12{
  padding: 15px;
}
.raleway {
  font-family: "Raleway";
}
.open {
  font-family: "Open sans SemiCondensed";
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.flex {
  display: flex;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
}
ul,
ol {
  list-style: none;
}
.bg-white {
  background-color: white;
}
.padding-100 {
  padding: 50px;
}
.w-20 {
  width: 20%;
  padding: 15px;
}
.w-25 {
  width: 25%;
  padding: 15px;
}
.w-30 {
  width: 30%;
  padding: 15px;
}
.w-33 {
  width: 33.33%;
  padding: 15px;
}
.w-40 {
  width: 40%;
  padding: 15px;
}
.w-50 {
  width: 50%;
  padding: 15px;
}
.w-100 {
  width: 100%;
  padding: 15px;
}
.font-14 {
  font-size: 14px;
}
.font-16 {
  font-size: 16px;
}
.font-18 {
  font-size: 18px;
}
.font-20 {
  font-size: 20px;
}
.font-34 {
  font-size: 34px;
}
.font-40 {
  font-size: 40px;
}
.font-48 {
  font-size: 48px;
}
.text-primary-100 {
  color: var(--primary-100);
}
.text-primary-200 {
  color: var(--primary-200);
}
.text-primary-300 {
  color: var(--primary-300);
}
.text-content-100 {
  color: var(--content-color-100);
}
.text-content-200 {
  color: var(--content-color-200);
}
a:hover {
  color: var(--primary-100);
}
.text-white {
  color: white;
}
.text-center {
  text-align: center;
}
section {
  overflow: hidden;
}
/* back to top css */
.backtotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  bottom: 15px;
  right: 15px;
  background-color: var(--primary-100);
  text-align: center;
  color: var(--white);
  z-index: 9999;
  position: fixed;
  transition: all 0.5s ease;
}
.backtotop i {
  line-height: 40px;
  color: var(--white);
  font-size: 20px;
}
.backtotop:hover {
  opacity: 0.8;
}
/* header-start  css*/

header {
  background-color: var(--primary-100);
  padding: 10px 0px;
  z-index: 998;
}
header nav .dropdown,
.mega-menu {
  z-index: 100;
}
header .logo a {
  text-transform: uppercase;
  font-weight: 900;
  color: var(--white);
  font-size: 24px;
}
.justify-content-between {
  justify-content: space-between;
  /* position: relative; */
}
.align-items-center {
  align-items: center;
}
header nav ul > li > a {
  text-transform: capitalize;
  color: var(--white);
  font-weight: 700;
  padding: 8px 8px;
  font-size: 16px;    
  /* margin: 0px 5px; */
  transition: all 0.5s;
  display: none;
}
header ul li:hover a {
  background-color: #ffffff36;
  color: var(--content-color-200);
}
header .dropdown {
  visibility: hidden;
  position: absolute;
  opacity: 0;
  background-color: white;
  transition: all 0.5s;
  top: 120px;
  /* border-radius: 5px; */
  /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); */
}
header .dropdown li a {
  font-weight: 500;
  padding: 10px 20px;
  display: inline-block;
  color: var(--primary-300);
}
header.dropdown li {
  position: relative;
}
header .dropdown li a:hover {
  color: var(--primary-100);
}
header ul li:hover .dropdown {
  visibility: visible;
  opacity: 1;
  top: 43px;
}
header .dropdown .submenu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 70%;
  width: 178px;
  top: 48px;
  border-radius: 5px;
  transition: all 0.5s;
  background-color: white;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
header .dropdown li:hover .submenu {
  visibility: visible;
  opacity: 1;
  left: 100%;
}
header nav .mega-menu {
  width: 900px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 120px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  background-color: var(--white);
  /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); */
}
header .mega-menu h5 {
  color: var(--content-color-200);
  margin: 10px 10px;
}
header .mega-menu ol li a {
  color: var(--content-color-200);
  display: inline-block;
  font-size: 15px;
  padding: 10px 10px;
  font-weight: 600;
}
header .mega-menu ol li a:hover {
  color: var(--primary-100);
  transition: all 0.5s;
}
header nav ul li:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  top: 43px;
}
.fixed {
  position: fixed;
  width: 100%;
  z-index: 999;
}
.toggle {
  display: block;
}
.toggle i{
  font-size: 20px;
  color: white;
}
/* banner section css */

.banner-bg {
  background-image: url("../image/hero-bg.jpg");
  background-position: top;
  background-attachment: fixed;
  background-size: cover;
}
.banner-overlay {
  background-color: #49788c7d;
  padding: 100px 0px 300px;
}
.banner-bg h1 {
  text-transform: uppercase;
  font-size: 64px;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
}
.banner-bg p {
  text-shadow: -1px 0 2px #2f4d5a;
  font-size: 20px;
  font-weight: 700;
}
.banner-bg a i {
  color: var(--white);
  width: 70px;
  height: 70px;
  line-height: 65px;
  border-radius: 100%;
  border: 2px solid white;
  font-size: 25px;
  margin-top: 40px;
  transition: all 0.3s ease-in-out;
}
.banner-bg i:hover {
  background-color: rgba(255, 255, 255, 0.2);
  line-height: 75px;
}

/* about us section css */

.about-bg {
  background-image: url(../image/about-bg.jpg);
  background-size: cover;
  position: relative;
}
.about-bg::after {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 7;
}
.about-bg .container {
  position: relative;
  z-index: 10;
}
.about-bg p {
  padding: 15px 0px;
}
.about-bg button {
  border: none;
  border-radius: 25px;
  padding: 8px 32px;
  color: var(--white);
  background-color: var(--primary-100);
}
.about-bg button a {
  color: var(--white);
}
.about-bg button i {
  padding-left: 10px;
}
.about-content i {
  font-size: 40px;
  color: var(--primary-100);
}
.about-content h3 {
  padding: 10px 0px;
  font-size: 20px;
  color: #444444;
}
.about-content p {
  color: #848484;
}

/* section title css  */

.section-title h2 {
  padding: 30px 0;
  font-weight: 700;
  font-size: 32px;
  position: relative;
  z-index: 2;
}
.section-title h2::after {
  position: absolute;
  content: "";
  background-image: url(../image/section-title-bg.png);
  left: 50%;
  height: 100%;
  width: 20%;
  top: 0;
  z-index: -1;
  transform: translatex(-50%);
  background-repeat: no-repeat;
  background-position: center;
}
.section-title p {
  color: #444444;
}
.service-box {
  box-shadow: 0 0 29px 0 rgb(68 88 144 / 12%);
  border-radius: 8px;
  padding: 30px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  z-index: 1;
  margin-top: 40px;
  transition: all 0.5s;
}
.service-box h3 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
  color: #111111;
  transition: all 0.5s;
}
.service-box p {
  font-size: 15px;
  transition: all 0.5s;
  line-height: 30px;
}
.service-box i {
  margin-bottom: 15px;
  transition: all 0.5s;
  color: var(--primary-100);
  font-size: 48px;
}
.service-box::after {
  position: absolute;
  content: "";
  /* background-color: white; */
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.5s;
  z-index: -1;
}
.service-box:hover::after {
  top: 0;
  background: #67b0d1;
}
.service-box:hover i {
  color: var(--white);
}
.service-box:hover h3 {
  color: var(--white);
}
.service-box:hover p {
  color: var(--white);
}
/* count section css  */
.counter p span {
  font-weight: 700;
}
.counter i {
  margin-top: 10px;
}
.counter-content {
  padding-left: 15px;
}
.counter {
  margin: 50px 0px;
}
/* action section css */
.bg-action {
  background-image: url(../image/cta-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}
.bg-action .overlay {
  padding: 50px 0;
  background-color: #67b0d18e;
}
.bg-action h3 {
  font-size: 28px;
}
.bg-action p {
  padding: 20px 0;
}
.bg-action button {
  background-color: transparent;
  padding: 10px 40px;
  border: none;
  border: 2px solid rgba(255, 255, 255, 0.518);
  border-radius: 25px;
  font-weight: 600;
}
.bg-action button a {
  color: var(--white);
}
.bg-action button:hover {
  border: 2px solid white;
  transition: all 0.5s;
}
.action-content{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

/* portfolio section css */

.portfolio-tab ul {
  background-color: #ecf5f9;
  padding: 15px;
  border-radius: 25px;
  margin-top: 20px;
}
.portfolio-tab {
  margin: auto;
}
.portfolio-tab li:first-child a {
  color: var(--primary-100);
}
.portfolio-tab li a:hover {
  color: var(--primary-100);
  transition: all 0.5s;
}
.portfolio-tab ul li a {
  color: var(--content-color-200);
  font-weight: 500;
}
.img-box {
  position: relative;
  overflow: hidden;
}
.img-box:hover .link-box {
  bottom: 0;
}
.img-box .link-box {
  position: absolute;
  content: "";
  width: 100%;
  bottom: -50%;
  overflow: hidden;
  transition: all 0.5s;
}
.img-box .link-box a {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  padding: 15px;
  overflow: hidden;
}

.img-box .link-box .w-50 {
  padding: 8px 0;
  background-color: var(--primary-100);
}
.img-box .link-box .w-50:hover {
  background-color: #49788cc5;
  transition: all 0.5s;
}
.img-box:hover {
  transition: all 0.5s;
}
.img-box:hover img {
  opacity: 0.8;
}

/* !-- testimonial section css --*/
.primary-bg {
  background-color: #f4f9fc;
  position: relative;
  /* z-index: 11; */
}
.review-content p i {
  color: var(--primary-100);
  font-size: 20px;
  margin: 0px 15px;
}
.review-content p {
  font-style: italic;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: var(--white);
  border-radius: 8px;
  padding: 25px;
  position: relative;
}
.review-content p::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-top: 20px solid white;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  bottom: -20px;
  left: calc(50% - 20px);
}
.review-content {
  margin: 15px 20px;
  position: relative;
}

.item > .img-box > h4 {
  font-size: 14px;
  color: #999999;
}
.item > .img-box > h3{
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0px 5px 0px;
}
.item .img-box img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: auto;
  margin-top: 50px;
}
.item .img-box{
  text-align: center;
}
.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--primary-100);
}
.owl-theme .owl-dots .owl-dot span {
  border: 1px solid var(--primary-100);
  background-color: var(--white);
}
.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 20px;
}
/* team section css */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}
.team-info p {
  font-style: italic;
  font-size: 14px;
  color: var(--content-color-200);
  margin-top: 10px;
}
.team-info h3 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #2f4d5a;
  position: relative;
  padding-bottom: 10px;
}

.team-info h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.team-info .social {
  margin-top: 20px;
}
.team-info .social i {
  margin: 0px 3px;
  color: var(--content-color-100);
  font-weight: 500;
  font-size: 16px;
}
.team-info .social a i:hover {
  color: var(--primary-100);
  transition: all 0.3s ease-in-out;
}
.team-img .team-info {
  position: absolute;
  width: 90%;
  top: 85%;
  max-height: 90px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 9;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0px;
}
.team-img:hover .team-info {
  max-height: 300px;
}
.team-img {
  position: relative;
  margin-top: 30px;
  margin-bottom: 50px;
}
/* contact section css  */
.contact-box {
  padding: 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.12);
}
.contact-box i {
  background-color: var(--white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 100%;
  border: 2px dotted rgba(221, 218, 218, 0.903);
  color: var(--primary-100);
  font-size: 32px;
}
.contact-box h3 {
  margin: 10px 0px;
  color: var(--content-color-100);
  font-weight: 700;
}
.contact-box p {
  color: var(--content-color-200);
  font-size: 14px;
  list-style: 24px;
}
.contact-box input,
.contact-box textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ced4da;
  font-size: 14px;
}
.contact-box input:focus,
.contact-box textarea:focus {
  border: 2px solid var(--primary-100);
}
.contact-box input:nth-child(1),
.contact-box input:nth-child(2) {
  width: 48%;
}
.contact-box button {
  background-color: var(--primary-100);
  border: none;
  color: var(--white);
  padding: 10px 20px;
  margin: auto;
  display: block;
}
/* footer css */
footer {
  background-color: var(--primary-300);
}
footer .footer-white {
  padding: 30px 40px;
  border-top: 5px solid var(--primary-100);
  transform: translatey(-40px);
}
footer h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
footer .bg-white .pb1 {
  font-style: italic;
  font-size: 14px;
  padding-bottom: 16px;
}
footer .footer-white .pb3 {
  font-size: 14px;
}
.bg-white .pb2 {
  font-size: 14px;
}
footer strong {
  font-size: 14px;
}
footer .social-link {
  margin-top: 16px;
}
.social-link i {
  width: 30px;
  height: 30px;
  background-color: var(--primary-300);
  color: var(--white);
  line-height: 30px;
  border-radius: 100%;
  margin-left: 2px;
}
footer .social-link a:hover i {
  background-color: var(--primary-100);
  transition: all 0.5s;
}
footer .footer-box {
  padding: 50px 10px;
}
.footer-box li a i {
  padding-right: 10px;
  color: var(--primary-100);
}
footer ul li a:hover {
  color: var(--primary-100);
  transition: all 0.3s ease;
}
.footer-box h4 {
  padding-bottom: 10px;
  font-size: 16px;
}
footer ul li a {
  color: var(--white);
  font-size: 14px;
}
footer ul li {
  font-size: 14px;
  padding: 10px 0;
}
.footer-box form{
  background-color: var(--white);
  margin-top: 20px;
  position: relative;
  padding: 6px 10px;
}
footer .footer-box input {
  /* margin-top: 20px; */
  display: inline-block;
  background-color: var(--white);
  outline: none;
  border: none;
}
footer .footer-box input:nth-child(2) {
  position: absolute;
  background-color: #67b0d1d0;
  color: var(--white);
  border: none;
  font-size: 15px;
  transition: all 0.5s;
  padding: 6px 10px;
  top: 0;
  bottom: 0;
  right: 0;
}
footer .footer-box input:nth-child(2):hover {
  background-color: var(--primary-100);
}
.border-bottom {
  border-bottom: 2px solid var(--primary-200);
}
.copyright {
  padding: 30px;
}
.copyright a {
  color: var(--primary-100);
}
::-webkit-scrollbar {
  background-color: var(--primary-200);
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-100);
  border: 3px solid var(--primary-200);
  border-radius: 8px;
}
/* .theam color  */
.setting-box {
  width: 40px;
  height: 50px;
  font-size: 20px;
  text-align: center;
  background-color: var(--white);
  top: 40%;
  right: 0;
  position: fixed;
  border-radius: 15px 0px 0px 15px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
  cursor: pointer;
}
.setting-box i {
  line-height: 50px;
}
.color-box {
  width: 100px;
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 8px 8px 0px;
  position: fixed;
  top: calc(40% + 50px);
  border-radius: 25px 0px 0px 25px;
  right: -15%;
  transition: all 0.4s;
  z-index: 99;
  /* cursor: pointer; */
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
.round {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 5px;
}
.blue {
  background-color: #409cc5;
  cursor: pointer;
}
.yellow {
  background-color: #eace2a;
  cursor: pointer;
}
.pink {
  background-color: #d80a8e;
  cursor: pointer;
}
.purple {
  background-color: #6a3397;
  cursor: pointer;
}
.orange {
  background-color: #f4891e;
  cursor: pointer;
}
.green {
  background-color: #0aa450;
  cursor: pointer;
}
.right {
  right: 0;
}

/* haedline js  */

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}
.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}
.cd-words-wrapper b.is-visible {
  position: relative;
}
.no-js .cd-words-wrapper b {
  opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.clip span {
  display: inline-block;
  padding: 0.2em 0;
}
.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}
.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #aebcb9;
}
.cd-headline.clip b {
  opacity: 0;
}
.cd-headline.clip b.is-visible {
  opacity: 1;
}
