@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700,800&display=swap");

:root {
    --fontFamily: 'Open Sans', sans-serif;
    --secondary: #202428;
    --secondaryHover: #4d4d4d;
    --primary: #ffce04;
    --secondaryTextColor: #62686e;
    --white: #ffffff;

}

html {
    scroll-behavior: smooth;
}


.navbar-brand header-brand {
    border-bottom-color: black;
}

.header-logo img {

    height: 50px;
}


.header-nav-wrap {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.header-nav-wrap .header-main-nav {
    display: flex;
    list-style: none;
    height: 78px;
    margin: 0 0 0 4px;
}

.header-nav-wrap .header-main-nav li {
    display: inline-block;
    padding-left: 0;
    margin-right: 1.5rem;
}

.header-nav-wrap .header-main-nav li a {
    display: block;
    line-height: 78px;
    position: relative;
}

.header-nav-wrap .header-main-nav li a,
.header-nav-wrap .header-main-nav li a:visited {
    color: white;
    outline: none;
}

.header-nav-wrap .header-main-nav li a:hover,
.header-nav-wrap .header-main-nav li a:focus {
    color: var(--secondary);
}

.header-nav-wrap .header-main-nav li.current a {
    color: var(--secondary);
}

.header-social {
    list-style: none;
    margin: 15px 0 0 0;
    position: relative;
    top: 0;
    right: 4rem;
}

.header-social li {
    display: inline-block;
    font-size: 16px;
    padding: 0;
    margin-right: 4px;
}

.header-social li:last-child {
    margin-right: 0;
}

.header-social li a {
    display: block;
    line-height: 48px;
    height: 48px;
    width: 48px;
    text-align: center;
    background-color: #0e1113;
    color: #FFFFFF;
    /* Icon color */
    border-radius: 50%;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.header-social li a:hover,
.header-social li a:focus {
    background-color: white;
    /* Background changes to white */
    color: var(--secondary);
    /* Icon color changes to var(--secondary) */
}



.s-header--blog .header-social li a {
    background-color: rgba(255, 255, 255, 0.05);
}

.sticky .header-nav-wrap .header-social {
    margin: 16px 0 0 0;
}

.sticky .header-nav-wrap .header-social li a {
    background-color: rgba(255, 255, 255, 0.05);
    line-height: 44px;
    height: 44px;
    width: 44px;
}

/* ------------------------------------------------------------------- 
 * ## menu trigger
 * ------------------------------------------------------------------- */
.header-menu-toggle {
    display: none;
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    right: 30px;

}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
    color: #FFFFFF;
}

.header-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    left: 9px;
    top: 50%;
    right: auto;
    bottom: auto;
    background-color: white;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header-menu-toggle span::before {
    top: -9px;
}

.header-menu-toggle span::after {
    bottom: -9px;
}

.header-menu-toggle.is-clicked span {
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
    background-color: white;
}

.header-menu-toggle.is-clicked span::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
    bottom: 0;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}


















/* Hide checkbox */
.menu-toggle-checkbox {
    display: none;
}

/* Hide menu by default on small screens */
@media (max-width: 800px) {
    .header-social {


        position: absolute;
        top: 100%;
        /* directly below the toggle */
        right: 0;
        /* aligned to the right edge */
        padding: 0;
        margin: 0;
        opacity: 0;
        transform: translateY(10px);
        visibility: hidden;
        pointer-events: none;

        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 4px;

        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 1000;



    }

    .header-social a {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
    }


    /* When menu is toggled, animate links in */
    .menu-toggle-checkbox:checked ~ .header-social a {
        opacity: 1;
        transform: translateY(0);
    }

    .menu-toggle-checkbox:checked ~ .header-social {



        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    /* Show burger toggle button */
    .header-menu-toggle {
        display: block;
        position: absolute;
        z-index: 1001;
        /* keep on top */
    }

    /* Burger bars */
    .header-menu-toggle span,
    .header-menu-toggle span::before,
    .header-menu-toggle span::after {
        display: block;
        position: absolute;
        width: 24px;
        height: 3px;
        border-radius: 5px;
        background-color: black;
        left: 9px;
        top: 50%;
        transition: all 0.3s ease;
    }

    .header-menu-toggle span::before {
        content: '';
        top: -9px;
    }

    .header-menu-toggle span::after {
        content: '';
        top: 9px;
    }

    /* Animate burger to X when toggled */
    .menu-toggle-checkbox:checked + .header-menu-toggle span {
        background-color: transparent;
    }

    .menu-toggle-checkbox:checked + .header-menu-toggle span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle-checkbox:checked + .header-menu-toggle span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .gallery .img-container {

        height: 20vh !important;
        width: 100%;

    }

    .main-container .sub-wrapper {

        text-align: center;
    }

    .main-container .lead-heading {
        font-weight: 900 !important;
        font-size: 60px !important;
    }
}


========================================================================================================================================================================================================================body {
    font-family: var(--fontFamily);
}

/*global styles*/
.btn {
    padding: 4px 20px;
    border-radius: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    outline: 0;
}

.btn-border {
    border: 1px solid;
    box-sizing: border-box;
}

.bdr-secondary {
    border-color: var(--secondary);
}

.btn-black {
    background-color: var(--secondary);
    color: var(--white);
}

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

.large-btn {
    font-size: 14px;
    padding: 15px 30px;
}

/* Header styles */
.header {
    background-color: var(--primary);
    position: relative;
}

.header .header-brand {
    font-size: 40px;
    font-weight: 900;
}

.header .header-navigation .wrapper {
    display: flex;
}

.header .header-navigation .wrapper a {



    color: var(--secondary);
}


.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    padding: 20px 50px;

    background-color: var(--primary);
}

.title h1 {

    color: var(--secondary);
    font-size: 40px !important;
    font-weight: 900 !important;
    font-family: var(--fontFamily);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    /* black with 0.8 opacity */
    z-index: 1;
}


.text-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.text-wrapper .text-inner {
    position: relative;
}

/*main container*/

.main-container .sub-wrapper {
    min-height: 700px;
    padding-top: 50px;
}

.main-container .img-container {
    height: auto;

}

.main-container .img-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-container .sub-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-container .lead-heading {
    font-weight: 900;
    font-size: 80px;
}

.main-container .lead-sub-heading {
    font-size: 50px;
    font-weight: 700;
}

.main-container .tryFree {
    font-weight: 600;
}

/*info section*/
.info {
    padding-top: 100px;
    padding-bottom: 100px;
}

.info .block-info,
.info .img-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.info .img-container img {
    height: 100px;
    border-radius: 15px;
}

.info h3 {
    font-weight: 800;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px auto;
}

.position-title {
    font-weight: 700;
    /* or 800, 900 for extra bold */
    font-size: 1.2rem;
    /* optional to increase size too */
}

/* Path: styles.css */

.line {
    border-left: 4px solid var(--primary);
    /* solid yellow line with primary color */
    width: 1px;
    height: 80%;
    /* fixed height for consistency */
    margin: auto;
    /* vertically center the line */
}


.info p {
    text-align: center;
    font-weight: 600;
    color: var(--secondaryTextColor);
}

/*galery*/
.gallery {
    position: relative;
    overflow: hidden;
}

.gallery .revealer {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: var(--primary);
}

.gallery .img-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 35vh;
}

.gallery .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Zooms/crops to fill the container */
    object-position: center;

}


.gallery .img-container .img-revealer {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 206, 4, 0.5);
    top: 0;
    left: 0;
    z-index: 2;
}

.github-link {
    background-color: var(--secondary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.github-link:hover {
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;

}



footer {

    background-color: var(--primary)
}

.icon-link {
    color: var(--secondary);
    transition: color 0.3s ease;
    margin: 0 5px;
    /* custom horizontal margin */
}

.icon-link:hover {
    color: var(--white);
}
