/* Documentation For Radium HTML5 Agency Template */


/***

====================================================================
	Fonts
====================================================================

***/


@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700);

@import url('font-awesome.css');

/***

====================================================================
	Reset
====================================================================

***/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

/***

====================================================================
	Navbar
====================================================================

***/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 70px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar-toggle {
    display: flex;
    align-items: center;
}

.navbar .menu-toggle {
    position: static;
    width: 45px;
    height: 45px;
    background-color: #22577a;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.navbar .menu-toggle:hover {
    background-color: #1a4a63;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar .menu-toggle i {
    font-size: 18px;
}

/***

====================================================================
	Global Settings
====================================================================

 ***/

body {
    font-family: 'Open Sans', 'Roboto';
    font-size: 14px;
    color: #3E4B5E;
    line-height: 1.6em;
    font-weight: 500;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 70px;
    /* Account for fixed navbar */
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    margin: 0px;
    background: none;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

p {
    margin: 30px 0 10px 0;
    font-size: 14px;
    line-height: 1.6em;
}



/***

====================================================================
	Sidebar
====================================================================

****/

#sidebar {
    position: fixed;
    left: -290px;
    top: 70px;
    /* Start below navbar */
    width: 290px;
    height: calc(100vh - 70px);
    /* Full height minus navbar */
    padding: 0px 20px;
    /*border-right:2px solid #ffa800;*/
    z-index: 10;
}

#sidebar .mCSB_inside>.mCSB_container {
    margin-right: 12px !important;
}

#sidebar .mCS_no_scrollbar .mCSB_container {
    margin-right: 0px !important;
}

#sidebar .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 20px 0px 50px;
    background: #ffffff;
    transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -webkit-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;

    border-top: 4px solid #22577a;
}

#sidebar .menu-box .logo {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 20px;
}

#sidebar .menu-box .logo img {
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: 60px;
    width: 300px;
    object-fit: contain;
}

#sidebar .menu-box .sticky-menu {
    position: relative;
}

#sidebar .menu-box .sticky-menu>ul {
    position: relative;
    display: block;
    margin: 0px;
    padding: 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

#sidebar .menu-box .sticky-menu>ul>li {
    position: relative;
    display: block;
    /*padding:3px 0px;*/
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    font-size: 20px;
    color: #000000;
    /*text-align:right;*/
}

#sidebar .menu-box .sticky-menu>ul>li>a {
    position: relative;
    display: block;
    padding: 15px 0px 15px 30px;
    color: #3E4B5E;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 20px;
    /*text-transform:uppercase;*/
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

#sidebar .menu-box .sticky-menu>ul>li a .fa {
    position: absolute;
    right: -10px;
    top: 0px;
    width: 24px;
    text-align: right;
    color: #000000;
    opacity: 0;
    font-size: 12px;
    display: block;
    line-height: 34px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;

    display: none;
}

#sidebar .menu-box .sticky-menu>ul>li.current a .fa,
#sidebar .menu-box .sticky-menu>ul>li:hover a .fa {
    right: 6px;
    opacity: 1;
}

#sidebar .menu-box .sticky-menu>ul>li>a:hover,
#sidebar .menu-box .sticky-menu>ul>li.current>a,
#sidebar .menu-box .sticky-menu>ul>li.current-menu-item>a {
    margin-left: 10px;
    border-radius: 8px;
    border: 1px solid #22577a;
    color: #22577a;
    font-weight: 600;
}

#sidebar .copyright {
    position: fixed;
    left: 0px;
    bottom: 5px;
    width: 250px;
    height: 30px;
    font-size: 13px;
    color: #000000;
    line-height: 30px;
    text-align: center;
}

#sidebar .copyright a {
    color: #22577a;
}

/***

====================================================================
	Content Section
====================================================================

****/



#content-section {
    position: relative;
    padding: 0px 0px 30px 290px;
    width: 100%;
    z-index: 5;
    background-color: #f2edf3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#content-section .section {
    position: relative;
    min-height: 200px;
}

#content-section .sec-title {
    position: relative;
    padding: 19px 20px 19px 30px;
    background-image: linear-gradient(to right, #143449, #22577A, #143449);
    border-radius: 5px;
    color: #fff;
}

#content-section .sec-title h2 {
    position: relative;
    font-size: 24px;
    font-family: 'Poppins';
    text-transform: capitalize;
    font-weight: 600;
}

#content-section .sec-title h3 {
    position: relative;
    font-size: 22px;
    font-family: 'Poppins';
    text-transform: uppercase;
    font-weight: 600;
}

#content-section .sec-title .icon {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 30px;
    height: 40px;
    line-height: 30px;
    font-size: 18px;

    display: none;
}

#content-section .separator {
    position: relative;
    margin: 20px 0px;
    height: 1px;
}

#content-section .separator:before {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background: grey;
}

#content-section .sec-content {
    position: relative;
    padding: 30px 50px;
}

.introduction .sec-content h2 {
    font-size: 35px;
    /*text-transform:uppercase;*/
    margin-bottom: 10px;
    font-weight: 600;
    /*font-family: 'Open Sans Condensed', sans-serif;*/
    font-family: 'Poppins', sans-serif;
    color: #242424;
}

.introduction .sec-content h3 {
    font-size: 18px;
    /*text-transform:capitalize;*/
    font-weight: 500;
    color: #242424;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.html-structure .sec-content h3,
.css-structure .sec-content h3,
.javascript .sec-content h3,
.sources-credits .sec-content h3,
.contact-form .sec-content h3,
.support .sec-content h3,
.map-settings .sec-content h3,
.count-timer .sec-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4em;
}

.html-structure code {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #353535;
    padding: 30px 20px;
    background: #f1f1f1;
    height: auto;
    display: block;
}

.javascript ul li {
    list-style: none;
}

.sources-credits p {
    margin-bottom: 2px;
}

#content-section img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

#content-section .image-box {
    position: relative;
    padding: 0px;
    margin: 30px 0px;
}


.sec-content h3.content-title {
    font-size: 25px;
    font-family: 'Poppins';
    color: #242424d8;
}

.sec-content .checkbox,
.sec-content .checkbox li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sec-content .checkbox li:before {
    content: '\f00c';
    font-family: "FontAwesome";
    color: green;
    font-size: 15px;
    margin-right: 15px;
}

.sec-content .checkbox li {
    font-size: 18px;
    line-height: 25px;
    color: #242424;
}

.sec-content .checkbox li+li {
    margin-top: 7px;
}



.free-assetes .sec-content>span {
    font-size: 40px;
    font-weight: 300;
    text-transform: capitalize;
}

.free-assetes .sec-content .title {
    font-weight: 700;
    font-size: 32px;
    margin-top: 15px;
    padding-bottom: 20px;
}

.free-assetes .sec-content ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.free-assetes .sec-content ul li {
    font-size: 18px;
    line-height: 30px;
}

.free-assetes .sec-content p {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;

}

.free-assetes .sec-content p span {
    font-weight: 700;
    color: #000;
}

.free-assetes .sec-content p a {
    font-weight: 700;
}

.sub-menu ul {

    list-style-type: none;
}

.sub-menu ul li {
    padding-top: 5px;
    padding-bottom: 5px;
}

.sub-menu ul li:hover {
    color: #fff;
    background: #22577a;

}

.sub-menu ul li a {
    padding-left: 50px;
    position: relative;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    color: rgb(1, 1, 1);
    font-size: 15px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 20px;
    transition: all 300ms ease 0s;
}

.sub-menu a {
    display: flex !important;
    justify-content: space-between;
    align-items: center !important;
}

.sub-menu a i {
    display: block !important;
    position: relative !important;
    opacity: 1 !important;
    right: 20px !important;
}

.sub-menu ul li a:hover {
    color: #fff;
}

.command-style {
    font-weight: 600;
}


.container-iframe {
    /* position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; */
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* Style for the "NEW" button */
.new-button {
    background-color: #22577a;
    /* Blue color */
    color: #fff;
    /* White text color */
    padding: 5px;
    /* Adjust padding as needed */
    border-radius: 5px;
    /* Rounded corners */
    margin-left: 10px;
    /* Add some space between the title and button */
    display: inline-block;
}

.container-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.responsive-img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;

}

.responsive-video {
    width: 100%;
    border: 3px solid black;
}

.video-w {
    width: 100%;
}

.center {
    text-align: center;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    overflow: hidden;
    width: 95%;
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-header {
    background-color: #36617e;
    color: #ffffff;
    padding: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.card-body {
    padding: 20px;
    font-size: 1rem;
    color: #333;
}

.card-body p {
    margin: 0;
}

.card-footer {
    padding: 15px;
    background-color: #f7f7f7;
    text-align: center;
}

.card-footer a {
    color: #36617e;
    text-decoration: none;
    font-weight: bold;
}

.card-footer a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #ffffff;
    /* Footer background color */
    color: #000000;
    /* Footer text color */
    padding: 20px;
    text-align: right;
    /* Align text to the right */
    font-size: 1.4rem;
    position: relative;
    /* Optional, for positioning elements */
    bottom: 0;
    width: 100%;
}

.footer a {
    color: #143449;
    text-decoration: none;
    margin-left: 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {

    /* Hide sidebar on mobile by default */
    #sidebar {
        position: fixed;
        left: -290px;
        top: 70px;
        /* Start below navbar */
        width: 290px;
        height: calc(100vh - 70px);
        /* Full height minus navbar */
        padding: 0px 20px;
        z-index: 10;
        transition: left 0.3s ease;
    }

    /* Show sidebar when active */
    #sidebar.active {
        left: 0px;
    }

    /* Content section full width on mobile */
    #content-section {
        position: relative;
        padding: 0px 0px 30px 0px;
        width: 100%;
        z-index: 5;
        background-color: #f2edf3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Adjust card margins for mobile */
    .card {
        width: 95%;
        margin: 10px;
    }

    /* Adjust section title padding */
    .sec-title {
        padding: 15px 10px;
        font-size: 18px;
    }

    .sec-title h2 {
        font-size: 20px;
    }

    /* Adjust content padding */
    .sec-content {
        padding: 15px;
    }

    /* Make videos responsive */
    .video-w {
        width: 100%;
        height: auto;
    }

    /* Adjust logo size on mobile */
    #sidebar .menu-box .logo img {
        width: 200px;
        height: auto;
    }

    /* Adjust menu item font size */
    #sidebar .menu-box .sticky-menu>ul>li>a {
        font-size: 14px;
        padding: 12px 0px 12px 20px;
    }

    /* Overlay when sidebar is open */
    .sidebar-overlay {
        position: fixed;
        top: 70px;
        /* Start below navbar */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        /* Full height minus navbar */
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9;
        display: none;
    }

    .sidebar-overlay.active {
        display: block;
    }

    /* Improve text readability on mobile */
    .sec-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .sec-content h3 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    /* Make sure cards don't overflow */
    .card {
        overflow-x: hidden;
    }

    /* Adjust button container for mobile */
    .button-container {
        display: none;
        /* Hide the button container on mobile since we have the toggle button */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    /* Tablet styles */
    #sidebar {
        width: 250px;
    }

    #content-section {
        padding-left: 250px;
    }

    .card {
        width: 95%;
        margin: 15px;
    }

    .sec-title h2 {
        font-size: 22px;
    }
}