/* common css ******************************************************************************/




@font-face {
    font-family: "GalanoGrotesqueBold";
    src: url("../fonts/GalanoGrotesque/GalanoGrotesqueBold.otf");
}
@font-face {
    font-family: "GalanoGrotesqueMedium";
    src: url("../fonts/GalanoGrotesque/GalanoGrotesqueMedium.otf");
}
@font-face {
    font-family: "GalanoGrotesqueRegular";
    src: url("../fonts/GalanoGrotesque/GalanoGrotesqueRegular.otf");
}
@font-face {
    font-family: "GalanoGrotesqueSemiBold";
    src: url("../fonts/GalanoGrotesque/GalanoGrotesqueSemiBold.otf");
}


:root {
    --white: #fff;
    --black: #000;
    --theme-color: #005756;
}

.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

.common::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}

body {
    background-repeat: no-repeat;
    background-size: cover;
}

body.show {
    position: fixed;
    top: 0;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
    font-family: "GalanoGrotesqueMedium";
    font-weight: normal;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 44px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 23px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-family: "GalanoGrotesqueRegular";
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--white);
}

p:last-child {
    margin-bottom: 0;
    /* text-align: left; */
}

.small {
    font-size: 16px;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}

span {
    display: inline-block;
    font-family: "GalanoGrotesqueMedium";
    color: #005756;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.box-border{
    border: 1px solid #fdf7f729;
    border-radius: 10px;
}
.section-heading h2{
    font-family: "Saira-Medium";
  color: var(--theme-color);
  font-size: 35px;
  display: inline-block;
  text-transform: uppercase;
}
.homeBanner-box .sub-text {
    text-align: start;
    margin-bottom: 25px;
}
.box-border {
    padding: 20px 35px;
}
.box-border p{
    font-family: "Saira-Regular";
  color: var(--white);
  font-size: 19px;
  text-align: center;
  letter-spacing: 1.3px;
 
}




.btn-common {
    font-size: 20px;
    padding: 12px 40px;
    background: transparent;
    background-color: white;
    color: black;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-common img {
    max-width: 30px;
    margin-right: 10px;
}

.glow-btn {
    font-size: 20px;
}

.glow-btn:hover {
    color: black;
}

section {
    overflow: hidden;
}



.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

img,
video {
    max-width: 100%;
}

.button-box {
    padding-top: 20px;
}

.button-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}



.form-control-common {
    background: var(--white);
    border: 1px solid var(--black);
    font-size: 20px;
    padding: 15px 50px 15px 20px;
    width: 100%;
    appearance: textfield;
    color: var(--black);
    border-radius: 0;
    box-shadow: none;
    resize: none;
    outline: none;
}

.input-group {
    padding-bottom: 30px;
}

.button-box.margin-top {
    margin-top: 20px;
}

.button-box.margin-top {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    column-gap: 30px;
}
.button-box.margin-top .glow-btn {
    width: 20%;
}


/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
    box-shadow: 0 0 10px 2px #000;
}

#header {
    background-color: #005756;
    transition: 0.5s all;
    position: relative;
    /* background-image: linear-gradient(266deg, rgb(66 0 124 / 26%) 39%, #d9cbcb87 63%); */
}
#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo-box {
    max-width: 100%;
    width: 70%;
    padding: 15px 0px;
}
#header .logo-box img {
    max-width: 310px;
    width: 85%;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 30px;
}

#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}

#header .main-nav .cancel-menu span {
    position: absolute;
    height: 4px;
}

#header .main-nav .cancel-menu span:first-child {
    transform: rotate(45deg);
}

#header .main-nav .cancel-menu span:last-child {
    transform: rotate(-45deg);
}

#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}

#header .button-box {
    display: flex;
    margin-left: 20px;
    padding-top: 0;
    column-gap: 20px;
}
#header .tele-box {
    max-width: 100%;
}
#header .tele-box img {
    max-width: 100%;
}

#header .main-nav nav ul li {
    display: inline-block;
    position: relative;
    margin-right: 20px;
}

#header .main-nav nav ul li a {
    color: var(--white);
    padding: 5px;
    font-size: 18px;
}

#header .glow-btn {
    padding: 8px 40px;
    border-radius: 7px;
}

/* homeBanner  css start */

#homeBanner {
    background-color: #005756;
    padding-bottom: 45px;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 20px;
}

#homeBanner .homeBanner-box p{
    font-size: 20px;
    text-align: left;
}
#homeBanner .homeBanner-box .text-box {
    margin-bottom: 10px;
}
#homeBanner .homeBanner-box .img-box {
    display: flex;
    justify-content: end;
    max-width: 100%;
}
#homeBanner .homeBanner-box .img-box img {
    max-width: 70%;
}
 
#homeBanner .glow-btn {
        font-size: 20px;
        padding: 10px 10px;
        border-radius: 10px;
}





/* section css ******************************************************************************/

/* best css start */
#best{
    margin: 20px 0;
    background-color: #D4E7E6;
}
#best .best-part .best-box{
    display: flex;
    justify-content: space-evenly;
    padding: 25px 0;
}
#best .best-box .img-box {
    max-width: 100%;
    display: flex;
    height: 65px;
    justify-content: center;
    margin-bottom: 10px;
}

#best .best-box .img-box img{
    max-width: 100%;
}
#best .best-box .text-box p {
    color: var(--theme-color);
    text-align: center;
    font-family: 'GalanoGrotesqueMedium';
}


#best .best-box .line {
    border-right: 1px solid #005756;
}

.two-boxes-one {
    display: contents;
}

/* services css start */

#service .service-part {
    margin: 10px 0;
}

#service h2 {
    color: #005756;
    font-size: 35px;
    font-family: 'GalanoGrotesqueSemiBold';
}

#service h4{
    color: #005756;
    margin: 20px 0; 
}

#service .text-box{
    display: flex;
    margin-top: 10px;
    column-gap: 35px;
    justify-content: flex-start;

}

#service .text-box .text-1,.text-2,.text-3,.text-4,.text-5 {
    margin-bottom: 50px;
}
#service .text-box .text-4,.text-5 {
    margin-bottom: 27px;
}

#service .img-box {
    max-width: 100%;
    display: flex;
    justify-content: center;
}
#service .img-box img{
    max-width: 85%;
}
#service .text p {
    color: #000;
    font-size: 14px;
}



/* benifits css start */

#benifits .benifits-box .heading h2 {
    color: var(--theme-color);
    font-family: "GalanoGrotesqueSemiBold";
    text-align: center;
    font-size: 40px;
}
#benifits .benifits-box .title h3 {
    color: var(--white);
    font-family: "GalanoGrotesqueSemiBold";
    text-align: center;
    font-size: 30px;
}
#benifits .benifits-box .boxes .box-1,#benifits .benifits-box .boxes .box-2,#benifits .benifits-box .boxes .box-3 {
    background-color: var(--theme-color);
    margin-bottom: 30px;
    padding: 20px 10px;
}
#benifits .benifits-box .boxes{
    margin: 25px auto;
}
#benifits .benifits-box .text-box{
    padding: 20px 20px;
    border-radius: 10px;
}
#benifits .benifits-box .text-box p{
    color: var(--white);
    font-size: 15px;
}

/*  tips css start */

#tips .tips-box{
    margin-bottom: 30px;
}
#tips .tips-box .heading h2{
     color: var(--theme-color);
     text-align: center;
     font-family: "GalanoGrotesqueBold";
     font-size: 30px;
     margin-bottom: 30px;
}
#tips .tips-box .img-box{
    max-width: 100%;
}
#tips .tips-box .img-box img{
    max-width: 80%;
}

#tips .tips-box .text-box p {
    color: #000;
    text-align: justify;
    font-size: 20px;
}

/* FAQ css ******************************************************************************/
#FAQ .FAQ-part .FAQ-box .accordion-item{
    background-color: transparent !important;
    margin-bottom: 20px;
}


#FAQ .FAQ-part .FAQ-box .section-heading h2 {
    border: none;
    color: var(--theme-color);
    font-family: "GalanoGrotesqueBold";
    margin-top: 15px;
}

#FAQ .FAQ-part .FAQ-box .accordion-item{
    border-radius: 10px;

}
#FAQ .FAQ-part .FAQ-box .accordion-item .accordion-button {
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 20px;
    outline: none;
    box-shadow: none;
    border-radius: 10px;
}

#FAQ .FAQ-part .FAQ-box .accordion-body {
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 16px;
    font-family: 'GalanoGrotesqueRegular';
    border-radius: 0 0 10px 10px;
    padding: 0 67px 10px 17px;
}
#FAQ .FAQ-part .FAQ-box .accordion-button:not(.collapsed){
    box-shadow: none;
    border-radius: 10px 10px 0 0;
}
/* #FAQ .FAQ-part .FAQ-box .accordion-button:focus{
    box-shadow: none !important;
} */


/* #FAQ .FAQ-part .FAQ-box .accordion-flush .accordion-collapse{
    color: var(--white);

} */

#FAQ .FAQ-part .FAQ-box .accordion-button::after {
    content: "";
    background-image: url("../images/plus.png");
    background-repeat: no-repeat;
    background-size: cover;
}
#FAQ .FAQ-part .FAQ-box .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
	background-image: url("../images/minus.png");
}

/*  prediction css **************************************************/
#prediction .prediction-part {
    margin-bottom: 25px;
}
#prediction  .prediction-box .title {
    margin: 25px 0 30px;
    display: flex;
}   
#prediction  .prediction-box .box-1 {
    margin-bottom: 45px;
}
#prediction  .prediction-box h3 {
    color: var(--theme-color);
    text-align: center;
    margin: 0 auto;
    font-size: 27px;
    border-bottom: 2px solid;
    line-height: 0.9;
    font-family: 'GalanoGrotesqueBold';
}
#prediction  .prediction-box p {
    color: var(--black);
    font-family: 'GalanoGrotesqueRegular';
    margin-bottom: auto;
    font-size: 20px;
    text-align: center;
}



/* footer css ******************************************************************************/

#footer .footer-part {
    background-color: var(--theme-color);
    padding: 70px 20px 10px;
}
#footer .footer-part .footer-box .top-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 50px;
}
#footer .footer-part .footer-box .top-box .logo-box {
    max-width: 100%;
}
#footer .footer-part .footer-box .top-box .logo-box img {
    max-width: 80%;
    display: flex;
    margin: 0 auto;
}
#footer .footer-part .footer-box .top-box  .btn-box {
    max-width: 100%;
    display: flex;
    justify-content: center;
}
#footer .footer-part .footer-box .top-box  .btn-box img {
    max-width: 75%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
#footer .footer-part .footer-box .top-box  .links-btn {
    display: flex;
    justify-content: end;
    align-items: center;
    column-gap: 30px;
}
#footer .footer-part .footer-box .top-box  .links-btn .button-box {
   max-width: 100%;
   padding: 0;
}
#footer .footer-part .footer-box .top-box  .links-btn .button-box img {
    max-width: 70%;
    display: flex;
    margin: 0 auto;
}
#footer .footer-part .footer-box .end-box .text-box{
   text-align: center;
} 
#footer .footer-part .footer-box .end-box .text-box p {
    font-family: 'GalanoGrotesqueMedium';
    font-size: 15px;
}

