@charset "utf-8";
/* CSS Document */

/* Table of Contents
-----------------------------------------------------------------------------
1. Clean Base
2. Base Typography
3. Images
4. Links
5. Forms
6. Tables
7. Framework 
*/

/* 1. Clean Base
------------------------------------------------------------------------------*/
html, body, br, hr, div, span, a, object, iframe, ul, ol, dl, li, dt, dd, h1, h2, h3, h4, h5, h6, p, blockquote, q, address,
small, big, cite, dfn, ins, del, i, em, b, strong, sup, sub, strike, pre, code, samp, kbd, var, tt, form, fieldset, legend, label,
input, textarea, option, .nobox {background: transparent; border: 0; font-size: 100%; margin: 0; outline: 0; padding: 0; vertical-align: baseline;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
audio,canvas,progress,video {display: inline-block;vertical-align: baseline;}
blockquote, q {quotes: none;}
br {height: 0;}
ul, ol, dl, li {margin:0; padding:0;}
html, body{height: 100%; border:none; -webkit-appearance:none;-ms-appearance:none; -webkit-text-size-adjust:none;-ms-text-size-adjust:none;}

/* Class for clearing floats */
.clear {clear:both; display:block; overflow:hidden; visibility:hidden; width:0; height:0;}
.cf:after,.cf:before{display: table;content: ''}
.cf:after{clear: both;}
*, *:before, *:after {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}

/* 2. Base Typography
------------------------------------------------------------------------------*/
body {
    color: #2c2c2c;
    font: 400 16px/24px 'Poppins', sans-serif;    
    overflow: hidden;
    overflow-y: auto;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17px;
    border-left: 5px solid #eee;
}



ul {
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
    margin-left: 15px;
}

ul li {
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #2c2c2c;
    font-weight: 400;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}

h1 {

}

h2 {
    font-size: 38px;
    line-height: 42px;
    font-weight: 400;
}

h3 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 400;
}

h4 {
    
}

h5 {
    
}

h6 {
    
}

/* 3. Images
------------------------------------------------------------------------------*/
img {
    display: block;
    max-width: 100%;
    vertical-align: middle;
    border: none;
    border-style: none;
}


/* 4. Link
------------------------------------------------------------------------------*/

a{
    text-decoration: none;
}

a:hover, a:focus{
    outline: none;
    text-decoration: none;
}

.text-content a:not(.btn) {
    color: #067274;
    text-decoration: underline;
}

.text-content a:not(.btn):hover {
    text-decoration: none;
}

/* 5. Forms
------------------------------------------------------------------------------*/
input,
button,
select,
textarea {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: inherit;
    line-height: inherit;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: none;    
    -webkit-text-size-adjust: none;
    outline: none
}

input[type='email'],
input[type='text'],
input[type='search'],
input[type='tel'],
input[type='password'],
textarea {
    padding: 0 10px 0 22px;
    display: block;
    width: 100%;
    height: 42px;
    font-size: 14px;
    line-height: 42px;
    color: #aeaeae;
    background-color: #fff;
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

textarea {
    padding: 15px 22px;
    height: 122px;
    line-height: 24px;
    overflow: auto;
    resize: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-block;
    padding: 0 18px;
    height: 42px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 39px;
    text-transform: uppercase;
    color: #ea7617;
    line-height: 42px;
    border: 1px solid #ea7617;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-appearance: none;
}

/* 6. Tables
------------------------------------------------------------------------------*/


/* 7. Layout Framework
------------------------------------------------------------------------------*/

/* commomn css */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.left { float: left;}
.right { float: right;}


#wrapper {
    width: 100%;
    min-height: 100%;
}

.container {
    margin: 0 auto;
    max-width: 1260px;
    width: 100%;
    padding: 0 15px;
}

/* button */
.btn {    
    display: inline-block;
    padding: 9px 18px 7px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    background-color: #007377;
    cursor: pointer;    
    border:  2px solid #007377;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    transition: 0.3s ease-in-out;
}

.btn:hover,
.btn:focus {
    color: #007377;
    background-color: #fff;
}

.btn-white {
    background-color: #fff;
    color: #007377;
    border-color: #fff;
}

.btn-white:hover,
.btn-white:focus {
    background-color: #007377;
    color: #fff;
    border-color: #fff;
}

.arrowBtn i {
    margin-left: 10px;
    transition: margin-left 0.3s ease-in-out;
}

.arrowBtn:hover i {
    margin-left: 18px;
}

.bg-light-gray {
    background-color: #f0f0f0;
}

.bg-green {
    background-color: #007377;
}

.bg-dark-green {
    background-color: #034441;
}

.text-green {
    color: #007377;
}

.text-light-green {
    color: #00aba3;
}

.text-white {
    color: #fff;
}

.text-gray {
    color: #626262;
}

.styled-title b {
    text-decoration: underline;
    font-style: italic;
    font-weight: 500;
}

.title-part h2 {
    margin-bottom: 15px;
}

.title-part h2 p, .title-part h3 p {
    font-size: 20px;
    line-height: 24px;
    margin-top: 5px;
    color: #01959b;
    font-weight: 300;
}

.title-part h2 ~ p, .title-part h2 ~ div p {
    font-size: 14px;
    line-height: 24px;
}

.py-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.mb-2 {
    margin-bottom: 20px;
}

.row {
    display: flex;
    max-width: 1260px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.row .col-12 {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
}

.row .col-6 {
    width: 100%;
    max-width: 50%;
    padding: 0 15px;
}

.row .col-4 {
    width: 100%;
    max-width: 33.33%;
    padding: 0 15px;
}

.title-part ~ .row {
    margin: 30px -15px 0;
}

hr.styled-hr {
    border: none;
    border-top: 4px solid #034441;
}

.max-width-800 {
    max-width: 800px;
    margin: 0 auto;
}

/* header */
header {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #034441;
    padding: 30px 0;
}

header nav.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav.main-navbar .nav-logo {
    max-width: 450px;
    width: 100%;
}

header nav.main-navbar .nav-logo a {
    color: #fff;
}

header nav.main-navbar .nav-logo a h1 {
    font-size: 36px;
    font-weight: 200;
    color: #d0f0c0;
}

h1 sub {
    font-size: 17px;
    font-weight: 300;
    vertical-align: sub;
    position: relative;
    top: -10px;
    line-height: 0;
}

header nav.main-navbar .nav-logo a img {
    width: 100%;
}

header nav.main-navbar .nav-logo a h1 b {
    font-weight: 400;
    font-style: italic;
    text-decoration: underline;
}

header nav.main-navbar .nav-menu {
    display: flex;
    align-items: center;
}

header nav.main-navbar .nav-menu ul {
    display: flex;
    align-items: center;
    list-style-type: none;
}

header nav.main-navbar .nav-menu ul li {
    margin-left: 25px;
}

header nav.main-navbar .nav-menu ul li a {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    position: relative;
    font-weight: 300;
}

header nav.main-navbar .nav-menu ul li a:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0%;
    opacity: 0;
    background-color: #fff;
    transition: 0.3s ease-in-out;
}

header nav.main-navbar .nav-menu ul li a:hover:after {
    width: 100%;
    opacity: 1;
}

header nav.main-navbar .nav-menu ul li.active a:after {
    width: 100%;
    opacity: 1;
}

header nav.main-navbar .nav-menu a.search-icon::after{
    display: none;
}

header.sticky-header {
    position: fixed;
    z-index: 999;
    width: 100%;
    left: 0;
    top: 0;
}

nav ul {
    margin: 0;
}

.main-body {
	padding: 50px 0;
}

/* footer */
footer {   
    width: 100%;
    background-color: #ccc;
}

/*--------- home page ------------*/

div#banner-carousel {
    position: relative;
}

div#banner-carousel .slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}

div#banner-carousel .slide .slider-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #034441;
    z-index: -1;
    opacity: 0.7;
}

div#banner-carousel .slide .slide-content h1 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 500;
    color: #fff;
}

div#banner-carousel .slide .slide-content h1 span {
    color: #00aba3;
}

div#banner-carousel .slide .slide-content a.btn {
    margin-top: 30px;
}

div#banner-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    line-height: 35px;
    font-weight: 200;
    background-color: #034441;
    border: 2px solid #fff;
    color: #fff;
    padding: 6px 10px 11px 10px !important;
    left: 0px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

div#banner-carousel .owl-nav button.owl-next {
    left: auto;
    right: 0px;
}

div#banner-carousel .owl-nav button.owl-prev {
    left: 100px;
    opacity: 1;
}

div#banner-carousel .owl-nav button.owl-next {
    right: 100px;
    opacity: 1;
}

div#banner-carousel .owl-nav button:hover {
    opacity: 0.7;
}

.partner-blocks-box {
    padding: 0 30px;
    position: relative;
}

.partner-section h2 {
    margin-bottom: 40px;
}

.partner-section .partner-blocks-box .owl-stage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-section .partner-blocks-box .owl-stage .owl-item {
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-section .partner-blocks-box .owl-stage .owl-item span {
    width: 100%;
}

.partner-blocks-box .owl-nav button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 40px !important;
    font-weight: 400 !important;
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #034441 !important;
}

.partner-blocks-box .owl-nav button.owl-next {
    left: auto;
    right: 0;
}

.family-law-sec {
    position: relative;
    z-index: 0; 
}

.bottom-shape-tri{
    margin-bottom: 50px;
}

.bottom-shape-tri:before {
    width: 100%;
    height: 100px;
    content: "";
    background-color: #f0f0f0;
    display: block;
    clip-path: polygon(50% 100%, 0 50%, 100% 50%);
    position: absolute;
    bottom: -50px;
}

.big-block-quote .quote-details blockquote {
    background-color: #034441;
    color: #fff;
    border: none;
    margin: 0;
    padding: 70px 75px;
    text-align: center;
    position: relative;
    z-index: 0;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    box-shadow: 0px 10px 20px 6px rgb(3 68 65 / 40%);
}

.big-block-quote .quote-details blockquote:before {
    content: "\f10d";
    font-weight: 700;
    font-family: 'Font Awesome 5 Pro';
    font-size: 210px;
    line-height: 210px;
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: -1;
    opacity: 0.2;
}

.big-block-quote .quote-details blockquote h1 {
    font-weight: 200;
    font-size: 45px;
    line-height: 65px;
    margin-bottom: 45px;
}

.big-block-quote .quote-details blockquote h6 {
    font-size: 23px;
    line-height: 26px;
    font-weight: 500;
}

.protection-section .protec-blk {
    border: 1px solid #007377;
    box-shadow: 0px 15px 20px 0px #0073772b;
}

.protection-section .protec-blk a {
    display: flex;
    flex-direction: column;
    color: #007377;
    position: relative;
    z-index: 0;
}

.protection-section .protec-blk a:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 200px;
    height: 200px;
    background-color: #007377;
    transition: 0.3s ease-in-out;
}

.protection-section .protec-blk a:hover {
    color: #fff;
}

.protection-section .protec-blk a:hover:before {
    width: 100%;
    height: 100%;
}

.protection-section .protec-blk span {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    width: 100%;
    height: 100%;
    max-height: 200px;
    padding: 40px;
    background-color: #007377;
    margin-bottom: 40px;
    transition: 0.3s ease-in-out;
}

.protection-section .protec-blk a:hover span {
    background-color: #005356;
}

.protection-section .protec-blk h3 {
    padding: 0 15px;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.protection-section .protec-blk p {
    transition: color 0.3s ease-in-out;
}

.protection-section .protec-blk .hovershow-cont {
    padding: 0 15px 30px;
}

.left-img-right-content {
    position: relative;
    background-color: #007377;
    z-index: 0;
    overflow: hidden;
}

.left-img-right-content .left-bg-img {
    width: 35%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    left: 0;
    top: 0;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.7;
}

.left-img-right-content .text-content {
    margin-top: 30px;
}

.left-img-right-content .text-content p {
    margin-bottom: 15px;
}

.left-img-right-content .text-content  a.btn {
    margin-top: 10px;
}

/*-Footer Section-*/
footer .row .col-4 {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

footer .row .col-4 .block {
    min-height: 70px;
    display: flex;
    flex-direction: column;
}

footer .row .col-4 .block .bottometitle {
    position: relative;
    padding-bottom: 5px;
    height: 30px;
    margin-bottom: 5px;
    color: #007377;
}

footer .row .col-4 .block .bottometitle:after {
    content: "";
    background-color: #007377;
    height: 2px;
    width: 100%;
    display: block;
    bottom: 0;
    position: absolute;
}

footer .row .col-4 .block .bottometitle h2 {
    font-size: 20px;
    line-height: 24px;
    margin: 0;
}

.block .contact-info ul {
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}

.block .contact-info ul li {
    font-size: unset;
    line-height: unset;
    margin-right: 5px;
}

.block .contact-info ul li:last-child {
    margin-right: 0;
}

.block .contact-info ul li a {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: -0.5px;
    color: #007377;
}

.block .contact-info ul li a:hover {
    color: #034441;
}

.block .bottometitle a {
    font-weight: 500;
    color: #007377;
}

.block .bottometitle a:hover {
    color: #004446;
}

footer .row .col-4 .block .contact-info .external_links ul {
    justify-content: space-between;
}

footer .row .col-4 .block .bottomebody p {
    font-size: 16px;
    margin-top: 2px;
    color: #007377;
}

footer .row .col-4 .block .bottomebody p  a {
    color: #007377;
    font-weight: 400;
}

footer .row .col-4 .block .bottomebody p a:hover {
    text-decoration: underline;
}

footer .row .col-4 .block .contact-info .socials ul li {
    margin-right: 20px;
}

footer .row .col-4 .block .contact-info .socials ul li a {
    font-size: 18px;
    line-height: 28px;
}

footer .row .col-4 .block.SRH_section {
    margin-top: -20px;
}

.block.SRH_section .custom-footer-div {
    display: flex;
    align-items: flex-end;
}

.block.SRH_section .custom-footer-div .custom-content p {
    font-size: 7px;
    line-height: 14px;
    text-align: right;
}

.block.SRH_section .custom-footer-div .custom-content  ~ .custom-img {
    padding-left: 20px;
    max-width: 150px;
    height: 80px;
    overflow: hidden;
}

.block.SRH_section .custom-footer-div .custom-content p.site-url a {
    color: #007377;
    font-weight: 500;
}

.block.SRH_section .custom-footer-div .custom-content p.site-url a:hover {
    color: #007377;
}

.block.page-links {
    padding: 0 15px;
}

.contact-info .block.page-links ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
}

.contact-info .block.page-links ul li {
    margin-right: 25px;
}

.contact-info .block.page-links ul li:last-child {
    margin-right: 0;
}

.contact-info .block.page-links ul li a {
    color: #007377;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
}

.contact-info .block.page-links ul li a:hover {
    text-decoration: underline;
}

/* Inner Banner */
.inner-page-banner {
    min-height: 240px;
    min-height: 280px;
    /* min-height: 440px; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80%;
    z-index: 0;
    color: #fff;
    clip-path: polygon(100% 90%, 100% 0, 0 0, 0 90%, 50% 100%);
}

.inner-page-banner .slider-overlay {
    background-color: #034441;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.inner-page-banner h1 {
    font-size: 34px;
    line-height: 40px;
    font-weight: 300;
    margin-bottom: 10px;
}

.inner-page-banner h1 ~ p {
    font-size: 22px;
    font-weight: 300;
}

/*-left-img-right-content-*/
.left-img-right-content + .left-img-right-content {
    padding-top: 0;
}

.left-img-right-content.reverse-col .row {
    flex-direction: row-reverse;
}

/*-TimeLine Sec-*/
.timeline {
  position: relative;
  counter-reset: section;
  z-index: 0;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 31px;
    margin-left: -3px;
    z-index: -1;
}

/* Container around content */
.timeline-box {
    padding-left: 90px;
    position: relative;
    background-color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
    z-index: 0;
}

.timeline-box:last-child {
    padding-bottom: 0;
}

.timeline-box:last-child:before {
    content: '';
    width: 100%;
    position: absolute;
    height: calc(100% - 50px);
    left: 0;
    background-color: #007377;
    bottom: 0;
}

/* The circles on the timeline */
.timeline-box::after {
    counter-increment: section;
    content: counter(section);
    position: absolute;
    width: 50px;
    height: 50px;
    left: 6px;
    background-color: #007377;
    border: 6px solid #ffffff;
    top: 0;
    border-radius: 50%;
    z-index: 1;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
}

.timeline-box .content {
    padding: 20px 30px;
    background-color: white;
    box-shadow: 0px 10px 15px 20px #007174;
    position: relative;
    border-radius: 6px;
    color: #007377;
    width: 100%;
    max-width: 40%;
}

.timeline-box .content h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 10px;
}

.timeline-box .content p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.timeline-box .content a.btn {
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
    padding: 7px 12px 6px;
}

.timeline-box .timeline-image {
    max-width: 50%;
    width: 100%;
    position: relative;
}

.timeline-box .timeline-image img {
    border-radius: 6px;
    width: 100%;
}

/*-Expertise Box-*/
.expertise-section .expertise-box {
    margin-top: 10px;
    padding: 25px 25px 27px;
    text-align: center;
    box-shadow: 0 10px 20px 0px #ffffff;
    transition: 0.3s ease-in-out;
}

.expertise-section .expertise-box:hover {
    box-shadow: 0 10px 20px 0px rgb(230 230 230 / 40%);
}

.expertise-section .expertise-box span {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.expertise-section .expertise-box span img {
    width: 100%;
}

.expertise-section .expertise-box h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.expertise-section .expertise-box p {
    font-size: 14px;
    line-height: 24px;
}

.expertise-section .expertise-box a.btn {
    font-size: 14px;
    line-height: 24px;
    padding: 4px 15px 3px;
    margin-top: 15px;
}

.expertise-section .expertise-box a.btn:hover {
    background-color: transparent;
}

/*-Ways To Pay-*/
.expertise-section.way-to-pay-sec .expertise-box {
    box-shadow: 0 10px 20px 0px #01575a;
    text-align: left;
    margin-top: 30px;
}

.expertise-section.way-to-pay-sec .expertise-box:hover {
    box-shadow: 0 10px 20px 0px rgb(1 87 90 / 40%);
}

/*-Contact Us-*/
.family-law-sec.centered-law + .contact-us-section {
    position: relative;
}

.contact-us-section:before {
    content: "";
    width: 200px;
    height: 4px;
    background-color: #28aba3;
    display: block;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
}

/* .contact-us-section:after {
    content: "";
    width: 200px;
    height: 4px;
    background-color: #28aba3;
    display: block;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
} */

.contact-us-section ul {
    margin-left: 0;
}

.contact-us-section ul + .address {
    margin-bottom: 20px;
}

.contact-us-section .social-icons ul {
    margin-left: -5px;
}

.contact-us-section .container {
    max-width: 980px;
}

a.map-link img {
    width: 100%;
    filter: saturate(0);
    transition: 0.3s ease-in-out;
}

a.map-link:hover img {
    filter: saturate(1);
}

.contact-info ul li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 2px;
    list-style-type: none;
}

.contact-info ul li b {
    min-width: 20px;
    display: inline-block;
}

.contact-info ul li a {
    color: #007377;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.contact-info ul li a:hover {
    color: #034441;
}

.contact-info .address {
    margin-top: 15px;
    font-size: 18px;
}

.social-icons ul li {
    display: inline-block;
    padding: 0 5px;
    list-style-type: none;
}

.social-icons ul li a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007377;
    color: #fff;
    font-size: 15px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.social-icons ul li a:hover {
    background-color: #034441;
}

/*-Toggle Button-*/
header .container {
    position: relative;
}

header .mobile-menu {
    display: none;
}

.navToggle {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    right: 15px;
    transition-duration: 0.5s;
    display: none;
}
.navToggle .icon {
    transition-duration: 0.25s;
    position: absolute;
    width: 30px;
    height: 2px;
    top: 15px;
    left: 0;
    background-color: #fff;
}
.navToggle .icon:before,
.navToggle .icon:after {
  transition-duration: 0.25s;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  content: "";
}
.navToggle .icon:before {
  top: -7px;
  left: 0;
}
.navToggle .icon:after {
  top: 7px;
  left: 0;
}
.navToggle:hover {
  cursor: pointer;
}
.navToggle:hover .icon:before {
  top: -10px;
}
.navToggle:hover .icon:after {
  top: 10px;
}
.navToggle.open {
  transition-duration: 1s;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.navToggle.open .icon {
  transition-duration: 0.5s;
  background-color: transparent;
}
.navToggle.open .icon:before {
  transition-duration: 0.5s;
  top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.navToggle.open .icon:after {
  transition-duration: 0.5s;
  top: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.navToggle.open .icon:before, .navToggle.open .icon:after {
    background-color: #d0f0c0;
}

.expertise-section.way-to-pay-sec {
    z-index: 0;
}

.expertise-section.way-to-pay-sec .row {
    z-index: 0;
    position: relative;
}

.expertise-section.way-to-pay-sec .row .col-6 {
    z-index: 0;
}

.expertise-section.way-to-pay-sec .expertise-box {
    z-index: -1;
}