@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Nunito&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&display=swap');

/* Fonts */
@font-face {
    font-family: 'Segoe UI';
    src: url('/fonts/Segoe UI.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/*Common */

:root{
    --primary-col: #667eea;
    --primary-col-dark: #6d70ea;
    --header-font: "Nunito", sans-serif
}

.font-segoe{
    font-family: "Segoe UI", "Roboto","Helvetica Neue", sans-serif;
}

/* Font Nunito */
.font-nun{
    font-family: "Nunito", sans-serif;
    font-weight: bold;
}

/* section title with underline just at middle */
.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: .25rem;
    background: var(--primary-col);
    bottom: 0;
    border-radius: .25rem;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}

/* title with complete underline */
/* Capture all h1-h6 if possible*/
.title_underline h1,
.title_underline h2,
.title_underline h3,
.title_underline h4,
.title_underline h5,
.title_underline h6 {
    font-weight: 300;
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
    margin-bottom: 1.25rem;
    font-family: "Nunito", sans-serif;
}

.title_underline h1:before,
.title_underline h2:before,
.title_underline h3:before,
.title_underline h4:before,
.title_underline h5:before,
.title_underline h6:before{
    content: "";
    position: absolute;
    width: calc(100% - 16px);
    height: .25rem;
    border-radius: .25rem;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border-bottom: .25rem solid var(--primary-col);
}

.outline-left h1, .outline-left h2, .outline-left h3, .outline-left h4, .outline-left h5, .outline-left h6 {
    margin: 0;
    line-height: 1;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    padding: 0 0 0 10px !important;
    border-left: 5px solid #20c997;
    margin-bottom: 10px;
}

.outline-left h1{
    border-left: 8px solid #20c997;
}
.outline-left h2{
    border-left: 6px solid #20c997;
}

/* Hover button */
.btn-hover span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn-hover span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    font-size: 16px;
    transition: 0.5s;
}

.btn-hover:hover span {
    padding-right: 25px;
}

.btn-hover:hover span:after {
    opacity: 1;
    right: 0;
}

/*Back to top*/
.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: var(--primary-col);
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #6e6cea;
    color: #fff;
}

.back-to-top a:hover {
    text-decoration: none;
}

/* Image hover */
.image-hover {
    overflow: hidden;
}

.image-hover img{
    transition: all 1.5s ease;
}

.image-hover:hover img {
    transform: scale(1.2);
}

/* Indent text to a bit right */
.text-indent {
    text-indent: 5rem;
    text-align: justify;
    text-justify: inter-word
}

.number-bubble {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 5px;
    background-color: #960000;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

/* disable aos animation delay on mobile-devices */
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

.btn-primary.btn-marun {
    background-color: #960000;
    border-color: maroon;
  }
