﻿@import url("../css2-1");
@import url("../css2-2");

/*******************************/
/********* General CSS *********/
/*******************************/
*,
*::before,
*::after {
   -webkit-box-sizing: border-box;
   scroll-behavior: smooth;
   box-sizing: border-box;
}

::-webkit-scrollbar {
   width: 8px;
   height: 1px;
}

::-webkit-scrollbar-track {
   background: transparent;
}

::-webkit-scrollbar-thumb {
   background: linear-gradient(to bottom, transparent 0%, #1c1f81 95%);
   border-radius: 0 0 20px 20px;
   transition: 2s linear;
}

html {
   font-family: sans-serif;
   line-height: 1.15;
   -webkit-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
   -ms-overflow-style: scrollbar;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
   color: #797979;
   background: #ffffff;
   font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   color: white;
}

a {
   color: #313131;
   transition: 0.3s;
   -webkit-text-decoration-skip: objects;
   -webkit-transition: 0.3s;
}

a:hover,
a:active,
a:focus {
   color: #1c1f81;
   outline: none;
   text-decoration: none;
}

.btn:focus,
.form-control:focus {
   box-shadow: none;
   -webkit-box-shadow: none;
}

.container-fluid {
   max-width: 1366px;
}

.btn {
   padding: 12px 25px;
   font-size: 14px;
   font-weight: 600;
   letter-spacing: 1px;
   color: #ffffff;
   background: #1c1f81;
   border: 2px solid transparent;
   border-radius: 0;
   box-shadow: inset 0 0 0 50px #1c1f81;
   transition: ease-out 0.3s;
   -webkit-transition: ease-out 0.3s;
   -moz-transition: ease-out 0.3s;
}

.btn:hover {
   color: #1c1f81;
   background: transparent;
   box-shadow: inset 0 0 0 0 #1c1f81;
   border-color: #1c1f81;
}

#loader {
   position: fixed;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #ffffff;
   opacity: 0;
   visibility: hidden;
   -webkit-transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
   -o-transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
   transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
   z-index: 999;
}

#loader.show {
   -webkit-transition: opacity 0.6s ease-out, visibility 0s linear 0s;
   -o-transition: opacity 0.6s ease-out, visibility 0s linear 0s;
   transition: opacity 0.6s ease-out, visibility 0s linear 0s;
   visibility: visible;
   opacity: 1;
}

#loader .loader {
   position: relative;
   width: 45px;
   height: 45px;
   border: 5px solid #dddddd;
   border-top: 5px solid #1c1f81;
   border-radius: 50%;
   -webkit-animation: spin 2s linear infinite;
   animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
   0% {
      -webkit-transform: rotate(0deg);
   }
   100% {
      -webkit-transform: rotate(360deg);
   }
}

@keyframes spin {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

.back-to-top {
   position: fixed;
   /* display: none; */
   /* width: 45px;
   height: 45px;
   padding: 10px 0;
   text-align: center;
   line-height: 1; */
   font-size: 32px;
   right: 15px;
   bottom: 25px;
   z-index: 9;
   display: flex;
   justify-content: center;
   align-items: center;

   width: 65px;
   height: 90px;
   border-radius: 80%;
   background-color: #25d366;
   box-shadow: inset -6px -6px 0 rgba(0, 0, 0, 0.15);
   /* box-shadow: 6px 6px 12px #0006; */
   margin: 20px 30px;
   /* transition: 0.5s ease; */
   transition: all 0.5s;
   z-index: 7;

   animation: balloon 8s ease-in-out infinite;
}
.back-to-top:hover {
   border-color: #25d366;
   box-shadow: 6px 6px 12px #0004;
}

.back-to-top:before {
   content: "▲";
   font-size: 20px;
   color: #25d366;
   display: block;
   text-align: center;
   width: 100%;
   position: absolute;
   bottom: -15px;
   z-index: -100;
   transition: opacity 1s ease-in-out;
}

.back-to-top::after {
   display: block;
   bottom: -56px;
   position: fixed;
   height: 50px;
   width: 2px;
   z-index: 0;
   /* right: 75px; */
   content: "";
   background: rgba(0, 0, 0, 0.3);
   /* box-shadow: inset -10px -10px 0 rgba(0, 0, 0, 0.07); */
}

@keyframes balloon {
   0% {
      transform: translateY(0);
   }
   25% {
      transform: translateY(-15px) translateX(5px);
   }
   75% {
      transform: translateY(-25px) translateX(-10px);
   }
   90% {
      transform: translateY(-5px) translateX(-5px);
   }
   100% {
      transform: translateY(0);
   }
}

.back-to-top i {
   color: #ffffff;
}

.back-to-top:hover i {
   color: #25d366;
}

@media (max-width: 567px) {
   .back-to-top {
      width: 45px;
      height: 70px;
      font-size: 18px;
      right: 0px;
      bottom: 20px;
      margin: 20px 0px;
   }
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
   position: relative;
   transition: 0.5s;
   z-index: 999;
}

.navbar.nav-sticky {
   position: fixed;
   top: 0;
   width: 100%;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
   -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar .navbar-brand {
   margin: 0;
   font-size: 30px;
   line-height: 0px;
   font-weight: 600;
   letter-spacing: 0px;
   transition: 0.5s;
   /* display: flex; */
   align-items: center;
}

.navbar .navbar-brand .v-text {
   writing-mode: tb-rl;
   -webkit-transform: rotate(180deg);
   -moz-transform: rotate(180deg);
   -o-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
   transform: rotate(180deg);

   margin-left: 4px;
   font-size: 16px;
   /* font-weight: 500; */
   color: #1c1f81;
}

.navbar .navbar-brand img {
   max-width: 100%;
   max-height: 40px;
}

.navbar .dropdown-menu {
   margin-top: 0;
   border: 0;
   border-radius: 0;
   background: #f8f9fa;
}

@media (min-width: 992px) {
   .navbar {
      position: absolute;
      width: 100%;
      padding: 20px 50px;
      background: transparent !important;
      z-index: 9;
   }

   .navbar.nav-sticky {
      padding: 10px 60px;
      background: #ffffff !important;
   }

   .navbar .navbar-brand {
      color: #000;
   }

   .navbar.nav-sticky .navbar-brand {
      color: #1c1f81;
   }
   .navbar.nav-sticky .navbar-brand .v-text {
      color: #000;
   }

   .navbar-light .navbar-nav .nav-link,
   .navbar-light .navbar-nav .nav-link:focus {
      padding: 10px 10px 8px 10px;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
   }

   .navbar-light.nav-sticky .navbar-nav .nav-link,
   .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
      color: #000;
   }

   .navbar-light .navbar-nav .nav-link:hover,
   .navbar-light .navbar-nav .nav-link.active {
      color: #1c1f81;
   }

   .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
   .navbar-light.nav-sticky .navbar-nav .nav-link.active {
      color: #1c1f81;
   }
}

@media (max-width: 991.98px) {
   .navbar {
      padding: 15px;
      background: #ffffff !important;
   }

   .navbar .navbar-brand {
      color: #000;
   }

   .navbar .navbar-nav {
      margin-top: 15px;
   }

   .navbar a.nav-link {
      padding: 5px;
   }

   .navbar .dropdown-menu {
      box-shadow: none;
      -webkit-box-shadow: none;
   }
}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
   position: relative;
   width: 100%;
   margin-bottom: 45px;
   padding: 100px 0 0 0;
   overflow: hidden;
   background: url(../img/hero-bg1.webp);
   background-position: center left;
   background-repeat: no-repeat;
   background-size: 100% 100%;
}

.hero .container-fluid {
   padding: 0;
}

.hero .hero-image {
   position: relative;
   text-align: right;
   padding-right: 75px;
}

.hero .hero-image img {
   max-width: 80%;
   max-height: 80%;
}

.hero .hero-content {
   position: relative;
   padding-left: 75px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   align-items: flex-start;
   justify-content: center;
   flex-direction: column;
}

.hero .hero-text p {
   color: #222;
   font-size: 25px;
   font-weight: 600;
   margin-top: 20px;
   margin-bottom: 5px;
}

.hero .hero-text h1 {
   color: #333;
   font-size: 50px;
   font-weight: 700;
   letter-spacing: 3px;
   margin-bottom: 15px;
}

.hero .hero-text h2 {
   display: inline-block;
   margin: 0;
   height: 35px;
   color: #444;
   font-size: 35px;
   font-weight: 500;
}

.hero .hero-text .typed-text {
   display: none;
}

.hero .hero-text .typed-cursor {
   font-size: 38px;
   font-weight: 300;
   color: #1c1f81;
}

.hero .hero-btn .btn {
   margin: 35px 0px;
   color: #1c1f81;
   background: #ffffff;
   box-shadow: inset 0 0 0 50px #ffffff;
   border-radius: 25px;
}

.hero .hero-btn .btn:hover {
   color: #000;
   background: transparent;
   box-shadow: inset 0 0 0 0 #ffffff;
   border-color: #000;
   border-radius: 8px;
}

.hero .hero-btn .btn:first-child {
   margin-right: 10px;
}

@media (max-width: 991.98px) {
   .hero {
      padding-top: 60px;
   }

   .hero .hero-content {
      padding: 0 15px;
   }

   .hero .hero-text p {
      font-size: 20px;
   }

   .hero .hero-text h1 {
      font-size: 45px;
   }

   .hero .hero-text h2 {
      font-size: 25px;
      height: 25px;
   }

   .hero .hero-btn .btn {
      padding: 12px 30px;
      letter-spacing: 1px;
   }
}

@media (max-width: 767.98px) {
   .hero {
      padding-top: 60px;
      padding-bottom: 60px;
   }

   .hero,
   .hero .hero-text,
   .hero .hero-btn {
      width: 100%;
      text-align: center;
   }

   .hero .hero-text p {
      font-size: 18px;
   }

   .hero .hero-text h1 {
      font-size: 35px;
   }

   .hero .hero-text h2 {
      font-size: 22px;
      height: 22px;
   }

   .hero .hero-btn .btn {
      padding: 10px 15px;
      letter-spacing: 1px;
   }
}

@media (max-width: 575.98px) {
   .navbar {
      padding: 0px 15px 5px;
      /* height: 60px; */
   }
   .navbar-toggler {
      font-size: 1.2rem;
   }
   .hero .hero-text p {
      font-size: 16px;
   }
   .navbar .navbar-brand {
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 0px;
      padding: 10px 10px 4px;
   }

   .hero .hero-text h1 {
      font-size: 28px;
      font-weight: 500;
      letter-spacing: 1.4px;
      margin-bottom: 4px;
   }
   .hero .hero-text .typed-cursor {
      font-size: 30px;
      font-weight: 300;
      color: #000;
   }

   .hero .hero-text h2 {
      font-size: 18px;
      height: 18px;
   }

   .hero .hero-btn .btn {
      padding: 8px 10px;
      letter-spacing: 0;
   }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
   position: relative;
   margin: 40px 0;
}

.section-header p {
   display: inline-block;
   margin: 0 30px;
   margin-bottom: 10px;
   padding-left: 15px;
   position: relative;
   font-size: 16px;
   font-weight: 600;
   letter-spacing: 1px;
   text-transform: uppercase;
   background: #ffffff;
}

.section-header p::before {
   position: absolute;
   content: "";
   height: 3px;
   top: 11px;
   right: 0;
   left: -30px;
   background: #1c1f81;
   z-index: -1;
}

.section-header p::after {
   position: absolute;
   content: "";
   width: 3px;
   height: 3px;
   top: 11px;
   left: 3px;
   background: #1c1f81;
   z-index: 1;
}

.section-header h2 {
   margin: 0;
   position: relative;
   font-size: 45px;
   font-weight: 700;
}

@media (max-width: 767.98px) {
   .section-header h2 {
      font-size: 30px;
      font-weight: 600;
   }
   .section-header p {
      font-size: 14px;
      font-weight: 500;
   }
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
   position: relative;
   width: 100%;
   margin: -45px 0 45px 0;
}

.about .col-lg-6 {
   padding: 0;
}

.about .section-header {
   margin-bottom: 30px;
}

.about .about-img {
   position: relative;
   height: 80%;
}

.about .about-img img {
   position: relative;
   width: 96%;
   height: 80%;
   object-fit: cover;
}

.about .about-content {
   padding: 0 50px;
}

.about .about-text {
   font-size: 16px;
   color: #222;
   font-weight: 400;
}

.about .about-text {
   position: relative;
   display: block;
}

.about .about-text ul {
   padding-inline-start: 20px;
   margin-top: 20px;
}

.about .about-text ul li {
   /* display: inline-block; */
   word-wrap: break-word;
   float: left;
   width: 50%;
   font-size: 13px;
   margin-bottom: 12px;
   font-weight: 500;
}

.about .skills {
   margin-bottom: 30px;
}

.about .skill-name {
   margin-top: 15px;
}

.about .skill-name p {
   display: inline-block;
   margin-bottom: 5px;
   font-size: 16px;
   font-weight: 400;
}

.about .skill-name p:last-child {
   float: right;
}

.about .progress {
   height: 10px;
   border-radius: 10px;
   background: #dddddd;
}

.about .progress .progress-bar {
   width: 0px;
   background: #1c1f81;
   border-radius: 10px;
   transition: 2s;
   -webkit-transition: 2s;
   -o-transition: 2s;
}

.about .about-text a.btn {
   margin-top: 15px;
}

@media (max-width: 567px) {
   .about .about-text ul {
      padding-inline: 0px;
      margin-top: 10px;
   }
   .about .about-text {
      font-size: 15px;
      font-weight: 400;
   }

   .about .about-content {
      padding: 30px 0px 0 10px;
   }
}

/*******************************/
/******* Experience CSS ********/
/*******************************/
.experience {
   position: relative;
   padding: 45px 0 15px 0;
}

.experience .timeline {
   position: relative;
   width: 100%;
}

.experience .timeline::after {
   content: "";
   position: absolute;
   width: 2px;
   background: #1c1f81;
   top: 0;
   bottom: 0;
   left: 50%;
   margin-left: -1px;
}

.experience .timeline .timeline-item {
   position: relative;
   background: inherit;
   width: 50%;
   margin-bottom: 30px;
}

.experience .timeline .timeline-item.left {
   left: 0;
   padding-right: 30px;
}

.experience .timeline .timeline-item.right {
   left: 50%;
   padding-left: 30px;
}

.experience .timeline .timeline-item::after {
   content: "";
   position: absolute;
   width: 16px;
   height: 16px;
   top: 48px;
   right: -8px;
   background: #ffffff;
   border: 2px solid #1c1f81;
   border-radius: 16px;
   z-index: 1;
}

.experience .timeline .timeline-item.right::after {
   left: -8px;
}

.experience .timeline .timeline-item::before {
   content: "";
   position: absolute;
   width: 0;
   height: 0;
   top: 46px;
   right: 10px;
   z-index: 1;
   border: 10px solid;
   border-color: transparent transparent transparent #dddddd;
}

.experience .timeline .timeline-item.right::before {
   left: 10px;
   border-color: transparent #dddddd transparent transparent;
}

.experience .timeline .timeline-date {
   position: absolute;
   width: 100%;
   top: 44px;
   font-size: 16px;
   font-weight: 600;
   color: #1c1f81;
   text-transform: uppercase;
   letter-spacing: 1px;
   z-index: 1;
}

.experience .timeline .timeline-item.left .timeline-date {
   text-align: left;
   left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
   text-align: right;
   right: calc(100% + 55px);
}

.experience .timeline .timeline-text {
   padding: 10px;
   background: #ffffff;
   position: relative;
   border-right: 5px solid #dddddd;
   box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
   -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
}

.experience .timeline .timeline-text img {
   /* width: 100%; */
   height: 50%;
   width: 48%;
}

.experience .timeline .timeline-item.right .timeline-text {
   border-right: none;
   border-left: 5px solid #dddddd;
}

.experience .timeline .timeline-text h2 {
   margin: 0 0 5px 0;
   font-size: 22px;
   font-weight: 600;
}

.experience .timeline .timeline-text h4 {
   margin: 0 0 10px 0;
   font-size: 16px;
   font-style: italic;
   font-weight: 400;
}

.experience .timeline .timeline-text p {
   margin: 0;
   font-size: 16px;
}

@media (max-width: 767.98px) {
   .experience .timeline::after {
      left: 8px;
   }

   .experience .timeline .timeline-item {
      width: 100%;
      padding-left: 34px;
      margin-bottom: 20px;
   }

   .experience .timeline .timeline-item.left {
      padding-right: 0;
   }

   .experience .timeline .timeline-item.right {
      left: 0%;
      padding-left: 38px;
   }

   .experience .timeline .timeline-item.left::after,
   .experience .timeline .timeline-item.right::after {
      left: 0;
   }

   .experience .timeline .timeline-item.left::before,
   .experience .timeline .timeline-item.right::before {
      left: 18px;
      border-color: transparent #dddddd transparent transparent;
   }

   .experience .timeline .timeline-item.left .timeline-date,
   .experience .timeline .timeline-item.right .timeline-date {
      position: relative;
      top: 0;
      right: auto;
      left: 0;
      text-align: left;
      margin-bottom: 10px;
   }

   .experience .timeline .timeline-item.left .timeline-text,
   .experience .timeline .timeline-item.right .timeline-text {
      border-right: none;
      border-left: 5px solid #dddddd;
   }
}
@media (max-width: 567px) {
   .experience .timeline .timeline-text {
      padding: 8px 0 0 6px;
      text-align: center;
   }
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
   position: relative;
   width: 100%;
   padding: 5px 0;
}

.service .service-item {
   position: relative;
   margin-bottom: 20px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   align-items: center;
   box-shadow: inset 0 0 0 0 transparent;
   transition: ease-out 0.3s;
}

.service .service-item:hover {
   box-shadow: inset 800px 0 0 0 #1c1f81;
}

.service .service-icon {
   position: relative;
   width: 120px;
   min-height: 120px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 1px solid #1c1f81;
   background: #ffffff;
}

.service .service-icon i,
.service-icon img {
   position: relative;
   font-size: 50px;
   color: #000;
   transition: 0.4s;
}

.service .service-item:hover img {
   transform: scale(1.2);
}

.service .service-item:hover i {
   font-size: 60px;
}

.service .service-text {
   position: relative;
   width: calc(100% - 120px);
   padding: 0 30px;
}

.service .service-text h3 {
   margin-bottom: 10px;
   font-size: 20px;
   font-weight: 600;
   transition: none;
}

.service .service-text p {
   margin: 0;
   font-size: 16px;
   transition: none;
   color: #555;
}

.service .service-item:hover .service-text h3,
.service .service-item:hover .service-text p {
   color: #ffffff;
}

@media (max-width: 575.98px) {
   .service .service-icon {
      width: 80px;
      min-height: 90px;
   }

   .service .service-icon i {
      font-size: 44px;
   }
   .service .service-icon img {
      width: 54px;
   }
   .service .service-text {
      width: calc(100% - 80px);
      padding: 0px 0px 0px 15px;
   }

   .service .service-text h3 {
      font-size: 16px;
      margin-bottom: 5px;
      font-weight: 500;
   }

   .service .service-text p {
      font-size: 14px;
   }
}

/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
   position: relative;
   padding: 30px 0 15px 0;
}

.portfolio #portfolio-filter {
   padding: 0;
   margin: -15px 0 25px 0;
   list-style: none;
   font-size: 0;
   text-align: center;
}

.portfolio #portfolio-filter li {
   cursor: pointer;
   display: inline-block;
   margin: 5px;
   padding: 6px 12px;
   font-size: 14px;
   font-weight: 600;
   color: #ffffff;
   background: #1c1f81;
   border: 2px solid transparent;
   border-radius: 6px;
   box-shadow: inset 0 0 0 50px #1c1f81;
   transition: ease-out 0.3s;
   -webkit-transition: ease-out 0.3s;
   -moz-transition: ease-out 0.3s;
}

.portfolio #portfolio-filter li:hover,
.portfolio #portfolio-filter li.filter-active {
   color: #1c1f81;
   background: transparent;
   box-shadow: inset 0 0 0 0 #1c1f81;
   border-color: #1c1f81;
}

.portfolio .portfolio-item {
   position: relative;
   padding: 10px;
   margin: 0px;
   border-radius: 10px;
}

.portfolio .portfolio-wrap {
   position: relative;
   width: 100%;
}

.portfolio .portfolio-img {
   position: relative;
   overflow: hidden;
   border-radius: 10px;
}

.portfolio .portfolio-img img {
   position: relative;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: 0.5s;
}

.portfolio .portfolio-item:hover img {
   transform: scale(1.3);
}

.portfolio .portfolio-text {
   position: relative;
   height: 60px;
   width: calc(100% - 30px);
   margin: -30px 15px 30px 15px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   align-items: center;
   background: #ffffff;
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
   -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
}

.portfolio .portfolio-text h3 {
   width: calc(100% - 70px);
   font-size: 18px;
   font-weight: 600;
   margin: 0 0 0 15px;
   white-space: nowrap;
   overflow: hidden;
}

.portfolio .portfolio-text a.btn {
   width: 50px;
   height: 50px;
   padding: 0 0 2px 1px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 45px;
   font-weight: 100;
}

.portfolio-container {
   justify-content: center;
   margin: auto;
   align-items: center;
}

@media (max-width: 575.98px) {
   .portfolio {
      padding: 16px 0 5px 0;
   }
   .portfolio .container {
      padding-inline: 5px;
   }
}

/*******************************/
/********* Banner CSS **********/
/*******************************/
.banner {
   position: relative;
   width: 100%;
   margin: 20px 0;
   padding: 20px 0;
   background: #1c1f81;
}

.banner .container {
   max-width: 750px;
   text-align: center;
}

.banner .section-header {
   margin-bottom: 20px;
}

.banner .section-header p {
   color: white;
   background: transparent;
}

.banner .section-header p::after {
   display: none;
}

.banner .section-header h2 {
   color: #ffffff;
}

.banner .section-header h2 span {
   color: #d3a2a2;
   /* font-size: 50px; */
}

.banner .banner-text p {
   font-size: 16px;
   color: #ffffff;
}

.banner .banner-text .btn {
   margin-top: 15px;
   color: #1c1f81;
   background: #ffffff;
   border-radius: 10px;
   box-shadow: inset 0 0 0 50px #ffffff;
}

.banner .banner-text .btn:hover {
   color: #ffffff;
   background: transparent;
   box-shadow: inset 0 0 0 0 #ffffff;
   border-color: #ffffff;
}

/*******************************/
/********* Pricing CSS *********/
/*******************************/
.price {
   position: relative;
   width: 100%;
   padding: 45px 0 15px 0;
}

.price .row {
   padding: 0 15px;
}

.price .col-md-4 {
   padding: 0;
}

.price .price-item {
   position: relative;
   margin-bottom: 30px;
   background: #ffffff;
}

.price .featured-item {
   box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
   -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
   z-index: 1;
}

.price .price-header,
.price .price-body,
.price .price-footer {
   position: relative;
   text-align: center;
}

.price .price-header {
   padding: 30px 0 20px 0;
   color: #414141;
}

.price .price-item.featured-item .price-header {
   color: #1c1f81;
}

.price .price-title h2 {
   font-size: 25px;
   font-weight: 400;
   text-transform: uppercase;
}

.price .price-prices h2 {
   font-size: 45px;
   font-weight: 700;
   margin-left: 10px;
}

.price .price-prices h2 small {
   position: absolute;
   font-size: 18px;
   font-weight: 400;
   margin-top: 9px;
   margin-left: -12px;
}

.price .price-prices h2 span {
   margin-left: 1px;
   font-size: 18px;
   font-weight: 400;
}

.price .price-item.featured-item h2 {
   color: #1c1f81;
}

/* .price .price-body {
   padding: 0 0 20px 0;
} */

.price .price-description ul {
   margin: 0;
   padding: 0;
   list-style: none;
}

.price .price-description ul li {
   padding: 0 0 20px 0;
}

.price .price-item .price-action {
   padding-bottom: 30px;
}

.price .price-item .price-action .btn {
   color: #ffffff;
   background: #414141;
   box-shadow: inset 0 0 0 50px #414141;
}

.price .price-item .price-action .btn:hover {
   color: #000;
   background: transparent;
   box-shadow: inset 0 0 0 0 #414141;
   border-color: #414141;
}

.price .price-item.featured-item .price-action .btn {
   color: #ffffff;
   background: #1c1f81;
   box-shadow: inset 0 0 0 50px #1c1f81;
}

.price .price-item.featured-item .price-action .btn:hover {
   color: #1c1f81;
   background: transparent;
   box-shadow: inset 0 0 0 0 #1c1f81;
   border-color: #1c1f81;
}

@media (max-width: 575.98px) {
   .price .price-item {
      margin-bottom: 10px;
   }

   .price .price-title h2 {
      font-size: 20px;
   }
   .price .price-prices h2 {
      font-size: 38px;
   }
   .price .price-description ul li {
      padding: 0 0 10px 0;
   }
}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
   position: relative;
   width: 100%;
   padding: 45px 0 15px 0;
}

.team .team-item {
   position: relative;
   background: #ffffff;
   margin-bottom: 30px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   box-shadow: inset 0 0 0 0 transparent;
   transition: ease-out 0.5s;
}

.team .team-img {
   position: relative;
   width: 50%;
   overflow: hidden;
}

.team .team-img img {
   position: relative;
   width: 100%;
   transition: 0.5s;
}

.team .team-text {
   position: relative;
   width: 50%;
   padding: 0 30px;
}

.team .team-text h2 {
   color: #1c1f81;
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 5px;
   transition: 1s;
}

.team .team-text h4 {
   font-size: 14px;
   font-weight: 600;
   margin-bottom: 15px;
   transition: 1s;
}

.team .team-text p {
   margin-bottom: 20px;
   transition: 1s;
}

.team .team-social {
   position: relative;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   align-items: center;
   justify-content: flex-start;
}

.team .team-social a.btn {
   width: 35px;
   height: 35px;
   padding: 0;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   font-weight: normal;
   margin-right: 5px;
}

.team .team-item:hover {
   box-shadow: inset 800px 0 0 0 #1c1f81;
}

.team .team-item:hover .team-img img {
   transform: scale(1.2);
}

.team .team-item:hover .team-text h2,
.team .team-item:hover .team-text h4,
.team .team-item:hover .team-text p {
   color: #ffffff;
}

.team .team-item:hover .team-social a.btn {
   background: #ffffff;
}

.team .team-item:hover .team-social a.btn:hover {
   border-color: #ffffff;
}

@media (max-width: 575.98px) {
   .team .team-text {
      padding: 0 15px;
   }

   .team .team-text h2 {
      font-size: 16px;
      margin-bottom: 0;
   }

   .team .team-text h4 {
      margin-bottom: 5px;
   }

   .team .team-text p {
      font-size: 14px;
      line-height: 18px;
      margin-bottom: 10px;
   }
}

/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
   position: relative;
   margin: 30px 0;
   padding: 50px 0 20px;
   /* background: #1c1f81; */
   /* background: linear-gradient(to right, rgba(109, 179, 242, 0.6), rgba(109, 179, 242, 0.9)), url("../img/test-bg.webp");
} url(../img/test-bg.webp) fixed; */
   background-image: linear-gradient(to bottom, #00000088, #ffffffc7), url("../img/test-bg.webp");
   background-attachment: fixed;
   background-size: 100% 100%;
}

.testimonial .container {
   max-width: 900px;
}

.testimonial .testimonial-icon {
   margin-bottom: 25px;
   text-align: center;
}

.testimonial .testimonial-icon i {
   font-size: 36px;
   color: #1c1f81;
   text-decoration: none;
}
.testimonial .testimonial-icon span {
   font-size: 28px;
   color: rgba(256, 256, 256, 1);
   text-decoration: none;
}

.testimonial .testimonial-item {
   position: relative;
   margin: 0 15px;
   text-align: center;
   background-color: #fff;
   border-radius: 100px;

   /* top: 0;
   left: 0;
   right: 0;
   bottom: 0; */
   margin: auto;
   /* padding: 20px; */
   text-align: center;
   /* border: 1px solid #ddd; */
   position: relative;
   width: 100%;
   height: 100%;
}

.testimonial .testimonial-item .test-image {
   background-size: 100% 100%;
   background-repeat: no-repeat;
   height: 230px;
   width: 80%;
   border-radius: 20px;

   margin: auto;
   border: 3px dotted #ffffff;
}

.test-image-1 {
   background: url(../img/test1.png);
}
.test-image-2 {
   background: url(../img/test2.png);
}
.test-image-3 {
   background: url(../img/test3.png);
}
.test-image-4 {
   background: url(../img/test4.png);
}
.test-image-5 {
   background: url(../img/test5.png);
}
.test-image-6 {
   background: url(../img/test6.png);
}

.testimonial .testimonial-img {
   position: relative;
   margin-bottom: 15px;
   z-index: 1;
}

.testimonial .testimonial-item img {
   margin: 0 auto;
   width: 120px;
   padding: 10px;
   border: 5px dotted #ffffff;
   border-radius: 100px;
}

.testimonial .testimonial-text {
   position: relative;
   margin-top: -70px;
   padding: 65px 35px 30px 35px;
   text-align: center;
   background: #ffffff;
   border-radius: 500px;
}

.testimonial .testimonial-item p {
   font-size: 18px;
   font-style: italic;
}

.testimonial .testimonial-text h3 {
   color: #1c1f81;
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 10px;
}

.testimonial .testimonial-text h4 {
   color: #666666;
   font-size: 14px;
   margin-bottom: 0;
}

.testimonial .owl-dots {
   margin-top: 15px;
   text-align: center;
}

.testimonial .owl-dot {
   display: inline-block;
   margin: 0 5px;
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: rgba(256, 256, 256, 0.8);
}

.testimonial .owl-dot.active {
   background: #1c1f81;
   outline-offset: 2px;
   outline: 1px solid #1c1f81;
}

@media (max-width: 767.98px) {
   .testimonial .testimonial-item {
      border-radius: 10px;
   }

   .testimonial .testimonial-item .test-image {
      background-size: 100% 100%;
      width: 100%;
      height: 200px;
   }
}

@media (max-width: 567px) {
   .testimonial {
      margin: 20px 0;
      padding: 30px 0 20px;
      background-size: 100% 100%;
   }

   .testimonial-item .test-image {
      background-size: 100% 100%;
      height: 240px;
   }

   .test-image-1 {
      background: url(../img/test1-mb.png);
   }
   .test-image-2 {
      background: url(../img/test2-mb.png);
   }
   .test-image-3 {
      background: url(../img/test3-mb.png);
   }
   .test-image-4 {
      background: url(../img/test4-mb.png);
   }
   .test-image-5 {
      background: url(../img/test5-mb.png);
   }
   .test-image-6 {
      background: url(../img/test6-mb.png);
   }
}

@media (max-width: 380px) {
   .testimonial-item .test-image {
      height: 250px;
   }
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
   position: relative;
   width: 100%;
   margin: 45px 0;
   background: #1c1f81;
}

.contact .container-fluid {
   background: url(../img/img3.jpg) left center no-repeat;
   background-size: contain;
}

.contact .contact-form {
   position: relative;
   padding: 40px 0 50px 45px;
   background: #1c1f81;
}
.contact .contact-form h4 {
   color: #fff;
   text-align: center;
}

.contact .contact-form input {
   color: #ffffff;
   padding: 15px 0;
   background: none;
   border-radius: 0;
   border: none;
   border-bottom: 1px solid rgba(256, 256, 256, 0.5);
}

.contact .contact-form textarea {
   color: #ffffff;
   height: 90px;
   padding: 15px 0;
   background: none;
   border-radius: 0;
   border: none;
   border-bottom: 1px solid rgba(256, 256, 256, 0.5);
}

.contact .contact-form .form-control::placeholder {
   color: #ffffff;
   opacity: 1;
}

.contact .contact-form .form-control:-ms-input-placeholder,
.contact .contact-form .form-control::-ms-input-placeholder {
   color: #ffffff;
}

.contact .contact-form .btn {
   margin-top: 5px;
   color: #1c1f81;
   background: #ffffff;
   box-shadow: inset 0 0 0 50px #ffffff;
   border-radius: 15px;
}

.contact .contact-form .btn:hover {
   color: #ffffff;
   background: transparent;
   box-shadow: inset 0 0 0 0 #ffffff;
   border-color: #ffffff;
}

.contact .help-block ul {
   margin: 0;
   padding: 0;
   list-style-type: none;
   font-size: 14px;
   font-style: italic;
   color: #ffffff;
}

@media (max-width: 767.98px) {
   .contact .container-fluid {
      background: none;
   }

   .contact .contact-form {
      padding: 40px 0;
   }

   .contact .contact-form .btn {
      padding: 10px 20px;
      font-weight: 500;
   }
}

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
   position: relative;
   width: 100%;
   padding: 45px 0 15px 0;
}

.blog .blog-item {
   position: relative;
   margin-bottom: 30px;
}

.blog .blog-img {
   position: relative;
   width: 100%;
   overflow: hidden;
}

.blog .blog-img img {
   width: 100%;
   transition: 0.5s;
}

.blog .blog-item:hover img {
   transform: scale(1.1);
}

.blog .blog-text {
   position: relative;
   padding: 30px;
   border-right: 1px solid rgba(0, 0, 0, 0.07);
   border-bottom: 1px solid rgba(0, 0, 0, 0.07);
   border-left: 1px solid rgba(0, 0, 0, 0.07);
}

.blog .blog-text h2 {
   font-size: 25px;
   font-weight: 600;
}

.blog .blog-text p {
   margin-bottom: 10px;
}

.blog .blog-item a.btn {
   margin-top: 10px;
   padding: 8px 15px;
}

.blog .blog-item a.btn i {
   margin-left: 5px;
}

.blog .blog-meta {
   position: relative;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   margin-bottom: 15px;
}

.blog .blog-meta p {
   margin: 0 10px 0 0;
   font-size: 13px;
}

.blog .blog-meta i {
   color: #414141;
   margin-right: 5px;
}

.blog .blog-meta p:last-child {
   margin: 0;
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
   position: relative;
   margin-top: 45px;
   background: #1c1f81;
}

.footer .container-fluid {
   padding: 60px 0 0 0;
}

.footer .footer-info {
   position: relative;
   width: 100%;
   text-align: center;
}

.footer .footer-info h2 {
   margin-bottom: 20px;
   font-size: 30px;
   font-weight: 700;
   color: #ffffff;
}

.footer .footer-info h5 {
   margin-bottom: 20px;
   /* font-size: 22px; */
   font-weight: 500;
   color: #ffffff;
}

.footer .footer-menu {
   width: 100%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   color: #fff;
   justify-content: center;
}

.footer .footer-menu p {
   color: #ffffff;
   font-size: 18px;
   font-weight: 500;
   line-height: 20px;
   padding: 0 15px;
   border-right: 1px solid #ffffff;
}

.footer .footer-menu p:last-child {
   border: none;
}

.footer .footer-social {
   position: relative;
   margin-top: 15px;
}

.footer .footer-social a {
   display: inline-block;
}

.footer .footer-menu i {
   /* margin-right: 15px; */
   font-size: 18px;
   color: #ffffff;
   padding: 0 5px;
}

.footer .footer-menu .fa-brands {
   font-size: 20px;
   font-weight: 300;
}

.footer .footer-social a:last-child i {
   margin: 0;
}

.footer .footer-social a:hover i {
   color: #414141;
}

.footer .copyright {
   position: relative;
   text-align: center;
   margin-top: 30px;
   padding-top: 25px;
   padding-bottom: 25px;
}

.footer .copyright::before {
   position: absolute;
   content: "";
   width: 50%;
   height: 1px;
   top: 0;
   left: 25%;
   background: rgba(256, 256, 256, 0.2);
}

.footer .copyright p {
   margin: 0;
   color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
   text-align: right;
}

.footer .copyright p a {
   color: #ffffff;
   font-weight: 600;
}

.footer .copyright p a:hover {
   color: #414141;
}

@media (max-width: 575.98px) {
   .footer .footer-info h2 {
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: 600;
   }

   .footer .footer-info h3 {
      margin-bottom: 20px;
      font-size: 16px;
   }
   .footer .footer-menu i {
      font-size: 16px;
   }

   .footer .footer-menu p {
      font-size: 16px;
      line-height: 16px;
      padding: 0 5px;
   }

   .footer .copyright p {
      font-size: 14px;
   }
}

.w-btn {
   background: #25d366;

   padding: 12px 25px;
   font-size: 14px;
   font-weight: 500;
   letter-spacing: 1px;
   color: #ffffff;
   background: #25d366;
   border-radius: 10px;
   box-shadow: inset 0 0 0 50px #25d366;
   border: 2px solid transparent;
}

.w-btn:hover {
   color: #25d366;
   background: transparent;
   box-shadow: inset 0 0 0 0 #25d366;
   border-color: #25d366;
}

.c-btn {
   border-radius: 10px;
}

.map-sec {
   margin: 10px 10px 25px 0;
   width: 85%;
   background: #fff;
   border: solid 2px #555;
   box-shadow: 12px 12px 0px -2px #fff, 12px 12px #555;
   -webkit-box-shadow: 12px 12px 0px -2px #fff, 12px 12px #555;
}

@media (max-width: 567px) {
   .map-sec {
      width: 100%;
      margin: 10px 6px 0px 0;
      box-shadow: 5px 5px 0px -2px #fff, 5px 5px #555;
      -webkit-box-shadow: 5px 5px 0px -2px #fff, 5px 5px #555;
   }

   .w-btn,
   .c-btn {
      padding: 8px 20px;
      font-weight: 500;
   }
}

.single-info {
   margin-top: 40px;
   margin-left: 20px;
}
.single-info .info-title {
   font-size: 24px;
   font-weight: 700;
   color: #f44336;
   line-height: 1.2;
   margin-bottom: 10px;
}

.single-widget-info .title {
   font-size: 16px;
   font-weight: 600;
   font-family: "Karla", sans-serif;
   color: #333;
   padding-bottom: 4px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 767px) {
   .single-info .info-title {
      font-size: 24px;
   }
}
@media only screen and (max-width: 575px) {
   .single-info {
      margin: 10px 0 20px 10px;
   }
   .single-info .info-title {
      font-size: 20px;
   }
   .single-info p {
      font-size: 14px;
   }
}

.custom-shape1 {
   position: absolute;
   bottom: 150px;
   right: 2%;
   z-index: 2;
}
.custom-shape1 .shape1 {
   height: auto;
   max-width: 100%;
   border: none;
   border-radius: 0;
   -webkit-box-shadow: none;
   box-shadow: none;
   animation: ajeet 6s linear infinite;
}

@keyframes ajeet {
   from {
      transform: translateY(0px);
   }
   50% {
      transform: translateY(26px);
   }
   to {
      transform: translateY(0px);
   }
}

.custom-shape2 {
   position: absolute;
   bottom: 0%;
   left: 50%;
   /* right: 50%; */
   transform: translate(-100%, 0%);
   z-index: 2;
   /* overflow: hidden; */
}
.custom-shape2 .shape2 {
   height: auto;
   width: 200%;
   height: 300px;
   border: none;
   border-radius: 0;
   -webkit-box-shadow: none;
   box-shadow: none;
}

@media (min-width: 992px) {
   .navbar-light .navbar-nav .nav-link.custom-btn {
      color: #fff;
      border-radius: 10px;
   }
   .navbar-light .navbar-nav .nav-link.custom-btn:hover {
      color: #1c1f81;
   }
}
.navbar-light .navbar-nav .nav-link {
   color: #000;
}
.navbar-light .navbar-nav .nav-link.custom-btn {
   color: #fff;
}

/* .float {
   position: fixed;
   width: 55px;
   height: 55px;
   bottom: 45px;
   left: 35px;
   background-color: #25d366;
   color: #fff;
   border-radius: 50px;
   text-align: center;
   font-size: 30px;
   box-shadow: 2px 2px 3px #999;
   z-index: 100;
}
.float:hover {
   color: #000;
}

.my-float {
   margin-top: 14px;
} */

.navbar .nav_call {
   width: auto;
   text-align: center;
   padding: 6px 10px 0px;
}

.navbar .nav_call a {
   color: #1c1f81;
   font-weight: 600;
   font-size: 20px;
   letter-spacing: 1px;
   transition: 0.6s;
   font-family: math;
}
.navbar .nav_call a:hover {
   color: #000;
}

.navbar-collapse {
   /* flex-grow: 1; */
   flex-grow: 0;
}

@media (max-width: 575px) {
   .navbar.nav-sticky {
      height: 60px;
   }
   .section-header {
      margin: 28px 0;
   }

   .hero {
      background-size: 220% 100%;
      background-position: center;
   }

   .custom-shape2 {
      display: none;
   }
   .footer .container-fluid {
      padding: 30px 0 0;
   }
   .footer .footer-menu p {
      font-size: 14px;
   }

   .custom-shape1 {
      position: absolute;
      bottom: 156px;
      right: 0%;
   }

   .custom-shape1 .shape1 {
      max-width: 90%;
   }

   .footer .copyright {
      margin-top: 10px;
      padding-block: 10px;
   }
   .nav-sticky .nav_call {
      display: none;
   }
}

@media (max-width: 400px) {
   .navbar .navbar-brand {
      flex-grow: 1;
      text-align: center;
   }
   .navbar-collapse {
        background-color: white !important;
    }
    .navbar-nav {
        background-color: white !important;
    }
    
    .navbar .nav_call{
        margin-left:90px;
    }
   
   .navbar .nav_call a{
       font-family:math;
   }
   
   container-fluid{
       width:60px;
       height:60px;
   }
}
