/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: Gilroy-Bold;
  src: url('../fonts/Gilroy-Bold.ttf');
}
@font-face {
  font-family: Gilroy-Medium;
  src: url('../fonts/Gilroy-Medium.ttf');
}
@font-face {
  font-family: Gilroy-Regular;
  src: url('../fonts/Gilroy-Regular.ttf');
}
@font-face {
  font-family: LexendDeca-Bold;
  src: url('../fonts/LexendDeca-Bold.ttf');
}
@font-face {
  font-family: LexendDeca-Medium;
  src: url('../fonts/LexendDeca-Medium.ttf');
}
@font-face {
  font-family: LexendDeca-SemiBold;
  src: url('../fonts/LexendDeca-SemiBold.ttf');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: #000;
  font-size: 18px;
  font-family: 'Gilroy-Regular';
  overflow-x: hidden;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "LexendDeca-Bold";
}

/*--------------------------------------------------------------
# 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 #f05922;
  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;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f05922;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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;
  padding: 15px 0;
  z-index: 997;
  position: relative;
  background: #003399;
}

#header .logo img {
  max-height: 35px;
}

.nav-link img {
  max-width: 40px;
  padding-right: 10px;
}

a.nav-link {
  color: #fff;
  display: flex;
  align-items: center;
}

a.nav-link:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: visible;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  color: #f05922;
  display: inline-block;
  border-radius: 50px;
}

.section-title p {
  margin: 15px auto;
  font-size: 20px;
  font-family: 'Gilroy-Regular';
  width: 80%;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  background: url(../img/Export/Web-Banner.png) top left;
  background-size: cover;
  position: relative;
  background-position: 100% 100%;
  height: calc(100vh - 65px);
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
}

.Hero-Content p {
  color: #fff;
  font-size: 22px;
  font-family: 'Gilroy-Medium';
}

.Hero-Content ul {
  list-style: none;
  padding: 0;
}

.Hero-Content ul li {
  margin-bottom: 15px;
}

ul.leading-point img {
  max-width: 30px;
}

.leading-point span {
  color: #fff;
  font-size: 22px;
  margin-left: 15px;
  font-family: 'Gilroy-Medium';
}

.blink_text {
    color:#003399;
    /*animation-name: blinker;*/
    /*animation-duration: 1.5s;*/
    /*animation-timing-function: linear;*/
    /*animation-iteration-count: infinite;*/
}

/*@keyframes blinker {  */
/*    0% { opacity: 1.0; }*/
/*    50% { opacity: 0.0; }*/
/*    100% { opacity: 1.0; }*/
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Choose Us
--------------------------------------------------------------*/
#Why-Choose {
    position: relative;
}

.Why-Choose-Content h2 {
  font-size: 36px;
  color: #f05922;
}

.Why-Choose-Content p b {
    color:#f05922;
}

.Why-Choose-Content ul {
  position: relative;
  list-style: none;
  padding: 10px 10px 10px 0;
}

.Why-Choose-Content ul::before {
  content: '';
  position: absolute;
  top: 6%;
  left: 2%;
  height: 89%;
  border-left: 3px dashed#f05922;
}

.Why-Choose-Content li {
  position: relative;
  font-size: 18px;
  padding-left: 40px;
  margin-bottom: 15px;
}

.Why-Choose-Content ul li:nth-child(6) {
  margin-bottom: 0;
}

.Why-Choose-Content li:before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/img_point.png) no-repeat;
  margin-top: 5px;
}

.Why-Choose-Form {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 20px 0 rgba(0, 0, 0, 0.2);
  width: 80%;
  display: flex;
  margin: 0 auto;
  margin-top: -39%;
}

.Why-Choose-Form .Why-Choose-Heading h4 {
  background-color: #003399;
  border-radius: 10px 10px 0 0;
  color: #fff;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-family: "LexendDeca-SemiBold";
}

.Why-Choose-Form .Why-Choose-Body {
  padding: 0 20px 20px 20px;
}

.form-control:focus {
  background: #f2f2f2;
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}

.form-control {
  border: unset;
  border-radius: 5px;
  background: #f2f2f2;
}

.form-control::placeholder {
  border: unset;
  background: #f2f2f2;
  color: #000;
}

input, textarea {
  background-color: #f1f1f1;
}

.Why-Choose-Form-Btn button {
  background-color: #f05922;
  width: 100%;
  border: unset;
  color: #fff;
  padding: 10px 0;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
#Challenges {
  background: url(../img/img_challenges_bg.png);
  background-size: cover;
}

.Challenges-Box {
  line-height: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid #a7a7a7;
  margin: 20px;
  height: 100%;
}

.Challenges-Box p{
  margin-bottom: 0;
  margin-right: 10px;
  font-size: 24px;
}

.Challenges-Box p i{
  color: #f05922;
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Our Cloud Services
--------------------------------------------------------------*/
.Our-Cloud-Box {
  border: 1px solid#000;
  border-radius: 10px;
  padding: 10px;
  height: 100%;
  overflow: hidden;
}

.Our-Cloud-Box p {
  font-size: 24px;
  padding: 20px 20px 0 20px;
  font-family: 'Gilroy-Medium';
}

/*--------------------------------------------------------------
# Get-started
--------------------------------------------------------------*/
#Get-started {
  background: url(../img/img_elements.png) center center;
  background-repeat: no-repeat;
}

.Get-started-Box {
  border: 1px solid#000;
  border-radius: 10px;
  padding: 10px;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.Get-started-Box-Title {
  text-align: center;
}

.Get-started-Box-Title h4 {
  font-size: 30px;
  color: #f05922;
}

.nav-tabs .nav-link {
  color: #000 !important;
}

.nav-link.active {
  background-color: #f05922 !important;
  color: #fff !important;
  font-weight: bold;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{
  color: #000;
}

.Get-started-Box-Image {
  text-align: center;
}

.Get-started-Box-List ul {
  list-style: none;
  font-size: 20px;
  font-family: 'Gilroy-Medium';
  padding: 20px 0 20px 80px;
}

.Get-started-Box-List ul li {
  margin-bottom: 20px;
}

.Get-started-Box-List ul li:nth-child(6) {
  margin-bottom: 0;
}

.Get-started-Box-Content {
  text-align: center;
}

.Get-started-Box-Content p {
  font-family: 'Gilroy-Medium';
  font-size: 20px;
  margin: 0;
}

.Get-started-Box-Content p strong {
  font-size: 30px;
  font-family: 'Gilroy-Bold';
}

.Get-started-Box-Content p span {
  color: #f05922;;
}

.Get-started-Button a {
  color: #f05922;
  font-size: 18px;
  border: 1px solid#f05922;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Explore Our
--------------------------------------------------------------*/
#Explore-Our {
  background: #f05922;
  padding-bottom: 20%;
}

.Explore-Our-Box {
  background: #fff;
  padding: 20px 15px;
  text-align: center;
  color: #f05922;
  border-radius: 10px;
}

.Explore-Our-Box h4 {
  margin: 0;
  font-family: 'LexendDeca-Medium';
}

.Explore-Our-Content p {
  width: 70%;
  font-size: 24px;
  text-align: center;
  display: flex;
  margin: 0 auto;
  font-family: 'Gilroy-Medium';
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#Footer {
  background: #000000;
  padding: 50px 0 30px 0;
  color: #fff;
  font-size: 14px;
}

.footer-form {
  background-color: #fff;
  padding: 50px 0;
  border-radius: 10px;
  margin-top: -22%;
}

.form-heading h2 {
  font-size: 36px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  color: #f05922;
  display: inline-block;
  border-radius: 50px;
}

.form-heading p {
  color: #000;
  margin: 15px auto;
  font-size: 20px;
  width: 80%;
}

.footer-form-design {
  padding: 0 55px;
}

.footer-form-design button.submit-btn {
  margin: 0 auto;
  display: flex;
  padding: 5px 50px;
  border-radius: 5px;
  border: unset;
  background: #f05922;
  color: #fff;
  font-size: 18px;
}

.footer-form-design label {
  display: inline-block;
  font-size: 15px;
  color: #fff;
}

.footer-logo p {
  font-size: 20px;
  position: relative;
  padding-left: 50px;
  margin-top: 25px;
  margin-bottom: 0;
}

.footer-logo p::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 5%;
  height: 2px;
  left: 0px;
  top: 40%;
}

.footer-address p {
  font-size: 18px;
}

.social-link ul {
  list-style: none;
  margin: 0;
}

.social-link ul li {
  font-size: 18px;
  margin-bottom: 10px;
}

.social-link ul li i {
  margin-right: 10px;
}

.social-link ul li a {
  color: #fff;
}

.social-link {
  display: flex;
  justify-content: center;
}


.social-icons {
  display: flex;
}

.social-icons .social-media {
  position: relative;
  padding: 0px 20px;
}

.social-media img {
  max-width: 45px;
}

.social-icons .social-media::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 30%;
  height: 1px;
  top: 50%;
  left: 85%;
}

.social-icons .social-media:nth-child(5):before {
  background-color: transparent;
}

/*--------------------------------------------------------------
# Thank You Page
--------------------------------------------------------------*/
#thank-you-content {
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#thank-you-content h2 {
    font-size: 50px;
    font-weight: bold;
    color: #003399;
}

#thank-you-content p {
    font-size: 30px;
    color: #003399;
    margin: 0;
}

.thank-you-content .leave-your-button a {
  background: #66BE44;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  font-family: 'K2D-Regular';
  font-size: 20px;
}

.thank-you-content .leave-your-button a:hover {
  background: #003399;
}