/*----------------------------------------*/
/*  01. Default CSS
/*----------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*-- Common Style --*/

:root {
    --primary: #4bbf73;
    --secondary: #071f3a;
    --white: #fff;
    --black: #000;
}

body {
    font-size: 16px;
    line-height: 27px;
    overflow-x: hidden;
    font-family: "Inter Tight", sans-serif;
}



*:focus {
    color: inherit;
    outline: inherit;
}



a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    text-decoration: none;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    color: var(--black);
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

a {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
}

p {
    font-size: 16px;
    margin: 0px;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
}

textarea.form-control {
    resize: none;
}

/*----------------------------------------*/
/* Common class CSS
/*----------------------------------------*/

.btn {
    background: var(--primary);
    border-radius: 60px;
    padding: 12px 30px;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    transition: background-size 0.5s linear;
    display: inline-block;
}

.btn-border {
    background-color: transparent !important;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-border:hover {
    background-color: var(--primary) !important;
    color: var(--black);
    border-color: var(--primary);
}

.container {
    max-width: 1440px !important;
}

.btn:hover {
    background: var(--primary);
    color: var(--black);
}

.btn:focus {
    box-shadow: none;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.py-100 {
    padding: 100px 15px;
}

.highlight-text {
    color: var(--primary);
    font-style: italic;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h6 {
    font-size: 16px;
    color: var(--black);
    margin: 0 auto 15px;
    width: fit-content;
    padding: 13px 20px;
    background-color: #e2e2e2;
    border-radius: 41px;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.section-title p {
    font-size: 20px;
}


/*----------------------------------------*/
/* Header CSS
/*----------------------------------------*/


.breadcrumb-container {
    background-color: var(--secondary);
    padding: 15px;
}

.breadcrumb-container p {
    color: var(--white);
}

.contact-container a {
    color: var(--white);
    font-size: 18px;
}

.contact-container {
    gap: 15px;
}

.contact-container a i {
    margin-right: 5px;
}

.header-area {
    padding: 20px;
}

.header-area .menu-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-area .menu-area .logo .logo-img {
    width: 200px;
    height: auto;

}

.header-area .main-menu {
    display: flex;
    gap: 20px;
}

.header-area .main-menu li a {
    color: var(--black);
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
}

.header-area .main-menu li a.active, .header-area .main-menu li a:hover {
    color: var(--primary);

}

/*----------------------------------------*/
/* hero CSS
/*----------------------------------------*/
.hero-container {
    background-image: url(../image/hero.jpg);
    height: calc(100vh - 150px);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-container::after {
    content: "";
    background-color: var(--secondary);
    opacity: .8;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-container .hero-content h2 {
    font-size: 80px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 90px;

}



.hero-container .hero-content p span {
    font-weight: 600;
}

.hero-container .hero-content p {
    color: var(--white);
    font-size: 20px;
    max-width: 930px;
    margin: 0 auto 20px;
}

.hero-container .hero-content .btn {
    font-size: 18px;
}



.btn-border:hover {
    background-color: var(--primary) !important;
    color: var(--black);
    border-color: var(--primary);
}

/*----------------------------------------*/
/* About-us CSS
/*----------------------------------------*/

.about-container .about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.about-container .about-grid-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.about-container .about-grid-text p {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 15px;
    width: fit-content;
    padding: 7px 20px;
    background-color: #e2e2e2;
    border-radius: 41px;
    font-weight: 500;
    text-transform: uppercase;
}

.about-container .about-grid-text h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-container .about-grid-text ul li {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #D6D6D6;
    color: var(--black);
}

.about-container .about-grid-text ul li:last-child {
    border-bottom: 0;
}

.about-container .about-grid-text ul li i {
    color: var(--primary);
    margin-right: 10px;
}

.about-container .about-grid-content p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}


/*----------------------------------------*/
/* SevCorp Program CSS
/*----------------------------------------*/

.step-program-container {
    background-color: #f2f4f5;

}


.step-program-container .step-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-program-container .step-program-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--primary);
}

.step-program-container .step-icon {
    width: 65px;
    height: 65px;
    background-color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--white);

}

.step-program-container .step-main {
    padding: 0 0 20px 0;
    border-bottom: 1px solid #D6D6D6;
    margin-bottom: 15px;
}

.step-program-container .step-icon i {
    color: var(--black);
    font-size: 24px;
}

.step-program-container .step-box {
    font-size: 25px;
    font-weight: 600;
}

.step-program-container .step-box-content h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;

}

.step-program-container .step-box-content p {
    font-size: 18px;
    margin-bottom: 20px;

}

.step-program-container .step-box-content ul li {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #D6D6D6;
    color: var(--black);
}

.step-program-container .step-box-content ul li:last-child {
    border-bottom: 0;
}

.step-program-container .step-box-content ul li i {
    color: var(--primary);
    margin-right: 10px;
}

/*----------------------------------------*/
/* Begin Here CSS
/*----------------------------------------*/

.begin-box {
    background-color: var(--secondary);
    padding: 50px 30px;
    border-radius: 25px;
}

.begin-box .section-title p {
    font-size: 20px;
    max-width: 720px;
    margin: auto;
}


/*----------------------------------------*/
/* footer CSS
/*----------------------------------------*/

.footer-container {
    background-color: var(--black);
    padding: 80px 15px 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-bottom: 1px solid #626262;
    padding-bottom: 50px;
}

.footer-content1 img {
    width: 200px;
    height: auto;
    margin-bottom: 25px;
}

.footer-content1 p {
    font-size: 18px;
    color: var(--white);
    line-height: 22px;
    max-width: 340px;
}

.footer-content2 h2 {
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-content2 ul li a {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-content2 ul li a:hover {
    color: var(--primary);
}

.footer-content2 ul li a i {
    margin-right: 9px;
}

.copyright-text {
    padding: 30px 15px 0;
    text-align: center;
}

.copyright-text p {
    color: var(--white);
    font-size: 18px;
}