/* Font Start */
  @font-face {
    font-family: Manrope-Light;
    font-display: swap;
    src: url(fonts/Manrope/Manrope-Light.ttf) format('truetype');
}
  @font-face {
    font-family: Manrope-Regular;
    font-display: swap;
    src: url(fonts/Manrope/Manrope-Regular.ttf) format('truetype');
}
@font-face {
    font-family: Manrope-Medium;
    font-display: swap;
    src: url(fonts/Manrope/Manrope-Medium.ttf) format('truetype');
}
/* Font End */

/* Variable Start */
:root {

    /* Color Start */
    --white: #fff;
    --primary: #1A2130;
    --secondary: #233E7A;
    --secondary-opacity: rgba(35, 62, 122, .7);

    --primary-mask: rgba(0, 0, 0, .55);
    /* Color End */

    /* Font Start */
    --primary-font-size: 16px;
    --primary-font-family-light: Manrope-Light, sans-serif;
    --primary-font-family-regular: Manrope-Regular, sans-serif;
    --primary-font-family-medium: Manrope-Medium, sans-serif;
    /* Font End */

    /* Transition Start */
    --primary-transition: all .3s ease-in-out;
    --secondary-transition: all .5s ease-in-out;
    /* Transition End */

    /* Background Start */
    --secondary-background: #eff1f6;
    --tertiary-background: #f57b23;
    /* Background End */

    /* Background Start */
    --primary-box-shadow: rgb(0 0 0 / 8%) 0px 6px 16px;
    /* Background End */

}
/* Variable End */


/* Default Start */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 16px;
}
body {
  box-sizing: border-box;
  font-family: var(--primary-font-family-light);
  color: var(--primary);
}
ul {
    list-style: none !important;
}
img {
    max-width: 100%;
    height: auto;
    width: 100%;
    user-select: none;
}
/* Default End */


/* Custom Classes Start */
.line-1 {
    line-height: 1 !important;
}
.max-vh {
    max-height: 100vh;
}
.relative {
    position: relative !important;
}
.absolute {
    position: absolute !important;
}
.border-bottom {
    border-bottom: 1px solid !important;
}
.border-top {
    border-top: 1px solid rgba(0, 0, 0, .1) !important;
}
.margin-top-section {
margin-top: 80px;
transition: all 0.3s ease-in-out;
}
.margin-top-section.fixed {
margin-top: 70px;
transition: all 0.3s ease-in-out;
}
/* Custom Classes End */


/* Title Start */
.title {
    font-family: var(--primary-font-family-medium);
    letter-spacing: 1.1px;
}
.title-x22 {
    font-size: 22px;
}
/* Title End */


/* Button Start */
.btn {
    font-size: var(--primary-font-size);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    transition: var(--primary-transition);
    height: 42px;
    width: 180px;
    padding: 0 10px;
    position: relative;
}
.button-outline-white {
    border: 1px solid var(--white);
    color: var(--white);
}
.button-outline-white:hover {
    color: var(--primary);
}
.button-outline-white:before {
    transition: var(--primary-transition);
    position: absolute;
    top: -1px;
    left: 50%;
    right: 50%;
    bottom: -1px;
    opacity: 0;
    content: "";
    background-color: var(--white);
    z-index: -2;
}
.button-outline-white:hover:before {
    transition: var(--primary-transition);
    left: -1px;
    right: -1px;
    opacity: 1;
}

/* Button End */


/* Header Start */
.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    background-color: transparent;
    box-shadow: var(--primary-box-shadow);
}
.header-top {
    display: flex;
    justify-content: start;
    align-items: center;
}
.header-top h1 {
    color: var(--white);
    font-size: var(--primary-font-size);
    font-size: 14px;
}
/* Header End */



/* Navbar Start */
.navbar {
    box-shadow: none;
    transition: var(--primary-transition);
}
.navbar .navbar-brand {
    width: 190px;
}
.navbar .navbar-brand .hidden {
    display: none
}
.navbar .nav-item:not(:last-child) {
    margin-right: 15px;
}
.navbar .nav-link {
    color: var(--primary) !important;
    font-family: var(--primary-font-family-regular);
    user-select: none;
    line-height: 26px;
}
.navbar .nav-link h2 {
    transition: var(--primary-transition);
    font-size: var(--primary-font-size);
    margin: 0;
    line-height: 26px;
}
.navbar .nav-link h2::after {
    display:block;
    content: '';
    border-bottom: 1px solid var(--primary);
    transform: scaleX(0);
    transition: var(--primary-transition);
}
.navbar .nav-link:hover h2::after {
    transform: scaleX(1);
}
.dropdown-toggle:after {
    display: none !important;
}
/* Navbar End */
.background-light-gray {
    background-color: var(--secondary-background);
}

/* Hero Start */
.hero {
    max-height: 100vh;
}
.hero-mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-mask);
    pointer-events: none;
    z-index: 10;
}
.hero-title {
    font-family: var(--primary-font-family-medium), sans-serif;
    font-size: 60px;
    line-height: 1;
  }
  .hero-subtitle {
    line-height: 1;
  }
  .hero {
    position: relative;
  }
  .hero-image {
    height: 600px;
  }
/* Hero End */

.mask {
    background-color: rgb(0 0 0 / 60%);
}
/* Carousel Start */
.carousel-indicators {
    z-index: 11;
}
.carousel-indicator {
    flex-grow: 1 !important;
    height: unset !important;
    text-indent: unset !important;
    background-color: transparent !important;
    opacity: 1 !important;
    border-bottom: none !important;
}
/* Carousel End */
.section-title {
    line-height: 1;
    font-family: Manrope-Medium, sans-serif;
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--tertiary-background);
}
.radius{
    border-radius: 20px;
    overflow: hidden;
}
.footer-social {
    display: flex;
    justify-content: start;
    align-items: center;
}
.social:not(:last-of-type) {
    margin-right: 10px;
}
.social img {
    width: 30px;
    height: 30px;
}
.icon-hidden {
    display: none;
}
.social:hover .icon-shown {
    display: none;
}
.social:hover .icon-hidden {
    display: flex;
}
.footer-title {
    font-size: 16px !important;
    font-family: Manrope-Medium !important;
}
h5 {
    font-size: 16px !important;
    line-height: 1.6;
}
.short {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
}
.short p {
    margin: 0 !important;
}
/* Responsive Start */
@media (min-width: 1100px) {
    .container-header {
        padding-left: 80px;
        padding-right: 80px;
    }
    .container.narrow {
        max-width: 900px !important;
    }
}
/* Responsive End */