:root {
    --white: #ffffff;
    --bg-color: #F7F4EC;
    --text-color: #333333;
    --primary: #489774;
    --primary-hover: #3B8E69;
    --secondary: #E08EA6;
    --secondary-hover: #D57E98;
    --pre-heading-font: 'GreycliffCF';
    --heading-font: "p22-mackinac-pro";
    --body-font: "Inter", sans-serif;
}
body {
    background-color: var(--bg-color);
    font-size: 18px;
    font-family: var(--body-font);
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.44;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
a, button {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 400;
}
h1 {
    font-size: 54px;
    line-height: 1.11;
}
h1.large {
    font-size: 86px;
}
h2 {
    font-size: 48px;
    line-height: 1;
}
h3 {
    font-size: 36px;
    line-height: 1.33;
}
h4 {
    font-size: 21px;
}
h5 {
    font-family: var(--pre-heading-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.17;
    letter-spacing: 3.6px;
    color: var(--secondary);
}
h5.small {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 3.2px;
}
h1 span {
    font-style: italic;
    color: var(--secondary);
}
p.large {
    font-size: 21px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, P:last-child {
    margin-bottom: 0;
}
.container {
    max-width: 1440px;
    padding: 0 20px;
}
.large-container {
    margin: 0 auto;
    max-width: 1640px;
    padding: 0 20px;
}
.small-container {
    margin: 0 auto;
    max-width: 1240px;
    padding: 0 20px;
}
.marka-section {
    padding: 75px 0;
}
.button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
}
.text-center .button-group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.primary-btn, .primary-transparent-btn, .secondary-btn, .secondary-transparent-btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    padding: 12px 29px;
    text-align: center;
    border: 1px solid var(--primary);
    border-radius: 5px;
}
.primary-btn {
    color: var(--white);
    background-color: var(--primary);
}
.primary-btn:hover {
    background-color: var(--primary-hover); 
    border-color: var(--primary-hover);
}
.primary-transparent-btn {
    color: var(--primary);
}
.primary-transparent-btn:hover {
    color: var(--white);
    background-color: var(--primary);
}
.secondary-btn {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.secondary-btn:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
}
.secondary-transparent-btn {
    color: var(--secondary);
    border-color: var(--secondary);
}
.secondary-transparent-btn:hover {
    color: var(--white);
    background-color: var(--secondary);
}
.right-arrow-btn {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    padding-right: 30px;
    position: relative;
}
.right-arrow-btn:after {
    content: '\f178';
    font-family: "Font Awesome 6 pro";
    font-weight: 300;
    position: absolute;
    font-size: 16px;
    line-height: 20px;
    right: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.right-arrow-btn:hover:after{
    right: 0;
}

/* Header Style */
header {
    position: fixed;
    width: 100%;
    top: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 99;
}
header.header.header-unpinned {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
}
header.header.header-pinned {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
header.header.header-unpinned.header-not-top {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
}
body.active header.header {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
.topbar {
    background-color: var(--primary-hover);
}
.topbar-content {
    padding: 10px 0;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 8px;
    font-size: 14px;
    position: relative;
}
.topbar-content a.right-arrow-btn {
    color: var(--white);
    text-decoration: underline;
}
.topbar button {
    position: absolute;
    right: 0;
    padding: 4px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 12px;
    line-height: 1;
}
.main-header {
    border-bottom: 1px solid #EEEEEE;
    background-color: var(--white);
}
.main-header a.primary-btn {
    padding: 7px 19px;
}
a.login {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-right: 20px;
}
a.login:hover {
    color: var(--secondary);
}
nav.navmenu {
    font-size: 14px;
}

/* Footer Stye */
footer {
    padding: 48px 0;
    background-image: url(../img/footer-bg-vector.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}
.footer-heading {
    margin-bottom: 56px;
}
.footer-heading h2 {
    max-width: 400px;
    margin: 0;
}
.footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 56px;
       -moz-column-gap: 56px;
            column-gap: 56px;
    row-gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;    
    margin-bottom: 90px;
}
.single-footer-menu h6 {
    font-size: 14px;
    margin-bottom: 12px;
}
nav.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 56px;
       -moz-column-gap: 56px;
            column-gap: 56px;
}
nav.footer-nav ul li a {
    font-size: 14px;
    color: #666666;
    padding: 4px 0;
}
nav.footer-nav ul li a:hover {
    color: var(--secondary);
}
.copyright-text {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    margin-bottom: 48px;
}
.copyright-text a {
    color: var(--text-color);
}
.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
}
ul.social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
}
ul.social-list li a {
    color: var(--primary-hover);
}

/* Home Page Style */
main {
    margin-top: 127px;
}
body.topbar-closed main {
    margin-top: 87px;
}
section.main-hero-section {
    background-repeat: no-repeat;
    background-color: var(--white);
    padding-top: 120px;
    background-image: url(../img/hero-bg-vector.png);
    background-position: top -120px right;
}
.hero-image-content {
    background: -webkit-linear-gradient(top, var(--white) 40%, var(--bg-color) 40%);
    background: linear-gradient(to bottom, var(--white) 40%, var(--bg-color) 40%);
    padding-bottom: 55px;
}
.main-hero-content {
    max-width: 1120px;
    padding-bottom: 75px;
}
.main-hero-content p {
    max-width: 900px;
}
.text-center .main-hero-content, .text-center .main-hero-content p {
    margin-left: auto;
    margin-right: auto;
}
.main-hero-img img {
    border-radius: 25px;
    width: 100%;
}
.main-hero-img p {
    padding-top: 24px;
}
section.qoute-text-section {
    padding: 55px 0;
}
.single-qoute-text {
    max-width: 1200px;
    margin: 0 auto;
}
.single-qoute-text h1 {
    line-height: 1.33;
}
.custom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
    row-gap: 48px;
}
.custom-row > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.main-teaser-img img {
    border-radius: 25px;
}
.three-box-teaser-content {
    max-width: 550px;
    text-align: center;
    margin: 0 auto 40px;
}
.single-teaser-box {
    max-width: 515px;
    margin: 0 auto;
}
.single-teaser-box img {
    border-radius: 25px;
    margin-bottom: 8px;
}
.single-teaser-box a.right-arrow-btn {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
}
.single-teaser-box a.right-arrow-btn:after {
    line-height: 1;
    font-size: 20px;
    top: calc(50% - 10px);
    color: var(--secondary);
}
.call-action-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}
.call-action-box > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.call-action-left {
    color: var(--white);
    background-color: var(--primary-hover);
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.call-action-content {
    max-width: 510px;
}
.call-action-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.single-column-content img {
    border-radius: 25px;
    margin-bottom: 32px;
}
section.single-centered-section img {
    border-radius: 25px;
    margin-bottom: 56px;
}
.centered-content {
    max-width: 840px;
    margin: 0 auto;
}
section.portfolio-section {
    padding: 140px 0 80px;
}
.portfolio-content {
    overflow: hidden;
}
.portfolio-content > img {
    margin-bottom: 48px;
    border-radius: 25px;
}