body {
  font-family: 'Open Sans', sans-serif;
  color: #444444;
  background-color:#FAFBFF ;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Satisfy", sans-serif;
}

h2 {
  color: #00244D;
  font-weight: 800;
  font-size: 40px;
}

h4 {
  background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
}

p {
  color: #3B3B3B;
}

a:hover {
  color: #ffffff;
}


/*-------------------Header start--------------------------*/

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color:#e2e2e2;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 66px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 8px 10px 8px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: #00244D;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-decoration: none;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #f96f59;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #292B41;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
li.cont-btn {
  background: linear-gradient(135deg, #990066, #330066);
  color: #fff;
  border-radius: 5px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0px 3px 6px #00000012;
  opacity: 1;
  text-decoration: none;
}
li.cont-btn a{
  		background: linear-gradient(135deg, #990066, #330066);

  color: #fff;

}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.7s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #e2e2e2;
    overflow-y: auto;
    transition: 0.7s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #292B41;
    white-space: nowrap;
    transition: 0.7s;
    text-decoration: none;
    border-radius: 5px;
  }
  li.cont-btn {
    		background: linear-gradient(135deg, #990066, #330066);

    color: #fff;
    border-radius: 5px;
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0px 3px 6px #00000012;
    opacity: 1;
    text-decoration: none;
    width: 100px;
    margin-left: 14px;
    list-style: none;
}
li {
  margin-left: 10px;
}
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #292B41;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: #292B41;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color:#292B41;
    border: 1px solid #292B41;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #292B41;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color:#292B41;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: #41414180;
    z-index: 9996;
  }
}
/*---------------------Hero Section start-----------------------*/
#hero {
  width: 100%;
  height: 100%;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
  margin-bottom: 100px;
}
/* .hero-container img {
  width: 100%;
} */
.hero-container .banner-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .hero-container::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
} */

#hero .carousel {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


#hero h2 {
  color: #00244D;
  margin-bottom: 30px;
  font-size: 75px;
  font-weight: 800;
}

#hero p {
  margin: 30px 0px;
  color: #3B3B3B;
  font-size: 20px;
}


#hero .btn-reach {
  display: inline-block;
}

#hero .btn-reach-us {
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  color: #fff;
  border: 1px solid #ffffff;
}

#hero #hero .btn-reach-us:hover {
  background: #ffb03b;
  color: #fff;
}


/*---------------------Hero Section end-----------------------*/


/*---------------------home abouts Section start-----------------------*/

.commen-heading h5 {
  margin-bottom: 20px;
}

.commen-heading h2 {
  margin-bottom: 30px;
}

.common-heading.text-center {
  margin-bottom: 50px;
}

.common-heading {
  margin-bottom: 30px;
}


/*---------Home page abt  service-sec start--------------*/
.abt-img img {
  width: 90%;
}
.abt-sub-sec {
  width: 100%;
  /* padding: 60px 0; */
  margin-bottom: 100px;
  background-color: #ffffff;
  margin-top: 150px;
}
.abt-sec {
  padding: 30px;
}

.abt-sub-icon-box img {
  width: 100%;
}

.abt-sub-sec-heading {
  text-align: center;
  padding-bottom: 30px;
}

.abt-sub-inner-box {
  padding: 20px;
  border-radius: 10px;
  transition: 1s;
}

.abt-sub-icon-box {
  background-color: #F5F5F5;
  width: 93px;
  height: 93px;
  line-height: 25px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.abt-sub-sec h3 {
  font-size: 23px;
  color: #00244D;
  font-weight: 600;
  margin: 20px 0px;
}

.abt-sub-sec p {
  font-size: 16px;
  font-weight: 400;
}

.btn-service {
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
 		background: linear-gradient(135deg, #990066, #330066);

}

.abt-sub-btn {
  margin-top: 40px;
  text-align: center;
}

span.abt-num {
  position: absolute;
  /* top: 36px; */
  right: -120px;
  background: #ffffff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0px 3px 6px #00000029;
}
span.abt-num::before {
  content: "";
  width: 100px;
  height: 4px;
  display: inline-block;
  margin: 0px 0px 0px -100px;
  border-style: dotted;
  border-color: #707070;
  border-width: 2px;
  left: 0ox;
  z-index: 1;
}
a.viewmore-btn {
  background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
  font-size: 16px;
  text-decoration: none;
}
/*---------Home page abt  service-sec end--------------*/


/*---------Home page home-service-sec start--------------*/

.home-service-sec {
  width: 100%;
  margin-bottom: 100px;
  padding: 60px 0;
  background-image: url(../img/service-img.png);
  background-position: center;
  position: relative;
}

.home-service-sec-heading {
  text-align: center;
  padding-bottom: 30px;
  z-index: 10000;
  color: #ffffff;
}

.home-service-sec-inner-box {
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  transition: 1s;
  position: relative;
  z-index: 1;
  display: flex;
  background-color: #ffffff;
}
.home-service-sec-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .wwr-icon-box {
  width: 93px;
  height: 93px;
  line-height: 25px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
} */

.home-service-sec p {
  font-size: 16px;
  color: #272727;
  font-weight: 300;
}
.home-service-sec h3 {
  font-size: 20px;
  color: #272727;
  font-weight: 600;
}
.home-service-sec-content h3{
  font-size: 20px;
  color: #272727;
  font-weight: 600;
}


section.home-service-sec::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: #00244D;
  inset: 0;
  opacity: 0.90;
}

.home-service-sec-heading h2 {
  color: #ffffff !important;
}
.home-service-sec-icon-box img {
  margin-right: 30px;
}

/*---------Home page home-service-sec end--------------*/


/*---------Home page f-product start--------------*/
.f-product-sec{
  margin-bottom: 100px;
}
.f-product-sec h3{
  font-size: 20px;
  color: #272727;
  font-weight: 600;
}

img.f-product {
  width: 100%;
  margin-bottom: 20px;
}
img.f-product1 {
  width: 100%;
  margin-bottom: 20px;
}
/*---------Home page f-product end--------------*/



/* logo Section
--------------------------------*/
section#logo-sec {
  padding: 100px 0px;
}

#logo-sec .outer-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.outer-box img {
  width: 100%;
}




/* ----------home footer section Starts------------ */
.footer {
  background-color: #00244D;
  width: 100%;
  height: auto;
  padding: 60px 0 0 0;
}

.footer h2 {
  font-size: 28px;
  font-weight: 500;
  color: #FAFAFA;
  margin-bottom: 20px;

}


.footer-aboutus-sec p {
  color: #BDC2CB;
  font-size: 14px;
  font-weight: 200;
}

.footer-aboutus-sec,
.footer-Links-sec,
.footer-cu-sec {
  margin-bottom: 30px;
}

.footer-Links-sec ul li {
  list-style-type: none;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 14px;
  padding: 0;
  font-weight: 200;
}

.footer-Links-sec ul {
  padding: 0;
}

.footer hr {
  color: #ffffff;
}

.footer-cu-sec address {
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 200;
}

.footer-cu-sec p {
  color: #BDC2CB;
  margin-bottom: 23px;
  font-weight: 200;
}

.footer-cu-sec-align,
.footer-Links-sec-align {
  display: flex;
  justify-content: center;
}



.copy-rights {
  color: #ffffff;
  font-size: 14px;
}

.copy-rights p {
  text-align: start;
}

.footer-bt-sec {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid #ffffff;
}


.footer-bt-sec p {
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 200;
}

.design p {
  text-align: end;
}
.footer a {
  text-decoration: none;
  position: relative;
  color: #ffffff;
  transition: 0.5s;
}

.footer a:hover {
  text-decoration: none;
  position: relative;
  color: #fff;
}

.social-links {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.social-links a {
  font-size: 21px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
}


/* ----------home footer section ends------------ */





/* ----------Aboutus-page-sec-start ------------ */

header#sub-header {
  background: #ffffff;
  padding: 10px;
  box-shadow: 0px 3px 20px #0000000a;
}

#about-us {
  margin: 100px 0px;
}

#about-us p {
  text-align: center;
}

.abt-image img {
  width: 100%;
}

.sub-abt-sec {
  margin: 50px 0px;
}



.Workflow-sec {
  width: 100%;
  margin-bottom: 100px;
}

.Workflow-icon-box img {
  width: 70%;
}

.Workflow-sec-heading {
  text-align: center;
  padding-bottom: 30px;
}

.Workflow-inner-box {
  padding: 20px;
  border-radius: 10px;
  transition: 1s;

}

.Workflow-sec h3 {
  font-size: 23px;
  color: #00244D;
  font-weight: 600;
  margin: 20px 0px;
}

.Workflow-sec p {
  font-size: 16px;
  font-weight: 300;
}





#testimonial-sec {
  padding: 80px 0px;
  background: #ffffff;
  margin-bottom: 80px;
}

#testimonial-sec .outer-box {
  background-color: #f9f9f9;
  padding: 20px 25px;
  border-radius: 10px;
  position: relative;
  margin-right: 10px;
}

#testimonial-sec .inner-content-sec {
  display: flex;
  margin-bottom: 15px;
}

#testimonial-sec img.testim-profile {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 20px;
}

img.testim-quotes {
  right: 17px;
  top: 9px;
  position: absolute;
}

#testimonial-sec .inner-content-sec h3 {
  font-size: 20px;
  margin-bottom: 2px;

}


#testimonial-sec .inner-title-sec {
  padding-left: 120px;
}

#testimonial-sec .inner-title-sec {
  padding-left: 120px;
  padding-top: 30px;
}


.owl-carousel .owl-item img {
  display: block;
  width: 10%;
}
p.test {
  border-bottom: 1px solid #444;
}


/* ----------Aboutus-page-sec-end ------------ */




#contactus-sec .Left-sec {
  padding: 20px;
  border-radius: 5px;
}
.contact-content {
  padding: 50px;
}

#contactus-sec .common-heading span {
  margin-bottom: 20px;
}

#contactus-sec .right-sec {
  background-color: #001031;
  border-radius: 5px;
  padding: 20px;


}

.form-control {
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  background-color: #FAFBFF;
  border: 1px solid #e4e4e4;
}

.form-label {
  font-size: 15px;
}

#contactus-sec .right-sec p {
  color: #ffffff;
}

#contactus-sec .right-sec h5 {
  color: #ffffff;
  font-weight: 700;
}

#contactus-sec .right-sec p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
}

#contactus-sec .right-sec address {
  color: #ffffff;
  font-weight: 300;
}

#contactus-sec .followus-sec h5 {
  margin-bottom: 20px;
}

.map-sec iframe {
  width: 100%;
  height: 500px;
}

#contactus-sec {
  margin-bottom: 50px;
  margin-top: 150px;
  background-color: #ffffff;
}

.social-links i {
  color: #BDC2CB;
}

button.btn.contact-btn {
		background: linear-gradient(135deg, #990066, #330066);

  color: #ffffff;
  padding: 12px 30px;
  border: none;
  transition: 1s;
  border-radius: 5px;
  margin-top: 20px;
}
#contactus-sec .icon-box {
  margin-right: 20px;
  width: 130px;
  height: 130px;
  background-color: #FAFBFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contactus-sec i {
  font-size: 28px;
}

#contactus-sec .container-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;

}
.info h4 {
  font-size: 24px;
  font-weight: 600;
  color: #272727;
  margin-left: 110px;
}
.info p {
  font-size: 14px;
  margin-bottom: 4px;
  margin-left: 110px;
}

/*------------- Portfolio Section-----------------*/
#portfolio {
  padding: 80px 0;
  margin-top: 100px;
}
#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
}
#portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #666666;
  transition: all 0.3s ease-in-out;
}
#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
}
#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
#portfolio .portfolio-item {
  margin-bottom: 30px;
}
#portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  padding: 15px;
}
#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #333333;
  margin-bottom: 5px;
}
#portfolio .portfolio-item .portfolio-info p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 0;
}
#portfolio .portfolio-item .portfolio-info .preview-link, #portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 48px;
  font-size: 28px;
  top: calc(50% - 28px);
  color: #4d4d4d;
}
#portfolio .portfolio-item .portfolio-info .preview-link:hover, #portfolio .portfolio-item .portfolio-info .details-link:hover {
 background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
}
#portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}
#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*------------------Portfolio section----------------------------*/
