:root {
    /* --primary-font: "DM Serif Display", serif; | "Oswald", sans-serif*/
    --primary-font: "DM Serif Display", serif;
    --secondary-font: "Montserrat", sans-serif;
    --theme-color: #b98a41;
    --primary-color: #f15a29;
    --secondary-color: #1e2a47;
    --dark-color: #242424;
    --info-color: #ffffff;
    --text-color:#808080;
    --primary-font-size: 17px;
    --primary-transition-effect: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--primary-font-size);
}

body {
    font-family: var(--secondary-font);
    font-weight: 500;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--primary-font);
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: inherit;
    color: inherit;
    transition: var(--primary-transition-effect);
}

img {
    max-width: 100%;
}
.link {
    color: var(--theme-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid;
    position: relative;
    margin-right: 20px;
}
.link .lnr {
    font-weight: 600;
    font-size: 15px;
    position: absolute;
    top: 4px;
    right: -19px;
}
.link:hover,
.link:focus {
    color: var(--theme-color);
}
.section-padding {
    padding: 80px 0;
}
.section-heading, .section-heading span, .section-heading u {
    font-size: 44px;
    font-weight: 800;
    line-height: 54px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    /* text-transform: capitalize; */
    letter-spacing: -1px;
}
.section-heading span {
    color: var(--theme-color);
}
.section-heading.white {
    color: var(--info-color);
}
.section-info {
    color: var(--text-color);
    /* font-weight: 400; */
}
.section-info strong {
   color:var(--secondary-color);
}
.section-info.white {
    color: var(--info-color);
}
.primary-color {
    color: var(--primary-color);
}
.container {
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}
.btn-primary {
    color: var(--info-color);
    display: inline-block;
    line-height: normal;
    height: auto;
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 5px 10px 20px 5px rgb(185 138 65 / 40%);
    font-size: 16px;
}
.btn-primary:hover,
.btn-primary:focus {
    color: var(--info-color);
    transform: scale(1.02);
}
.btn-secondary {
    color: var(--secondary-color);
    display: inline-block;
    line-height: normal;
    height: auto;
    background: transparent;
    border: 1px solid var(--secondary-color);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.btn-fill {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--info-color);
}
.section-subheading {
  /* color: var(--primary-color); */
  color: var(--theme-color);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-wrapper {
    overflow: hidden;
}
.patern-layer-one {
    position: absolute;
    left: 0;
    top: -140px;
    right: 0;
    bottom: 0;
    width: 180%;
    background-position: left center;
    background-repeat: repeat;
    z-index: -1;
    opacity: 0.6;
}
/* header css start */
.site-header {
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}
.site-logo img {
    height: auto;
    width: 120px;
}
.nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 40px 15px;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--theme-color);
}
/* banner css start */
.hero-section {
    position: relative;
    padding-top: 130px;
}
.hero-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.hero-content {
    padding: 115px 0;
}
.hero-title {
    font-size: 74px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.1;
}
.hero-ellipse-img {
    position: absolute;
    left: -440px;
    top: -180px;
    opacity: 0.4;
}
.hero-img img {
    max-width: inherit;
    margin-left: -100px;
}

/* about ged css */
.about-ged-img {
    text-align: center;
    padding-right: 50px;
}
.about-ged-img .image-block {
    position: relative;
    margin-bottom: 0;
}
/* .about-ged-img .image-block:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-left: 400px solid #fff8ec;
    border-bottom: 400px solid #fff8ec;
    border-right: 400px solid transparent;
    border-top: 400px solid transparent;
    z-index: -1;
} */
/* .about-ged-img img {
    height: 800px;
} */
.about-ged-ellipse-img {
    position: absolute;
    right: -310px;
    top: -20px;
    opacity: 0.3;
}
/* service section css */
.service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 36px;
    max-width: 400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.service-card.active {
    background: var(--info-color);
    box-shadow: 0 0 30px 0px rgb(0 0 0 / 2%);
}
.service-img {
    max-width: 130px;
    margin: 0 auto 20px;
}
.service-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary-color);
    letter-spacing: -1px;
}
.service-content p {
    color: var(--text-color);
    margin-bottom: 0;
}
.service-list [class^="col-"] {
    margin: 30px 0;
}
.service-ged-ellipse-img {
    position: absolute;
    left: -290px;
    top: -90px;
    opacity: 0.4;
}
/* why choose section css */
.list li {
    color: var(--text-color);
    padding-left: 26px;
    position: relative;
}
.list li .lnr {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--theme-color);
    font-weight: 600;
}
.list li + li {
    margin-top: 10px;
}
.why-ged-img {
    border-radius: 30px;
    max-width: 550px;
    margin: 0 auto;
}
.why-ellipse-img {
    position: absolute;
    right: -320px;
    top: -410px;
    opacity: 0.3;
}
/* how section css */
.how-ged-ellipse-img {
    position: absolute;
    left: -330px;
    top: -90px;
    opacity: 0.4;
}
.num {
    font-size: 80px;
    /* font-weight: 700; */
    margin-bottom: 20px;
    color: var(--secondary-color);
    letter-spacing: -1px;
    opacity: 0.1;
    font-family: var(--primary-font);
    line-height: 1;
}
/* course plan section css */
.plan-price {
    padding: 30px;
    background: #f7f7f7;
    border-radius: 16px;
    box-shadow: 0 0 30px 0px rgb(0 0 0 / 2%);
}
.plan-price h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary-color);
    letter-spacing: -1px;
}
.plan-price p {
    color: var(--text-color);
    margin-bottom: 0;
    margin-top: 50px;
}
.plan-price span {
    font-size: 14px;
    color: var(--theme-color);
}
.plan-box {
    background: #45444b;
    height: 100%;
    padding: 40px;
    border-radius: 16px;
    margin-left: 50px;
}
.plan-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--info-color);
    letter-spacing: -1px;
}
.plan-box .section-info {
    color: var(--info-color);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff45;
}
.plan-box p {
    color: var(--info-color);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 26px;
}
.plan-box .list li {
    color: var(--info-color);
}
.plan-box .list li + li {
    margin-top: 15px;
}
.plan-box h3 {
    font-family: var(--secondary-font);
    color: var(--info-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.course-ellipse-img {
    position: absolute;
    right: -410px;
    top: -230px;
    z-index: -1;
    opacity: 0.4;
}
/* about mantrin section css */
.about-mantrin-box {
    background: #fff8ec;
    padding: 100px;
    border-radius: 100px 10px 10px 10px;
    /* text-align: center; */
}
/* .about-mantrin-img {
    padding-right: 40px;
} */
.about-ellipse-img {
    position: absolute;
    top: -400px;
    left: -320px;
    z-index: -1;
    opacity: 0.4;
}
.about-mantrin-content {
    padding-left: 40px;
}