/*--------------------- Copyright (c) 2025 ----------------------- 
[Master Stylesheet] 
Project: Consulting Firm
Version: 1.0.0 
Author: 
 ------------------------------------------------------------------- 
[Table of contents] 
	1. Global CSS Start
	2. Comman CSS Start
    3. Preloader CSS Start
    4. Header CSS Start
    5. Banner CSS Start
    6. Partner CSS Start
    7. About CSS Start
    8. Counter CSS Start
    9. Service CSS Start
    10. Why Us CSS Start
    11. Team CSS Start
    12. Testimonial CSS Start
    13. Blog CSS Start
    14. Contact CSS Start
    15. Footer CSS Start
    16. Page Title Start
    17. Service Page CSS Start
    18. Projects Page CSS Start
    19. Contact Page CSS Start
    20. Blog Page Start
    21. Blog Single Page Start
    22. Responsive CSS Start
-------------------------------------------------------------------*/


/********************************************************
    1. Global CSS Start
********************************************************/

body {
    color: var(--main-gol-txt-color);
    background: var(--main-bg-color);
    font-family: 'Poppins';
}

a,
a:hover,
a:focus {
    color: var(--main-link-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--main-gol-title-color);
}


/********************************************************
    2. Comman CSS Start
********************************************************/

.gol_btn {
    background: var(--main-green-color);
    color: var(--main-bg-color);
    display: inline-block;
    border: 2px solid transparent;
    border-radius: 30px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    padding: 0 15px;
    width: 170px;
    margin-top: 10px;
    z-index: 0;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    display: inline-table;
}

.gol_btn:hover {
    color: var(--main-green-color);
}

.gol_btn.gol_white {
    background: transparent;
    border: 2px solid var(--main-bg-color);
}

.gol_btn:hover {
    color: var(--main-green-color);
}

.gol_btn span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: var(--main-bg-color);
    -webkit-transform: translateY(150%);
    -moz-transform: translateY(150%);
    -ms-transform: translateY(150%);
    -o-transform: translateY(150%);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.gol_btn:hover span {
    -webkit-transform: translateY(0) scale(2);
    -moz-transform: translateY(0) scale(2);
    -ms-transform: translateY(0) scale(2);
    -o-transform: translateY(0) scale(2);
    transform: translateY(0) scale(2);
}

.gol_btn span:nth-child(1) {
    --n: 1;
}

.gol_btn span:nth-child(2) {
    --n: 2;
}

.gol_btn span:nth-child(3) {
    --n: 3;
}

.gol_btn span:nth-child(4) {
    --n: 4;
}

.gol_bg_title {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-green-color);
    display: inline-block;    
    text-transform: capitalize;
}
.gol_heading h4 {
    font-size: 38px;
    font-weight: 700;
    position: relative;
    margin: 0 0 22px;
}
.gol_heading.center {
    margin-bottom: 41px;
}
.gol_heading p {
    max-width: 500px;
    width: 100%;
    margin: auto;
}
.gol_heading.center h4 {
    margin: 0 0 10px;
}

.gol_heading.center h4:before,
.gol_heading.center h4:after {
    right: 0;
    margin: auto;
}

.gol_heading .white:before {
    background: var(--main-gray-border);
}

.gol_readMoreBtn {
    color: var(--main-green-color);
    position: relative;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.gol_readMoreBtn:hover {
    color: var(--main-green-color);
    letter-spacing: 1px;
}

.gol_readMoreBtn:before {
    content: "";
    position: absolute;
    bottom: 5px;
    background: var(--main-green-color);
    width: 100%;
    height: 1px;
    opacity: .6;
}

.gol_subHeading {
    font-size: 22px;
}

#scroll {
    background: var(--main-green-color);
    color: var(--main-bg-color);
}


/********************************************************
    3. Preloader CSS Start
********************************************************/

.preloader_active .preloader_holder {
    background-color: var(--main-bg-color);
}

.preloader_active .preloader_holder .preloader span {
    box-shadow: 0px 0px 0px 0px var(--main-green-color);
}

@-webkit-keyframes loadingCircles {
    0% {
        -webkit-transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--main-green-color);
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--main-green-color);
    }
}

@-moz-keyframes loadingCircles {
    0% {
        -moz-transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--main-green-color);
    }
    100% {
        -moz-transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--main-green-color);
    }
}

@keyframes loadingCircles {
    0% {
        transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--main-green-color);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--main-green-color);
    }
}

.preloader_open:before,
.preloader_open:after {
    background-color: var(--main-bg-color);
}


/********************************************************
    4. Header CSS Start
********************************************************/

header {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    top: 20px;
}

.gol_header_wrapper {
    background: var(--main-bg-color);
    padding: 15px 20px;
    position: relative;
    border-radius: 50px;
}

.gol_header_info {
    position: absolute;
    right: 0;
    background: var(--main-green-color);
    color: var(--main-bg-color);
    width: 200px;
    top: 0;
    bottom: -20px;
    text-align: center;
    padding: 15px 0;
}

.gol_header_info:before {
    content: "";
    border-bottom: 20px solid transparent;
    border-right: 12px solid var(--main-green-color);
    bottom: 0px;
    position: absolute;
    left: -12px;
}

.gol_header_info svg {
    height: 20px;
    fill: var(--main-bg-color);
}

.gol_header_info p {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

.gol_header_info a {
    color: var(--man-bg-color);
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
}

.searchBtn {
    margin-right: 12px;
    padding: 0 10px;
}

.gol_logo {
    padding-left: 15px;
}

.fixed_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: white;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 14px 28px rgb(0 0 0 / 12%), 0 10px 10px rgb(0 0 0 / 2%);
}


/********************************************************
    5. Banner CSS Start
********************************************************/

.gol_banner_section {
    background-color: var(--main-border-color);
    padding: 362px 0 260px;
    position: relative;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gol_banner_section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.70);      
}

/*.gol_banner_section.slide1 {*/
/*    background-image: url(https://placehold.co/1920x1280);*/
/*}*/

/*.gol_banner_section.slide2 {*/
/*    background-image: url(https://placehold.co/1920x1280);*/
/*}*/

/*.gol_banner_section.slide3 {*/
/*    background-image: url(https://placehold.co/1920x1280);*/
/*}*/

.gol_banner_text {
    padding: 0 50px;
}

.gol_banner_text .gol_bg_title {
    font-size: 25px;   
}

.gol_banner_text h2 {
    font-size: 80px;
    color: var(--main-bg-color);
    font-weight: 700;
    margin: 10px 0 30px 0;
}

.gol_banner_text .gol_btn {
    margin: 4px 15px 0;
}

.gol_banner_button {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

.gol_banner_button>div {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.gol_banner_button>div>svg{
    fill: var(--main-bg-color);
    width: 40px;
}
.gol_banner_button>div:hover {
    background: var(--main-green-color);
    transform: scale(1.1);
}

.ButtonPrev {
    left: 20px;    
}

.ButtonNext {
    right: 20px;    
}

.gol_banner_button>div,
.gol_banner_button>div:hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/********************************************************
    6. Partner CSS Start
********************************************************/
.partner_slider {
    padding: 30px 0;
}
.gol_partner_wrapper .gol_partners_container img {
    transition: all 0.3s;
    filter: grayscale(1);
}
.gol_partner_wrapper .swiper-slide-active .gol_partners_container img{
    transform: scale(1.15);
    filter: none;
}
/********************************************************
    7. About CSS Start
********************************************************/

.gol_about_section {
    background: var(--main-bg-color);
    padding: 80px 0;
}
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1);
    }
}

@keyframes shadow-pulse-big {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

.gol_contact_info {
    display: flex;
    background: var(--main-green-color);
    width: 300px;
    height: 70px;
    line-height: 70px;
    border: none;
    border-radius: 40px;
    margin: auto;
    padding: 0 0 0 70px;
    position: relative;
    color: var(--main-bg-color);
    font-weight: 500;
    font-size: 23px;
    top: -35px;
}

.gol_contact_info:hover {
    color: var(--main-bg-color);
}

.gol_contact_info svg {
    width: 30px;
    fill: var(--main-green-color);
}

.gol_contact_info span {
    width: 55px;
    height: 55px;
    background: var(--main-bg-color);
    line-height: 55px;
    text-align: center;
    border: none;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: 7px;
}

.gol_about_detail h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0 20px 0;
}
.gol_about_detail h2 span{
    font-weight: 500;
}
.gol_about_detail h6 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--main-gol-title-color);
    line-height: 26px;
}

.gol_about_detail .gol_btn {
    margin-top: 25px;
}
/********************************************************
    8. Counter CSS Start
********************************************************/

.gol_counter_wrapper {
    background: url(https://placehold.co/1920x377);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    padding: 80px 0px;
}

.gol_counter_wrapper:before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.80);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.gol_counter_icon {
    margin-bottom: 24px;
    padding-bottom: 36px;
    position: relative;
}

.gol_counter_icon:before {
    position: absolute;
    left: -15px;
    right: -15px;
    height: 1px;
    background: var(--main-black2);
    bottom: 0;
    content: "";
}

.gol_counter_icon:after {
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    width: 15px;
    background: var(--main-green-color);
    bottom: -6px;
    content: "";
    margin: auto;
    border: none;
    border-radius: 50%;
}
.counter_item h2 {
    font-size: 56px;
    color: var(--main-bg-color);
    font-weight: 700;
}

.counter_item p {
    font-size: 22px;
    color: var(--main-bg-color);
    margin-top: 10px;
}

.gol_counter_icon img {
    height: 60px;
}

.gol_counter_wrapper .counter_holder {
    position: relative;
}

.gol_counter_wrapper .counter_holder:before {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: url(../images/counter_line.png);
    top: 93px;
    content: "";
    background-position: center;
    background-size: cover;
}

/********************************************************
    9. Service CSS Start
********************************************************/

.gol_services_section {
    padding: 80px 0;
}
.gol_icon_bg svg {    
    height: 70px;
    fill: var(--main-green-color);
    position: relative;
    z-index: 1;
}
.gol_service_container {
    background: var(--main-bg-color);
    padding: 40px;
    border-radius: 15px;    
    transition: all 0.3s;
    position: relative;    
}
.gol_service_container::before{
    content: '';
    position: absolute;    
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;        
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;    
    opacity: 0;
    visibility: hidden;    
    transition: all 0.3s;
}
/*[class^="golServiceBox"]::before{*/
/*    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75))!*, url(https://placehold.co/370x318)*!;*/
/*}*/
.golServiceBox::before{
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75))/*, url(https://placehold.co/370x318)*/;
}
/*.golServiceBox2::before{*/
/*    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75))!*, url(https://placehold.co/370x318)*!;*/
/*}*/
/*.golServiceBox3::before{*/
/*    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75))!*, url(https://placehold.co/370x318)*!;*/
/*}*/
/*.golServiceBox4::before{*/
/*    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75))!*, url(https://placehold.co/370x318)*!;*/
/*}*/
.gol_service_container:hover::before, .swiper-slide-active .gol_service_container::before{    
    opacity: 1;
    visibility: visible;
}
.gol_service_text .gol_subHeading {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.gol_service_text p{
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.gol_service_text .gol_readMoreBtn {
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1;
    transition: all 0.3s;    
}
.gol_service_text .gol_readMoreBtn:hover{
    letter-spacing: 2px;
}
.gol_service_text .gol_readMoreBtn i{
    font-weight: 300;
}
.gol_service_text .gol_readMoreBtn:before{
    display: none;
}
.gol_service_container:hover .gol_icon_bg svg, .swiper-slide-active .gol_icon_bg svg{
    fill: var(--main-bg-color);
}
.gol_service_container:hover .gol_service_text .gol_subHeading, .gol_service_container:hover .gol_service_text p, .swiper-slide-active .gol_service_text .gol_subHeading, .swiper-slide-active .gol_service_text p{
    color: var(--main-bg-color);
}
.gol_service_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 25px 0 10px 0;
}
.gol_service_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    position: relative;
    margin: 0 !important;
}
.gol_service_pagination .swiper-pagination-bullet::before{
    content: '';
    background: transparent;   
    border: 2px solid #000;  
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: 100%;
}
.gol_service_pagination .swiper-pagination-bullet-active{
    background-color: var(--main-green-color);
}
.gol_service_pagination .swiper-pagination-bullet-active::before{
    border: 2px solid var(--main-green-color);
}
/********************************************************
    10. Why Us CSS Start
********************************************************/

section.gol_whyUs_wrapper {
    padding: 0 0 80px 0;
}
.gol_whys_box {
    background-color: var(--main-bg-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.065);
    border-radius: 15px;
    padding: 40px 20px 40px 40px;
    transition: all 0.3s;
}
.gol_whys_box:hover { 
    transform: translateX(10px);
}
.gol_whys_img {
    width: 70px;
    height: 70px;
    background-color: var(--main-gol-title-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;    
}
.gol_whys_box:hover .gol_whys_img{
    background-color: var(--main-green-color);
} 
.gol_whys_img img {
    filter: drop-shadow(2px 4px 6px white);
    transition: all 0.3s;
}
.gol_whys_box:hover .gol_whys_img img{
    filter: none;
}
.gol_whys_content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-gol-title-color);
    margin: 15px 0 10px 0;
    transition: all 0.3s;
}
.gol_whys_content p{
    transition: all 0.3s;
}
.gol_whys_box:hover .gol_whys_content h4{
    color: var(--main-green-color);
}
/********************************************************
    11. Team CSS Start
********************************************************/

.gol_team_wrapper {
    padding: 80px 0;
}
.gol_team_section {
    position: relative;
    background: var(--main-bg-color);
}
.gol_team_img_wrapper {
    display: flex;
}
.gol_team_img {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gol_team_img img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s;
}
.gol_team_section:hover .gol_team_img img{
    transform: scale(1.1);
}
.gol_team_social {
    text-align: center;
    margin-top: 10px;
}
.gol_team_social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.gol_team_social li a {
    color: var(--main-gol-txt-color);
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.gol_team_social li a:hover{
    background: var(--main-green-color);
}
.gol_team_social li a svg{
    fill: var(--main-gol-txt-color);
    transition: all 0.3s;
}
.gol_team_social li a:hover {
    color: var(--main-bg-color);
}
.gol_team_social li a:hover svg{
    fill: var(--main-bg-color);
}
.gol_team_hover {
    background:rgb(0, 196, 134, 0.9);
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    border-radius: 0;
    -webkit-transform: translateY(-500px);
    -moz-transform: translateY(-500px);
    -ms-transform: translateY(-500px);
    -o-transform: translateY(-500px);
    transform: translateY(-500px);
    border-radius: 10px;
}
.gol_team_section:hover .gol_team_hover {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}
.gol_team_inner {
    margin: auto;
    text-align: center;
    color: var(--main-bg-color);
}
.gol_team_info:first-child {
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}
.gol_team_info:first-child:before {
    background: var(--main-bg-color);
    content: "";
    position: absolute;
    height: 1px;
    width: 60%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}
.gol_team_info {
    width: 100%;
    display: inline-block;
}
.gol_team_info h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-bg-color);
    padding-bottom: 5px;
}
.gol_team_info a {
    font-size: 15px;
    font-weight: 400;
    color: var(--main-bg-color);
    display: block;
    width: 100%;
}
.gol_team_img_wrapper,
.gol_team_img_wrapper:hover,
.gol_team_img_wrapper .gol_team_hover,
.gol_team_img_wrapper:hover .gol_team_hover,
.gol_team_button>div,
.gol_team_button>div:hover,
.gol_team_button>div svg,
.gol_team_button>div:hover svg {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.gol_team_identity a {
    color: var(--main-gol-title-color);
    font-weight: 600;
    font-size: 18px;
    margin-top: 17px;
    display: inline-block;
}
.gol_team_identity p {
    font-size: 15px;
    font-weight: 500;
}
.gol_team_button>div svg {
    width: 20px;
    fill: var(--main-gol-txt-color);
}
.swiperPagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 50px 0 10px 0;
}
.swiperPagination span.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    position: relative;    
}
.swiperPagination span.swiper-pagination-bullet::before {
    content: '';
    background: transparent;
    border: 2px solid #000;
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: 100%;
}
.swiperPagination span.swiper-pagination-bullet-active::before {
    border: 2px solid var(--main-green-color);
}
.swiperPagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main-green-color);
}

.gol_team_button {
    position: absolute;
    top: 35%;
    width: 100%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gol_team_button>div {
    position: absolute;
    cursor: pointer;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.gol_team_button .swiper-button-next1 {
    right: -40px;
}

.gol_team_button .swiper-button-prev1 {
    left: -40px;
}

.gol_team_button>div:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.gol_team_button>div:hover svg {
    fill: var(--main-green-color);
}


/********************************************************
    12. Testimonial CSS Start
********************************************************/

.gol_testimonial_wrapper {
    background: url(https://placehold.co/1920x586);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    padding: 80px 0;
}
.gol_testimonial_wrapper:before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.80);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.gol_testimonial_wrapper .gol_heading h4, .gol_testimonial_wrapper .gol_heading p{
    color: var(--main-bg-color);
}
.gol_testimonials_section {
    color: var(--main-bg-color);
}
.gol_client_img {
    position: relative;
    width: 100px;
    height: 100px;
    margin: auto;
}
.gol_client_img::before{
    content: '';
    border: 2px solid var(--main-green-color);
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
}
.gol_client_img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--main-bg-color);
    padding: 4px;
    display: block;
}
.gol_client_quote {
    text-align: left;
    text-align: center;
}
.gol_client_quote p {
    font-size: 14px;
}
.gol_testimonial_section {
    text-align: center;    
    padding: 10px 0;
}
span.gol_testimonial_icon {
    display: none;
}
.gol_testimonial_icon svg {
    height: 50px;
    fill: var(--main-bg-color);    
}
.gol_client_quote h4 {
    color: var(--main-bg-color);    
    font-size: 22px;
}
.gol_testimonial_section>p {
    font-size: 16px;
    margin: 30px 0; 
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}
.pagination span.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    position: relative;
    background: var(--main-bg-color);
    opacity: .5;
}
.pagination span.swiper-pagination-bullet::before {
    content: '';
    background: transparent;
    border: 2px solid #fff;
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: 100%;
}
.pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main-green-color);
    opacity: 1;
}
.pagination span.swiper-pagination-bullet-active::before {
    border: 2px solid var(--main-green-color);
}
/********************************************************
    13. Blog CSS Start
********************************************************/
.gol_blog_wrapper {
    padding: 80px 0;
}
.gol_blog_img {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.gol_blog_img img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s;
}
.gol_blog_img:hover img{
    transform: scale(1.1);
}
.gol_blog_date {
    background: var(--main-green-color);
    color: var(--main-bg-color);
    width: 130px;
    display: inline-block;
    text-align: center;
    padding: 5px 0;
    position: absolute;
    right: 0;
    top: 20px;
    font-weight: 500;
    border-radius: 50px 0 0 50px;
}
.gol_blog_info li {
    display: inline-block;
    margin-left: 14px;
}
.gol_blog_info li:first-child {
    margin-left: 0;
}
.blog_text {
    padding: 25px 0 0;
}
.gol_blog_info {
    margin-bottom: 11px;
}
.gol_blog_info li img {
    margin-right: 10px;
    vertical-align: middle;
}
.gol_blog_info a {
    color: var(--main-gol-txt-color);
    display: flex;
    align-items: center;
}
.gol_blog_title {
    font-size: 22px;
    font-weight: 700;
}
.gol_blog_title:hover {
    color: var(--main-green-color);
}
.gol_blog_thumb {
    background: var(--main-bg-color);
}
.gol_blog_title,
.gol_blog_title:hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
/********************************************************
    14. Contact CSS Start
********************************************************/
.gol_map_wrapper {
    padding: 80px 0 80px 0;
}
.gol_form_field {
    border: 1px solid #ebebeb;
    width: 100%;
    height: 50px;
    margin-top: 15px;
    padding: 0 15px;
    border-radius: 6px;
}
.gol_contact_img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.gol_contact_img img{
    border-radius: 10px;
    transition: all 0.3s;
}
.gol_contact_img:hover img{
    transform: scale(1.1);
}
textarea.gol_form_field {
    height: 125px;
    padding: 20px 15px;
    resize: none;
}

.gol_map {
    margin-top: 50px;
    border-radius: 10px;
}
.gol_map iframe {
    display: block;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    border-radius: 10px;
}

.gol_contact_form h4 {
    font-size: 28px;
    font-weight: 600;
}

.gol_form_field::placeholder,
.gol_form_field::-webkit-input-placeholder {
    color: #c7c7c7;
}

.gol_form_field:-moz-placeholder,
.gol_form_field:-ms-input-placeholder {
    color: #c7c7c7;
}

.gol_contact_form .gol_btn {
    margin-top: 15px;
}

.gol_contact_info_wrapper {
    background: var(--main-green-color);
    color: var(--main-bg-color);
    padding: 50px 30px 41px 30px;
    margin-right: -1px;
}

.gol_contact_admin img {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 100%;
}

.gol_contact_admin {
    text-align: center;
}

.gol_contact_admin h4 {
    font-size: 20px;
    color: var(--main-bg-color);
    margin: 12px 0 11px;
    line-height: 30px;
}

.gol_contact_admin ul li {
    display: inline-block;
    margin: 0 3px;
}

.gol_contact_admin ul li a {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 100%;
    background: var(--main-green-medium);
    display: inline-block;
    line-height: 45px;
}

.gol_contact_admin ul li a:hover {
    background: var(--main-bg-color);
}

.gol_contact_admin ul li a svg {
    height: 20px;
    fill: var(--main-bg-color);
}

.gol_contact_admin ul li a:hover svg {
    fill: var(--main-green-color);
}

.gol_contact_admin>a {
    color: var(--main-bg-color);
    font-size: 22px;
    font-weight: 600;
    margin: 16px 0 0;
    display: inline-block;
}

.gol_contact_time {
    position: relative;
    padding: 27px 0 0;
    margin: 26px 0 0;
}

.gol_contact_time:before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    right: -30px;
    background: var(--main-bg-color);
    height: 1px;
    opacity: .2;
}

.gol_contact_time h4 {
    text-align: center;
    color: var(--main-bg-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 7px;
}

.gol_contact_time ul {
    display: inline-block;
    width: 100%;
}

.gol_contact_time ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gol_contact_wrapper {
    margin-top: -275px;
}

/********************************************************
    15. Footer CSS Start
********************************************************/
.gol_footer_wrapper {
    background-color: #2c2b2b;
    padding: 80px 0 45px;
}
.gol_footer_heading {
    position: relative;
    color: var(--main-bg-color);
    font-size: 22px;
    font-weight: 600;
    margin: 12px 0 24px;
    padding: 0 0 11px 0;
}
.gol_footer_about p {
    color: var(--main-bg-color);
    font-weight: 300;
}  
.gol_footer_heading:before {
    position: absolute;
    left: 0;
    height: 2px;
    background: var(--main-gray-color);
    bottom: 0;
    content: "";
    width: 90px;
}

.gol_footer_heading:after {
    position: absolute;
    left: 0;
    height: 4px;
    background: var(--main-green-color);
    bottom: -1px;
    content: "";
    width: 45px;
    border: none;
    border-radius: 6px;
}

img.footer_logo {
    margin-bottom: 24px;
}

.gol_address_wrap {
    margin-top: 6px;
}

.gol_address_wrap h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-bg-color);
    margin-bottom: 10px;
    margin-top: 20px;
}

.gol_footer_twitter ul li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    color: var(--main-link-color);
}

.gol_footer_twitter li:last-child {
    margin-bottom: 0;
}

.gol_footer_twitter ul li>span {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 22px;
    color: var(--main-green-color);
}

.gol_footer_post li>a {
    width: calc(100% - 95px);
    display: inline-block;
}

.gol_twitter_date,
.gol_post_date {
    color: var(--main-green-color);
}

.gol_footer_post li {
    position: relative;
    color: var(--main-link-color);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gol_footer_post li:last-child {
    margin-bottom: 0;
}

.gol_footer_post li img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.gol_footer_menu ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 13px;

}

.gol_footer_menu ul li:last-child {
    margin-bottom: 0;
}

.gol_footer_menu ul li:before {
    content: "\f105";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 20px;
    color: var(--main-bg-color);
}

.gol_widgets a {
    color: var(--main-bg-color);
}
p.gol_post_title {
    line-height: 1.5;
}
.gol_widgets a:hover,
.gol_copyright_wrapper a {
    color: var(--main-green-color);
}

.gol_copyright_wrapper {
    background: var(--main-link-color);
    padding: 14px 0 11px;
    color: var(--main-bg-color);
}


/********************************************************
	16. Page Title Start
*******************************************************/

.page_title_wrapper {
    position: relative;
    /*background: url(https://placehold.co/1920x600);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 153px 0 71px 0;
    color: var(--main-bg-color);
}

.page_title_wrapper:before {
    content: "";
    background: var(--main-link-color);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0.9;
}

.page_title_text h1 {
    color: var(--main-bg-color);
    font-size: 38px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 6px;
}

.page_title_text ul {
    display: flex;
    justify-content: center;
}

.page_title_text ul>li {
    position: relative;
    padding-left: 20px;
}

.page_title_text ul>li:first-child {
    padding-left: 0;
}

.page_title_text ul>li:before {
    content: "//";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 4px;
}

.page_title_text ul>li:first-child:before {
    content: unset;
}

.page_title_text ul>li a {
    color: var(--main-bg-color);
}


/********************************************************
	17. Service Page CSS Start
********************************************************/

section.gol_whyUs_wrapper.whyChooseServiceWrapper {
    padding: 80px 0;
}

.gol_servicePage_wrapper{
    padding: 80px 0;
}
.gol_servicePage_wrapper .gol_service_container {
    margin-bottom: 30px;
}
.gol_partner_innerpages .partner_slider {
    padding: 30px 0 80px 0;
}

/********************************************************
	18. Projects Page CSS Start
********************************************************/

.work_porfolio_section {
    position: relative;    
}

.work_overlay {
    position: absolute;
    width: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.80);
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.work_overlay ul {
    text-align: center;
}

.work_overlay ul li {
    display: inline-block;
    margin: 0 6px;
}

.work_overlay ul li a {
    width: 30px;
    height: 30px;
    display: inline-block;
    color: var(--main-bg-color);
    line-height: 32px;
}

.work_overlay ul li a span {
    display: inline-block;
    font-size: 20px;
}

.work_overlay ul li a:hover {
    color: var(--main-green-color);
}

.work_porfolio_section:hover .work_overlay {
    opacity: 1;
}

.work_porfolio_section img {
    width: 100%;
}

.work_overlay ul li a,
.work_overlay ul li a:hover,
.work_porfolio_section,
.work_porfolio_section .work_overlay,
.work_porfolio_section:hover .work_overlay {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.gol_partner_projectpages .partner_slider {
    padding: 80px 0;
}

/********************************************************
	19. Contact Page CSS Start
********************************************************/

.gol_contact_section {
    padding: 80px 0 0px;
}

.gol_widgets_contact {
    width: 100%;
    background: var(--main-bg-color);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 20px;
    padding: 30px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.gol_widgets_contact:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.gol_widgets_contact span svg {
    height: 60px;
    width: 60px;
    fill: var(--main-green-color);
}

.gol_widgets_contact span {
    display: inline-block;
    width: 100%;
    margin: 0 0 19px;
}

.gol_widgets_contact h4 {
    color: var(--main-link-color);
    font-size: 24px;
    margin: 0 0 17px;
}

.gol_contact_info_text a {
    display: inline-block;
    width: 100%;
    color: var(--main-link-color);
}

.gol_contact_info_text a:hover {
    color: var(--main-green-color);
}

.gol_widgets_contact,
.gol_widgets_contact:hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.gol_map_section iframe {
    display: flex;
    width: 100%;
    height: 600px;
}

.gol_map_inner {
    width: 100%;
    position: relative;
}

.gol_form_field textarea.gol_field_inner {
    padding: 12px 30px;
    height: 130px;
}

.gol_contact_from {
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    left: 0;
    width: 40%;
    margin: auto;
    bottom: 0;
    background: var(--main-bg-color);
    height: 410px;
    padding: 50px 50px 50px;
    border: none;
    border-radius: 20px;
}


/********************************************************
	20. Blog Page Start
*******************************************************/

.blogPage_wrapper {
    padding: 80px 0 0;
}

.sideBarWidgets {
    margin-bottom: 42px;
}

.sideBarWidgets:last-child {
    margin-bottom: 0px;
}

.blogSidebar,
.sideBarWidgets {
    width: 100%;
}

.blogSearchWrapper {
    position: relative;
}

.blogSearchWrapper input {
    width: 100%;
    border: 1px solid #e6e6e6;
    height: 50px;
    border-radius: 6px;
    padding: 0 50px 0 30px;
    position: relative;
    line-height: 50px;
    margin-bottom: 4px;
}

.blogSearchWrapper>a {
    position: absolute;
    right: 18px;
    top: 0;
    color: var(--main-green-color);
    bottom: 0;
    line-height: 50px;
}

.sideBarWidgets .blogPageTitle {
    padding-bottom: 10px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 22px;
    text-transform: capitalize;
}

.blogPageThumb img {
    border: none;
    border-radius: 3px;
}

.blogPageTitleWrapper {
    width: calc(100% - 80px);
}

.blogPageSubTitle {
    font-weight: 700;
    text-transform: capitalize;
}

.blogDate {
    color: var(--main-green-color);
    font-weight: 700;
}

.blogMainImg,
.blogPageThumb {
    position: relative;
    overflow: hidden;
}

.blogMainImg img {
    border: none;
    width: 100%;
}

.blogMainImg:after,
.blogMainImg:before,
.blogPageThumb:after,
.blogPageThumb:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 1;
    background: var(--main-bg-color);
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}

.blogMainImg:before,
.blogMainImg:hover:before,
.blogPageThumb:before,
.blogPageThumb:hover:before {
    right: 0;
    top: 0;
}

.blogMainImg:hover:after,
.blogMainImg:hover:before,
.blogPageThumb:hover:after,
.blogPageThumb:hover:before {
    width: 100%;
    height: 100%;
    opacity: 0;
}

.blogMainImg:after,
.blogMainImg:hover:after,
.blogPageThumb:after,
.blogPageThumb:hover:after {
    left: 0;
    bottom: 0;
}

.blogMainImg:after,
.blogPageThumb:after {
    opacity: .3;
}

.blogPageInfo ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blogPageInfo ul li {
    margin-right: 60px;
}

.blogPageInfo ul li:last-child {
    margin-right: 0px;
}

.blogPageInfo {
    padding: 30px 0 21px;
}

.blogPageInfo ul li img.blogUser,
.blogPageInfo ul li i {
    margin-right: 10px;
}

.blogPageInfo ul li .blogUser_name,
.blogPageInfo ul li i {
    color: var(--main-green-color);
}

img.blogUser {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.blogPageInfo ul li a {
    color: var(--main-txt-color);
}

.blogPageInfo ul li a:hover {
    color: var(--main-green-color);
}

.blogHeading {
    font-size: 38px;
    font-weight: 700;
    line-height: 46px;
    display: inline-block;
    margin-bottom: 12px;
}

.blogBtn {
    margin-top: 21px;
}

.blogSection {
    margin-bottom: 50px;
}

.blogPaginationWrapper ul li {
    display: inline-block;
    font-size: 18px;
}

.blogPaginationWrapper ul li a,
.blogPaginationWrapper ul li.dot:hover a {
    color: var(--main-link-color);
    font-weight: 700;
    width: 40px;
    height: 40px;
    line-height: 42px;
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    background: var(--main-bg-color);
}

.blogPaginationWrapper ul li.dot:hover a {
    cursor: none;
}

.blogPaginationWrapper ul li.blogPagePrev a,
.blogPaginationWrapper ul li.blogPageNext a {
    width: 40px;
    height: 40px;
}

.blogPaginationWrapper ul li.blogPagePrev:hover a,
.blogPaginationWrapper ul li.blogPageNext:hover a {
    background: var(--main-bg-color);
    color: var(--main-green-color);
}

.blogPaginationWrapper ul li.active a,
.blogPaginationWrapper ul li:hover a {
    color: var(--main-bg-color);
    background: var(--main-green-color);
}


/********************************************************
	21. Blog Single Page Start
*******************************************************/

.blogPage_wrapper.blogPageSingleWrapper {
    padding: 80px 0 80px 0;
}

.blogPageBlockquote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blogPageBlockquote_img {
    width: 160px;
    margin-right: 10px;
    position: relative;
}

.blogBlockquoteQuate {
    width: calc(100% - 170px);
    color: var(--main-link-color);
    position: relative;
    text-align: center;
}

.blogBlockquoteQuate p,
.blogQuateUser {
    text-align: left;
}

.blogPageBlockquote_img img.blogQuateUser {
    border: 3px solid var(--main-green-color);
    border-radius: 50%;
    width: 130px;
    height: 130px;
}

.blogPageBlockquote_img:before {
    content: "\f10e";
    right: 12px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--main-green-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 32px;
    background: var(--main-bg-color);
    border: 5px solid var(--main-green-color);
    padding-left: 8px;
    border-radius: 100%;
}

.blogQuateUser {
    color: var(--main-link-color);
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    display: inline-block;
}

.blogQuateUser>span {
    color: var(--main-txt-color);
    font-size: 16px;
    font-weight: 400;
}

.blogBlockquoteQuate:before {
    content: "\f10e";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--main-green-color);
    position: absolute;
    left: 0;
    right: 0;
    font-size: 2%;
    margin: auto;
}

.blogBlockquoteQuate:before {
    content: "\f10e";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--main-green-color);
    position: absolute;
    left: 0;
    right: 0;
    font-size: 84px;
    margin: auto;
    top: 50%;
    opacity: .1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.blogImgTextContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blogImgTextContainer img {
    width: 370px;
    display: inline-block;
    margin: 6px 15px 6px 0;
}

.blogImgTextContainer p {
    display: inline-block;
    width: calc(100% - 385px);
}

.blogAuthoreMessageBox {
    background: var(--main-green-color);
    border: none;
    border-radius: 0;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 74px 0 73px;
    color: var(--main-bg-color);
}

.blogAuthoreContent h5 {
    color: var(--main-bg-color);
    font-weight: 700;
    font-size: 20px;
}

.blogAuthoreContent h5 span {
    font-weight: 400;
    font-size: 16px;
}

.blogAuthoreContent {
    width: calc(100% - 140px);
}

.blogAuthoreImg {
    width: 110px;
    height: 110px;
    overflow: hidden;
    margin-right: 30px;
}

.blogAuthoreImg img {
    width: 110px;
    height: 110px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}

.blogCommentHolder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blogCmntDetail {
    width: calc(100% - 130px);
}

.blogCmntUser {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 30px;
}

.blogCmntUser img {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}

.blogCommnets>ul>li {
    margin-bottom: 26px;
    display: inline-block;
}

.blogCommnets ul li ul {
    padding-left: 80px;
}

.blogCommnets>ul>li>ul>li {
    margin-top: 26px;
}

.blogPageCommentForm {
    margin-top: 43px;
    padding-bottom: 50px;
}

.blogInputFieldInner {
    width: 100%;
    border: 1px solid var(--main-border-color);
    padding: 0 20px;
    height: 50px;
    border-radius: 0;
    display: flex;
}

textarea.blogInputFieldInner {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}

.blogInputField {
    margin-bottom: 30px;
}

.blogPageCommentForm .blogSectionHeading {
    margin-bottom: 40px;
}

.blogPageCommentForm .theme_btn {
    margin: 0;
}

.blogCmntReply {
    color: var(--main-green-color);
    margin-left: 15px;
}

.blogCmntReply svg {
    width: 16px;
    fill: var(--main-green-color);
}

.blogDivider {
    margin: 22px 0;
    display: block;
}

a.pnt_btn.blogBtn {
    background: var(--main-green-color);
    color: var(--main-bg-color);
}

.blogPaginationWrapper {
    text-align: center;
    padding-bottom: 50px;
}

.blogSectionHeading {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 26px;
}


/********************************************************
	22. Responsive CSS Start
********************************************************/

@media (min-width: 1199.98px) {
    .gol_banner_text {
        width: 75%;
        margin: auto;
    }
    .gol_service_heading {
        padding-left: 35%;
        padding-right: 15%;
    }   
    .gol_partner_wrapper .container-fluid {
        max-width: 1730px;
    }
    .gol_address_wrap p {
        width: 60%;
    }
}

@media (min-width: 991.98px) {
    .gol_services_section .col-lg-5 {
        -ms-flex: 0 0 45.33333%;
        flex: 0 0 45.33333%;
        max-width: 45.33333%;
    }
    .gol_services_section .col-lg-7 {
        -ms-flex: 0 0 54.333333%;
        flex: 0 0 54.333333%;
        max-width: 54.33333%;
    }    
    ul.sub_menu {
        top: 40px;
    }
    .gol_counter_icon:before {
        content: unset;
    }
    header.fixed_header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 99;
        background: var(--main-bg-color);
        box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.085);
        padding: 0;
    }
    .main_menu_wrapper>ul>li.active a,
    .main_menu_wrapper>ul>li:hover a,
    .main_menu_wrapper>ul>li:hover ul.sub_menu li:hover a {
        color: var(--main-green-color);
    }
    .main_menu_wrapper>ul>li:hover ul.sub_menu li a {
        color: var(--main-link-color);
    }
}

@media (max-width: 1799.98px) {
    .gol_footer_wrapper {
        background-image: none;
    }
}

@media (max-width: 1600px) {
    .gol_whyUs_container {
        padding: 60px 40px 68px;
    }
}

@media (max-width: 1500px) {
    .gol_whyUs_container {
        padding: 60px 20px 68px;
    }
}

@media (max-width: 1399px) {
    .gol_whyUs_container {
        padding: 20px 15px 28px;
    }
    .gol_subHeading {
        font-size: 20px;
    }
    .gol_team_button .swiper-button-next1 {
        right: 0;
    }
    .gol_team_button .swiper-button-prev1 {
        left: 0;
    }
    .gol_footer_wrapper {
        background-position: top right;
    }
}

@media (max-width: 1199.98px) {    
    .gol_banner_text h2 {
        font-size: 50px;
        max-width: 750px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .gol_banner_button>div {
        width: 70px;
        height: 70px;
    }
    .gol_banner_button>div>svg {
        width: 30px;
    }
    .gol_whys_box {
        padding: 30px 15px 20px 30px;
    }
    .gol_whys_content h4 {
        font-size: 18px;     
    }
    .gol_whys_content p {     
        font-size: 15px;
        line-height: normal;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .main_menu_wrapper ul>li>a {
        padding: 12px 8px;
    }
    .gol_contact_time ul li {
        margin-bottom: 10px;
    }
    .gol_contact_time ul li:last-child {
        margin-bottom: 0;
    }
    .gol_contact_time ul li span {
        width: 100%;
        text-align: center;
    }
    .gol_contact_admin>a {
        font-size: 18px;
    }
    .gol_whyUs_container {
        padding: 20px 0 28px 15px;
    }
    .gol_footer_wrapper {
        padding: 80px 0 41px;
    }
}

@media (max-width: 991.98px) {
    .gol_search_wrap ul {
        align-items: center;
    }
    .main_menu_wrapper li.has_submenu:before,
    .main_menu_wrapper li.has_submenu:after {
        background: var(--main-green-color);
    }
    .gol_whyUs_container .tabs_nav li.active:before {
        content: unset;
    }    
    .gol_blog_info li {
        margin-left: 12px;
    }
    .gol_blog_title,
    .gol_team_identity a,
    .gol_whyUs_container .tabs_nav li h4 {
        font-size: 22px;
    }
    .gol_team_social {
        margin-top: 12px;
    }
    .gol_whyUs_container {
        padding: 72px 0 80px;
    }    
    header {
        position: relative;
    }
    .gol_banner_section {
        padding: 220px 0 120px;
    }
    .gol_logo {
        text-align: left;
    }
    .gol_counter_wrapper .counter_holder:before {
        content: unset;
    }                   
    .gol_contact_time {
        padding: 27px 0 0;
        margin: 29px 0 0;
    }    
    .single_tab img {
        height: auto;
        width: 100%;
    }    
    header.fixed_header {
        position: unset;
        top: 0;
        right: 0;
        left: 0;
        z-index: 99;
        background: var(--main-bg-color);
        box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.085);
        padding: 0;
    }
    .page_title_wrapper {
        padding: 100px 0 91px 0;
    }
    .gol_header_wrapper {
        position: absolute;
        left: 0;
        right: 0;
    }
    .gol_banner_text h2 {
        font-size: 40px;
        max-width: 600px;     
    }
    .gol_banner_button>div {
        width: 60px;
        height: 60px;
    }
    .gol_banner_button>div>svg {
        width: 25px;
    }
    .searchBtn {
        margin-right: 0;
    }
    .gol_service_container {
        padding: 25px;
    }
    .gol_contant_container .row .col-lg-6.col-md-12:first-child{
        display: none;
    }
}

@media (max-width: 767.98px) {
    .gol_header_wrapper {
        padding: 11px 0 12px 0;
    }
    .gol_header_info {
        position: relative;
        width: 100%;
        margin: 12px 30px 0px 30px;
    }
    .gol_header_info:before {
        content: unset;
    }
    .gol_banner_text h2 {
        font-size: 40px;
    }
    .gol_banner_text .gol_bg_title {
        font-size: 20px;        
    }
    .gol_contact_info {
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        top: -26px;
    }
    .gol_contact_info span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        top: 5px;
    }
    .gol_contact_info svg {
        width: 20px;
    }
    .video_icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    .gol_about_detail h2,
    .gol_heading h4,
    .gol_contact_form h4 {
        font-size: 26px;
    }
    .gol_services_section .gol_services {
        padding: 0 15px;
    }
    .gol_about_detail {
        margin-top: -16px;
    }
    .gol_about_detail {
        margin-top: -16px;
    }                
    .page_title_wrapper {
        padding: 240px 0 94px 0;
    }
    .blogPaginationWrapper ul li a,
    .blogPaginationWrapper ul li.dot:hover a {
        width: 30px;
        height: 30px;
        line-height: 32px;
    }
    .blogPage_wrapper {
        margin-bottom: -10px;
    }
    .blogPageInfo ul li {
        margin: 0 0 10px;
        width: 100%;
    }
    .blogImgTextContainer img {
        width: 100%;
        margin: 15px 0;
    }
    .blogImgTextContainer p {
        width: 100%;
    }
    .menu_btn {        
        margin-right: 20px;
    } 
    .gol_about_detail h2 {        
        margin: 10px 0 15px 0;
    }
    .gol_bg_title {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .gol_banner_text .gol_btn {
        margin: 15px 8px 0;
    }
    .gol_team_social li a {
        padding: 6px 0;
        display: inline-block;
    }
    .menu_btn {
        padding: 15px 0px 0;
    }  
    .gol_banner_section {
        padding: 150px 0 70px;
    }
    .gol_banner_button {
        display: none;
    }
    .gol_banner_text {
        padding: 0;
    }
    .gol_counter_icon:before {
        left: 0;
        right: 0;
    }
    .blogBlockquoteQuate,
    .blogAuthoreContent,
    .blogCmntDetail {
        width: 100%;
        margin: 15px 0 0;
    }
    .searchBtn {
        margin-right: 0px;
        padding: 0;
    }
    .gol_header_wrapper {
        left: 15px;
        right: 15px;
    }
    .gol_banner_text h2 {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    .counter_item h2 {
        font-size: 40px;     
        font-weight: 600;
    }
    .counter_item p {
        font-size: 18px;     
        margin-top: 0px;
    }
}
@media(max-width:480px){
    .gol_about_section, .gol_counter_wrapper, .gol_team_wrapper, .gol_testimonial_wrapper, .gol_blog_wrapper {     
        padding: 50px 0;
    }
    section.gol_whyUs_wrapper {
        padding: 0 0 50px 0;
    }
    .gol_heading.center {
        margin-bottom: 30px;
    }
    .gol_services_section {
        padding: 40px 0;
    }
    .gol_map_wrapper {
        padding: 50px 0 50px 0;
    }
    .gol_footer_wrapper{
        padding: 50px 0 0px 0;
    }
}
@media(max-width:425px){
    .gol_banner_text .gol_bg_title {
        font-size: 18px;
    }
    .gol_banner_text h2 {
        font-size: 22px;     
    }
    .gol_banner_text .gol_btn {
        width: 140px;
        height: 40px;
        line-height: 40px;
    }
    .searchBtn {
        padding: 0;
    }
    .main_menu_parent {
        max-width: 90px;
        width: 100%;
        margin-left: auto;
    }
    .counter_item h2 {
        font-size: 30px;     
    }
    .counter_item p {
        font-size: 16px;     
    }
    .gol_contact_form h4 {
        font-size: 25px;
    }
}