@font-face {
  font-family: 'grandcentral';
  src: url('../fonts/grandcentral-bold.eot');
  src: url('../fonts/grandcentral-bold.eot#iefix') format('embedded-opentype'),
    url('../fonts/grandcentral-bold.woff2') format('woff2'),
    url('../fonts/grandcentral-bold.woff') format('woff'),
    url('../fonts/grandcentral-bold.ttf') format('truetype'),
    url('../images/grandcentral-bold.svg#grandcentralbold') format('svg');
  font-weight: bold;
  font-style: normal;

}

@font-face {
  font-family: 'grandcentral';
  src: url('../fonts/grandcentral-light.eot');
  src: url('../fonts/grandcentral-light.eot#iefix') format('embedded-opentype'),
    url('../fonts/grandcentral-light.woff2') format('woff2'),
    url('../fonts/grandcentral-light.woff') format('woff'),
    url('../fonts/grandcentral-light.ttf') format('truetype'),
    url('../images/grandcentral-light.svg#grandcentrallight') format('svg');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'adobe_clean_uxregular';
  src: url('../fonts/adobe_clean_ux.eot');
  src: url('../fonts/adobe_clean_ux.eot#iefix') format('embedded-opentype'),
    url('../fonts/adobe_clean_ux.woff2') format('woff2'),
    url('../fonts/adobe_clean_ux.woff') format('woff'),
    url('../fonts/adobe_clean_ux.ttf') format('truetype'),
    url('../images/adobe_clean_ux.svg#adobe_clean_uxregular') format('svg');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'times_roman_sc__osfregular';
  src: url('../fonts/times_regular.eot');
  src: url('../fonts/times_regular.eot#iefix') format('embedded-opentype'),
    url('../fonts/times_regular.woff2') format('woff2'),
    url('../fonts/times_regular.woff') format('woff'),
    url('../fonts/times_regular.ttf') format('truetype'),
    url('../images/times_regular.svg#times_roman_sc__osfregular') format('svg');
  font-weight: normal;
  font-style: normal;

}

/* body,
html {
    overflow-x: hidden;
} */
:root {
  --grandcentral: 'grandcentral';
  --adobe_clean_uxregular: 'adobe_clean_uxregular';
  --times: 'times_roman_sc__osfregular';
  --color-blue: #05aeff;
  --color-blue-rgb: 5, 174, 255;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-grey: #414141;
}

body,
html {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--adobe_clean_uxregular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.5;
  background-color: var(--color-white);
}

::-moz-selection {
  background-color: var(--color-grey);
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background-color: var(--color-grey);
  color: var(--color-white);
  text-shadow: none;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--color-blue);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--color-black);
}

img {
  max-width: 100%;
}


.login_box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: #003d59;
    padding: 40px 30px;
    text-align: left;
    border-radius: 10px;
    margin-bottom: 20px;
}
.login_box h4 {
    color: #ffffff;
    margin: 0 0 25px 0;
    font-size: 26px;
    border-bottom: 1px #155a79 solid;
    padding-bottom: 15px;
    text-transform: uppercase;
}
.c-btn-close,
.c-manu-btn {
  width: 42px;
  height: 42px;
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-blue);
}

.c-main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.c-nav-top {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-white);
}

.c-nav-top ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
}

.c-nav-top ul li {
  margin: 0 15px;
  font-size: 15px;
  font-weight: normal;
  font-family: 'Times New Roman', Times, serif;
  line-height: 1;
  font-style: italic;
}

.c-nav-top ul li a {
  color: var(--color-white);
  display: flex;
  align-items: center;
}

.c-nav-top ul li a:hover {
  color: var(--color-blue);
}

.c-nav-top ul li i {
  margin-right: 5px;
}

.navbar-nav li {
  padding: 0 20px;
}

.navbar-nav li:last-child {
  padding-right: 0;
}

.navbar-nav li:first-child {
  padding-left: 0;
}

.navbar-nav li a {
  font-family: var(--grandcentral);
  font-weight: normal;
  color: var(--color-white);
  line-height: normal;
  padding: 0;
}

.c-navbar {
  justify-content: space-between;
  padding: 0;
}

.c-nav-bottom {
  padding: 15px 0;
}

.c-top-section {
  background-color: var(--color-black);
}

@media (min-width: 992px) {

  .c-btn-close,
  .c-manu-btn {
    display: none;
  }
}

.c-main-banner {
  padding: 200px 0 100px;
  z-index: 2;
  position: relative;
}

.c-banner-content {
  max-width: 560px;
}

.c-banner-content h1 {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.3;
  margin: 0 0 30px;
  font-family: var(--grandcentral);
}

.c-banner-content h1 span {
  color: var(--color-blue);
}


.c-cmn-btn {
  font-size: 20px;
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: 40px;
  background-color: var(--color-blue);
  display: inline;
  font-weight: bold;
  font-family: var(--grandcentral);
}

.c-cmn-btn:hover {
  background-color: var(--color-grey);
  color: var(--color-white);
}

.c-cmn-btn.c-cmn-btn-white {
  background-color: var(--color-white);
  color: var(--color-blue);
}

.c-cmn-btn.c-cmn-btn-white:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}


.c-banner-content .c-btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.c-banner-content .c-btn-group a+a {
  margin-left: 20px;
}

.c-services-list-sec {
  z-index: 2;
  position: relative;
  padding: 0 0 100px;
}

.c-top-section-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.c-services-list-item {
  height: 100%;
  background-color: rgba(var(--color-blue-rgb), 0.6);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-services-list-item h2 {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.1;
  margin: 0 0 5px;
  font-family: var(--grandcentral);
}

.c-services-list-item p {
  font-size: 15px;
  font-weight: normal;
  color: var(--color-white);
  line-height: 1.5;
  margin: 0 0 40px;
}

.c-services-list-item .c-cmn-btn {
  font-size: 16px;
}

.c-about-section {
  padding: 100px 0;
}

.c-cbout-content {
  max-width: 600px;
}

.c-subheading {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-blue);
  line-height: 1;
  font-family: var(--grandcentral);
  margin: 0 0 10px;
}

.c-cbout-content h2 {
  font-size: 35px;
  font-weight: bold;
  color: var(--color-black);
  line-height: 1.1;
  margin: 0 0 20px;
  font-family: var(--grandcentral);

}

.c-cbout-content p {
  font-weight: bold;
  font-size: 14px;
  color: var(--color-black);
  line-height: 1.5;
  margin: 0 0 30px;
}

.c-about-section .row {
  align-items: center;
}

.c-about-section figure {
  margin: 0 0 0 auto;
  width: fit-content;
}

.c-main-footer {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.c-contact-item {
  background-color: var(--color-white);
  padding: 15px;
  height: 100%;
  text-align: center;
}

.c-contact-item h2 {
  font-size: 20px;
  font-family: var(--grandcentral);
  font-weight: bold;
  color: var(--color-grey);
  line-height: 1.1;
  margin: 0 0 10px;
}

.c-contact-item a {
  font-size: 15px;
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  line-height: 1;
  color: var(--color-grey);
}

.c-contact-item a:hover {
  color: var(--color-blue);
}

.c-contact-sec-top {
  position: relative;
  z-index: 2;
  padding: 80px 0 0;
}

.c-contact-sec-bottom {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.c-contact-sec-bottom iframe {
  width: 100%;
  height: 100%;
  margin: 0 0 -7px;
}

.c-contact-form-wpr {
  padding: 30px;
  background-color: var(--color-white);
}

.c-contact-form-wpr .form-control {
  height: 52px;
  border: 1px solid var(--color-grey);
  border-radius: 0;
  background-color: var(--color-white);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: bold;
  color: var(--color-grey);
}

.c-contact-form-wpr textarea.form-control {
  height: 155px;
  padding: 10px 20px;
}

.form-control::-webkit-input-placeholder {
  color: var(--color-grey);
  opacity: 0.4;
}

.form-control::-moz-placeholder {
  color: var(--color-grey);
  opacity: 0.4;
}

.form-control:-ms-input-placeholder {
  color: var(--color-grey);
  opacity: 0.4;
}

.form-control:-moz-placeholder {
  color: var(--color-grey);
  opacity: 0.4;
}

.c-contact-form-wpr .row {
  --bs-gutter-y: 15px;
}


.cmnbtn {
  font-size: 20px;
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: 0px;
  background-color: var(--color-blue);
  display: inline;
  font-weight: bold;
  font-family: var(--grandcentral);
  border: 0;
}

.cmnbtn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}


.c-contact-form-wpr input[type="submit"] {
  font-size: 20px;
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: 0px;
  background-color: var(--color-blue);
  display: inline;
  font-weight: bold;
  font-family: var(--grandcentral);
  border: 0;
}

.c-contact-form-wpr input[type="submit"]:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.c-contact-form-wpr .c-form-last {
  text-align: center;
}

.c-footer-bottom {
  position: relative;
  z-index: 2;
  padding: 0 0 40px;
}

.c-footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.c-footer-bottom ul li {
  margin: 0 15px;
}

.c-footer-bottom ul li a {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-white);
  line-height: normal;
  font-family: var(--grandcentral);
}

.c-footer-bottom ul li a:hover {
  color: var(--color-blue);
}

.c-footer-bottom p {
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.c-footer-bottom p a {
  color: var(--color-white);
}

.c-footer-bottom p a:hover {
  color: var(--color-blue);
}

.inner-content h2 {
  font-size: 35px;
  font-weight: bold;
  color: var(--color-black);
  line-height: 1.1;
  margin: 0 0 20px;
  font-family: var(--grandcentral);
  text-align:center;

}

.inner-content p {
  font-weight: bold;
  font-size: 20px;
  color: var(--color-black);
  line-height: 1.5;
  margin: 0 0 30px;
}


@media (max-width:991.98px){
  .navbar-brand{
    margin-right:0;
    width: 180px;
  }
  .c-banner-content h1 {
    font-size: 20px;
  }
  .c-main-banner {
    padding:200px 0 25px
  }
  .c-nav-top ul li {
    margin: 0 8px 10px;
  }
  .c-cmn-btn {
    font-size: 13px;
  }
  .navbar-nav li a {
    color:#000;
  }
  .navbar-nav li{
    display:block;
    padding:0 10px !important;
  }
}

@media (max-width:575.98px){
  .c-footer-bottom ul li {
    margin: 0 0 5px;
    display: block;
    width: 100%;
    text-align: center;
  }
}