:root {
    margin-left: 0;
}
html {
    scrollbar-color: #005359 #ffff;
    scrollbar-width: thin;
    -webkit-scrollbar-color: #005359 #ffff;
    -webkit-scrollbar-width: thin;
    margin: 0;
    overflow-x: hidden;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6 {
    margin-bottom: 0;
    color: #000;
}
a {
    text-decoration: none;
}
input:focus,
textarea:focus,
.form-control:focus {
    box-shadow: none;
}
.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #555;
}
.golo-theme-heading {
    margin-bottom: 80px;
}
.golo-theme-heading .title {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #005359;
    position: relative;
    margin-bottom: 5px;
}
.golo-theme-heading .main-heading {
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: #000;
    max-width: 610px;
}
.golo-theme-heading .txt {
    max-width: 610px;
}
.golo-theme-btn {
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #ffff;
    background-color: #005359;
    padding: 12px 38px;
    border-radius: 50px;
    z-index: 1;
}
.golo-theme-btn:hover {
    color: #ffff;
    text-decoration: none;
}
.golo-theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.golo-theme-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.golo-theme-btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    background-color: #005359;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}
.golo-theme-btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* background behind gif */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* stay on top */
}
#page-loader img {
  width: 100%; /* adjust size of gif */
  height: 100%;
  object-fit: cover;
}
/* golo-navbar-start */
.golo-navbar.light-theme {
    background-color: transparent;
    padding: 26px 0 0px 0;
    position: absolute;
    width: 100%;
    z-index: 4;
}
.golo-navbar.light-theme .main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.golo-navbar .main-content .golo-menu-toggle {
  background-color: transparent;
  border: 0;
}
.golo-navbar.light-theme .main-content .menu-box svg {
    color: #005359;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.golo-navbar.light-theme .golo-sidenav {
    height: 100%;
    width: 450px;
    position: fixed;
    z-index: 4;
    top: 0;
    right: -450px;
    background-color: #ffff;
    overflow-x: hidden;
    transition: 0.5s ease-in-out;
    padding-top: 60px;
}
.golo-navbar.light-theme .golo-sidenav.open {
    right: 0;
    border-left: 1px solid #005359;
}
.golo-navbar.light-theme .golo-sidenav a {
    text-decoration: none;
    font-weight: 400;
    font-size: 26px;
    color: #555;
    display: block;
    line-height: 52px;
    transition: 0.3s;
    margin-bottom: 20px;
} 
.golo-navbar.light-theme .golo-sidenav a:last-child {
    margin-bottom: 0px;
} 
.golo-navbar.light-theme .golo-sidenav a:hover {
    color: #005359;
    text-decoration: underline;
} 
.golo-navbar.light-theme .golo-sidenav .closebtn {
    position: absolute;
    top: 15px;
    right: 30px;
    background-color: transparent;
    border: 0;
} 
.golo-navbar.light-theme .golo-sidenav .closebtn svg {
    width: 24px;
    height: 24px;
    color: #005359;
} 
@media screen and (max-height: 450px) {
    .golo-navbar.light-theme .golo-sidenav {padding-top: 15px;}
    .golo-navbar.light-theme .golo-sidenav a {font-size: 18px;}
}
.golo-navbar.light-theme .main-content .menu-box .menu-links {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* golo-navbar-end */

.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: all 2s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* golo-hero-section-start */
.golo-hero-section.light-theme {
    background-color: rgba(0, 83, 89, 0.05);
    padding-bottom: 40px;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.golo-hero-section::before {
    content: url(../imgs/bg-shape-1.png);
    position: absolute;
    top: 28%;
    left: 7%;
    animation: golo-up-down 8s ease-in-out infinite;
}
.golo-hero-section::after {
    content: url(../imgs/bg-shape-2.png);
    position: absolute;
    top: 28%;
    right: 7%;
    animation: golo-up-down 8s ease-in-out infinite;
}
@keyframes golo-up-down {
    0% {
        top: 16%;
    }
    50% {
        top: 28%;
    }
    100% {
        top: 16%;
    }
}
.golo-hero-section .main-prf-img .main-img {
    width: 100%;
    height: 90vh;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
}
.golo-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 1;
}
.loader-inner{
    --loader-background: linear-gradient(
        0deg,
        rgba(0,83,89,.2) 0%,   /* #005359 with opacity */
        rgba(0,83,89,.4) 100%  /* darker opacity */
    );
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height:450px;
    aspect-ratio:1;
    display:flex;
    align-items:center;
    justify-content:center;
}

.loader-inner .box{
    position:absolute;
    background:var(--loader-background);
    border-radius:50%;
    border-top:1px solid #005359;
    box-shadow:rgba(0,83,89,.3) 0 10px 10px 0;
    backdrop-filter:blur(5px);
    animation:ripple 2s infinite ease-in-out;
}

/* Each child with slightly different opacity of #005359 */
.loader-inner .box:nth-child(1){
    width:25%;
    aspect-ratio:1/1;
    z-index:99;
}
.loader-inner .box:nth-child(2){
    inset:30%;
    z-index:98;
    border-color:rgba(0,83,89,.8);
    animation-delay:.2s;
}
.loader-inner .box:nth-child(3){
    inset:20%;
    z-index:97;
    border-color:rgba(0,83,89,.6);
    animation-delay:.4s;
}
.loader-inner .box:nth-child(4){
    inset:10%;
    z-index:96;
    border-color:rgba(0,83,89,.4);
    animation-delay:.6s;
}
.loader-inner .box:nth-child(5){
    inset:0;
    z-index:95;
    border-color:rgba(0,83,89,.2);
    animation-delay:.8s;
}

@keyframes ripple{
    0%{
        transform:scale(1);
        box-shadow:rgba(0,83,89,.3) 0 10px 10px 0;
    }
    50%{
        transform:scale(1.3);
        box-shadow:rgba(0,83,89,.3) 0 30px 20px 0;
    }
    100%{
        transform:scale(1);
        box-shadow:rgba(0,83,89,.3) 0 10px 10px 0;
    }
}

@keyframes color-change{
    0%{ opacity:.7 }
    50%{ opacity:1 }
    100%{ opacity:.7 }
}

.golo-hero-section .main-prf-img .loader-inner{
    height: 600px;
}
.golo-hero-section .about-author-box {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1030px;
    z-index: 2;
}
.golo-hero-section .about-author-box .name-detail {
    position: relative;
    padding: 30px 125px;
    background-color: #005359;
    border-bottom: 3px solid #B6CDCF;
    border-radius: 80px;
    text-align: center;
}
.golo-hero-section .about-author-box .name-detail h1 {
    color: #ffff;
    font-weight: 700;
    font-size: 65px;
    line-height: 57px;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    justify-content: center;
}
.golo-hero-section .about-author-box .name-detail h1 span.sub {
    font-size: 45px;
    margin-right: 20px;
    -webkit-text-stroke: 2px #ffff;
    -webkit-text-fill-color: #005359;
    font-family: "Poppins", sans-serif;
}
#dynamic-text {
  min-width: 480px;
  text-align: left;
}
.golo-hero-section .about-author-box .name-detail .download-btn-outer {
    position: absolute;
    top: -30px;
    right: 85px;
}
.golo-hero-section .about-author-box .name-detail .download-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffff;
    border: 2px solid #005359;
    display: flex;
    justify-content: center;
    align-items: center;
}
.golo-hero-section .about-author-box .name-detail .download-btn .tooltiptext {
    opacity: 0;
    width: 77px;
    font-size: 10px;
    background-color: #005359;
    color: #ffff;
    text-align: center;
    border-radius: 2px;
    padding: 4px 0;
    position: absolute;
    z-index: 1;
    bottom: 134%;
    left: 50%;
    margin-left: -38px;
    transition: 0.3s ease-in-out;
}
.golo-hero-section .about-author-box .name-detail .download-btn .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #005359 transparent transparent transparent;
}
.golo-hero-section .about-author-box .name-detail .download-btn:hover .tooltiptext {
    opacity: 1;
}
.golo-hero-section .about-author-box .name-detail .download-btn svg {
    color: #005359;
    width: 24px;
    height: 24px;
}
/* golo-hero-section-end */

/* LightBox */
 .img-wrapper {
	 position: relative;
	 margin-top: 15px;
	 margin-bottom:15px;
}
 .img-wrapper img {
	 width: 100%;
     cursor: pointer;
}
.img-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(38, 40, 52, 0.9);
    text-align: center;
    display: none;
    z-index: 9999999999999;
    animation: pop-in;
    animation-duration: 0.5s;
    -webkit-animation: pop-in 0.5s;
    -moz-animation: pop-in 0.5s;
    -ms-animation: pop-in 0.5s;

}

.img-popup-wrapper {
    position: absolute;
    top: 50%;
    max-width: 80%;
    max-height: 80vh;
    display: inline-block;
    transform: translate(-50%, -50%);
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: -40px;
    padding: 0px 10px;
    color: #fff;
    font-size: 25px;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
}
.lightboxfadeout{
    animation: fadeout;
    animation-duration: 0.5s;
    -webkit-animation: fadeout 0.5s;
    -moz-animation: fadeout 0.5s;
    -ms-animation: fadeout 0.5s;
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes pop-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes pop-in {
    0% {
        opacity: 0;
        -moz-transform: scale(0.1);
    }
    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}


@keyframes fadeout {
    100% {
        opacity: 0;
        transform: scale(0.1);
    }
    0% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes fadeout {
    100% {
        opacity: 0;
        -webkit-transform: scale(0.1);
    }
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes fadeout {
    100% {
        opacity: 0;
        -moz-transform: scale(0.1);
    }
    0% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}
/* LightBox */

/* golo-about-content-start */
.golo-about-content.light-theme {
    padding: 180px 0 0px 0;
    background-color: rgba(0, 83, 89, 0.05);
}
.golo-about-content .golo-theme-heading {
    margin-bottom: 28px;
}
.golo-about-content .golo-theme-heading .main-heading {
    margin-bottom: 5px;
    max-width: 500px;
}
.golo-about-content .golo-theme-heading .txt {
    margin-bottom: 30px;
    max-width: 610px;
}
.golo-about-content .left-main-cont .dtl-list ul li {
    display: inline-block;
    width: 47%;
}
.golo-about-content .left-main-cont .dtl-list ul li:nth-child(2n+1) {
    margin-right: 20px;
}
.golo-about-content .dtl-list {
    margin-bottom: 36px;
}
.golo-about-content .left-main-cont .dtl-list .list-item {
    display: flex;
}
.golo-about-content .left-main-cont .dtl-list .list-item span,
.golo-about-content .left-main-cont .dtl-list .list-item small {
    font-weight: 500;
    font-size: 16px;
    line-height: 35px;
    color: #005359;
}
.golo-about-content .left-main-cont .dtl-list .list-item span {
    width: 120px;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-right: 10px;
}
.golo-about-content .left-main-cont .dtl-list .list-item small {
    color: #555;
    font-weight: 400;
}
.golo-about-content .left-main-cont .golo-theme-btn {
    margin-bottom: 85px;
}
.golo-about-content .left-main-cont .goto-btn {
    background-image: url(../imgs/goto-bg.png);
    width: 51px;
    height: 84px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.golo-about-content .left-main-cont .goto-btn svg {
    color: #000;
    width: 36px;
    height: 36px;
    margin-top: 18px;
}
.golo-about-content .right-img-box {
    height: 673px;
    text-align: center;
    position: relative;
}
.golo-about-content .right-img-box .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}
.golo-about-content .right-img-box .main-img {
    position: relative;
    z-index: 2;
}
.golo-about-content .right-img-box .about-exp-box {
    position: absolute;
    bottom: 35px;
    left: -210px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.golo-about-content .right-img-box .about-exp-box .left-cont h3 {
    font-weight: 600;
    font-size: 54px;
    line-height: 81px;
    background-color: #005359;
    color: #ffff;
    padding: 17px 20px 17px 36px;
    border-radius: 58px 0px 0px 58px;
}
.golo-about-content .right-img-box .about-exp-box .right-cont {
    padding: 22px 49px 21px 30px;
    background-color: #ffff;
    border-radius: 0px 58px 58px 0px;
    text-align: left;
}
.golo-about-content .right-img-box .about-exp-box .right-cont h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #000;
    width: 246px;
}
/* golo-about-content-end */
/* golo-experties-section-start */
.golo-experties-section.light-theme {
    padding: 100px 0;
    background-color: rgba(0, 83, 89, 0.05);
}
.golo-experties-section .expertise-box,
.golo-experties-section .skills-box {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    background-color: #ffff;
}
.golo-experties-section .expertise-box ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.golo-experties-section .expertise-box ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.golo-experties-section .expertise-box .exper-item small {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #005359;
    margin-bottom: 5px;
}
.golo-experties-section .expertise-box .exper-item h3,
.golo-experties-section .skills-box h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
}
.golo-experties-section .skills-box h3 {
    margin-top: 0;
}
.golo-experties-section .expertise-box .exper-item .txt {
    margin-bottom: 0;
}
.golo-experties-section .skill-progress-box .prg-bar-main h6 {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 15px;
}
.golo-experties-section .skill-progress-box ul li {
    margin-bottom: 31px;
}
.golo-experties-section .skill-progress-box ul li:last-child {
    margin-bottom: 0px;
}
.golo-experties-section .skill-progress-box .prg-bar-main .progress {
    height: 5px;
    background-color: #F2F6F7;
    border-radius: 0;
    overflow: visible;
}
.golo-experties-section .skill-progress-box .prg-bar-main .progress-bar {
    position: relative;
    width: 0%;
    height: 5px;
    background-color: #005359;
    overflow: visible;
    transition: width 2s ease;
}
.golo-experties-section .skill-progress-box .prg-bar-main .progress-bar span {
    position: absolute;
    top: -40px;
    right: -17px;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    padding: 2px 6px;
    border-radius: 3px;
    color: #ffff;
    background-color: #005359;
    z-index: 1;
}
.golo-experties-section .skill-progress-box .prg-bar-main .progress-bar span::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 10px;
    height: 10px;
    background-color: #005359;
    transform: rotate(45deg);
}
/* golo-experties-section-end */

/* golo-service-content-start */
.golo-service-content.light-theme {
    min-height: 100vh;
    padding: 180px 0 70px 0;
    background-color: rgba(0, 83, 89, 0.05);
}
.golo-service-content .golo-theme-heading .main-heading {
    margin-bottom: 5px;
}
.golo-service-content .golo-theme-heading .txt {
    max-width: 610px;
}
.golo-service-content .service-box {
    margin-bottom: 36px;
}
.golo-service-content .service-box svg {
    width: 60px;
    height: 60px;
    color: #005359;
    transition: 0.3s ease-in-out;
}
.golo-service-content .service-box:hover svg {
    transform: rotateY(180deg);
}
.golo-service-content .service-box .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin: 15px 0;
}
/* golo-service-content-end */
/* golo-portfolio-content-start */
.golo-portfolio-content.light-theme {
    padding: 180px 0 70px 0;
    background-color: rgba(0, 83, 89, 0.05);
}
.golo-portfolio-content .golo-theme-heading .main-heading {
    margin-bottom: 5px;
}
.golo-portfolio-content .golo-theme-heading .txt {
    max-width: 610px;
}
.golo-portfolio-content .product-catg-box {
    position: relative;
    height: 270px;
    margin-bottom: 30px;
}
.golo-portfolio-content .product-catg-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.golo-portfolio-content .product-catg-box .prdt-dtl-box {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 40px);
    padding: 14px 30px;
    background-color: #ffff;
    border-left: 10px solid #005359;
    opacity: 0;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
}
.golo-portfolio-content .product-catg-box:hover .prdt-dtl-box {
    opacity: 1;
    bottom: 20px;
}
.golo-portfolio-content .product-catg-box .prdt-dtl-box h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #000;
}
.golo-portfolio-content .product-catg-box .prdt-dtl-box span {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #555;
}
.golo-portfolio-content .product-catg-box .prdt-dtl-box .goto-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #005359;
    transform: translate(0px, -50%);
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.golo-portfolio-content .product-catg-box .prdt-dtl-box .goto-arrow svg {
    width: 28px;
    height: 28px;
    color: #ffff;
}
/* golo-portfolio-content-end */
/* golo-blog-content-start */
.golo-blog-content.light-theme {
    padding: 180px 0 70px 0;
    background-color: rgba(0, 83, 89, 0.05);
}
.golo-blog-content .golo-theme-heading .main-heading {
    margin-bottom: 5px;
}
.golo-blog-content .blog-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 30px;
}
.golo-blog-content .blog-card .img-box {
    height: 260px;
}
.golo-blog-content .blog-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
}
.golo-blog-content .blog-card .meta-box {
    padding: 30px;
}
.golo-blog-content .blog-card .meta-box .name-box small,
.golo-blog-content .blog-card .meta-box .name-box span {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 13px;
    color: #005359;
}
.golo-blog-content .blog-card .meta-box .name-box span {
    font-weight: 400;
    color: #555;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #555;
}
.golo-blog-content .blog-card .meta-box .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
    cursor: pointer;
}
.golo-blog-content .blog-card .meta-box p.txt {
    margin-bottom: 0;
}
.golo-blog-content .blog-card .meta-box .golo-theme-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #ffff;
    padding: 13px 45px;
    background-color: #005359;
    border-radius: 50px;
    display: inline-block;
    margin-top: 15px;
    transition: 0.5s ease-in-out;
}
/* .golo-blog-content .blog-card .meta-box .read-more-btn:hover {
    background-color: #005359;
    color: #ffff;
    text-decoration: none;
} */
/* golo-blog-content-end */
/* golo-contact-content-start */
.golo-contact-content.light-theme {
    padding: 180px 0 70px 0;
    background-color: rgba(0, 83, 89, 0.05);
}
.golo-contact-content .contact-me-box {
    display: flex;
    align-items: center;
    padding: 27px 24px;
    background-color: #ffff;
    border-radius: 10px;
    margin-bottom: 30px;
}
.golo-contact-content .contact-me-box .left-cont svg {
    width: 36px;
    height: 36px;
    color: #005359;
    margin-right: 10px;
}
.golo-contact-content .contact-me-box .right-cont h6 {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 5px;
}
.golo-contact-content .contact-me-box .right-cont span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #555;
    margin-top: 1px;
}
.golo-contact-content .golo-theme-heading.add-space {
    margin-top: 50px;
}
.golo-contact-content .golo-custom-form input,
.golo-contact-content .golo-custom-form textarea {
    background-color: #ffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 20px 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #555;
    margin-bottom: 30px;
    box-shadow: none;
}
.golo-contact-content .golo-custom-form textarea {
    width: 100%;
    resize: unset;
}
.golo-contact-content .golo-custom-form textarea:focus-visible {
    outline: none;
}
.golo-contact-content .golo-custom-form input::placeholder,
.golo-contact-content .golo-custom-form textarea::placeholder {
    color: #555;
    opacity: 1;
}
.golo-contact-content .golo-custom-form .botm-btn-box {
    text-align: right;
}
.golo-contact-content .golo-custom-form .botm-btn-box .send-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #ffff;
    background-color: #005359;
    border: 0;
    border-radius: 50px;
    padding: 12px 30px;
}
/* golo-contact-content-end */
/* golo-copyright-section-start */
.golo-copyright-section {
    padding: 15px 0;
    background-color: #005359;
}
.golo-copyright-section p.txt {
    color: #ffff;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 0;
}
.golo-copyright-section p.txt a {
    font-weight: 600;
    color: #ffff;
}
/* golo-copyright-section-end */

.golo-modal .modal-dialog {
    max-width: 770px;
}
.golo-modal .modal-dialog .modal-content {
    border-radius: 10px;
}
.golo-modal .modal-header {
    position: relative;
}
.golo-modal .modal-header .btn-close {
    position: absolute;
    top: -24px;
    right: -20px;
    color: #ffff;
    background: none;
    opacity: 1;
}
.golo-modal .modal-header .btn-close:focus {
    box-shadow: none;
}
.golo-modal .modal-header {
    padding: 0;
}
.golo-modal .modal-header .img-box img {
    width: 100%;
}
.golo-modal .modal-header .btn-close svg {
    width: 26px;
    height: 26px;
}
.golo-modal .modal-body {
    padding: 20px;
}
.golo-modal .modal-body .author-prf-box {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}
.golo-modal .modal-body .author-prf-box img {
    margin-right: 10px;
}
.golo-modal .modal-body .author-prf-box span {
    font-weight: 400;
    font-size: 14px;
    line-height: 12px;
    color: #555;
}
.golo-modal .modal-body .author-prf-box .name {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #555;
}
.golo-modal .modal-body .content-box .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #000;
    margin-bottom: 10px;
}
.golo-modal .modal-body .content-box p.txt {
    color: #555;
    margin-bottom: 20px;
}
.golo-modal .modal-body .content-box p.txt:last-child {
    margin-bottom: 0;
}
.golo-modal .modal-body .content-box .notice-box {
    padding: 20px 30px;
    background-color: #F2F6F7;
    border-left: 5px solid #005359;
    margin-bottom: 20px;
    font-style: italic;
}
.golo-modal .modal-body .content-box .notice-box .txt {
    color: #000;
    font-weight: 500;
}




