/* 
TABLE OF CONTENT
1.RESET
2.NAVBAR
3.MENU BUTTON

*/

/*================================
  RESET
=================================*/

html {
    scroll-behavior: smooth;
  }

*{
    margin: 0;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}


/*================================
  CONTAINER
=================================*/

.flex-container {
    padding: 1rem 5rem;
}

.container {
    padding: 1rem 20rem;
}

@media screen and (max-width: 1370px) {
    .flex-container {
        padding: 1rem 1rem;
    }

}

@media  screen and (max-width: 1700px) {
    .container {
        padding: 8rem 10rem;
    }
    
}

@media screen and (max-width: 820px) {
    .container {
        padding: 6rem 2rem;
    }
    
}


/*================================
  Color
=================================*/

.text-color-1 {
    color: #ffffff;
}

.text-color-2 {
    color: #bababa;
}



/*================================
  BACKGROUND COLOR
=================================*/

.dark-color-1 {
    background-color: #282828;
}

.dark-color-2 {
    background-color: #131313;
}

/*================================
  FONT
=================================*/
.header-title {
    font-size: 25px;
}

.header-p {
    font-size: 16px;
}


/*================================
  PADDING
=================================*/
.padding-1 {
    padding: 1rem 0rem;
}

.padding-2 {
    padding-bottom: 8px;
}

.padding-3 {
    padding-top: 1rem;
}

.padding-2-3 {
    padding: 2rem 0rem;
}

.padding-top {
    padding-top: 10rem;
}

.padding-bottom {
    padding-bottom: 10rem;
}

.padding-top-bottom {
    padding: 5rem 0rem;
}



/*================================
  NAVBAR
=================================*/
.navbar {
    padding: 1rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0a1c2b;
    font-family: 'Poppins',sans-serif;
}

    .navbar a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.9);
        transition: color 200ms ease-in;
    }

        .navbar li:hover > a {
            color: rgba(24, 172, 36, 0.85);
        }

.logo img {
    display: block;
    max-height: 3.0rem;
    width: 80%;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    position: relative;
}

/* 1st level. */
.menu > ul > li {
    display: inline-block;
}

    .menu > ul > li > a {
        display: inline-block;
        padding: 1rem 1.5rem;
        font-size: 15px;
        font-weight: 400;
    }

/* 2nd level. */
.menu li ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 15rem;
    padding: 1.5rem 0;
    background: #0a1c2b;
    transition: all 200ms ease;
    z-index: 10000;
    border-radius: 5px;
}
        
    .menu li:hover > ul {
        opacity: 1;
        visibility: visible;
    }

    .menu li ul a {
        display: block;
        padding: 0.5rem 1.5rem;
    }

/* 3rd level. */
.menu li ul li ul {
    top: -1.5rem;
    left: 100%;
    z-index: 9000;
}

/* Drop-down arrows. */
.menu > ul > li.has-submenu:after,
.menu li ul li.has-submenu:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
}

/* 1st level arrows. */
.menu > ul > li.has-submenu:after {
    right: 5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, .25);
}

/* 2nd level arrows. */
.menu li ul li.has-submenu:after {
    right: 1.5rem;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid rgba(0, 0, 0, .25);
}

.nav-btn button {
    border: 1px solid #26da0f;
    background-color: #0b2030;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;

}

.nav-btn button a {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: #26da0f;
}

.nav-btn button:hover {
    border: 1px solid #c6ff00;
    color: #0b2030;
}


/** ---------------------------------------------------------------------------
 * Menu button.
 * ------------------------------------------------------------------------- */

.menu-button {
    display: none;
	transition: .3s ease-in-out;
	width: 35px;
	height: 24px;
    position: relative;
}

    .menu-button.in-mobile {        
        position: absolute;
        top: 2rem;
        right: 1rem;
    }

    .menu-button span {
        position: absolute;
		height: 4px;
		border-radius: 10px;
		width: 100%;
		background-color: #ffffff;
		top: 0;
		transition: transform .2s ease-in-out, opacity .2s ease-in-out;        
    }

        .menu-button span:nth-child(1) {
			top: 0px;
		}

		.menu-button span:nth-child(2),
		.menu-button span:nth-child(3) {
			top: 10px;
		}

		.menu-button span:nth-child(4) {
			top: 20px;
		}

            .menu-button.active span:nth-child(1),
            .menu-button.active span:nth-child(4) {
                opacity: 0;
            }

            .menu-button.active span:nth-child(2) {
                transform: rotate(45deg);
            }

            .menu-button.active span:nth-child(3) {
                transform: rotate(-45deg);
            }





/** ---------------------------------------------------------------------------
 * Desktop to mobile.
 * ------------------------------------------------------------------------- */

/* Dark overlay.  */
.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    z-index: 99998;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    color: #ffffff;
    opacity: 0;
    transition: opacity .3s, visibility .3s;
}

    .dark-overlay.visible {
        opacity: 1;
        visibility: visible;
    }

/* Mobile menu. */
.mobile-menu {
    background-color: #0b2030;
    padding: 6rem 0 2rem;
	position: fixed;
    width: 20rem;
	top: 0;
	right: -100%;
	transition: right .3s;
    z-index: 99999;
    height: 100%;
    overflow: scroll;
}

    .mobile-menu.visible {
        right: 0;
    }

    .mobile-menu ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .mobile-navigation a {
        display: block;
        padding: 1rem;
        color: #ffffff;
        text-decoration: none;
        transition: all .3s;
    }

        .mobile-navigation a:hover {
            background-color: rgba(0, 0, 0, .1);
        }

    .mobile-navigation li {
        position: relative;
    }

    /* 1st level. */
    .mobile-navigation > ul > li > a {
        font-weight: bold;
    }

    /* Lower levels. */
    .mobile-navigation li ul {
        padding-left: 2rem;
        display: none;
    }
            
    /* Drop-down arrows. */
    .mobile-navigation li.has-submenu:after {
        content: "";
        position: absolute;
        top: 1.6rem;
        width: 0;
        height: 0;
    }

    .mobile-navigation li.has-submenu:after {
        right: 1rem;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid rgba(255, 255, 255, 0.25);
    }

    .mobile-navigation li.has-submenu.opened:after {
        border-bottom: 5px solid rgba(255, 255, 255, 0.25);
        border-top: none;
    }

@media screen and (max-width: 1300px) {
    .navbar {
        padding: 2rem 2rem;
    }

    .logo img {
        max-height: 9.5rem;
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .navbar {
        padding: 2rem 2rem;
    }

    .logo img {
        max-height: 7.5rem;
        width: 100%;
    }

    .menu {
        display: none;
    }

    .menu-button {
        display: inline-block;
    }

    .nav-btn button {
        display: none;
    }
}


/*=================================================
COVER PAGE
===================================================*/
.cover-page {
    background-image:
    linear-gradient(to top, rgba(8, 27, 42, 0.0), rgba(0, 0, 0, 0.0)), url("../images/header/cover.jpg");
    background-size: cover;
    height: 250px;
}

.cover-page-title h1 {
    color: #081b2a;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.cover-page-title p {
    font-family: 'Poppins', sans-serif;
    color: #081B2A;
    font-size: 14px;
}


/*=================================================
HERO SECTION
===================================================*/
.hero {
    position: relative;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
    background-color: #0b2030;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 800;
    line-height: 3.5rem;
    color: #26da0f;
    padding-top: 1rem;
}

.hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    letter-spacing: 0.7px;
    font-weight: 200;
    color: #e4e4e4;
    padding-top: 1rem;
}

.hero-btn {
    display: inline;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 2px;
    border: none;
    background-color: #26da0f;
    color: white;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-right: 8px;
    cursor: pointer;
}

.hero-btn:hover {
    background-color: #c6ff00;
    text-decoration: none;
    color: #0b2030;
}

.hero-btn-watch {
    border: 1px solid black;
    background-color: #0b2030;
    color: black;
    padding: 14px 28px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border-radius: 2px;
}

.watch {
    border-color: #26da0f;
    color: #26da0f;;
}

.watch:hover {
    border-color: #c6ff00;
    color: #c6ff00;
    transition-delay: 5s ease;
}

.hero img {
    max-height: 32rem;
    max-width: 100%;
}
@media  screen and (max-width: 1669px) {
    .hero {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    
}


@media screen and (max-width: 1370px) {

    header img {
        height: 30px;
    }

    .hero {
        padding: 5rem 2rem;
    }

    .hero h1 {
        font-size: 56px;
        line-height: 3rem;
        padding: 1rem 0rem;
    }
    
    .hero p {
        font-size: 16px;
        font-weight: 600px;
    }

}

@media  screen and (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        flex-direction: column;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 2.5rem;
        padding: 1rem 0rem;
    }

    .hero p {
        font-size: 16px;
        font-weight: 600px;
    }


    #illustrations {
        order: -1;
    }
    
}


/*=================================================
PORTIFOLIO
===================================================*/
.portifolio {
    padding-top: 4rem;
    padding-bottom: 10rem;
}

.work-header {
    display: flex;
    padding: 2rem 0rem;
    text-align: left;
    align-items: center;
    justify-content: space-between;
}

.work-header-title p {
    font-size: 16px;
    font-weight: 600;
}

.work-header-title span {
    color: #26da0f;
}

.work-header-button button {
    cursor: pointer;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #26da0f;
    padding: 12px 24px;
    font-size: 18;
    font-weight: 600;
}

.portifolio-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 2rem;
}

.portifolio-details-2 {
    align-items: center;
    gap: 4px;
}

.portifolio-inner {
    --gap: 16px;
    --num-cols: 4;
    --row-height: 300px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
}

.portifolio-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.portifolio-inner-col-1 {
    grid-column: span 2;
}

.portifolio-inner-row-1 {
    grid-row: span 2;
}

.work-grid {
    position: relative;
    transition: transform .9s;
}

.work-grid img {
    border-radius: 10px;
}

.work-grid:hover {
    transform: scale(1.02);
}

.work-title {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-family: 'Poppins', sans-serif;
    background-color: #081B2A;
    padding: 1rem 1rem;
    border-radius: 4px;
    transition: background-color .4s ease-in-out, color .4s ease-in-out;
}

.work-title:hover {
    background-color: #26da0f;
    color: #081B2A;
}

.work-title-small {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-family: 'Poppins', sans-serif;
    background-color: #081B2A;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    transition: background-color .4s ease-in-out, color .4s ease-in-out;
}

.work-title-small:hover {
    background-color: #26da0f;
    color: #081B2A;
}

.work-title a {
    text-decoration: none;
    color: #ffffff;
}

.work-title-small a {
    text-decoration: none;
    color: #ffffff;
}


.work-title a h1 {
    text-transform: uppercase;
}

.work-title h5 {
    font-size: 13;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.work-title-small h5 {
    font-size: 13;
    font-weight: 400;
    letter-spacing: 1px;
}

/*Anything under 1024px */
@media screen and (max-width: 1024px) {
    .portifolio-inner {
        --num-cols: 2;
        --row-height: 200px;
    }
    
}

/*Anything under 1024px */
@media screen and (max-width: 900px) {

    .work-header-title p {
        font-size: 14px;
        font-weight: 600;
    }

    .work-header-button button {
        font-size: 12px;
    }
    .work-title {
        bottom: 1rem;
        left: .5rem;
    }

    .work-title-small {
        bottom: 1rem;
        left: .5rem;
    }
    
}



/*==========================================
COURSE SECTION
===========================================*/
.course {
    padding: 8rem 20rem;
    font-family: 'poppins', sans-serif;
    background-color: #ffffff;
}

.course-header {
    text-align: center;
}

.course-category {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
}

.learn {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    align-items: center;
    margin-top: 2rem;
    box-shadow:
    0px 0px 10px -3px rgba(0, 0, 0, 0.002),
    0px 0px 11.2px -3px rgba(0, 0, 0, 0.004),
    0px 0px 11.1px -3px rgba(0, 0, 0, 0.008),
    0px 0px 10.7px -3px rgba(0, 0, 0, 0.014),
    0px 0px 10.7px -3px rgba(0, 0, 0, 0.024),
    0px 0px 14px -3px rgba(0, 0, 0, 0.06)
  ;
  border: 1px solid #f5f5f5;
}

.learn img {
    max-width: 30%;
    border-radius: 5px;
}

.learn-content h6 {
    font-size: 16px;
}

.learn-content p {
    font-size: 14px;
}

.learn-content button {
    padding: 10px 10px;
    border: none;
    background-color: #d2fbd0;
    color: #0d5f07;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 4px;
}

@media screen and (max-width: 700px) {
    .course {
        padding: 6rem 2rem;
    }
    .course-category {
        flex-direction: column;
    }
}


/*=================================================
GRID
===================================================*/
.grid-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.grid-head {
    text-align: center;
    padding-bottom: 4rem;
}

.grid-head p {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    align-items: center;
}

.grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: space-evenly;
}

.grid-2 {
    align-items: center;
    gap: 2rem;
    
}

.grid-2-1 {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
}
.grid-2-1 h6 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    align-items: center;
}

.grid-2-1 p {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    align-items: center;
}

.grid-2-1 img {
    width: 50px;
}

.grid-illustration {
    width: 30rem;
}

@media screen and (max-width: 700px) {
    .grid {
        flex-direction: column;
    }
    .grid-illustration {
        width: 100%;
    }
    
}


/*==========================================
BANNER SECTION
===========================================*/
.container-banner {
    position: relative;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    padding: 3rem 20rem;
}
.banner {
    align-items: center;
    background-image:
    linear-gradient(to right, rgba(8, 27, 42, 0.92), rgba(8, 27, 42, 0.92)),
    url("../images/images/banner.jpg");
    background-size: cover;
    height: 400px;
}

.banner h1 {
    font-size: 40px;
    padding: 1rem 0rem;
    font-weight: 800;
    line-height: 3rem;
}

.banner p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 1rem;
}

.banner-content {
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.banner-button {
    border: 1px solid #26da0f;
    display: inline;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #eb2c61;
}

.banner img {
    display: none;
    width: 50%;
    padding-left: 5rem;
}

@media  screen and (max-width: 1700px) {
    .container-banner {
        padding: 6rem 10rem;
    }
}

@media screen and (max-width: 820px) {
    
    .container-banner {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }
    
}


/*=================================================
SERVICES SECTION
===================================================*/
.section-services {
    background-color: #edf2f7;
}
.services {
    display: flex;
    gap: 2rem;
}

.services-header {
    margin-bottom: 2rem;
    padding: 4rem 0rem;
    text-align: center;
}

.services-padding-bottom {
    padding-bottom: 2rem;
}

.services h1 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.services img {
    width: 70px;
}

.services-btn {
    border: none;
    padding: 10px 20px;
    margin-top: 1rem;
    font-size: 14;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    background-color: #081B2A;
}

.services-btn a {
    text-decoration: none;
    color: #ffffff;
}

.card {
    width: 100%;
    padding: 2rem 2rem;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow:
  0px 0px 0.1px -57px rgba(0, 0, 0, 0.089),
  1.1px 1.1px 0.3px -57px rgba(0, 0, 0, 0.109),
  4px 4px 0.6px -57px rgba(0, 0, 0, 0.12),
  9.8px 9.8px 1.1px -57px rgba(0, 0, 0, 0.128),
  21.8px 21.8px 2.1px -57px rgba(0, 0, 0, 0.14),
  55px 55px 5px -57px rgba(0, 0, 0, 0.18)
;
}

.card img {
    width: 60px;
}

.services-p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

@media screen and (max-width: 700px) {
    .services {
        flex-direction: column;
        margin-right: 2rem;
        padding-right: 2rem;
    }
    
}


/*=================================================
PROJECT SECTION
===================================================*/
.project-page-details-container {
    padding: 4rem 20rem;
}

.project-page-details {
    display: grid;
    gap: 9rem;
    grid-template-columns: 1fr 2fr;
    justify-content: space-between;
    align-items: center;
}

.project-page {
    background-color: #f7f7f7;
    padding: 3rem 2rem;
}

.project-page h1 {
    padding-bottom: 1rem;
    text-transform: uppercase;
    color: #081B2A;
}

.project-page h1 span {
    color: #26da0f;
}

.details-page {
    justify-content: space-between;
    padding-top: 1rem;
}

.details-page h4 {
    padding-top: 1rem;
    font-size: 16px;
    font-weight: 700;
}

.details-page p {
    padding-bottom: 1rem;
    border-bottom: 1px dashed #888888;
    opacity: .8;
}

.project-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 1rem;
}

.project-page-inner-grid img{
    width: 100%;
    transition: transform .9s;
}

.project-page-inner-grid img:hover {
    transform: scale(0.95);
}

.project-page-inner-grid-2 {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.project-page-inner-grid-2 img {
    width: 100%;
    padding-bottom: 1rem;
    transition: transform .9s;
}

.project-page-inner-grid-2 img:hover {
    transform: scale(0.95);

}

.project-description h1 {
    font-size: 20px;
    font-weight: 600;
    padding-top: 1rem;
}

.project-description p {
    font-size: 15px;
    color: #444444;
    text-align: justify;
}

/*<---- back to --->*/

.back-to {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-work-page a span {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #081B2A;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .4s ease-in-out;
}

.back-to-work-page a span:hover {
    color: #26da0f;
    text-decoration: none;
}

.back-to-project a button {
    font-size: 14px;
    font-weight: 600;
    border: none;
    background-color: #081B2A;
    color: #26da0f;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .4s ease-in-out, color .4s ease-in-out;
}

.back-to-project a button:hover {
    background-color: #26da0f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #081B2A;
}

@media screen and (max-width: 1600px) {
    .project-page-details-container {
        padding: 1rem 10rem;
    }
}

@media screen and (max-width: 1300px) {
    .project-page-details-container {
        padding: 1rem 3rem;
    }

    .project-page-details {
        gap: 2rem;
    }
}

@media screen and (max-width: 900px) {
    .project-page-details-container {
        padding: 1rem 2rem;
    }

    .project-page-details {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .project-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0rem;
    }
}


/*==========================================
BRIEF US PAGE
===========================================*/
.about-header {
    margin: 5rem 0rem;
    text-align: left;
}

.about-header span {
    color: #26da0f;
}

.about-header h1 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.about-header hr {
    margin-top: 20px;
    opacity: 0.6;
}

.about-header p {
    font-size: 36px;
    font-weight: 400;
}

.about-grid {
    display: flex;
    gap: 5rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-grid-inner {
    display: grid;
    justify-content: left;
    width: 100%;
}

.about-grid-inner p {
    font-weight: 300;
}

.about-grid span {
    font-weight: 300;
    color: #ffab00;
}

.about-grid h4 {
    color: #535353;
    font-weight: 600;
}

.about-grid p {
    border-radius: 2px;
}

.about-grid hr {
    margin-top: 2rem;
    opacity: 0.2;
}

.brand-container {
    background-color: #edf2f7;
}

.brand {
    display: flex;
    gap: 6rem;
    padding: 4rem 0rem;
}

.brand-header h1 {
    font-size: 36px;
    font-weight: 500;
}

.brand-header span {
    color: #26da0f;
}

.brand-item {
    display: flex;
    gap: 4rem;
}

.brand img {
    filter: grayscale(100);
}

.brand img:hover {
    filter: none;
    transition-delay: .3s;
}

@media screen and (max-width: 700px) {
    .brand {
        flex-direction: column;
    }

    .about-grid {
        gap: 2rem;
    }

    .brand-item {
        align-items: center;
    }
    
}


/*==========================================
RESOURCES SECTION
===========================================*/
.resources-section {
    background-color: #edf2f7;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.course-card {
    background-color: #ffffff;
    box-shadow:
    0px 0px 0.1px -57px rgba(0, 0, 0, 0.089), 1.1px 1.1px 0.3px -57px rgba(0, 0, 0, 0.109), 4px 4px 0.6px -57px rgba(0, 0, 0, 0.12),
    9.8px 9.8px 1.1px -57px rgba(0, 0, 0, 0.128), 21.8px 21.8px 2.1px -57px rgba(0, 0, 0, 0.14),55px 55px 5px -57px rgba(0, 0, 0, 0.18);
    border-radius: 8px;
    color: #070705;
    width: 22rem;
    font-family: 'Poppins', sans-serif;

}

.course-card figure {
    width: 100%;
    margin: 0;
    height: 14rem;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin-bottom: 2rem;
}

.course-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-details {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.course-type {
    background-color: #070705;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.25px;
    padding: .25rem 1rem;
    border-radius: 100px;
}

.course-details {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.course-details li {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    margin-right: 1rem;
}

.course-details li img{
    margin-right: .5rem;
}

.course-card h1 {
    margin-top: 1rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    font-size: 20px;
    letter-spacing: -1px;
    padding-bottom: 2rem;
}

/*=================================
            PRICE
=================================*/
.price {
    padding: 5rem 20rem;
}

.price-header {
    text-align: center;
    padding: 4rem 0rem;
}
.price-category {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    width: 100%;
    height: 100%;
    text-align: center;
}

.price-category-sub {
    border: 1px #bcd1e0 solid;
    border-radius: 1rem;
}

.price-category h2{
    background-color: #26da0f;
    text-transform: uppercase;
    font-size: 20px;
    color: #ffffff;
    border-radius: 1rem 1rem 0 0;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.price-category h4 {
    padding-top: 2rem;
}

.price-item {
    text-align: left;
    padding-top: 1rem;
    padding-bottom: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;

}

.price-category-sub button {
    background-color: #081B2A;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.price-category-sub button a {
    color: #26da0f;
    text-decoration: none;
    
}

/*=================================
            CONTACT
=================================*/
.container-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: #edf2f7;
}

.contact-field {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.contact {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 2rem 2rem;
    border-radius: 4px;
    box-shadow:
    0px 0px 0.1px -57px rgba(0, 0, 0, 0.089), 1.1px 1.1px 0.3px -57px rgba(0, 0, 0, 0.109), 4px 4px 0.6px -57px rgba(0, 0, 0, 0.12),
    9.8px 9.8px 1.1px -57px rgba(0, 0, 0, 0.128), 21.8px 21.8px 2.1px -57px rgba(0, 0, 0, 0.14),55px 55px 5px -57px rgba(0, 0, 0, 0.18);
}

.contact-box {
    width: 750px;
    margin: opx 0px;
}

.contact-box header {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

.contact-box form .field {
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    width: 100%;
}

.contact-box form .input input {
    height: 40px;
    font-size: 13px;
    padding: 0px 10px;
    border: none;
    background-color: #f3f5f7;
    outline: none;
    border-radius: 2px;
    border: 1px solid #dfe5eb;
}




/*=================================
            SIGN-IN
=================================*/
.container-form {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: #edf2f7;
}

.box {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 2rem 2rem;
    border-radius: 4px;
    box-shadow:
    0px 0px 0.1px -57px rgba(0, 0, 0, 0.089), 1.1px 1.1px 0.3px -57px rgba(0, 0, 0, 0.109), 4px 4px 0.6px -57px rgba(0, 0, 0, 0.12),
    9.8px 9.8px 1.1px -57px rgba(0, 0, 0, 0.128), 21.8px 21.8px 2.1px -57px rgba(0, 0, 0, 0.14),55px 55px 5px -57px rgba(0, 0, 0, 0.18);
}

.form-box {
    width: 450px;
    margin: opx 10px;
}

.form-box header {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
    margin-bottom: 50px;
}

.form-box form .field {
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.form-box form .input input {
    height: 40px;
    font-size: 13px;
    padding: 0px 10px;
    border: none;
    background-color: #f3f5f7;
    outline: none;
    border-radius: 2px;
    border: 1px solid #dfe5eb;
}

.sign-in-btn {
    height: 40px;
    background-color: #eb2c61;
    border: none;
    border-radius: 2px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding-top: 1rem;
    padding-bottom: 2rem;
    cursor: pointer;
    transition: all .3s;
    margin-top: 1rem;

}

.sign-in-btn:hover {
    background-color: #f75784;
}

.link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
}

.link a {
    text-decoration: none;
}

@media screen and (max-width: 700px) {
    .container-form {
        padding: 6rem 2rem;
    }
    
}


/*=================================
            FOOTER
=================================*/
.footer {
    display: flex;
    justify-content: space-between;
    padding: 5rem 0rem;
}

.footer-h h1 {
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #7c7c7d;
}

.footer-p li {
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.6px;
    padding: 4px 0px;
}

.footer-p li a {
    text-decoration: none;
    color: #d4d4d4;
}

.footer-p p {
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding: 10px 0px;
    letter-spacing: 0.6px;
    color: #d4d4d4;
}

.footer-logo {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #4b4b4b;
}

.footer-logo a img {
    width: 50px;
}

.footer img {
    padding: 12px 12px;
    border-radius: 3px;
    background-color: #bababa;
}

.footer-btn {
    display: inline;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    background-color: #3b3b3b;
    color: white;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}


/*=================================
            COPYRIGHT
=================================*/
.container-copyright {
    padding: 1rem 20rem;
}
.copyright {
    display: flex;
    justify-content: space-between;
}

.copyright-link {
    display: flex;
    justify-content: space-around;
}


.copyright-link li a {
    color: #bababa;
    padding: 0rem 1rem;
    text-decoration: none;
}


@media  screen and (max-width: 1700px) {
    .container-copyright {
        padding: 1rem 10rem;
    }
    
}

@media screen and (max-width: 820px) {
    .container-copyright {
        padding: 2rem 2rem;
    }
    
}

@media screen and (max-width: 700px) {
    .footer {
        flex-direction: column ;
    }
    
}

