  #oh-header * {
            box-sizing: border-box;
        }

        #oh-header {
            position: relative;
            width: 100%;
            background-color: #ffffff !important;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            z-index: 1000;
        }

        #oh-header .oh-container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            min-height: 78px;
        }

        /* ---- Logo ---- */
        #oh-header .oh-brand {
            display: flex !important;
            align-items: center;
            height: 78px;
            flex-shrink: 0;
        }

        #oh-header .oh-brand img {
            max-height: 100px;
            width: auto;
            display: block;
            margin-top: 60px;
        }

        /* ---- Hamburger button (hidden on desktop) ---- */
        #oh-header .oh-toggle {
            display: none;
            align-items: center;
            gap: 8px;
            background: none;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 8px 14px;
            font-family: 'Raleway', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #2c2c2c;
            cursor: pointer;
        }

        /* ---- Menu (desktop default: horizontal row) ---- */
        #oh-header .oh-menu {
            display: flex !important;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        #oh-header .oh-menu li {
            margin: 0;
        }

        #oh-header .oh-menu li a {
            display: block;
            color: #2c2c2c;
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-decoration: none;
            padding: 10px 16px;
            margin: 0 2px;
            border-radius: 4px;
            transition: color 0.25s ease, background-color 0.25s ease;
        }

        #oh-header .oh-menu li a:hover,
        #oh-header .oh-menu li a:focus {
            color: #b8860b;
            background-color: rgba(184, 134, 11, 0.08);
            text-decoration: none;
        }

        /* ---- Mobile (≤767px): hide horizontal menu, show hamburger ---- */
        @media (max-width: 767px) {
            #oh-header .oh-container {
                min-height: 64px;
                padding: 10px 15px;
            }

            #oh-header .oh-brand {
                height: auto;
            }

            #oh-header .oh-brand img {
                max-height: 100px;
    margin-top: 0px;
            }

            #oh-header .oh-toggle {
                display: flex !important;
            }

            #oh-header .oh-menu {
                display: none !important;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column !important;
                background-color: #ffffff;
                box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
                padding: 8px 0;
            }

            #oh-header .oh-menu.oh-open {
                display: flex !important;
            }

            #oh-header .oh-menu li {
                width: 100%;
            }

            #oh-header .oh-menu li a {
                width: 100%;
                padding: 12px 20px;
                margin: 0;
                border-radius: 0;
            }
        }
        
        
         .oh-home{ font-family:'Poppins','Segoe UI',Arial,sans-serif; color:#333; overflow-x:hidden; }
  .oh-home *{ box-sizing:border-box; }
  .oh-home .container{ max-width:1180px; }

  .oh-home .oh-eyebrow{
    display:inline-block; color:#20b1aa; text-transform:uppercase;
    letter-spacing:2.5px; font-size:12.5px; font-weight:600; margin-bottom:14px;
    position:relative; padding-left:26px;
  }
  .oh-home .oh-eyebrow::before{
    content:""; position:absolute; left:0; top:50%; transform:translateY(-50%);
    width:18px; height:2px; background:#20b1aa;
  }
  .oh-home .oh-eyebrow.center{ padding-left:0; }
  .oh-home .oh-eyebrow.center::before{ display:none; }

  .oh-home h2.oh-heading{
    font-weight:600; font-size:34px; color:#111; line-height:1.25; margin:0 0 18px;
  }
  .oh-home .oh-heading.center{ text-align:center; }
  .oh-home .oh-lead{
    font-weight:400; font-size:15.5px; line-height:1.9; color:#666;
  }
  .oh-home .oh-lead.center{ text-align:center; max-width:760px; margin:0 auto; }

  /* scroll reveal */
  .oh-reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
  .oh-reveal.oh-in{ opacity:1; transform:translateY(0); }

  /* ===== INTRO ===== */
  .oh-intro{ padding:90px 0 40px; text-align:center; }
  .oh-intro-inner{ max-width:820px; margin:0 auto; }

  /* ===== SERVICES ===== */
  .oh-services{ padding:70px 0 90px; }
  .oh-services-head{ text-align:center; max-width:640px; margin:0 auto 56px; }
  .oh-service-card{
    background:#fff; border-radius:16px; padding:38px 26px;
    text-align:center; height:100%;
    box-shadow:0 8px 30px rgba(20,40,40,.06);
    border:1px solid #eef2f2;
    transition:transform .3s ease, box-shadow .3s ease;
    margin-bottom:28px;
  }
  .oh-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(32,177,170,.16);
    border-color:#20b1aa;
  }
  .oh-service-card .oh-icon-wrap{
    width:64px; height:64px; border-radius:50%; margin:0 auto 20px;
    background:linear-gradient(135deg,#20b1aa,#4fd1c7);
    display:flex; align-items:center; justify-content:center;
  }
  .oh-service-card .oh-icon-wrap svg{ width:28px; height:28px; stroke:#fff; }
  .oh-service-card h4{
    font-size:15px; font-weight:600; color:#222; margin:0; letter-spacing:.2px;
  }

  /* ===== FEATURE BLOCKS ===== */
  .oh-feature{ padding:90px 0; }
  .oh-feature-media{ position:relative; }
  .oh-feature-media img{
    width:100%; border-radius:22px; box-shadow:0 30px 60px -20px rgba(20,40,40,.28);
  }
  .oh-feature-badge{
    position:absolute; bottom:-24px; left:-24px;
    background:#fff; border-radius:14px; padding:18px 24px;
    box-shadow:0 15px 35px rgba(20,40,40,.15);
    display:flex; align-items:center; gap:14px;
  }
  .oh-feature-badge .oh-icon-wrap{
    width:44px; height:44px; border-radius:12px; flex-shrink:0;
    background:linear-gradient(135deg,#20b1aa,#4fd1c7);
    display:flex; align-items:center; justify-content:center;
  }
  .oh-feature-badge .oh-icon-wrap svg{ width:20px; height:20px; stroke:#fff; }
  .oh-feature-badge strong{ display:block; font-size:15px; color:#111; }
  .oh-feature-badge span{ font-size:12.5px; color:#777; }

  .oh-feature-copy{ padding:20px 10px 20px 40px; }
  @media(max-width:991px){ .oh-feature-copy{ padding:60px 10px 10px; } }
  .oh-feature-copy h3{
    font-weight:600; font-size:28px; color:#111; margin:0 0 18px; line-height:1.3;
  }
  .oh-feature-copy p{ font-size:15px; color:#666; line-height:1.85; margin-bottom:20px; }

  .oh-check-list{ list-style:none; padding:0; margin:0 0 30px; }
  .oh-check-list li{
    display:flex; align-items:flex-start; gap:12px; font-size:14.5px; color:#555;
    margin-bottom:14px; line-height:1.6;
  }
  .oh-check-list li svg{
    width:18px; height:18px; stroke:#20b1aa; flex-shrink:0; margin-top:2px;
  }

  .oh-btn{
    display:inline-flex; align-items:center; gap:10px;
    padding:14px 30px; background:#20b1aa; color:#fff !important;
    text-transform:uppercase; font-size:13px; font-weight:600; letter-spacing:.5px;
    border-radius:50px; transition:all .3s ease; text-decoration:none;
    box-shadow:0 10px 25px rgba(32,177,170,.3);
  }
  .oh-btn:hover{ background:#188f89; transform:translateY(-3px); box-shadow:0 15px 30px rgba(32,177,170,.4); text-decoration:none; color:#fff; }
  .oh-btn svg{ width:16px; height:16px; stroke:#fff; }
  .oh-btn.oh-btn-outline{
    background:transparent; color:#20b1aa !important; border:1.5px solid #20b1aa; box-shadow:none;
  }
  .oh-btn.oh-btn-outline:hover{ background:#20b1aa; color:#fff !important; }

  /* ===== FAQ ===== */
  .oh-faq{ background:#f7fafa; padding:90px 0; }
  .oh-faq-head{ text-align:center; max-width:640px; margin:0 auto 50px; }
  .oh-faq-list{ max-width:820px; margin:0 auto; }
  .oh-faq-item{
    background:#fff; border-radius:14px; margin-bottom:14px;
    box-shadow:0 6px 20px rgba(20,40,40,.05); overflow:hidden;
  }
  .oh-faq-q{
    width:100%; text-align:left; background:none; border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    padding:22px 26px; font-size:16px; font-weight:600; color:#1c1c1c;
  }
  .oh-faq-q .oh-plus{
    flex-shrink:0; width:30px; height:30px; border-radius:50%;
    background:#eafbf9; color:#20b1aa; display:flex; align-items:center; justify-content:center;
    font-size:18px; font-weight:400; transition:transform .3s ease, background .3s ease;
  }
  .oh-faq-item.oh-open .oh-faq-q .oh-plus{ background:#20b1aa; color:#fff; transform:rotate(45deg); }
  .oh-faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
  .oh-faq-a p{ padding:0 26px 24px; font-size:14.5px; color:#666; line-height:1.8; margin:0; }

  /* ===== CTA ===== */
  .oh-cta{
    position:relative; overflow:hidden; text-align:center; padding:100px 20px;
    border-radius:28px; margin:0 15px;
    background:linear-gradient(135deg,#0f3c39,#1a6e66);
  }
  .oh-cta::before{
    content:""; position:absolute; width:400px; height:400px; border-radius:50%;
    background:rgba(32,177,170,.25); top:-150px; right:-100px; filter:blur(40px);
  }
  .oh-cta::after{
    content:""; position:absolute; width:300px; height:300px; border-radius:50%;
    background:rgba(255,255,255,.06); bottom:-120px; left:-80px; filter:blur(30px);
  }
  .oh-cta-inner{ position:relative; z-index:2; max-width:600px; margin:0 auto; }
  .oh-cta h2{ color:#fff; font-weight:600; font-size:32px; margin-bottom:16px; }
  .oh-cta p{ color:#cfe8e5; font-size:15.5px; margin-bottom:34px; }
  
  
  
  /* ==========================
   ABOUT PAGE BANNER
========================== */

.about-banner{
    position:relative;
    height:420px;
    background:url("../img/slides/1.jpg");
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;

}

.about-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.7);
}

.about-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.about-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content p{
    font-size:20px;
    font-weight:300;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

@media(max-width:768px){

.about-banner{
    height:300px;
}

.about-content h1{
    font-size:40px;
}

.about-content p{
    font-size:16px;
}
}


/* ================= ABOUT PAGE ================= */


.oh-about-page{
    padding:90px 0;
    font-family:'Poppins','Segoe UI',Arial,sans-serif;
}


.oh-about-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}


/* IMAGE */


.oh-about-image{
    width:50%;
    position:relative;
}


.oh-about-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:22px;
    box-shadow:0 30px 60px -20px rgba(20,40,40,.28);
}



.oh-about-experience{
    position:absolute;
    bottom:-25px;
    right:-25px;
    width:150px;
    height:150px;
    border-radius:50%;
    background:#20b1aa;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 35px rgba(32,177,170,.35);
}


.oh-about-experience h3{
    font-size:42px;
    font-weight:600;
    margin:0;
    line-height:1;
}


.oh-about-experience span{
    font-size:13px;
    margin-top:8px;
}



/* CONTENT */


.oh-about-content{
    width:50%;
     
  }
  
  
  .oh-about-content .oh-eyebrow {
    display: inline-block;
    color: #20b1aa;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 12.5px;
    font-weight: 600;
   
    position: relative;
}



.oh-about-content h2{
    font-family:'Poppins','Segoe UI',Arial,sans-serif;
    font-size:34px;
    font-weight:600;
    color:#111;
    line-height:1.25;
    margin-bottom:18px;
}



.oh-about-content .oh-lead{
    font-size:15.5px;
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}


.oh-about-content > p{
    font-size:15px;
    color:#666;
    line-height:1.85;
}



/* POINTS */


.oh-about-points{
    margin:30px 0;
}


.oh-about-box{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}


.oh-about-icon{
    width:45px;
    height:45px;
    background:linear-gradient(135deg,#20b1aa,#4fd1c7);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    flex-shrink:0;
}


.oh-about-box h4{
    font-size:16px;
    font-weight:600;
    color:#111;
    margin:0 0 5px;
}


.oh-about-box p{
    margin:0;
    font-size:13.5px;
    color:#666;
}



/* RESPONSIVE */


@media(max-width:991px){

    .oh-about-wrapper{
        flex-direction:column;
    }


    .oh-about-image,
    .oh-about-content{
        width:100%;
    }


    .oh-about-image img{
        height:400px;
    }


    .oh-about-experience{
        right:10px;
    }


    .oh-about-content h2{
        font-size:28px;
    }

}


@media(max-width:575px){

    .oh-about-image img{
        height:320px;
    }


    .oh-about-experience{
        width:120px;
        height:120px;
    }


    .oh-about-experience h3{
        font-size:32px;
    }

}

/* ===== ABOUT SERVICES ===== */

.oh-about-services{
    padding:70px 0 90px;
}


.oh-about-services-head{
    text-align:center;
    max-width:640px;
    margin:0 auto 56px;
}


.oh-about-service-card{

    background:#fff;
    border-radius:16px;
    padding:38px 26px;
    text-align:center;
    height:100%;

    box-shadow:0 8px 30px rgba(20,40,40,.06);

    border:1px solid #eef2f2;

    transition:transform .3s ease, box-shadow .3s ease;

    margin-bottom:28px;
}


.oh-about-service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(32,177,170,.16);

    border-color:#20b1aa;

}



.oh-about-service-card .oh-about-icon-wrap{

    width:64px;
    height:64px;
    border-radius:50%;
    margin:0 auto 20px;

    background:linear-gradient(135deg,#20b1aa,#4fd1c7);

    display:flex;
    align-items:center;
    justify-content:center;

}



.oh-about-service-card .oh-about-icon-wrap svg{

    width:28px;
    height:28px;
    stroke:#fff;

}



.oh-about-service-card h4{

    font-size:15px;
    font-weight:600;
    color:#222;
    margin:0;
    letter-spacing:.2px;

}




/* ================= CTA SECTION ================= */

.oh-cta-section{
    padding:90px 0;
}

.oh-cta-box{

    position:relative;
    overflow:hidden;

    padding:80px 40px;

    text-align:center;

    border-radius:20px;

    background:linear-gradient(135deg,#0f3c39,#1a6e66);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}


/* Background Shapes */

.oh-cta-box:before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(32,177,170,.22);

    top:-180px;
    right:-120px;

}


.oh-cta-box:after{

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    left:-100px;
    bottom:-120px;

}



/* Content */

.oh-cta-box>*{

    position:relative;
    z-index:2;

}



.oh-cta-subtitle{

    display:inline-block;

    margin-bottom:15px;

    color:#8fe3dc;

    text-transform:uppercase;

    font-size:12px;

    letter-spacing:2px;

    font-weight:600;

}



.oh-cta-box h2{

    margin:0 0 20px;

    color:#fff;

    font-size:38px;

    font-weight:700;

    line-height:1.3;

}



.oh-cta-box p{

    max-width:650px;

    margin:0 auto 35px;

    color:#d8eceb;

    font-size:16px;

    line-height:30px;

}



/* Button */

.oh-cta-btn{

    display:inline-block;

    padding:14px 35px;

    background:#20b1aa;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    transition:.3s;

}



.oh-cta-btn:hover{

    background:#15928c;

    color:#fff;

    text-decoration:none;

}



.oh-cta-btn .glyphicon{

    margin-left:8px;

}



/* Responsive */

@media(max-width:767px){

    .oh-cta-box{

        padding:60px 25px;

    }

    .oh-cta-box h2{

        font-size:28px;

    }

    .oh-cta-box p{

        font-size:14px;

        line-height:26px;

    }

}



/*Footer*/

/*==========================
        MODERN FOOTER
===========================*/

.oh-footer{

    position:relative;

    background:url("../img/slides/1.jpg") center center;

    background-size:cover;

    background-repeat:no-repeat;

    color:#fff;

    overflow:hidden;


}



.oh-footer-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.80);

}



.oh-footer .container{

    position:relative;

    z-index:2;

}



.oh-footer{

    padding-top:80px;

}



.oh-footer-box{

    margin-bottom:40px;

}



.oh-footer-box h3{

    font-size:22px;

    font-weight:600;

    margin-bottom:25px;

    position:relative;

    padding-bottom:15px;

}



.oh-footer-box h3:after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:60px;

    height:3px;

    background:#20b1aa;

}



.oh-footer-box p{

    color:#ddd;

    line-height:28px;

    font-size:15px;

}



.oh-footer-links{

    list-style:none;

    padding:0;

}



.oh-footer-links li{

    margin-bottom:12px;

}



.oh-footer-links a{

    color:#ddd;

    transition:.3s;

    text-decoration:none;

}



.oh-footer-links a:hover{

    color:#20b1aa;

    padding-left:8px;

}



.oh-contact-list{

    list-style:none;

    padding:0;

}



.oh-contact-list li{

    margin-bottom:18px;

    color:#ddd;

    font-size:15px;

}



.oh-contact-list i{

    width:25px;

    color:#20b1aa;

}



.oh-social{

    margin-top:30px;

}



.oh-social a{

    display:inline-block;

    width:42px;

    height:42px;

    line-height:42px;

    text-align:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    margin-right:10px;

    transition:.3s;

}



.oh-social a:hover{

    background:#20b1aa;

    transform:translateY(-5px);

}



.oh-footer-bottom{

    position:relative;

    z-index:2;

    margin-top:40px;

    border-top:1px solid rgba(255,255,255,.15);

    padding:25px 0;

    color:#ccc;

}



.oh-footer-bottom a{

    color:#20b1aa;

}



@media(max-width:767px){

    .oh-footer-bottom{

        text-align:center;

    }

    .oh-footer-bottom .text-right{

        text-align:center;

        margin-top:10px;

    }

}


/*=========================================
        CONTACT PAGE
=========================================*/

.oh-contact-top{
    padding:80px 0 40px;
    background:#f8fbfc;
}

.oh-contact-card{
    background:#fff;
    text-align:center;
    padding:35px 25px;
    border-radius:18px;
    margin-bottom:30px;
    border:1px solid #edf3f5;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
    height:100%;
}

.oh-contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(32,177,170,.18);
    border-color:#20b1aa;
}

.oh-contact-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#20b1aa,#47d2c8);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.oh-contact-card h4{
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
    color:#111;
}

.oh-contact-card p{
    color:#666;
    font-size:14px;
    line-height:1.8;
    margin:0;
}



/*============================
Main Section
=============================*/

.oh-contact-main{
    padding:80px 0;
    background:#fff;
}

.oh-contact-form-box{

    background:#fff;
    padding:45px;
    border-radius:20px;
    border:1px solid #edf3f5;
    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.oh-contact-form-box h2{

    font-size:34px;
    font-weight:600;
    color:#111;
    margin:12px 0 18px;

}

.oh-contact-form-box p{

    color:#666;
    line-height:1.8;
    margin-bottom:30px;

}



/*============================
Inputs
=============================*/

.oh-contact-form-box .form-control{

    height:55px;
    border-radius:12px;
    border:1px solid #dfe8eb;
    box-shadow:none;
    font-size:14px;
    padding:12px 18px;
    margin-bottom:20px;
    transition:.3s;

}

.oh-contact-form-box textarea.form-control{

    height:170px;
    resize:none;
    padding-top:18px;

}

.oh-contact-form-box .form-control:focus{

    border-color:#20b1aa;
    box-shadow:0 0 0 4px rgba(32,177,170,.10);

}



/*============================
Button
=============================*/

.oh-contact-btn{

    background:#20b1aa;
    color:#fff;
    border:none;
    padding:16px 36px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:.35s;

}

.oh-contact-btn:hover{

    background:#188f89;
    color:#fff;
    transform:translateY(-3px);

}

.oh-contact-btn i{

    margin-left:8px;

}



/*============================
Right Box
=============================*/

.oh-contact-info-box{

    background:linear-gradient(135deg,#0f3c39,#1b6f69);
    color:#fff;
    padding:45px;
    border-radius:20px;
    min-height:100%;

}

.oh-contact-info-box h3{

    font-size:30px;
    font-weight:600;
    margin-bottom:20px;

}

.oh-contact-info-box h4{

    margin-top:30px;
    margin-bottom:15px;
    font-size:20px;
    font-weight:600;

}

.oh-contact-info-box p{

    color:#d8efed;
    line-height:1.9;

}

.oh-contact-info-box hr{

    border-color:rgba(255,255,255,.15);

}

.oh-contact-info-box ul{

    padding-left:18px;
    margin-top:15px;

}

.oh-contact-info-box li{

    margin-bottom:12px;
    color:#d8efed;

}

.oh-contact-info-box i{

    color:#47d2c8;
    margin-right:8px;

}



/*============================
Map
=============================*/

.oh-contact-map{

    padding:0;
    line-height:0;

}

.oh-contact-map iframe{

    width:100%;
    height:500px;
    border:0;

}



/*============================
CTA
=============================*/

.oh-contact-cta-section{

    padding:90px 0;

    background:#fff;

}

.oh-contact-cta{

    background:linear-gradient(135deg,#0f3c39,#1b6f69);

    border-radius:25px;

    padding:90px 50px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.oh-contact-cta:before{

    content:'';

    width:420px;
    height:420px;

    position:absolute;

    top:-170px;
    right:-120px;

    background:rgba(32,177,170,.25);

    border-radius:50%;

}

.oh-contact-cta:after{

    content:'';

    width:320px;
    height:320px;

    position:absolute;

    left:-80px;
    bottom:-120px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

}

.oh-contact-cta h2{

    position:relative;

    color:#fff;

    font-size:38px;

    font-weight:600;

    margin-bottom:20px;

    z-index:2;

}

.oh-contact-cta p{

    position:relative;

    color:#d8efed;

    font-size:16px;

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.9;

    z-index:2;

}

.oh-contact-cta .oh-btn{

    position:relative;

    z-index:2;

}



/*============================
Responsive
=============================*/

@media(max-width:991px){

.oh-contact-form-box{

margin-bottom:40px;

}

.oh-contact-info-box{

margin-top:30px;

}

.oh-contact-cta{

padding:70px 30px;

}

.oh-contact-cta h2{

font-size:30px;

}

}



@media(max-width:767px){

.oh-contact-top{

padding:60px 0 30px;

}

.oh-contact-main{

padding:60px 0;

}

.oh-contact-form-box{

padding:30px;

}

.oh-contact-info-box{

padding:30px;

}

.oh-contact-form-box h2{

font-size:28px;

}

.oh-contact-cta{

padding:60px 25px;

}

.oh-contact-cta h2{

font-size:26px;

}

.oh-contact-map iframe{

height:350px;

}

}