:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --text-color: #777777;
  --icon-color: #01C5ED;
  --dark-blue-color: #004358;
  --heading-color: #222222;
  --link-color: #666666;
  --bg-color: #f7f7f7;
  --light-black: #232323;
  --red-color: #dc373a;
  --sky-blue: #00abc9;
  --lighten-green: #006585;
  --orange-color: #e3823d;
  --purpal-color: #f5ae18;
  --green-color: #2eaf7d;
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Raleway-Regular.woff") format("woff"),
    url("../fonts/Raleway-Regular.woff2") format("woff2"),
    url("../fonts/Raleway-Regular.eot") format("eot"),
    url("../fonts/Raleway-Regular.ttf") format("ttf"),
    url("../fonts/Raleway-Regular.svg") format("svg");
}

@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/RobotoSlab-Regular.woff") format("woff"),
    url("../fonts/RobotoSlab-Regular.woff2") format("woff2"),
    url("../fonts/RobotoSlab-Regular.eot") format("eot"),
    url("../fonts/RobotoSlab-Regular.ttf") format("ttf"),
    url("../fonts/RobotoSlab-Regular.svg") format("svg");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/FontAwesome6Brands-Regular.woff") format("woff"),
    url("../fonts/FontAwesome6Brands-Regular.woff2") format("woff2"),
    url("../fonts/FontAwesome6Brands-Regular.eot") format("eot"),
    url("../fonts/FontAwesome6Brands-Regular.ttf") format("ttf"),
    url("../fonts/FontAwesome6Brands-Regular.svg") format("svg");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/FontAwesome6Free-Solid.woff") format("woff"),
    url("../fonts/FontAwesome6Free-Solid.woff2") format("woff2"),
    url("../fonts/FontAwesome6Free-Solid.eot") format("eot"),
    url("../fonts/FontAwesome6Free-Solid.ttf") format("ttf"),
    url("../fonts/Raleway-Regular.svg") format("svg");
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.9;
  font-family: "Raleway";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0 0 15px 0;
  padding: 0px;
  color: var(--white-color);
  font-family: "Roboto Slab";
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin: 0 0 15px 0;
  padding: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style-type: none;
  margin: 0 0 0 10px;
  padding: 0px;
}

ul li,
ol li {
  margin: 0 0 0 10px;
  padding: 0px;
}

a {
  color: var(--icon-color);
}

a:hover {
  color: var(--icon-color);
  text-decoration: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="subject"],
textarea,
select,
button {
  width: 100%;
  height: 50px;
  font-size: 14px;
  color: #333333;
  border: 1px solid #f2f2f2;
  resize: none;
  padding: 8px 20px;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.5s ease;
  font-family: "Roboto Slab";
}

input:focus {
  border-color: var(--icon-color);
}

button {
  border: 0;
}

.themy-btn {
  position: relative;
  font-family: "Raleway";
  max-width: 180px;
  height: 50px;
  line-height: 24px;
  text-transform: uppercase;
  background: none;
  color: var(--white-color);
  letter-spacing: 1px;
  border: 2px solid var(--white-color);
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  transition: 0.5s ease;
}

.themy-btn:hover {
  background: var(--icon-color);
  border-color: var(--icon-color);
  color: var(--white-color);
}

.blog-button {
  position: absolute;
  max-width: 120px;
  height: 40px;
  padding: 6px;
  border: 2px solid var(--icon-color);
  color: var(--icon-color);
  bottom: 15px;
}

.title h2 {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
  color: var(--heading-color);
  padding-bottom: 10px;
  line-height: 1.5;
}

.title h2::before,
.title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 24px;
  border-bottom: 3px solid var(--icon-color);
  transform: translateY(-50%);
}

.title h2::before {
  left: 50%;
  margin-left: 4px;
}

.title h2::after {
  right: 50%;
}

.title-left h2 {
  text-align: left;
}

.title-left h2::before {
  left: 0%;
  margin-left: 0;
}

.title-left h2::after {
  left: 28px;
}

.title-button h2 {
  display: flex;
  justify-content: space-between;
}

.blog-title h2 {
  font-size: 14px;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.blog-title h2::before,
.blog-title h2::after {
  width: 20px;
}

.blog-title h2::after {
  left: 22px;
}

.title-button .themy-btn {
  border: 2px solid var(--icon-color);
  color: var(--icon-color);
}

.title-button .themy-btn:hover {
  background-color: var(--icon-color);
  color: var(--white-color);
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-50 {
  margin-bottom: 50px;
}

.container {
  max-width: 1200px;
}

.scrollTop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  background-color: var(--icon-color);
  padding: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}

.scrollTop .fa-solid {
  padding: 12px 16px;
  font-size: 16px;
  color: #fff;
}

.header-main__bottom__inner__logo{
  font-family: "Roboto Slab";
  font-weight: 700;
  color: var(--dark-blue-color) !important;
  font-size: 38px;
  text-transform: uppercase;
  text-decoration: none !important;
  line-height: normal;
}

.header-main__bottom__inner__logo img {
  max-width: 260px;
}

.header-main__top {
  background-color: var(--heading-color);
}

.header-main__top-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-main__top-link__inner a {
  display: block;
  font-size: 14px;
  padding: 10px 0;
  color: #aaaaaa;
  line-height: 1.72;
}

.header-main__top-link__inner a:hover {
  color: var(--icon-color);
}

.fa-brands {
  color: #aaaaaa;
  transition: all 0.5s ease;
}

.fa-brands:hover {
  color: var(--icon-color);
}

.social__icon-icon {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 100%;
}
.social__icon ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.social__icon ul li {
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
}

.header-main__bottom .container {
  position: relative;
}

.header-main__bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-main__bottom__inner .menu__list {
  position: relative;
  display: flex;
  /*padding-right: 70px;*/
}

.header-main__bottom__inner .menu__list .menu__item {
  position: relative;
  margin-left: 45px;
  /*padding: 15px 0;*/
}

.header-main__bottom__inner .menu__list .menu__item .menu__link {
  display: block;
  padding: 30px 0;
  color: var(--link-color);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.5s ease;
}

.active .menu__link {
  color: var(--icon-color) !important;
}

.fixed-header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: none;
    background-color: var(--white-color);
}

.header-fixed__scroll{
    display: block;
    z-index: 999;
}

/*.sticky-header {
  width: 100%;
  background-color: var(--white-color);
  z-index: 999;
  display: none;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  -ms-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  -o-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
*/

.fixed-header .header-main__bottom__inner .menu__list {
  padding: 0;
}

.fixed-header .header-main__bottom__inner .menu__list .menu__item {
  margin-left: 0;
  padding: 0;
  transition: all 0.5s ease;
}

.fixed-header .header-main__bottom__inner .menu__list .menu__item:hover,
.fixed-header
  .header-main__bottom__inner
  .menu__list
  .menu__item
  .menu__link:hover {
  color: var(--white-color);
  background-color: var(--dark-blue-color);
}

.menu__item-bg {
  background-color: var(--dark-blue-color);
}

.fixed-header .header-main__bottom__inner .menu__list .menu__item .menu__link {
  color: var(--dark-blue-color);
  padding: 22px 25px;
  transition: all 0.5s ease;
}

.menu__item-bg .menu__link {
  color: var(--white-color) !important;
}

.menu__arrow {
  display: none;
}

.menu__dropdown {
  width: 240px;
  top: 100%;
  left: 0;
  margin: 0;
  z-index: 999;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid var(--icon-color);
  transition: all 0.3s ease;
}

.menu__dropdown,
.menu__dropdown li {
  margin: 0;
}

.menu__dropdown li a {
  display: block;
  padding: 12px 15px;
  border-bottom: 1px dashed #dddddd;
  color: #848484;
  font-weight: 600;
  transition: all 0.5s ease;
}

.menu__dropdown li a:hover {
  background-color: var(--dark-blue-color);
  color: #cccccc;
}

.header-main__bottom__inner-menu {
  position: relative;
}

.header-main__bottom__inner-menu .menu__list .menu__item:hover .menu__link {
  color: var(--icon-color);
}

.search-box-search-box-megamenu {
  position: absolute;
  right: 15px;
  /* top: 50%; */
  margin-top: -14px;
  height: 16px;
}

.search-box-btn {
  padding: 0;
  background-color: transparent;
  height: 17px;
}

.search-box .fa-solid {
  color: var(--text-color);
  font-size: 14px;
  border-left: 1px solid #cccccc;
  padding-left: 26px;
  transition: all 0.5s ease;
}

.search-box-btn:hover .fa-solid {
  color: var(--icon-color);
}

.search-box-megamenu {
  display: none;
  position: absolute;
  top: 52px;
  right: 0;
  z-index: 99;
  padding: 20px 25px;
  width: 278px;
  z-index: 999;
  background-color: var(--white-color);
  border-top: 3px solid var(--icon-color);
}

.search-box-megamenu .form-group {
  position: relative;
  margin-bottom: 0;
}

.search-box-megamenu .form-group input[type="text"] {
  height: 40px;
}

.search-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 0;
  right: 0;
  background-color: transparent;
}

.search-btn .fa-solid {
  padding: 0;
  border: 0;
  color: var(--black-color);
  font-size: 13px;
}
/** END OF : Header **/

/** START OF : Main **/

/** START OF : Main-slider **/
.main-slider__image {
  position: relative;
  height: 680px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.main-slider__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: 0.4;
}

.main-slider__contant {
  position: relative;
  color: var(--white-color);
}

.main-slider__contant p {
  max-width: 700px;
  font-size: 20px;
  margin-bottom: 24px;
}

.main-slider-buttons {
  display: flex;
}

.main-slider-buttons .form-button {
  margin-right: 20px;
}

.text-center {
  max-width: 940px;
  margin: 0 auto;
}

.text-center p {
  margin: 0 auto 24px;
}

.text-center .main-slider-buttons {
  justify-content: center;
}

.main-slider .swiper-button-next:after {
  display: none;
}

.main-slider .swiper-button-prev,
.main-slider .swiper-button-next {
  background-color: var(--black-color);
  opacity: 0.5;
  height: 110px;
}

.main-slider .swiper-button-prev {
  left: 0;
}

.main-slider .swiper-button-next {
  right: 0;
}

.main-slider .fa-solid {
  font-size: 18px;
}

.main-slider .fa-arrow::before {
  color: var(--white-color);
}
/** END OF : Main-slider **/

/** START OF :  Service**/
.service {
  overflow: hidden;
}

.service .col-lg-4 {
  text-align: center;
}

.service__content {
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
  overflow: hidden;
}

.service__content:hover .service__heading {
  transform: translateY(53px);
  opacity: 0;
  visibility: hidden;
}

.service__content:hover .service__heading-text {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.service__heading {
  background-color: var(--dark-blue-color);
  padding: 18px 0;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  transition: all 0.8s ease;
}

.service__heading h6 {
  font-family: "Raleway";
}

.service__heading-text {
  position: absolute;
  background-color: rgba(0, 67, 88, 0.89);
  top: -100%;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  border-bottom: 4px solid var(--icon-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service__heading-text h6 {
  margin-bottom: 20px;
}

.service__heading-text p {
  font-size: 16px;
  max-width: 270px;
  margin: 0 auto;
  color: var(--white-color);
  margin-bottom: 19px;
  line-height: 1.6em;
}

.service__heading-text .read-more {
  color: var(--white-color);
  font-size: 13px;
  font-weight: 700;
}

.service__heading-text .read-more .fa-solid {
  color: var(--white-color);
  font-size: 10px;
}

.service__heading h6 {
  margin-bottom: 0;
}
/** END OF :  Service**/

/** START OF :  Default **/
.sec-default {
  padding: 90px 0;
  background-color: var(--bg-color);
}

.default .row{
  margin: 0 0 0 0; 
}

.default__content {
  position: relative;
  padding: 30px 35px 30px 25px;
  background-color: var(--white-color);
  margin-bottom: 20px;
  display: flex;
  z-index: 99;
  overflow: hidden;
}

.default__content:hover .default__heading-text,
.default__content:hover .default__heading-text h6,
.default__content:hover .default__heading-text .read-more {
  color: var(--white-color);
}

.default__content:hover .default__content__bg::before {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.default__content__bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--dark-blue-color);
  z-index: 99;
  z-index: -1;
  top: -100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s ease;
}

.default__icon {
  padding-right: 28px;
}

.fa-solid {
  font-size: 40px;
  color: #333333;
}

.default__content:hover .fa-solid {
  color: var(--white-color);
}

.default__heading-text h6 {
  color: var(--heading-color);
  font-size: 18px;
}

.default__heading-text p {
  line-height: 1.9;
  margin-bottom: 5px;
}

.default__heading-text .read-more {
  color: var(--light-black);
}

.fa-solid.fa-angle-right {
  font-size: 12px;
  color: var(--light-black);
}
/** END OF :  Default **/

/** START OF :  Financial **/
.sec-financial {
  position: relative;
  padding: 100px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

section.sec-financial::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue-color);
  left: 0;
  top: 0;
  opacity: 0.85;
}

.financial {
  color: var(--white-color);
}

.financial-text h3 {
  margin: 0;
  line-height: 1.5;
  margin-bottom: 17px;
}

.financial-text h3 span {
  color: var(--icon-color);
}

.financial__contant {
  text-align: center;
  margin-top: 40px;
  font-family: "Roboto Slab";
}

.financial__contant .count {
  font-weight: 700;
  font-size: 36px;
}

.financial__contant .plus {
  font-size: 18px;
  font-weight: 400;
  margin-left: 10px;
  position: relative;
  top: -10px;
}
/** END OF :  Financial **/

/** START OF :  Projects **/
.projects .row {
  margin: 0 -15px 0 0;
}

.projects .row .col-md-4,
.projects .row .col-sm-6 {
  padding: 0 0 0 0;
}

.projects .fancy-box {
  display: block;
  position: relative;
  overflow: hidden;

  margin: 0 15px 15px 0;
}

.projects__image img {
  transform: scale(1.15);
  transition: opacity 0.75s, transform 0.35s;
}

.fancy-box:hover .projects__image img {
  transform: scale(1);
}

.projects__contant {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0px;
  padding: 32px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s ease;
}

.fancy-box:hover .projects__contant {
  opacity: 1;
  visibility: visible;
}

.projects__contant::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-color);
  opacity: 0.5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s ease;
}

.fancy-box:hover .projects__contant::before {
  opacity: 0.5;
  visibility: visible;
}

.projects__contant__inner {
  position: relative;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
}

.projects__contant__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 2px solid var(--icon-color);
  border-bottom: 2px solid var(--icon-color);
  transform: scaleX(0.1);
  transition: opacity 0.75s, transform 0.35s;
}

.fancy-box:hover .projects__contant__inner::before {
  transform: scaleX(1);
}

button.fancybox-button.fancybox-button--close::after {
  content: "X";
  position: absolute;
  top: 12px;
  left: 16px;
}

.projects__contant__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-right: 2px solid var(--icon-color);
  border-left: 2px solid var(--icon-color);
  transform: scaleY(0.1);
  transition: opacity 0.75s, transform 0.35s;
}

.fancy-box:hover .projects__contant__inner::after {
  transform: scaleY(1);
}

.projects__contant h6,
.projects__contant p {
  color: var(--white-color);
}

.projects__contant h6 {
  padding-bottom: 12px;
  margin: 0;
  transform: translateY(-8px);
  transition: all 0.7s ease;
}

.fancy-box:hover .projects__contant h6,
.fancy-box:hover .projects__contant p {
  transform: translateY(0);
}

.projects__contant p {
  font-size: 16px;
  transform: translateY(8px);
  transition: all 0.7s ease;
}
/** END OF :  Projects **/

/** START OF :  Skill **/
.skill-main {
  display: flex;
  justify-content: space-between;
}

.skill-left {
  width: 50%;
  background-color: var(--bg-color);
}

.skill-left__contant {
  width: 100%;
  max-width: 600px;
  float: right;
  padding: 90px 80px 70px 15px;
}

.inner-heading h2 {
  color: var(--heading-color);
  margin-bottom: 50px;
}

.accordion {
  position: relative;
}

.accordion::before {
  content: "";
  position: absolute;
  left: 20px;
  border: 1px dashed #d0d0d0;
  height: 100%;
}

.accordion-title {
  display: flex;
  align-items: center;
}

.accordion-title.open .fa-down::before {
  transform: rotate(-90deg);
}

.accordion h6 {
  position: relative;
  font-size: 16px;
  color: var(--black-color);
  cursor: pointer;
}

.accordion .fa-down {
  width: 42px;
  height: 42px;
  font-size: 13px;
  background-color: var(--icon-color);
  color: var(--white-color);
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 28px;
}

.accordion-content p {
  margin-left: 70px;
  margin-bottom: 24px;
  color: var(--link-color);
}

.skill-right {
  position: relative;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.skill-right::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue-color);
  opacity: 0.95;
}

.skill-right__contant {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 90px 15px 70px 70px;
}

.skill-right .inner-heading h2 {
  color: var(--white-color);
}

.progressbar-bar {
  margin-bottom: 20px;
}

.progressbar-bar .title {
  display: block;
  color: var(--white-color);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.6;
}

.percentCount {
  margin-top: -38px;
  color: var(--white-color);
}

.progressbar .proggress{
  background-color: var(--icon-color) !important;
}

/** END OF :  Skill **/

/** START OF :  Team-slider **/
.team-swiper__contant {
  position: relative;
}

.team-swiper__img {
  text-align: center;

  transition: all 0.5s ease;
}

.team-swiper__image-text {
  position: relative;
  display: block;
  border-bottom: 3px solid #354d71;
  overflow: hidden;
}

.team-swiper__image-text:hover .inner-box {
  border-bottom-color: var(--icon-color);
}

.team-swiper__contant:hover .hover-box {
  bottom: 0;
}

.team-swiper .swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.fa-arrow::before {
  color: var(--text-color);
  font-size: 18px;
}

.hover-box {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -122px;
  text-align: center;
  padding: 18px 15px 15px;
  background-color: var(--dark-blue-color);
  opacity: 0.85;
  transition: all 0.7s ease;
}

.hover-box .social__icon {
  margin-bottom: 5px;
}

.hover-box .social__icon ul li {
  margin: 0 6px 0 6px;
}

.hover-box h6 {
  margin: 0;
  line-height: 1.4;
  margin-bottom: 3px;
}

.hover-box h6 a {
  color: var(--white-color);
  font-size: 16px;
}

.hover-box p {
  margin: 0;
  color: var(--white-color);
}

.hover-box h6 a:hover {
  color: var(--icon-color);
}

.hover-box .social__icon ul li a i {
  color: var(--white-color);
}

.hover-box .social__icon ul li a i:hover {
  color: var(--icon-color);
}
/** END OF :  Team-slider **/

/** START OF :  Testimonial **/
.sec-testimonial {
  padding: 90px 0 100px;
  background-color: var(--dark-blue-color);
  opacity: 0.98;
}

.sec-testimonial h2 {
  color: var(--white-color);
}

.testimonial {
  color: var(--white-color);
  text-align: center;
}

.testimonial-swiper .swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.testimonial-swiper .fa-arrow::before {
  color: var(--white-color);
}

.testimonial-swiper__contant {
  max-width: 1024px;
  margin: 0 auto;
}

.testimonial-swiper__contant .fa-solid {
  color: var(--icon-color);
  margin-bottom: 20px;
}

.testimonial-swiper__info-img {
  padding-right: 20px;
}

.testimonial-swiper__info-img img {
  border-radius: 100%;
  border: 3px solid var(--white-color);
}

.testimonial-swiper__info {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-swiper__info-text {
  padding-top: 13px;
}

.testimonial-swiper__info-text h6,
p {
  margin-bottom: 0;
}

.testimonial-swiper__info-text p {
  text-align: left;
  color: var(--icon-color);
}
/** END OF :  Testimonial **/

/** START OF :  News **/
.sec-news {
  padding: 80px 0 60px 0;
  background: var(--bg-color);
}

.news__contant {
  background-color: var(--white-color);
  margin-bottom: 30px;
}

.news__image a {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.news__contant:hover .news__image a {
  opacity: 1;
  visibility: visible;
}

.news__contant:hover .news__image::before {
  opacity: 0.83;
}

.news__image {
  position: relative;
}

.news__contant:hover .news__image .fa-link {
  opacity: 1;
  visibility: visible;
}

.news__image .fa-link {
  position: absolute;
  font-size: 14px;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #354d71;
  background-color: var(--white-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.news__image .fa-link:hover {
  background-color: var(--icon-color);
  color: var(--white-color);
}

.news__image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue-color);
  opacity: 0;
  transition: all 0.7s ease;
}

.news__contant__inner {
  padding: 25px 30px;
}

.news__contant__inner .news__link ul {
  margin: 0 0 10px 0;
  display: flex;
}

.news__contant__inner .news__link ul li {
  margin: 0 10px 0 0;
}

.news__contant__inner .news__link ul li a {
  color: var(--link-color);
  font-size: 13px;
  font-family: "Roboto Slab";
}

.news__contant__inner .news__link ul li a .fa-solid {
  font-size: 13px;
  margin-right: 3px;
  color: var(--link-color);
}

.news__contant__inner .news__heading-text h6 a {
  font-weight: 400;
  display: block;
  color: var(--light-black);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.news__contant__inner .news__heading-text h6 a:hover {
  color: var(--icon-color);
}

.news__contant__inner .news__heading-text p {
  margin-bottom: 25px;
}

.news__contant__inner .news__heading-text .read-more {
  color: var(--light-black);
  font-family: "Roboto Slab";
  transition: all 0.5s ease;
}

.news__contant__inner .news__heading-text .read-more:hover {
  color: var(--icon-color);
}

.news__contant__inner .news__heading-text .read-more .fa-solid {
  margin-left: 3px;
  transition: all 0.5s ease;
}

.news__contant__inner .news__heading-text .read-more:hover .fa-solid {
  color: var(--icon-color);
}
/** END OF :  News **/

/** START OF :  Consulting **/
.sec-consulting {
  padding: 48px 0;
  background-color: var(--dark-blue-color);
}

.consulting__heading-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consulting__heading {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 400;
  font-family: "Roboto Slab";
}
/** END OF :  Consulting **/

/** START OF : Partner **/
.sec-partner {
  background-color: var(--bg-color);
  padding: 90px 0px 100px;
}

.partner__contant {
  position: relative;
  padding-top: 30px;
}

.partner__contant:hover .tooltip,
.partner__contant:hover .tooltip::after {
  opacity: 1;
  visibility: visible;
}

.tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--icon-color);
  color: var(--white-color);
  padding: 2px 10px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  font-size: 13px;
}

.tooltip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0px 6px;
  border-color: var(--icon-color) transparent transparent transparent;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}

.partner__contant .partner__img:hover img {
  opacity: 1;
}

.partner__img {
  background-color: var(--white-color);
  text-align: center;
  border: 1px solid #f1f1f1;
  padding: 15px 0;
}

.partner__img img {
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner__contant-tooltip {
  background-color: var(--icon-color);
  color: var(--white-color);
  font-size: 13px;
  padding: 4px;
  border-radius: 4px;
}
/** END OF : Partner  **/

/** STARt OF :  Request **/
.sec-request {
  position: relative;
  padding: 100px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.sec-request::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: 0.56;
}

.request {
  position: relative;
  padding: 60px 50px 40px;
  background-color: var(--white-color);
}

.request .title h2 {
  font-size: 22px;
}

.request .text {
  max-width: 400px;
  margin-bottom: 30px;
}

.request-address p {
  font-size: 15px;
  margin-bottom: 12px;
  font-family: "Roboto Slab";
}

.request-address p b {
  color: var(--light-black);
  margin-right: 4px;
}

.form-group__info {
  display: flex;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.form-group__info .form-group input[type="email"] {
  border: 1px solid #f2f2f2;
  border-radius: 0;
}

.form-group__info .form-group input[type="email"]:focus {
  border-color: var(--icon-color);
}

textarea {
  height: 96px;
  margin-bottom: 20px;
}

textarea:focus {
  border-color: var(--icon-color);
}

.form-button .themy-btn {
  background: var(--icon-color);
  border-color: var(--icon-color);
  color: var(--white-color);
}

.form-button .themy-btn:hover {
  background-color: transparent;
  color: var(--icon-color);
}
/** END OF :  Request **/

/** END OF : Main **/

/** START OF : Footer **/
.footer-main {
  color: #999999;
}

.footer-main__top {
  background-color: #272727;
  padding: 100px 0 50px;
}

.footer-main__top__inner {
  font-size: 15px;
  margin-bottom: 40px;
}

.footer-main__top__inner h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

.footer-main__top h3 {
  font-weight: 500;
  margin-bottom: 32px;
}

.footer-main__top__inner h3 {
  font-weight: 500;
}

.footer-main__top__inner .social__icon ul {
  justify-content: flex-start;
}

.footer-main__top__inner .social__icon ul li {
  margin: 16px 5px 0 0;
}

.footer-main__top__inner .social__icon ul li a {
  width: 44px;
  height: 44px;
  background-color: #3b3b3b;
  border-radius: 100%;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-main__top__inner .social__icon ul li a:hover {
  background-color: var(--icon-color);
}

.footer-main__top__inner .social__icon ul li a .fa-brands {
  color: #9b9b9b;
}

.footer-main__top__inner .social__icon ul li a:hover .fa-brands {
  color: var(--white-color);
}

.footer-main__top__inner__link ul {
  line-height: 1.34;
  margin: 0;
}

.footer-main__top__inner__link ul li {
  margin: 0 0 15px 0;
}

.footer-main__top__inner__link ul li a {
  color: #999999;
  transition: all 0.5s ease;
}

.footer-main__top__inner__link ul li a:hover {
  color: var(--white-color);
}

.latest-news__inner {
  display: flex;
}

.artical {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.latest-news__inner-image img {
  max-width: 75px;
  margin-right: 20px;
}

.latest-news__inner-text a {
  display: block;
  color: #999999;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 5px;
  transition: all 0.5s ease;
}

.latest-news__inner-text a:hover {
  color: var(--icon-color);
}

.latest-news__inner-text .link a {
  color: var(--icon-color);
  font-size: 13px;
  font-family: "Roboto Slab";
}

.latest-news__inner-text .link a .fa-solid {
  font-size: 14px;
  color: var(--icon-color);
  margin-right: 3px;
}

.footer-main__top__inner__link form {
  margin-top: 20px;
}

.form-group {
  position: relative;
}

.form-group input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 26px;
  padding: 11px 50px 11px 15px;
  background: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.btn-submit .fa-solid {
  color: var(--white-color);
  font-size: 20px;
}

.form-group .btn-submit {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  font-size: 20px;
  color: var(--white-color);
  background: var(--icon-color);
  border-radius: 0px 5px 5px 0px;
  padding: 0;
}

.form-group .btn-submit:hover {
  background-color: #888888;
}

.footer-main__bottom {
  background-color: #181818;
  padding: 23px 0;
  font-size: 13px;
}

.footer-main__bottom__inner {
  display: flex;
  justify-content: space-between;
}

.footer-main__bottom__inner__text p {
  margin-bottom: 0;
  line-height: 22px;
}

.footer-main__bottom__inner__link ul {
  margin: 0;
  display: flex;
}

.footer-main__bottom__inner__link ul li {
  margin-left: 25px;
}

.footer-main__bottom__inner__link ul li a {
  color: #b3b3b3;
  transition: all 0.5s ease;
}

.footer-main__bottom__inner__link ul li a:hover {
  color: var(--icon-color);
}
/** END OF : Footer **/

/** START OF : contact page **/
.sec-contact {
  position: relative;
  padding: 130px 0;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sec-contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--black-color);
  left: 0;
  top: 0;
  opacity: 0.7;
}

.contact {
  position: relative;
  text-align: center;
}

.font-size h2 {
  font-size: 18px;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.font-size h2::before,
.font-size h2::after {
  width: 20px;
}

.font-size h2::after {
  left: 22px;
}

.page-title h2 {
  font-size: 48px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-title-link ul {
  display: flex;
  justify-content: center;
  margin: 0;
}

.page-title-link ul li {
  color: var(--white-color);
  margin: 0;
  font-family: "Roboto Slab";
}

.page-title-link ul li a {
  position: relative;
  color: var(--white-color);
  margin-right: 24px;
}

.page-title-link ul li:last-child a {
  margin-right: 0;
}

.page-title-link ul li a::after {
  content: "/";
  position: absolute;
  right: -16px;
}

.page-title-link ul li:last-child a::after {
  display: none;
}

.page-title-link ul li a:hover {
  color: var(--icon-color);
}

.contact-section .form .form-group__info:last-child .form-group {
  margin-bottom: 0;
}

.message {
  height: 100%;
}

.contact-section .form {
  padding: 0 0 0 0;
}

.contact-btn {
  background-color: var(--icon-color);
  border: 2px solid var(--icon-color);
  font-size: 13px;
  text-transform: capitalize;
  border-radius: 3px;
  margin-top: 30px;
}

.contact-btn:hover {
  background-color: var(--white-color);
  color: var(--icon-color);
}

.contact-section-text p {
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 30px;
  margin-top: -5px;
}

.contact-section-icons ul,
.contact-section-icons ul li {
  margin: 0;
}

.contact-section-icons ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-section-icons ul li:hover .fa-solid {
  background-color: var(--icon-color);
  color: var(--white-color);
}

.contact-section-icons .fa-solid {
  font-size: 13px;
  color: var(--icon-color);
  width: 32px;
  height: 32px;
  border: 2px solid var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 18px;
}

.google-map {
  height: 430px;
}

iframe {
  width: 100%;
  height: 100%;
}
/** END OF : contact page **/

/** START OF : Team Slider page **/
.team__contant {
  text-align: center;
  margin-bottom: 50px;
}

.image-social-icon {
  position: relative;
  overflow: hidden;
}

.team-image {
  padding-top: 40px;
  background-color: #fafafa;
}

.team-text {
  margin-top: 22px;
}

.team-text h6 {
  margin: 0;
  font-size: 16px;
}

.team-text h6 a {
  color: #222222;
  line-height: 1.5;
}

.team-text h6 a:hover {
  color: var(--icon-color);
}

.team-social-icon ul,
.team-social-icon ul li {
  margin: 0;
}

.team-social-icon ul {
  display: flex;
}

.team-social-icon ul li {
  margin: 0 4px;
}

.team-social-icon ul li a {
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid var(--white-color);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-social-icon ul li a:hover {
  background-color: var(--icon-color);
  border-color: var(--icon-color);
}

.team-social-icon ul li a .fa-brands {
  color: var(--white-color);
  transition: 0s;
}

.team-social-icon ul li a:hover .fa-brands {
  color: #1a3761;
}

.team-social-icon {
  position: relative;
  overflow: hidden;
}

.team-social-icon__inner {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.7s ease;
}

.team-social-icon__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--black-color);
  left: 0;
  top: 0;
  opacity: 0.6;
}

.team__contant:hover .team-social-icon__inner,
.team__contant:hover .team-social-icon__inner::after {
  top: 0;
}

.team__contant:hover .team-social-icon {
  position: initial;
  overflow: visible;
}

.team-social-icon ul {
  position: relative;
  z-index: 99;
}

/** END OF : Team Slider page **/

/** START OF : Faqs **/
.sec-faqs {
  background-color: var(--bg-color);
  padding: 100px 0;
}

.faqs-textarea {
  height: 150px;
}
/* END OF : Faqs */

/** START OF : 404 **/
.page {
  padding: 100px 0;
  text-align: center;
}

.page h1 {
  color: var(--icon-color);
  font-size: 150px;
  text-shadow: 3px 2px 2px rgb(0 0 0);
}

.page h2 {
  color: #1c1c1c;
  margin-bottom: 30px;
}

.page p {
  position: relative;
  margin: 0 auto;
  max-width: 380px;
}
/** END OF : 404 **/

/** START OF : Blog Class **/
.sec-blog-class {
  background-color: var(--bg-color);
  padding: 100px 0;
}

.blogclass .news__image img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
}

.blogclass .news__contant__inner {
  padding: 16px;
  min-height: 362px;
  position: relative;
}

.blogclass .news__link ul {
  flex-wrap: wrap;
}

.blogclass .news__heading-text h6 a {
  font-weight: 700;
}

.blog-form form input[type="text"] {
  height: 50px;
  padding: 15px 20px;
}
.blog-form form .search-btn {
  width: 50px;
  height: 50px;
  background-color: var(--icon-color);
}

.blog-form form .search-btn .fa-solid {
  color: var(--white-color);
}

.category__link ul,
.category__link ul li {
  margin: 0;
}

.category__link ul li {
  display: flex;
  justify-content: space-between;
  line-height: 2.5;
  margin-bottom: 5px;
}

.category__link ul li a {
  width: 100%;
  color: var(--link-color);
  transition: all 0.3s ease;
}

.category__link ul li a span {
  color: var(--link-color);
}

.category__link ul li :hover {
  color: var(--icon-color);
}

.category__link ul li span:hover {
  color: var(--link-color);
}

.recent .latest-news__inner {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}

.recent .latest-news__inner:last-child {
  padding: 0;
  margin: 0;
  border: 0;
}

.recent .latest-news__inner-text a {
  color: #222222;
  font-weight: 400;
}

.recent .latest-news__inner-text a:hover {
  color: var(--icon-color);
}

.recent .link a {
  font-size: 14px;
  color: var(--text-color);
}

.recent .link a:hover {
  color: var(--text-color);
}

.tags__pages a {
  display: inline-block;
  width: auto;
  height: 44px;
  padding: 8px 22px;
  margin: 0 5px 10px 0;
  color: var(--link-color);
  background-color: var(--white-color);
  border: 2px solid #f4f4f4;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.tags__pages a:hover {
  color: var(--white-color);
  border-color: var(--icon-color);
  background-color: var(--icon-color);
}
/** END OF : Blog Class **/

/** START OF : Blog Details **/
.blogdetail .news__image img {
  max-height: 100%;
}

.blogdetail .news__heading-text h6 a {
  height: auto;
}

.blogdetail .news__image::before {
  display: none;
}
/** END OF : Blog Details **/

/** START OF : Project **/
.sec-projects {
  padding: 100px 0;
}

.sec-projects ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sec-projects ul li {
  position: relative;
  cursor: pointer;
  font-size: 18px;
  margin: 0 16px;
  font-family: "Roboto Slab";
}

.sec-projects ul li span {
  display: block;
  height: 44px;
}

.sec-projects ul li span::before {
  content: "";
  position: absolute;
  width: 0%;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--icon-color);
  transition: all 0.5s ease;
}

.sec-projects ul li:hover span::before {
  width: 100%;
  transition: all 0.5s ease;
}

.sec-projects .active {
  color: var(--icon-color);
}

.sec-projects .active span::before {
  width: 100%;
}

/* .grid .col-md-4 {
  width: 100%;
  flex: 100%;
  max-width: 100%;
  min-height: 0;
} */

.grid-item {
  /*margin-bottom: 15px;*/
  /* left: 0 !important; */
}

.grid-item img {
  object-fit: cover;
  width: 370px;
  height: 250px;
}

.grid .fancy-box {
  overflow: hidden;
  display: block;
  position: relative;
}
/** END OF : Project **/

/** START OF : Search Page **/
.search input[type="text"] {
  font-size: 20px;
  height: 60px;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
}

.search .form-group {
  margin-bottom: 32px;
}

.search .form-group .btn-submit {
  width: auto;
  height: 60px;
  padding: 0 20px;
}

.search-pages {
  border-top: 1px dashed #cdcdcd;
}

.search-page__inner {
  padding: 20px 0px;
  border-bottom: 1px dashed #cdcdcd;
}

.search-page__inner h2 {
  color: #000;
  font-weight: 400;
  margin-bottom: 6px;
}

.search-page__inner a {
  font-size: 20px;
}
/** END OF : Search Page **/


/*COLOR CHANGER*/

.color-changer-box {
  position: fixed;
  right: 0px;
  top: 85px;
  max-width: 165px;
  display: flex;
  flex-wrap: wrap;
  -webkit-transform: translateX(115px);
  -moz-transform: translateX(115px);
  -ms-transform: translateX(115px);
  -o-transform: translateX(115px);
  transform: translateX(115px);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 999;
}

.color-changer-box.box-open{
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.click-open-setting {
  font-size: 20px;
  cursor: pointer;
  background-color: var(--white-color);
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  -ms-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  -o-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}

.click-open-setting i{
  line-height: 52px;
  display: block;
  font-size: 20px;
}

.switcher span{
  margin-bottom: 7px;
  display: block;
  font-family: "Roboto Slab";
  font-weight: 700;
  letter-spacing: 1px;
}

.switcher{
  width: 115px;
  background-color: var(--white-color);
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  -ms-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  -o-box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
  padding: 10px;
}

.switcher-color{
  width: 35px;
  height: 25px;
  padding: 0 5px;
  margin: 2.5px 0;
}

.switcher-color a{
  display: block;
  height: 25px;
  width: 25px;
}

.switcher-row{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.red a{
  background-color: var(--red-color);
}

.sky-blue a{
  background-color: var(--sky-blue);
}

.lighten-green a{
  background-color: var(--lighten-green);
}

.orange a{
  background-color: var(--orange-color);
}

.purpal a{
  background-color: var(--purpal-color);
}

.green a{
  background-color: var(--green-color);
}



/** START OF : About Page **/
.sec-about {
  padding: 100px 0;
}

.about-content {
  padding-left: 20px;
}

.about-icon-heading {
  margin-top: 30px;
}

.about-content h6 {
  font-weight: 400;
  color: #222222;
}

.about-content .title-left h2 {
  margin-bottom: 25px;
}

.about-icon {
  width: 70px;
  text-align: center;
}

.about-icon i {
  font-size: 28px;
}

.about-icon-heading__inner {
  display: flex;
  margin-bottom: 20px;
}

.heading-text h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}
/** END OF : About Page **/
.hidden{
  display: none;
}