/*--------------------------------------------------------------
# fonts
--------------------------------------------------------------*/
@font-face {
  font-family: 'OpenSans-Bold';
  src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'OpenSans-Regular';
  src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  color: #106eea;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

.modal-open header {
  padding: 15px !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #101d81;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #101d81;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px;
}

#header.header-scrolled {
  top: 0;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header-scrolled .fixed-logo {
  display: none;
}

.header-scrolled .sticky-logo {
  display: block;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.header-scrolled {
  position: sticky;
}

.sticky-logo {
  display: none;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 50px;
}

.mobile-fixed-logo {
  display: none;
}

.header-inner .nav-menu a {
  color: #000;
}

.header-inner .sticky-logo {
  display: block !important;
}

.header-inner .fixed-logo {
  display: none;
}

.other-content {
  padding-top: 120px;
}

@media (max-width: 992px) {
  #header {
    padding: 15px;
    top: 0;
  }

  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul {
  display: flex;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 15px 0 20px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  padding: 0 3px;
  font-family: 'Poppins', sans-serif;
}

.nav-menu>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ee3123;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

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

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #fff;
}

.header-scrolled .nav-menu a:hover,
.header-scrolled .nav-menu .active>a,
.header-scrolled .nav-menu li:hover>a {
  color: #ee3123;
}

.header-scrolled .nav-menu a {
  color: #222;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 26px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #062b5b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #106eea;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: absolute;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #222222;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #106eea;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  height: 70vh;
  position: relative;
}

.hero-slider {
  position: relative;
}

.hero-image img {
  height: 70vh;
  width: 100%;
  object-fit: cover;
}

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

.hero-content h1 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

.hero-slider .slick-dots {
  position: absolute;
  bottom: 10px;
}

.slick-slide {
  height: auto;
}

.slick-dots li button:before {
  font-size: 15px;
  line-height: 15px;
  width: 15px;
  height: 15px;
  content: '•';
  text-align: center;
  opacity: 1;
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: transparent;
  border: 3px solid #ee3123;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: transparent;
  background-color: #ee3123;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  color: #101d81;
}

.section-title h2.Red {
  color: #ee3123;
}

.section-button {
  padding-top: 30px;
}

.section-button a {
  background-color: #e4e4e4;
  color: #ee3123;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-bottom-right-radius: 35px;
}

.section-button button {
  background-color: #e4e4e4;
  color: #ee3123;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border-bottom-right-radius: 35px;
  border: none;
}

.submit-success {
  display: none;
}

.section-button button:focus {
  outline: none;
}

.error {
  color: red;
}

.section-background {
  background-image: url(../img/section-bg.png);
  background-position: top;
  background-size: 100% 70%;
  background-repeat: no-repeat;
}

.section-background-color {
  background-color: #fbfbfb;
}

.modal-body p {
  text-align: justify;
}

.modal-title {
  color: #ee3123;
}

/*--------------------------------------------------------------
# Holiday Operator
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Numbers
--------------------------------------------------------------*/
.number-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 15%);
  min-height: 123px;
}

.number-box-content h2 {
  margin: 0;
  color: #101d81;
  font-size: 40px;
}

.number-box-content {
  width: 80%;
}

.number-box-content p {
  margin: 0;
  color: #434343;
  font-size: 19px;
}

.number-box-icon img {
  width: 80px;
}

.our-legacy-title {
  margin-bottom: 30px;
  color: #101d81;
  text-align: center;
}

/*--------------------------------------------------------------
# Thought Leadership
--------------------------------------------------------------*/
#thought-leadership .section-title {
  margin-bottom: 20px;
}

.thought-leadership-box {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 15%);
  padding: 20px;
  border-right: 5px solid #b5b5b5;
}

.thought-leadership-content h5 {
  color: #ee3123;
}

/*--------------------------------------------------------------
# Life at Jet2 TT 
--------------------------------------------------------------*/
#life-jet .section-title {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Leadership team
--------------------------------------------------------------*/
#leadership-team {
  padding-bottom: 20px;
}

.team-slider {
  padding: 0;
  margin: 0;
}

.team-slider li {
  padding: 20px;
  margin-top: 30px;
}

.team-box {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 15%);
  padding: 20px;
  border-bottom: 3px solid #b5b5b5;
  min-height: 370px;
}

.team-member-image {
  margin-top: -70px;
  margin-bottom: 15px;
}

.team-member-name {
  margin-bottom: 20px;
}

.team-member-details h2 {
  margin: 0;
}

.team-member-details h2 {
  color: #949494;
}

.team-member-details h2 span {
  color: #101d81;
}

.team-member-details p {
  min-height: 80px;
}

.team-read-more a {
  color: #ee3123 !important;
  font-weight: 700;
  cursor: pointer;
}

.team-slider .slick-dots {
  position: relative;
  bottom: 0;
}

.team-slider .slick-dots li {
  padding: 0;
  margin-top: 0;
}

.team-slider .slick-dots li button:before {
  font-size: 15px;
  line-height: 15px;
  width: 15px;
  height: 15px;
  content: '•';
  text-align: center;
  opacity: 1;
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: transparent;
  border: 3px solid #949494;
  border-radius: 50%;
}

.team-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: transparent;
  background-color: #949494;
}

/*--------------------------------------------------------------
# Latest News
--------------------------------------------------------------*/
#latest-news {
  padding-top: 20px;
}

.news-box {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 15%);
  padding: 20px;
  height: 100%;
  border-bottom: 3px solid #b5b5b5;
}

.news-box h6 {
  color: #101d81;
}

.news-box h6 span {
  margin-left: 10px;
}

.news-box p {
  color: black;
}

/*--------------------------------------------------------------
# Career Page
--------------------------------------------------------------*/
.wrapper {
  width: 100%;
  padding-top: 20px;
  text-align: center;
}

.wrapper .carousel {
  width: 100%;
  margin: 0px auto;
}

.wrapper .slick-slide {
  margin: 10px;
}

.wrapper .slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}

.wrapper .slick-dots li button:before {
  font-size: 15px;
  line-height: 15px;
  width: 15px;
  height: 15px;
  content: '•';
  text-align: center;
  opacity: 1;
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: transparent;
  border: 3px solid #132083;
  border-radius: 50%;
}

.wrapper .slick-dots li.slick-active button:before {
  opacity: 1;
  color: transparent;
  background-color: #132083;
}

.wrapper .slick-list.draggable {
  padding: 0 !important;
}

/*--------------------------------------------------------------
# Top Banner
--------------------------------------------------------------*/
.page-top-banner {
  position: relative;
}

.top-banner-image,
.top-banner-image img {
  height: 70vh;
  width: 100%;
}

.top-banner-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 60px 0;
}

.section-banner-button {
  margin-top: 40px;
}

.section-banner-button a {
  color: #fff;
  background-color: #ee3123;
  padding: 15px 30px;
  border-bottom-right-radius: 35px;
}

/*--------------------------------------------------------------
# Our Brands
--------------------------------------------------------------*/
.brand-box {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 15%);
  padding: 20px;
}

/*--------------------------------------------------------------
# Our Core Value
--------------------------------------------------------------*/
.core-value-box {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-bottom: 3px solid #b5b5b5;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 15%);
  padding: 20px;
  height: 100%;
}

.core-value-content h4 {
  color: #ee3123;
}

/*--------------------------------------------------------------
# Career Team
--------------------------------------------------------------*/
#career-team {
  background-color: #101d81;
}

.career-team-box-main {
  background-color: #fff;
  padding: 20px;
  border-bottom: 3px solid #b5b5b5;
  height: 100%;
}

.career-team-member-info h5 {
  color: #ee3123;
}

/*--------------------------------------------------------------
# What Expect
--------------------------------------------------------------*/
.expect-box {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 15%);
  padding: 20px;
  border-bottom: 3px solid #b5b5b5;
  height: 100%;
}

.expect-box h5 {
  color: #ee3123;
}

/*--------------------------------------------------------------
# Extra Mile
--------------------------------------------------------------*/
#extramile {
  background-image: url(../../assets/img/extra-mile-bg.png);
}

.extra-mile-content h1 {
  color: #ee3123;
}

.extra-mile-content h1 span {
  font-size: 55px;
  color: #2b3279;
}

.extra-mile-content p {
  width: 80%;
}

.extra-mile-slide {
  position: relative;
}

.extra-mile-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: red;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-bottom-left-radius: 60px;
}

.extra-mile-slide-content h2 {
  margin: 0;
}

.extra-mile-slide-content p {
  margin: 0;
  font-size: 19px;
}

.extra-mile-slide img {
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
}

.extra-mile-button {
  margin: 20px;
  text-align: center;
}

.extra-mile-button a {
  background-color: #2b3279;
  color: #fff;
  padding: 5px 10px;
  font-size: 19px;
  font-weight: bold;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Our Motivation
--------------------------------------------------------------*/
.motivation-box {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 15%);
  padding: 30px;
  margin-top: 100px;
  min-height: 560px;
}

.single-motivation {
  padding: 20px;
}

.motivation-image img {
  margin-top: -120px;
}

.motivation-content h5 {
  color: #ee3123;
}

.motivation-content .Designation {
  color: #ee3123;
  margin-bottom: 0;
}

.motivation-content .Department {
  color: #ee3123;
}

/* .motivation-content p {
    min-height: 145px;
} */

.motivation-read-more a {
  color: #ee3123;
}

/*--------------------------------------------------------------
# Working With
--------------------------------------------------------------*/
#working-with {
  background-color: #fbfbfb;
}

.single-working-with {
  padding: 20px;
}

.working-with-box {
  position: relative;
}

.working-with-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background-color: rgba(238, 49, 35, 0.8);
}

.working-with-content p {
  margin: 0;
  font-size: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #fff;
}

/*--------------------------------------------------------------
# Articles
--------------------------------------------------------------*/
.single-article-box {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 15%);
  padding: 20px;
  border-bottom: 3px solid #ee3123;
}

.single-article-box h6 {
  color: #ee3123;
}

/*--------------------------------------------------------------
# What we do page
--------------------------------------------------------------*/
.e-commerce-content-p {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 10px 5px;
}

.mobile-p {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 10px 5px;
}

.business-intelligence-p {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 10px 5px;
}

.data-engineering-p {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 10px 5px;
}

.data-science-p {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 10px 5px;
}

.business-app-p {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 10px 5px;
}

.data-scientists-content {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 15%);
  padding: 45px;
}

.sub-title {
  font-size: 20px;
  font-weight: 600;
  color: #101d81;
}

#ul_top_hypers {
  list-style: disc;
  display: flex;
  flex-wrap: wrap;
  margin-left: -32px;
}

#ul_top_hypers li {
  margin: 15px 15px 0px 15px;
  list-style: disc;
  font-weight: 600;

}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-newsletter {
  padding: 50px 0;
  background-color: #f7f7f7;
  border-bottom: 1px solid #eeeeee;
}

.footer-top {
  padding: 50px 0;
  background-color: #f7f7f7;
}

.footer-newsletter h4 {
  margin-bottom: 20px;
}

.footer-newsletter input[type="email"] {
  background-color: #eeeeee;
  border: none;
  padding: 5px 15px;
  margin-right: 10px;
  color: #434343;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.footer-newsletter input:focus-visible {
  outline: none;
}

.footer-newsletter input[type="submit"] {
  padding: 5px 30px;
  border: none;
  background-color: #d3d3d3;
  color: #434343;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

::-webkit-input-placeholder {
  /* Edge */
  color: #434343;
  font-family: 'Poppins', sans-serif;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #434343;
  font-family: 'Poppins', sans-serif;
}

::placeholder {
  color: #434343;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.footer-logo img {
  width: 250px;
}

.social-links a {
  padding: 0 2px;
}

.social-links a i {
  border: 1px solid #434343;
  color: #434343;
  border-radius: 50%;
  padding: 2px;
}

.footer-links h6 {
  color: #434343;
}

.footer-links ul {
  padding: 0;
  list-style-type: none;
}

.footer-links ul li a {
  color: #434343;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.footer-links p {
  color: #434343;
}

.footer-links .career a {
  color: #ee3123;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.footer-links .career a i.icofont-arrow-right {
  padding-left: 5px;
}

.footer-links .career a .icofont-arrow-right:before {
  border: 2px solid #ee3123;
  border-radius: 50%;
  color: #434343;
  padding: 3px;
  font-size: 20px;
}

/*News Article*/
.vcc-pune-content {
  padding-top: 40px;
  text-align: justify;
}

.jet2-holiday {
  font-size: 20px;
  font-weight: 500;
}

.team-view-map a {
  color: #101d81;
  font-weight: 500;
  text-decoration: underline;
}

.office-box p {
  text-align: center;
  padding: 10px;
}


.contact-form {
  width: 100%;
  box-shadow: 0 0 29px 0 rgb(116 116 116 / 12%);
  padding: 40px;
  border-radius: 0px 0px 90px;
  margin-top: -100px;
  z-index: -999;
  background-color: #fff;
}

.contact-us {
  overflow: visible;
}

/*--------------------------------------------------------------
# Whitepapers page
--------------------------------------------------------------*/

.Whitepapers-Content h4 {
  font-size: 26px;
  color: #281a74;
}

.Whitepapers-Image img {
  border-radius: 0 0 50px 0;
}

.Whitepapers-Content button {
  background: #ee3123;
  color: #fff;
  border-radius: 0 0 20px 0;
}

.Whitepapers-Content:hover button {
  background: #ee3123;
  color: #fff;
}

.modal-content {
  border-radius: 0 0 100px 0;
}

.modal-body .btn:not(:disabled):not(.disabled) {
  background: #ee3123;
  color: #fff;
  border-radius: 0 0 30px 0;
  padding: 10px 50px;
  border: unset;
  display: flex;
  margin: 0 auto;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  border: 1px solid #ced4da;
  border-radius: 10px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: unset;
}

.form-control:focus {
  color: #333333;
  background-color: #fff;
  border-color: #ced4da;
  outline: 0;
  box-shadow: unset;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0 45px 45px 45px;
}

.form-control::placeholder {
  color: #333333;
  font-size: 16px;
  font-family: 'OpenSans-Regular';
  font-weight: normal;
}

.modal-body h5 {
  color: #101d81;
  font-size: 35px;
  text-align: center;
}

.modal-body p {
  color: #333333;
  font-size: 18px;
  text-align: center;
}

.modal-header {
  border-bottom: unset;
  padding-bottom: 0;
}

button:focus {
  outline: unset;
  outline: unset;
}

/*--------------------------------------------------------------
# End Whitepapers page
--------------------------------------------------------------*/

@media (max-width: 1024px) {

  .number-box-content p {
    font-size: 17px;
  }

  .number-box-content h2 {
    font-size: 30px;
  }

  .team-box {
    min-height: 400px;
  }

  .team-member-details p {
    min-height: 130px;
  }

  .top-banner-image img {
    height: 100%;
  }

  .core-value-box {
    display: block;
    text-align: center;
  }

  .core-value-icon img {
    margin-bottom: 10px;
  }

  .number-box {
    min-height: 185px;
  }

  .top-banner-image,
  .top-banner-image img {
    height: auto;
  }

  .blog-listing-content .title {
    font-size: 20px !important;
  }
}

@media (max-width: 767px) {

  section {
    padding: 30px 0;
  }

  .fixed-top {
    position: relative;
  }

  .top-banner-image,
  .top-banner-image img {
    height: unset;
  }

  .hero-content h1 {
    font-size: 25px;
  }

  .hero-section {
    height: 35vh;
  }

  .hero-image img {
    height: 35vh;
  }

  #header .logo img {
    max-height: 30px;
  }

  .top-banner-image img {
    height: 100%;
  }

  .extra-mile .row .col {
    flex-basis: unset;
  }

  .extra-mile-content:before,
  .extra-mile-content:after,
  .extra-mile-second .extra-mile-content:before,
  .extra-mile-second .extra-mile-content:after {
    display: none;
  }

  .extra-mile-second .extra-mile-content {
    padding-top: 0px;
  }

  .top-banner-content h1 {
    font-size: 25px;
  }

  .mobile-fixed-logo {
    display: block;
  }

  .fixed-logo {
    display: none;
  }

  .motivation-content p,
  .motivation-box {
    min-height: auto;
  }

  .section-background {
    background-size: cover;
  }

  .contact-form {
    margin-top: 30px;
  }

  .number-box {
    min-height: auto;
  }

  .team-box {
    min-height: unset;
  }

  .extra-mile-content p {
    width: 100%;
  }

  .blog-content-main {
    margin-top: 15px;
  }

}