@charset "UTF-8";
/*
=======================================================
================= B A S I C  S E T U P ================
=======================================================
*/
/*======== GOOGLE FONTS =========*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;900&display=swap");
/*======= FONT VARIABLE =========*/
/*======= COLOR VARIABLE =========*/
:root {
  --background-color-one: #FFF;
  --background-color-two: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

#bg {
  background: #FFFFFF;
}

.section-title h2 {
  font-weight: 700;
}
.section-title h4 {
  color: #424242;
  font-size: 16px;
  letter-spacing: 5px;
}
.section-title p {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

/*
============================================
============= Preloader CSS ================
============================================
*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: var(--background-color-one);
  top: 0;
  left: 0;
  font-size: 30px;
  vertical-align: center;
}
.preloader .logo-wrapper {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader [class=loader] {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: #101357;
  pointer-events: none;
}
.preloader .loader {
  animation: loader-1 2s infinite linear;
  position: absolute;
  top: 45%;
  left: 50%;
}
.preloader .loader:before, .preloader .loader:after {
  content: "";
  width: 0;
  height: 0;
  border: 1rem solid currentcolor;
  display: block;
  position: absolute;
  border-radius: 100%;
  animation: loader-2 2s infinite ease-in-out;
}
.preloader .loader:before {
  top: 0;
  left: 50%;
}
.preloader .loader:after {
  bottom: 0;
  right: 50%;
  animation-delay: -1s;
}
@keyframes loader-1 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-2 {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

/*
================================================
============= Preloader CSS END ================
================================================
*/
/*
============================================
============= SCROLL UP BTN ================
============================================
*/
.scroll_up {
  background: #FF6B00;
  color: white;
  cursor: pointer;
  display: none;
  padding: 0.8rem 0.9rem;
  position: fixed;
  z-index: 9;
  right: 2rem;
  bottom: 7rem;
  border-radius: 50%;
  transition: all ease 0.5s;
}
.scroll_up:hover {
  background: #ff4800;
  transition: all ease 0.5s;
  box-shadow: 0 0.5rem 1rem 0 rgba(255, 106, 0, 0.5) !important;
}
.scroll_up i {
  font-size: 2.2rem;
}

/*
=================================================================
===================== START Reusable Componants =================
=================================================================
*/
section {
  padding: 6rem 0;
}

/*============ SEARCH BUTTON ==============*/
.blog-details-area .template-sidebar .sidebar-widget-area .ag_input_area .search-btn {
  background: #FF6B00;
  height: 100%;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  transition: all 500ms linear;
  border: none;
}
.blog-details-area .template-sidebar .sidebar-widget-area .ag_input_area .search-btn:hover {
  transition: all 500ms linear;
  background: #ff4800;
  box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
}

.service-details-area .template-sidebar .sidebar-widget-area, .blog-details-area .template-sidebar .sidebar-widget-area {
  padding: 1.5rem;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  margin: 3rem 0;
}

/*======== item_icon =========*/
.ag_process-area .ag_process-item .item_icon, .ag_counter-widget .counter-container .widget_icon, .ag_feature-area .ag_feature-item .item_icon, .service-item .item_icon {
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  vertical-align: middle;
  align-items: center;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 0;
  transition: all 0.5s ease-in-out;
}

/*======== Flat icon ========*/
.ag_process-area .ag_process-item .item_icon i::before, .ag_counter-widget .counter-container .widget_icon i::before, .ag_feature-area .ag_feature-item .item_icon i::before, .service-item .item_icon i::before {
  font-family: Flaticon;
  font-size: 60px;
  font-style: normal;
  margin: 0 auto;
  color: #FF6B00;
  transition: all 0.5s ease-in-out;
}

/*======= Icon Hover =========*/
.ag_counter-widget .counter-container .widget_icon:hover i::before, .ag_feature-area .ag_feature-item:hover .item_icon i::before, .service-item:hover > .item_icon i::before {
  color: #FFFFFF;
  transition: all 0.5s ease-in-out;
}

/*======= small icon =========*/
.ag_why-us-area .ag_why-single-box .box_icon {
  max-width: 7rem;
  max-height: 5rem;
  border-radius: 0.5rem;
  vertical-align: middle;
  align-items: center;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  transition: all 0.5s ease-in-out;
}

.ag_why-us-area .ag_why-single-box .box_icon i::before {
  font-family: Flaticon;
  font-size: 3rem;
  font-style: normal;
  margin: 0 auto;
  color: #FFFFFF;
  transition: all 0.5s ease-in-out;
}

/*======= small icon end =========*/
:hover {
  transition: all 0.5s ease-in-out;
}

/*========= Social-media-Css==========*/
.social-media .media-link {
  background: #F5F5F5;
  border-radius: 90%;
  padding: 10px;
  margin-right: 0.5rem;
  transition: all 0.5s ease-in-out;
  width: 40px;
  height: 40px;
}
.social-media .media-link:hover {
  box-shadow: 0 0.5rem 1rem 0 rgba(221, 221, 221, 0.9) !important;
}
.social-media .media-link i {
  margin: 0 !important;
}
.social-media .media-link i:before {
  font-size: 2rem;
  font-weight: 600;
}
.social-media .media-link:nth-child(1) {
  color: #33CCFF !important;
}
.social-media .media-link:nth-child(1):hover {
  color: #FFF !important;
  background: #33CCFF;
}
.social-media .media-link:nth-child(2) {
  color: #3C5A99 !important;
}
.social-media .media-link:nth-child(2):hover {
  color: #FFF !important;
  background: #3C5A99;
}
.social-media .media-link:nth-child(3) {
  color: #007AB9 !important;
}
.social-media .media-link:nth-child(3):hover {
  color: #FFF !important;
  background: #007AB9;
}
.social-media .media-link:nth-child(4) {
  color: #FF0000 !important;
}
.social-media .media-link:nth-child(4):hover {
  color: #FFF !important;
  background: #FF0000;
}

/*========= Social-media-icon css end ==========*/
/* ---- Caption element-item ---- */
.element-item {
  background: transparent;
  position: relative;
  overflow: hidden;
}
.element-item img {
  /*max-width: 95% !important;*/
}
.element-item .caption {
  box-sizing: border-box;
  position: absolute;
  width: 80%;
  height: 250px;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  margin: 0px auto;
  background: rgba(16, 20, 87, 0.8);
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 1rem;
  transition: all 0.8s ease-out;
  transform: translateY(100%);
}
.element-item .caption h5 {
  font-size: 2.5rem;
  color: #FFFFFF;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  margin: 15px 0 0 0;
}
.element-item .caption p {
  color: rgba(255, 255, 255, 0.75);
  line-height: normal;
  padding: 0;
}
.element-item .caption a.btn-primary {
  border-radius: 30px;
  padding: 8px 25px;
  text-align: center;
  margin: 15px 0 0 0;
}
.element-item:hover .caption {
  transform: translateY(0);
}

h1 {
  font-size: 6.5rem;
  font-family: "Rubik", sans-serif;
  color: #FFFFFF;
  font-weight: 700;
  font-style: normal;
}

h2,
h3,
h5,
h6 {
  font-family: "Rubik", sans-serif;
  color: #262339;
}

h2 {
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 5.2rem;
  text-transform: capitalize;
}

h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  font-style: normal;
  line-height: 33px;
}
h3 a {
  color: #262339;
}

h4 {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  margin-top: 1.5rem;
  font-family: "Open Sans", sans-serif;
  color: #7A7A7A;
}

h5 {
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #262339;
}

h6 {
  font-size: 1.8rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: normal;
}

p {
  font-size: 1.6rem;
  color: #7A7A7A;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-top: 1.5rem;
  line-height: 3rem;
}

/*============ ABBREVIATION ==============*/
abbr.abr {
  text-decoration: none;
  cursor: pointer;
}

.btn-tag {
  padding: 0.5rem 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 107, 0, 0.1);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6;
  color: #FF6B00;
  font-family: "Open Sans", sans-serif;
  transition: all 500ms linear;
}
.btn-tag:hover {
  color: #FFFFFF;
  transition: all 500ms linear;
  background: #ff4800 !important;
  box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
}

/*======= Start Button Group CSS ===========*/
.btn {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  padding: 1rem 3rem;
  font-family: "Open Sans", sans-serif;
  border-radius: 5rem;
  background: #FF6B00 !important;
  transition: all 500ms linear;
}
.btn:hover {
  color: #FFFFFF;
  transition: all 500ms linear;
  background: #ff4800 !important;
  box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
}

.btn-secondary, .btn-lg-secondary {
  background: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.6rem;
  padding: 0.5rem 1.8rem;
  border: 0.1rem solid #101357;
  color: #262339;
}

/*======= END Button Group CSS ===========*/
/*============= Read More Btn =============*/
.read-more {
  text-decoration: none !important;
  color: #FF6B00;
  font-size: 1.6rem;
  text-align: left;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.read-more::after {
  content: " ➜";
  color: #FF6B00;
  font-size: 1.6rem;
  vertical-align: middle;
}
.read-more:hover {
  color: #101357;
  transition: all 0.5s ease-in-out;
}
.read-more:hover::after {
  color: #101357;
  transition: all 0.5s ease-in-out;
}

/*============= Read More Btn END =============*/
/*============= Btn Submit =============*/
button.btn-submit {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  padding: 1rem 3rem;
  font-family: "Open Sans", sans-serif;
  border-radius: 0.5rem;
  background: #FF6B00 !important;
  transition: all ease 0.5s;
}
button.btn-submit:hover {
  color: #FFFFFF;
  transition: all 200ms linear;
  transition: all ease 0.5s;
  background: #ff4800 !important;
  box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
}

/*============= Btn Submit END =============*/
/*========= BOX LABEL CSS ==========*/
.rebon {
  position: absolute;
  top: 7%;
  left: 10%;
}
.rebon .rebonding {
  font-size: 1.6rem;
  color: #ffffff;
  background: #FF6B00;
  font-weight: 500;
  text-align: center;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.rebon .rebonding:hover {
  background: #ff4800;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
}

/*========= BOX LABEL CSS END ==========*/
a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

input,
.btn,
.button,
.btn.focus,
textarea,
:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.nav-link:hover {
  color: #ff4800 !important;
}

.navbar-light .navbar-nav .show > .nav-link {
  color: #ff4800 !important;
}

textarea {
  resize: vertical;
  padding: 15px 20px;
  min-height: 150px;
}

/*============ AG btn Reply =================*/
.btn-reply {
  padding: 0.3rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all ease 0.5s;
  background: #FFFFFF;
  color: #7A7A7A;
}
.btn-reply:hover {
  transition: all ease 0.5s;
  color: #101357;
}

/*============ AG btn Reply END =============*/
/*============ AG SERVICES ITEM BOX =============*/
.service-item {
  text-align: center;
  padding: 3rem;
  border-radius: 1rem;
  transition: all 0.5s ease-in-out;
}
.service-item:hover {
  transition: all 500ms linear;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
  transform: scale(1.03);
  color: #FFFFFF;
  background: url(../images/service_item-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.service-item:hover > .item_icon {
  background: #FF6B00;
}
.service-item:hover > .item_content h3 a {
  color: #FFFFFF;
  transition: all ease-in-out 0.5s;
}
.service-item:hover > .item_content p {
  color: rgba(255, 255, 255, 0.75);
  transition: all ease-in-out 0.5s;
}
.service-item:hover > .service_item-btn {
  opacity: 1;
  transition: all ease-in-out 0.5s;
}
.service-item .item_icon1 {
  background: rgba(255, 106, 0, 0.3);
}
.service-item .item_icon2 {
  background: rgba(255, 31, 31, 0.3);
}
.service-item .item_icon2 i::before {
  color: #FF1F1F;
}
.service-item .item_icon3 {
  background: rgba(255, 106, 0, 0.3);
}
.service-item .item_icon4 {
  background: rgba(255, 106, 0, 0.3);
}
.service-item .item_icon5 {
  background: rgba(102, 203, 51, 0.3);
}
.service-item .item_icon5 i::before {
  color: #66CB33;
}
.service-item .item_icon6 {
  background: rgba(16, 20, 87, 0.3);
}
.service-item .item_icon6 i::before {
  color: #101357;
}
.service-item .item_content h3 {
  padding-top: 1rem;
}
.service-item .item_content h3 a {
  color: #262339;
}
.service-item .service_item-btn {
  padding: 1.5rem 0;
  opacity: 0;
}

/*============ AG SERVICES ITEM BOX END =============*/
/*============= AG BLOG BOX CSS =============*/
.blog-box {
  box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
  padding-bottom: 2rem;
  position: relative;
  border-radius: 1rem;
  transition: all ease-in-out 0.5s;
  margin-bottom: 25px;
}
.blog-box:hover {
  transform: translateY(-1rem);
  transition: all ease-in-out 0.5s;
}
.blog-box .blog-img {
  margin-top: 1rem;
}
.blog-box .blog-img a img {
  border-radius: 1rem;
}
.blog-box .dateAndComment {
  line-height: normal;
  padding: 1.5rem 1rem;
  color: #7A7A7A;
}
.blog-box .dateAndComment span.comment {
  font-weight: 500;
}
.blog-box .dateAndComment span.comment i {
  color: #7A7A7A;
  vertical-align: middle;
}
.blog-box .blog-content {
  padding: 0 1.5rem;
  text-align: left;
}
.blog-box .blog-content h3 {
  margin-top: 0;
  line-height: 18px;
}
.blog-box .blog-content h3 a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #262339;
  transition: all ease 0.5s;
}
.blog-box .blog-content h3 a:hover {
  color: #101357 !important;
  transition: all ease 0.5s;
}
.blog-box .blog-content p {
  margin-top: 5px;
}
.blog-box .ag_more-btn {
  text-align: left;
}
.blog-box .ag_more-btn .read-more {
  margin-left: 1.5rem;
}

/*============= AG BLOG BOX END =============*/
/*=========== Page Nav PAGINATION ==========*/
.pagination li.page-item {
  position: relative;
}
.pagination li.page-item a {
  outline: none !important;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  border: 1px solid #ff6a0049 !important;
  color: #FF6B00;
}
.pagination li.page-item a:hover {
  background: #ff4800;
  transition: all ease-in-out 0.5s;
  color: #FFFFFF;
}
.pagination li.page-item a.active {
  background: #FF6B00;
  border-radius: 0.5rem 0 0 0.5rem;
  color: #FFFFFF;
  font-weight: 500;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
}

/*============== Nav PAGINATION END ========*/
/*=========== SOCIAL LINKS ICON ==========*/
.social-links {
  bottom: 3rem !important;
  justify-content: left !important;
}
.social-links .social-button {
  margin: 1rem;
  margin-top: 0 !important;
  padding: 1.5rem 0;
}

.caption-member, .social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #101357;
  width: 100%;
  height: 0;
  display: flex;
  border-radius: 1rem;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-out;
}
.caption-member .social-button, .social-links .social-button {
  margin: 1rem;
  color: #FFFFFF;
  text-align: center;
  border-radius: 1rem;
  font-size: 2.8rem;
  transition: all ease-in-out 0.3s;
}
.caption-member .social-button i.bxl-facebook, .social-links .social-button i.bxl-facebook {
  background: #395185;
}
.caption-member .social-button i.bxl-twitter, .social-links .social-button i.bxl-twitter {
  background: #55ACEE;
}
.caption-member .social-button i.bxl-pinterest-alt, .social-links .social-button i.bxl-pinterest-alt {
  background: #FF0000;
}
.caption-member .social-button i.bxl-dribbble, .social-links .social-button i.bxl-dribbble {
  background: #F23F7E;
}
.caption-member .social-button i, .social-links .social-button i {
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.caption-member .social-button i:hover, .social-links .social-button i:hover {
  background: #ff4800;
  box-shadow: 0 0.5rem 1rem 0 rgba(255, 72, 0, 0.7) !important;
  transition: all 0.3s ease-in-out;
}

/*========== SOCIAL LINKS ICON END =======*/
/*========== SLIDER DOTS AREA ============*/
.owl-carousel .owl-dots {
  text-align: center;
  position: relative;
  bottom: 5px;
  width: 100%;
  backface-visibility: hidden;
  text-align: center;
  margin-top: 3rem;
}
.owl-carousel .owl-dots .owl-dot {
  margin: 0.5rem;
  width: 1.3rem;
  height: 1.3rem;
  background: #949090;
  border-radius: 90%;
  display: inline-block;
  vertical-align: middle;
}
.owl-carousel .owl-dots .active {
  background: #101357;
  position: relative;
}
.owl-carousel .owl-dots .active::before {
  content: "";
  height: 1.9rem;
  width: 1.9rem;
  border: 1px solid #101357;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  border-radius: 90%;
  top: -3px;
  left: -3px;
}

/*========= SLIDER DOTS AREA END =========*/
/*======= FORM SELECTION AREA ============*/
.form_control .nice_selection {
  display: block;
  width: 100%;
  height: 5rem;
  padding: 1rem 1.5rem;
  font-size: 1.6rem !important;
  font-weight: 500;
  border: 0.1rem solid #ddd !important;
  color: #262339 !important;
  outline: none !important;
  margin-bottom: 3rem;
}
.form_control .nice_selection:nth-child(2):hover {
  background: green;
}

/*======= FORM SELECTION AREA END ========*/
/*======= FORM INPUT AREA ========*/
input[type=text], input[type=password], input[type=email], input[type=number], input[type=search], textarea.form-control {
  background: #F8F8F8 !important;
  height: 50px;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  width: 100%;
  margin-bottom: 3rem;
}

textarea:focus, input:focus {
  outline: 1px solid #ff6a0044 !important;
  border-radius: 0.5rem;
}

.form-label {
  color: #9b9b9b;
  font-size: 1.6rem;
}

/*======= FORM INPUT AREA END ========*/
/*======= BREADCRUMBS AREA ========*/
.breadCrumbs-area {
  background: url(../images/breadcrumbs-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: relative;
  padding: 15rem 0;
  vertical-align: middle;
}
.breadCrumbs-area .breadCrumbs-content .page-name h2 {
  font-size: 4.8rem;
  color: #FFFFFF;
  text-align: left;
  font-weight: 600;
}
.breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul {
  list-style: none;
}
.breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul li {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0.5rem;
  color: #FFFFFF;
}
.breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul li a {
  color: rgba(255, 255, 255, 0.75);
  transition: all ease-in-out 0.3s;
}
.breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul li a:hover {
  color: #ff4800;
  transition: all ease-in-out 0.3s;
}
.breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul li i {
  vertical-align: middle;
  position: relative;
  right: -5px;
}
.breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul li a.active {
  color: #ff4800 !important;
}

/*======= BREADCRUMBS AREA END ========*/
/*
==============================================================================
======================== End Reusable Componants =============================
==============================================================================
*/
/* ====================
2. Header-Top
==================== */
.header-top-area {
  background-color: #FFFFFF;
}

.header-top-left ul, .header-top-right ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-top-left ul li {
  display: inline-block;
  color: #262339;
  font-size: 14px;
  padding: 10px 32px;
  font-weight: 500;
}

.header-top-left ul li i {
  color: #364675;
  font-size: 20px;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}

.header-top-left ul li:first-child {
  padding-left: 5px;
}

.header-top-right {
  margin-top: 9px;
}

.header-top-right ul li {
  display: inline-block;
}

.header-top-right ul li a {
  padding: 10px 10px;
  color: #A8A7AF;
  transition: 0.3s;
  font-size: 15px;
}
.header-top-right ul li a i:before {
  font-size: 1.8rem;
  vertical-align: middle;
  font-weight: 500;
}

.header-top-right ul li a:hover {
  color: #ff4800;
}

.header-top-area {
  border-bottom: 1px solid #F9F8FB;
}

/* ===================
3. Main Menu CSS
=================== */
.logo {
  margin: 10px 0;
}

.hamburger {
  position: relative;
  width: 40px;
  height: 30px;
  cursor: pointer;
  border: 5px solid transparent;
  float: right;
  margin-top: 15px;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #212121;
  display: block;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.hamburger span.h-top {
  top: 0;
}

.hamburger span.h-bottom {
  bottom: 0;
  width: 27px;
}

.hamburger span.h-middle {
  top: 50%;
  margin-top: -1px;
  width: 25px;
}

.hamburger.h-active span {
  width: 100%;
}

.hamburger.h-active span.h-top {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1px;
}

.hamburger.h-active span.h-middle {
  -webkit-transform: translateX(-30px);
  -moz-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  -o-transform: translateX(-30px);
  transform: translateX(-30px);
  opacity: 0;
}

.hamburger.h-active span.h-bottom {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1px;
}

.bottombar {
  background-color: #08509e;
}

.main-nav {
  float: right;
  padding: 2rem 0;
}

.main-nav > ul {
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
}

.main-nav > ul > li {
  display: inline-block;
  position: relative;
  padding-right: 15px;
}

.main-nav > ul > li.has-child-menu:after {
  position: absolute;
  right: -5px;
  color: #FFFFFF;
  top: 0.5rem;
  font-family: "boxicons";
  content: "";
  font-size: 20px;
}

.main-nav > ul > li + li {
  padding: 0 20px;
}

.main-nav > ul > li > a {
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  padding: 0.2rem 0;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}

.main-nav > ul > li:hover > a {
  color: #ff4800;
}

.main-nav > ul > li > a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #ff4800;
  opacity: 0;
  transition: all 200ms linear;
}
.main-nav > ul > li > a:after:hover {
  background-color: #ff4800;
}

.main-nav > ul > li:hover > a:after {
  opacity: 1;
}

.action_menu {
  float: right;
  margin: 20px 0 20px 10px;
}
.action_menu a.menu-link {
  padding: 0.8rem 2rem;
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}
.action_menu a.menu-link:hover a {
  color: #FFF !important;
}
.action_menu a.menu-link:hover a:after {
  opacity: 0 !important;
}

.main-nav ul li .sub-menu {
  position: absolute;
  left: 0;
  top: auto;
  right: 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transform: translateY(20px);
  transition: all 0.3s;
}

.main-nav ul li .sub-menu li .sub-menu {
  right: -200px;
  left: inherit;
  top: 0;
}

.main-nav ul li .sub-menu > li {
  display: block;
  margin: 0;
  position: relative;
}

.main-nav ul li .sub-menu > li a {
  display: block;
  padding: 15px 18px;
  color: #262339;
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.main-nav ul li .sub-menu > li a:last-child {
  border: none;
}

.main-nav ul li .sub-menu > li a:hover {
  background: rgba(16, 20, 87, 0.9);
  color: #ff4800;
}

.main-nav ul > li a.active {
  color: #FF6B00 !important;
}

.main-nav ul li .sub-menu > li a.active {
  color: #FF6B00 !important;
}

.main-nav ul > li a:hover {
  background: transparent;
  color: #ff4800 !important;
}

.main-nav ul li .sub-menu > li a:hover {
  background: transparent;
  color: #ff4800 !important;
}

.main-nav .fl {
  width: 30px;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 0;
  z-index: 999;
  display: none;
  cursor: pointer;
}

.main-nav .fl:before {
  font-size: 14px;
  text-align: center;
  line-height: 35px;
}

.main-nav > ul > li + li > .sub-menu {
  left: 15px;
}

.main-nav > ul > li:hover > .sub-menu, .main-nav ul li .sub-menu li:hover > .sub-menu, .main-nav ul li .sub-menu li .sub-menu li:hover > .sub-menu {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.slideInUp {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(0, 30px, 0);
  -moz-transform: translate3d(0, 30px, 0);
  -ms-transform: translate3d(0, 30px, 0);
  -o-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.is-active .slideInUp {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slideInUp2 {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.header-area {
  width: 100%;
}

.menu-search a i {
  background: #F3F2F7;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
}

.logo img {
  margin: 8px 0;
}

.action_menu.m-view {
  display: none;
}

.sticky {
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 9999;
  animation: 500ms ease-in-out 0s normal none fadeInDown;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.1);
  padding: 0;
}

/*================ AG HEADER AREA START ==========*/
header.ag_header-area {
  padding-bottom: 0;
  background: linear-gradient(180deg, #261675 0.42%, #000b22 102.71%);
}
header.ag_header-area:before {
  content: "";
  position: absolute;
  background-image: url(../images/slider-bg-shape.png);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  background-size: 100% 100%;
}

header .header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  animation: 500ms ease-in-out 0s normal none fadeInDown;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom 40%;
  padding-bottom: 0;
}

header .header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  animation: 500ms ease-in-out 0s normal none fadeInDown;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.1);
  background: #101357;
}

/*================== AG SLIDER AREA START ==============*/
.slider_wrap {
  padding-top: 20rem;
  padding-bottom: 6rem;
  position: relative;
}
.slider_wrap .slider_content {
  padding: 7rem 0;
  position: relative;
}
.slider_wrap .slider_content .slider_title {
  padding-right: 2rem;
}
.slider_wrap .slider_content .title_content {
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 3rem;
  margin-right: 3rem;
  padding-top: 3rem;
}
.slider_wrap .slider_content .slider-btn {
  padding: 3rem 0;
}
.slider_wrap .slider_img {
  padding: 50px 0;
}

/*================== End Header SLIDER AREA =============*/
/*================== START FEATURE AREA ================*/
.ag_feature-area {
  padding-top: 80px;
}
.ag_feature-area .ag_feature-item {
  text-align: center;
  padding: 3rem;
  border-radius: 1rem;
  transition: all ease-in-out 0.5s;
}
.ag_feature-area .ag_feature-item:hover {
  transition: all 0.5s ease-in-out;
  border-bottom: 1rem solid #101357;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
}
.ag_feature-area .ag_feature-item:hover .item_icon {
  background: #101357;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease-in-out;
  transform: translateY(-0.8rem);
}
.ag_feature-area .ag_feature-item .item_icon i.flaticon-medal::before {
  padding-left: 1.2rem;
}
.ag_feature-area .ag_feature-item .item_content h3.item_title {
  padding-top: 1rem;
}
.ag_feature-area .ag_feature-item .item_content h3.item_title a {
  color: #262339;
}
.ag_feature-area .ag_feature-item .item_content h3.item_title a:hover {
  color: #262339;
}

/*================== END FEATURE AREA ==================*/
/*================== START ABOUT-US AREA ===============*/
.ag_abut-us-area .ag_about-wrapper .img_box {
  margin-top: 7rem;
}
.ag_abut-us-area .about_content-area h2 {
  font-weight: 700;
}
.ag_abut-us-area .about_content-area h4 {
  color: #424242;
  font-size: 16px;
  letter-spacing: 5px;
}
.ag_abut-us-area .about_content-area .check_content p {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #7A7A7A;
  padding: 0;
}
.ag_abut-us-area .about_content-area .check_content p i {
  font-size: 3rem;
  vertical-align: middle;
  color: #FF6B00;
}
.ag_abut-us-area .about_content-area .about_area-btn {
  padding-top: 1rem;
}

/*================== END ABOUT-US AREA =================*/
/*================== START SERVICES AREA ===============*/
.ag_service-area {
  position: relative;
}

/*================== END SERVICES AREA =================*/
/*=============== START TEAM SLIDER AREA ===============*/
.ag_team-area {
  background-color: #F6F6F6;
}
.ag_team-area .teams_slider .team_item .photo-member:hover .caption-member {
  height: 33%;
  padding: 15px;
}
.ag_team-area .teams_slider .team_item .photo-member:hover .caption-member .social_icon {
  width: 100%;
  text-align: center;
}
.ag_team-area .teams_slider .team_item .photo-member {
  width: 100%;
  height: 70%;
  position: relative;
  margin: auto;
}
.ag_team-area .teams_slider .team_item .photo-member .info_member {
  padding-bottom: 1rem;
  text-align: center;
}
.ag_team-area .teams_slider .team_item .photo-member .info_member h3 {
  margin: 10px 0 0 0;
}
.ag_team-area .teams_slider .team_item .photo-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  outline: 0;
}

.ag_team-area {
  position: relative;
}
.ag_team-area .teams_slider .owl-nav {
  display: none;
}

/*============== END TEAM SLIDER AREA ==================*/
/*================== START COUNTER AREA ================*/
.ag_counter-widget .counter-container .widget_icon {
  text-align: center;
}
.ag_counter-widget .counter-container .widget_icon1 {
  background: rgba(255, 106, 0, 0.3);
}
.ag_counter-widget .counter-container .widget_icon2 {
  background: rgba(255, 31, 31, 0.3);
}
.ag_counter-widget .counter-container .widget_icon2 i::before {
  color: #FF1F1F;
}
.ag_counter-widget .counter-container .widget_icon3 {
  background: rgba(102, 203, 51, 0.3);
}
.ag_counter-widget .counter-container .widget_icon3 i::before {
  color: #66CB33;
}
.ag_counter-widget .counter-container .widget_icon4 {
  background: rgba(16, 20, 87, 0.3);
}
.ag_counter-widget .counter-container .widget_icon4 i::before {
  color: #101357;
}
.ag_counter-widget .counter-container .widget_info {
  margin: 15px 0px 15px 15px;
}
.ag_counter-widget .counter-container .widget_info .counter {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 40px;
  margin: 10px 0;
}
.ag_counter-widget .counter-container .widget_info .counter {
  color: #FF6B00;
}
.ag_counter-widget .counter-container .widget_info .counter2 {
  color: #FF1F1F;
}
.ag_counter-widget .counter-container .widget_info .counter3 {
  color: #66CB33;
}
.ag_counter-widget .counter-container .widget_info .counter4 {
  color: #101357;
}
.ag_counter-widget .counter-container .widget_info span {
  font-size: 1.6rem;
  font-weight: 400;
  color: #7A7A7A;
  font-family: "Open Sans", sans-serif;
}

/*================== END COUNTER AREA =================*/
/*================== START PORTFOLIO AREA =============*/
.ag_portfolio-area .portfolio_wrapper {
  position: relative;
}
.ag_portfolio-area .portfolio_wrapper .button-group .button {
  display: inline-block;
  cursor: pointer;
  border-radius: 5rem;
  background: #F8F8F8 !important;
  color: #262339;
  margin: 3rem 0.5rem;
}
.ag_portfolio-area .portfolio_wrapper .button-group .button:hover {
  background-color: #ff4800 !important;
  color: #FFFFFF;
}
.ag_portfolio-area .portfolio_wrapper .button-group .button:active,
.ag_portfolio-area .portfolio_wrapper .button-group .button.is-checked {
  background-color: #FF6B00 !important;
}
.ag_portfolio-area .portfolio_wrapper .button-group .button.is-checked {
  color: #FFFFFF;
}
.ag_portfolio-area .portfolio_wrapper .button-group:after {
  content: "";
  display: block;
  clear: both;
}

/*================== END PORTFOLIO AREA ===============*/
/*================== START WHY US AREA ================*/
.ag_why-us-area .ag_why-single-box .box_icon {
  margin-top: 2rem;
}
.ag_why-us-area .ag_why-single-box .box_1 {
  background: #FF6B00;
}
.ag_why-us-area .ag_why-single-box .box_2 {
  background: #66CB33;
}
.ag_why-us-area .ag_why-single-box .box_3 {
  background: #101357;
}
.ag_why-us-area .ag_why-single-box .box_4 {
  background: #FF1F1F;
}
.ag_why-us-area .ag_why-single-box .box_content {
  margin-left: 2rem;
}
.ag_why-us-area .ag_why-single-box .box_content h3 {
  text-align: left;
  font-size: 2.5rem;
}
.ag_why-us-area .ag_why-single-box .box_content p {
  text-align: left;
  margin-top: 1rem;
}

/*================== END WHY US AREA =================*/
/*================== START PRICING AREA ==============*/
.ag_pricing-area .ag_pricing-table .block {
  text-align: center;
  border-radius: 0.5rem !important;
  transition: all ease-in-out 0.3s;
}
.ag_pricing-area .ag_pricing-table .block:hover {
  transition: all ease-in-out 0.3s;
  background: #101357;
  color: #FFFFFF;
}
.ag_pricing-area .ag_pricing-table .block:hover .pricing-inner-content {
  border-color: #101357;
  transition: all ease-in-out 0.3s;
}
.ag_pricing-area .ag_pricing-table .block:hover .title, .ag_pricing-area .ag_pricing-table .block:hover .content p.hint, .ag_pricing-area .ag_pricing-table .block:hover p.price {
  color: #FFFFFF;
}
.ag_pricing-area .ag_pricing-table .block:hover .features li {
  color: rgba(255, 255, 255, 0.75);
}
.ag_pricing-area .ag_pricing-table .block:hover .pricing_btn {
  opacity: 1;
}
.ag_pricing-area .ag_pricing-table .block .pricing-inner-content {
  border: 1px solid #FF6B00;
  border-radius: 0.5rem !important;
  padding: 3rem 3rem 1.5rem 3rem;
}
.ag_pricing-area .ag_pricing-table .block .content .hint {
  color: #262339;
}
.ag_pricing-area .ag_pricing-table .block .content .price {
  color: #FF6B00;
  padding: 1.5rem 0;
}
.ag_pricing-area .ag_pricing-table .block .content .price sub {
  font-size: 3rem;
}
.ag_pricing-area .ag_pricing-table .block .content .price span {
  font-weight: 600;
  font-size: 6.5rem;
}
.ag_pricing-area .ag_pricing-table .block .features li {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  padding: 1rem 0;
  color: #7A7A7A;
}
.ag_pricing-area .ag_pricing-table .block .pricing_btn {
  opacity: 0;
  padding: 1.5rem 3rem 3rem 3rem;
  border-radius: 0.5rem;
}
.ag_pricing-area .ag_pricing-table .active {
  transition: all ease-in-out 0.3s;
  background: #101357;
  color: #FFFFFF;
}
.ag_pricing-area .ag_pricing-table .active .pricing-inner-content {
  border-color: #101357;
  transition: all ease-in-out 0.3s;
}
.ag_pricing-area .ag_pricing-table .active .title, .ag_pricing-area .ag_pricing-table .active .content p.hint, .ag_pricing-area .ag_pricing-table .active p.price {
  color: #FFFFFF;
}
.ag_pricing-area .ag_pricing-table .active .features li {
  color: rgba(255, 255, 255, 0.75);
}
.ag_pricing-area .ag_pricing-table .active .pricing_btn {
  opacity: 1;
}

/*================== END PRICING AREA ================*/
/*================== STARTED AREA ====================*/
.started_area {
  background: url(../images/section_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 7rem 0;
}
.started_area .started_area-content h2 {
  color: #FFFFFF;
}
.started_area .started_area-content p {
  color: rgba(255, 255, 255, 0.75);
}
.started_area .started_area-btn {
  padding: 6rem 0;
}

/*================== END STARTED AREA =================*/
/*================== START FEATURE AREA ===============*/
.ag_testimonial-area .ag_testimonial-slider .owl-stage-outer {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  padding: 5rem 0;
}
.ag_testimonial-area .ag_testimonial-slider .owl-item.active {
  width: 547.5px;
  margin-right: 15px;
  padding-right: 0.5rem;
}
.ag_testimonial-area .ag_testimonial-slider .slide_caption {
  background: #FFFFFF;
  border-radius: 1rem;
  align-items: center;
}
.ag_testimonial-area .ag_testimonial-slider .quote {
  border-radius: 90%;
  padding: 1.5rem;
  background: #101357;
  width: 9rem;
  padding: 2.2rem;
  margin-top: 11.5rem;
  margin-bottom: 11.5rem;
  margin-right: -4.5rem;
  z-index: 1;
  text-align: center;
}
.ag_testimonial-area .ag_testimonial-slider .quote i::before {
  font-size: 4.2rem;
  color: #FFFFFF;
}
.ag_testimonial-area .ag_testimonial-slider .caption_info {
  background: #FFFFFF;
  padding: 5rem 0 5rem 9rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.ag_testimonial-area .ag_testimonial-slider .caption_info .customer_info .profile {
  margin-right: 1rem;
}
.ag_testimonial-area .ag_testimonial-slider .caption_info .customer_info .profile img {
  border-radius: 90%;
}
.ag_testimonial-area .ag_testimonial-slider .caption_info .customer_info .profile_info {
  text-transform: capitalize;
}
.ag_testimonial-area .ag_testimonial-slider .caption_info .customer_info .profile_info h3 {
  margin-top: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 18px;
}
.ag_testimonial-area .ag_testimonial-slider .caption_info .customer_info .profile_info .designation {
  margin: 0 !important;
}
.ag_testimonial-area .ag_testimonial-slider .review-icon i {
  color: #FF6B00;
}
.ag_testimonial-area .ag_testimonial-slider .review-icon i::before {
  margin-left: 0.2rem;
  font-size: 2.4rem;
}
.ag_testimonial-area .ag_testimonial-slider .owl-nav {
  display: none;
}

/*================== END STARTED AREA =================*/
/*================== Marquee Slide Area ===============*/
.ag_marquee-area .marquee .marquee-content .inner {
  margin: 2rem 0;
  transition: all 0.5s ease-in-out;
}
.ag_marquee-area .marquee .marquee-content .inner:hover > a img {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
.ag_marquee-area .marquee .marquee-content .inner img {
  max-height: 3rem;
}

/*================== Marquee Slide Area End ============*/
/*================== AG FOOTER AREA ====================*/
.footer-area .footer-wrapper {
  background: #101357;
  padding-top: 20rem;
  padding-bottom: 1.5rem;
}
.footer-area .footer-wrapper .footer-wrap {
  padding: 3rem 0;
}
.footer-area .footer-wrapper .footer-wrap p {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  padding-right: 5rem;
  padding-left: 1.5rem;
}
.footer-area .footer-wrapper .footer-wrap .social-icon {
  margin-top: 3rem;
}
.footer-area .footer-wrapper .footer-wrap .social-icon a i {
  font-size: 20px;
  color: #262339;
  border-radius: 3px;
  margin-right: 15px;
  transition: 0.6s;
  padding: 3px 5px;
  border: 2px solid #262339;
}
.footer-area .footer-wrapper .footer-wrap .social-icon a i:hover {
  background: #ff4800;
  color: #fff;
}
.footer-area .footer-wrapper .footer-widget {
  position: relative;
}
.footer-area .footer-wrapper .footer-widget h3 {
  margin-top: 4rem;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 2.5rem;
  text-transform: capitalize;
  position: relative;
}
.footer-area .footer-wrapper .footer-widget ul {
  margin-top: 2rem;
}
.footer-area .footer-wrapper .footer-widget ul li {
  list-style: none;
  transition: all 0.3s ease-in-out;
}
.footer-area .footer-wrapper .footer-widget ul li:hover {
  transform: translateX(0.5rem);
  transition: all 0.3s ease-in-out;
}
.footer-area .footer-wrapper .footer-widget ul li:hover a {
  color: #ff4800 !important;
  transition: all 0.3s ease-in-out;
}
.footer-area .footer-wrapper .footer-widget ul li .fa-long-arrow-alt-right {
  color: #262339 !important;
  font-size: 1.8rem;
  margin-right: 0.5rem;
}
.footer-area .footer-wrapper .footer-widget ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
}
.footer-area .footer-wrapper .footer-widget .contact-info-content .single_info {
  margin-top: 1rem;
  color: #FFFFFF;
}
.footer-area .footer-wrapper .footer-widget .contact-info-content .single_info i {
  font-size: 2.2rem;
  position: relative;
  top: 18px;
}
.footer-area .footer-wrapper .footer-widget .contact-info-content .single_info p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0 1.2rem;
}
.footer-area .footer-wrapper .footer-widget .contact-info-content .single_info p a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.6rem;
}
.footer-area .footer-wrapper .footer-widget .contact-info-content .single_info p a:hover {
  color: #ff4800;
  transition: all ease 0.5s;
}
.footer-area .footer-wrapper .footer-widget .subscribe_form {
  width: 100%;
  margin: 0 auto;
  box-shadow: 0px 2px 5px 0px rgba(10, 6, 20, 0.24);
}
.footer-area .footer-wrapper .footer-widget .subscribe_form .input-group {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
}
.footer-area .footer-wrapper .footer-widget .subscribe_form input {
  height: 44px;
  font-size: 1.6rem;
  padding: 0 1rem;
}
.footer-area .footer-wrapper .footer-widget .subscribe_form button {
  border-radius: 0 0.25rem 0.25rem 0;
  width: 10rem;
  padding: 1rem 0.5rem;
  text-transform: uppercase;
  transition: all ease 0.3s;
}
.footer-area .footer-wrapper .footer-widget .subscribe_form .input-group-btn:last-child > .btn, .footer-area .footer-wrapper .footer-widget .subscribe_form .input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: 0px;
}
.footer-area .other-page-footer {
  padding-top: 0 !important;
}

/*============== Copy Right ===================*/
.copy-right {
  background: #FF6B00;
  padding: 1rem 0;
}
.copy-right p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin: 0;
  text-transform: capitalize;
}
.copy-right p a {
  color: #101357;
}

/*================== End FOOTER AREA ===================*/
/*
================================================================
==================== END HOME PAGE AREA ========================
================================================================
*/
/*
================================================================
==================== AG OTHER PAGE HEADER AREA =================
================================================================
*/
.page-header {
  background: url(https://demo.egenslab.com/html/agendil/assets/images/header_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding-bottom: 0;
}
.page-header .main-nav .ul li a {
  color: #262339;
}
.page-header .main-nav .ul li a:hover {
  color: #ff4800 !important;
}

.page-header .sticky {
  background: url(https://demo.egenslab.com/html/agendil/assets/images/header_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding-bottom: 0;
}
.page-header .sticky .main-navbar .navigation .ag_nav_area .menus li a {
  color: #262339;
}
.page-header .sticky .main-navbar .navigation .ag_nav_area .menus li a:hover {
  color: #ff4800 !important;
}

/*
================================================================
==================== AG HEADER AREA END ========================
================================================================
*/
/*
================================================================
================== START ABOUT PAGE AREA =======================
================================================================
*/
.ag_about-area .ag_about-wrapper .img_box {
  margin-top: 3rem;
}
.ag_about-area .about_content-area h2 {
  font-size: 3.8rem;
}
.ag_about-area .about_content-area p {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #7A7A7A;
  padding: 0;
}
.ag_about-area .about_content-area p i {
  font-size: 3rem;
  vertical-align: middle;
  color: #FF6B00;
}
.ag_about-area .about_area-btn {
  padding-top: 1rem;
}

/*===== Counter widget area =====*/
.ag_business-solution {
  background: #101357;
}
.ag_business-solution .counter-inner .widget_info {
  width: 15rem;
  height: 15rem;
  border: 2px solid #FFFFFF;
  border-radius: 0.5rem;
  margin: 0 auto;
}
.ag_business-solution .counter-inner .widget_info .counter-value {
  font-size: 4.2rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  margin: 4.2rem 0;
}
.ag_business-solution .counter-inner .widget_info .counter-value span {
  background: #FF6B00;
  padding: 3rem 1.5rem;
  vertical-align: middle;
  border-radius: 0.5rem;
}
.ag_business-solution .counter-inner h3 {
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}

/*
================================================================
================== END ABOUT PAGE AREA END =====================
================================================================
*/
/*
================================================================
==================== AG CONTACT PAGE AREA CSS ==================
================================================================
*/
.contact-box-area .google_map {
  height: 80%;
}
.contact-box-area .google_map iframe {
  border-radius: 1.5rem;
  margin: 7rem 0;
}
.contact-box-area .form-label {
  font-size: 1.4rem;
}
.contact-box-area .form-button {
  margin-top: 50px;
}
.contact-box-area .single-contact-box {
  box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  transition: all ease 0.3s;
  padding: 2rem 2rem;
  text-align: left;
}
.contact-box-area .single-contact-box:hover {
  transform: translateY(-0.5rem);
  transition: all ease 0.3s;
}
.contact-box-area .single-contact-box .mete-title i {
  background: #FF6B00;
  padding: 0.5rem;
  margin: 2rem 0;
  border-radius: 0.5rem;
}
.contact-box-area .single-contact-box .mete-title i::before {
  font-size: 4.5rem;
  color: #FFFFFF;
}
.contact-box-area .single-contact-box .meta-content {
  margin-left: 2rem;
  padding: 0;
}
.contact-box-area .single-contact-box .meta-content h3 {
  margin: 0;
}
.contact-box-area .single-contact-box .meta-content p {
  margin: 0;
}
.contact-box-area .single-contact-box .meta-content p a {
  color: #262339;
  transition: all ease 0.5s;
}
.contact-box-area .single-contact-box .meta-content p a:hover {
  color: #ff4800;
  transition: all ease 0.5s;
}

.contact-area {
  margin-top: 50px;
}

.contact-area form h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 3rem;
}

.contact-area form .form-group {
  margin-bottom: 30px;
}

.contact-area form button.btn.btn-primary {
  margin-top: 20px;
}

/*
================================================================
==================== AG CONTACT PAGE END =======================
================================================================
*/
/*
================================================================
==================== AG FAQ PAGE AREA CSS ======================
================================================================
*/
/*======== Reusable Componants ==========*/
h4.widget-title {
  margin-bottom: 2.5rem;
  margin-top: 0;
  border-bottom: 1px solid #262339;
  text-transform: capitalize;
  padding-bottom: 0.5rem;
}

/*====== Tag List Widget ======*/
.tagcloud-widget {
  padding: 3rem 0;
}
.tagcloud-widget ul li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
.tagcloud-widget ul li::before {
  position: absolute;
  content: "";
  right: -12px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: #101357;
  transform: translateY(-50%) rotate(20deg);
}
.tagcloud-widget ul li a {
  color: #262339;
  transition: all ease-in-out 0.3s;
  font-size: 1.6rem;
  font-weight: 500;
}
.tagcloud-widget ul li a:hover {
  color: #ff4800;
  transition: all ease-in-out 0.3s;
}

/*======== FAQ Area Start css ==========*/
.ag_faq-area h3 {
  margin: 1px 0 60px 0;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}
.ag_faq-area .nav-tabs {
  justify-content: center;
}
.ag_faq-area .nav-tabs .nav-link {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 26px;
  color: #ff4800;
  border: none;
}
.ag_faq-area .nav-tabs .nav-link.active {
  color: #262339;
}
.ag_faq-area .tab-content {
  padding: 20px;
  border: 1px solid #eee;
  margin-top: -1px;
}
.ag_faq-area .tab-content .accordion-item {
  margin-bottom: 20px;
}
.ag_faq-area .tab-content .accordion-item a {
  font-size: 16px;
  text-transform: uppercase;
  margin: 6px 0;
  display: block;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  color: #353535;
}
.ag_faq-area .tab-content .accordion-item a:hover {
  color: #ff4800;
}
.ag_faq-area .tab-content .accordion-item a i {
  font-size: 24px;
  position: relative;
  top: 3px;
  transform: rotate(180deg);
}
.ag_faq-area .tab-content .accordion-item a.collapsed i {
  transform: rotate(0deg);
}
.ag_faq-area .tab-content .accordion-item p {
  padding: 0px 28px;
}

/*
==================== AG FAQ PAGE AREA END ======================
================================================================
*/
/*
================================================================
==================== AG BLOG PAGE AREA CSS =====================
*/
.blog_grid_area .section-title h3 {
  padding: 0.8rem 0;
}
.blog_grid_area .blog-box .blog-img a img {
  width: 100%;
}

/*
==================== AG BLOG PAGE AREA END =====================
================================================================
*/
/*
================================================================
==================== AG BLOG DETAILS PAGE AREA START ===========
*/
.blog-details-area .blog-details-box .blog-details-content ul li {
  font-size: 1.6rem;
  color: #7A7A7A;
  font-weight: 400;
  margin-right: 3rem;
  align-items: center;
}
.blog-details-area .blog-details-box .blog-details-content ul li img {
  width: 5rem;
  height: 5rem;
  border-radius: 90%;
}
.blog-details-area .blog-details-box .blog-details-content ul li i {
  position: relative;
  top: 2px;
}
.blog-details-area .blog-details-box .blog-details-content ul li p {
  margin: 0;
}
.blog-details-area .blog-details-box .blog-details-content ul li p a {
  color: #262339;
}
.blog-details-area .blog-details-box .blog-details-content ul li p a:hover {
  color: #ff4800;
}
.blog-details-area .blog-details-box .blog-details-content h2 {
  font-size: 3.5rem;
  margin-top: 2rem;
  line-height: normal;
}
.blog-details-area .blog-details-box .blog-details-content .quote-area blockquote {
  text-align: center;
  background: #101357;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 3rem;
}
.blog-details-area .blog-details-box .blog-details-content .quote-area blockquote .quote {
  border-radius: 90%;
  padding: 1.5rem;
  background: #ff6b00;
  width: 8rem;
  padding: 2.2rem;
  align-items: center;
  height: 8rem;
  margin: 0 auto;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
}
.blog-details-area .blog-details-box .blog-details-content .quote-area blockquote .quote i::before {
  font-size: 4.2rem;
  color: #FFFFFF;
}
.blog-details-area .blog-details-box .blog-details-content .quote-area blockquote p {
  color: rgba(255, 255, 255, 0.75) !important;
}
.blog-details-area .blog-details-box .blog-details-content .blog-tag ul li.tag-wrap {
  position: relative;
}
.blog-details-area .blog-details-box .blog-details-content .blog-comment .widget-area-title {
  padding: 2rem 0;
}
.blog-details-area .blog-details-box .blog-details-content .blog-comment ul li .media {
  position: relative;
}
.blog-details-area .blog-details-box .blog-details-content .blog-comment ul li .media img {
  width: 6rem;
  height: 6rem;
  border-radius: 90%;
  margin-top: 1rem;
}
.blog-details-area .blog-details-box .blog-details-content .blog-comment ul li .media .media-body {
  margin-left: 1.5rem;
}
.blog-details-area .blog-details-box .blog-details-content .blog-comment ul li .media .media-body h4 {
  color: #262339 !important;
  text-transform: capitalize;
}
.blog-details-area .blog-details-box .blog-details-content .blog-comment ul li .media .media-body p {
  padding-right: 8rem;
}
.blog-details-area .blog-details-box .blog-details-content .blog-comment ul li .media .media-body .btn-reply {
  position: absolute;
  top: 0;
  right: 0;
}
.blog-details-area .template-sidebar .input-area {
  padding: 0 !important;
}
.blog-details-area .template-sidebar .sidebar-widget-area .ag_input_area {
  border-radius: 0.7rem;
  border: 1rem solid #FFFFFF;
  box-shadow: 0 0px 50px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
}
.blog-details-area .template-sidebar .sidebar-widget-area .ag_input_area input {
  margin: 0;
}
.blog-details-area .template-sidebar .sidebar-widget-area .ag_input_area .search-btn i {
  color: #FFFFFF;
  font-size: 2.8rem;
}
.blog-details-area .template-sidebar .sidebar-widget-area h3.widget-title {
  color: #262339;
}
.blog-details-area .template-sidebar .sidebar-widget-area .widget-post ul li.media {
  padding: 1rem 1.5rem;
}
.blog-details-area .template-sidebar .sidebar-widget-area .widget-post ul li.media .left-box .item-figure {
  display: block;
  overflow: hidden;
  background: #000000;
  border-radius: 0.5rem;
}
.blog-details-area .template-sidebar .sidebar-widget-area .widget-post ul li.media .left-box .item-figure img {
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.blog-details-area .template-sidebar .sidebar-widget-area .widget-post ul li.media:hover .left-box .item-figure img {
  transform: scale(1.2);
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.blog-details-area .template-sidebar .sidebar-widget-area .widget-post ul li.media .media-body {
  margin-left: 1.5rem;
}
.blog-details-area .template-sidebar .sidebar-widget-area .widget-post ul li.media .media-body h4.entry-title {
  font-size: 2rem;
  font-weight: 600;
  text-transform: none;
  margin-top: 0;
}
.blog-details-area .template-sidebar .sidebar-widget-area .widget-post ul li.media .media-body h4.entry-title a {
  color: #262339;
  transition: all 0.3s ease-in-out;
}
.blog-details-area .template-sidebar .sidebar-widget-area .widget-post ul li.media .media-body h4.entry-title a:hover {
  color: #ff4800;
  transition: all 0.3s ease-in-out;
}
.blog-details-area .template-sidebar .sidebar-widget-area .widget-tag ul li {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.blog-details-area .template-sidebar .sidebar-widget-area .widget-tag ul li:hover a {
  background: #101357 !important;
  box-shadow: 0 0.5rem 1rem 0 rgba(16, 20, 87, 0.3) !important;
}

/*
==================== AG BLOG DETAILS PAGE END  =================
================================================================
*/
/*
================================================================
======================== AG SERVICE PAGE AREA ==================
*/
/*====== Process area =======*/
.ag_process-area .ag_process-item {
  position: relative;
}
.ag_process-area .ag_process-item .item_icon i::before {
  color: #FFFFFF;
}
.ag_process-area .ag_process-item span i {
  position: absolute;
  top: 45%;
  color: #FF6B00;
}
.ag_process-area .ag_process-item span i::before {
  font-size: 4.2rem;
}
.ag_process-area .ag_process-item span i:nth-child(1) {
  left: -3rem;
}
.ag_process-area .ag_process-item span i:nth-child(2) {
  right: -3rem;
}

.ag_process-area {
  position: relative;
}
.ag_process-area .ag_process-item {
  text-align: center;
  padding: 3rem;
  border-radius: 1rem;
  transition: all 0.5s ease-in-out;
}
.ag_process-area .ag_process-item:hover .icon-box {
  background: #FF6B00;
  transition: all 0.5s ease-in-out;
}
.ag_process-area .ag_process-item .icon-box {
  background: #101357;
  border-radius: 1rem;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
}
.ag_process-area .ag_process-item .icon-box img {
  padding: 1rem;
  margin: 3.5rem 0;
}

/*
==================== AG SERVICE PAGE AREA END  =================
================================================================
*/
/*
================================================================
================ AG SERVICE DETAILS PAGE AREA  =================
*/
.service-details-area .template-sidebar .sidebar-widget-area .services-menu ul li {
  font-size: 2rem;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  transition: all 0.5s ease-in-out;
}
.service-details-area .template-sidebar .sidebar-widget-area .services-menu ul li:hover {
  background: #ff4800;
  transition: all 0.5s ease-in-out;
}
.service-details-area .template-sidebar .sidebar-widget-area .services-menu ul li:hover a {
  color: #FFFFFF;
  transition: all 0.5s ease-in-out;
}
.service-details-area .template-sidebar .sidebar-widget-area .services-menu ul li a {
  font-weight: 500;
  color: #101357;
}
.service-details-area .template-sidebar .sidebar-widget-area .services-menu ul li a span i {
  float: right;
}
.service-details-area .template-sidebar .sidebar-widget-area p {
  color: #101357;
  margin: 0;
}

.service-details-content .services-btns .btn-service {
  border-radius: 0.5rem;
}
.service-details-content .services-btns a:first-child {
  background: #FFFFFF !important;
  color: #FF6B00 !important;
  border: 0.1rem solid #FF6B00 !important;
}
.service-details-content .services-btns a:first-child:hover {
  background: #ff4800 !important;
  color: #FFFFFF !important;
}

/*
================= AG SERVICE DETAILS PAGE AREA END  ============
================================================================
*/
/*
================================================================
================= AG PORTFOLIO PAGE AREA =======================
*/
.portfolio-item-box .box-item .box-content ul li {
  color: #101357;
  font-size: 1.6rem;
  font-weight: 500;
}

.page-navigation .pagination-dots .dot {
  position: relative;
}
.page-navigation .pagination-dots .dot a span::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  border-radius: 5rem;
  top: 0;
  background: #949090;
}
.page-navigation .pagination-dots .dot a:hover {
  background: #ff4800;
}
.page-navigation .pagination-dots .dot a.active {
  position: relative;
}
.page-navigation .pagination-dots .dot a.active span::before {
  content: "";
  height: 1.9rem;
  width: 1.9rem;
  border: 1px solid #FF6B00;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  border-radius: 90%;
  top: -3px;
  left: -3px;
}

/*============== AG PORTFOLIO DETAILS PAGE AREA ================*/
.portfolio-details .project-info-item ul li h3 {
  font-size: 2rem;
  padding: 0.5rem 0;
  margin: 0 !important;
}
.portfolio-details .project-info-item ul li p {
  margin: 0;
}
.portfolio-details .box-content .arrow-box {
  min-width: 5rem;
  max-height: 5rem;
  background: #FF6B00;
  border-radius: 0.5rem;
  text-align: center;
  margin-top: 3rem;
  margin-right: 1.5rem;
}
.portfolio-details .box-content .arrow-box i {
  color: #FFFFFF;
  font-size: 3rem;
  min-width: 5rem;
  padding: 1rem 0;
}
.portfolio-details .box-content p {
  margin-top: 2.5rem;
}

/*
================================================================
================= AG PORTFOLIO PAGE AREA END  ==================
================================================================
*/
/*
================================================================
=================== AG 404 ERROR PAGE AREA START ===============
================================================================
*/
.ag_error_page .error-area .error .error-title {
  font-size: 20rem;
  font-weight: 700;
  color: #101357;
}
.ag_error_page .error-area .error .erro-subTitle {
  margin-bottom: 3rem;
}
.ag_error_page .error-area .error p.error-content {
  font-size: 1.6rem;
  margin-bottom: 5rem;
}
.ag_error_page .error-area .error .btn-error {
  margin-right: 1rem;
}
.ag_error_page .error-area .error .btn-error2 {
  background: #FFFFFF !important;
  color: #101357;
  border: 1px solid #101357 !important;
}
.ag_error_page .error-area .error .btn-error2:hover {
  box-shadow: 0 0.5rem 1rem 0 rgba(16, 20, 87, 0.3) !important;
}

/*
================================================================
=================== AG 404 ERROR AREA END ======================
================================================================
*/

/*# sourceMappingURL=main.css.map */
