*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
font-family: 'Titillium Web';
src: url('../Fonts/TitilliumWeb-Regular.woff2') format('woff2'),
    url('../Fonts/TitilliumWeb-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Titillium Web';
src: url('../Fonts/TitilliumWeb-SemiBold.woff2') format('woff2'),
    url('../Fonts/TitilliumWeb-SemiBold.woff') format('woff');
font-weight: 600;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Titillium Web';
src: url('../Fonts/TitilliumWeb-Light.woff2') format('woff2'),
    url('../Fonts/TitilliumWeb-Light.woff') format('woff');
font-weight: 300;
font-style: normal;
font-display: swap;
}
  

body{
    font-family: 'Titillium Web';
}
body, html{
    height: 100%;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Optima';
    letter-spacing: 1px;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
p{
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
ul, ol{
    padding: 0;
    margin: 0;
}
.all_center{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_btns {
    text-align: right;
}
.header_btns a{
    background: #55bd89;
    color: #fff;
    border-radius: 40px;
    padding: 8px 25px;
    display: inline-block;
    text-decoration: none;
}


.logo{
    width: 200px;
    height: auto;
}
.title .tagline {
    font-size: 38px;
    color: #1c3a24;
    line-height: 46px;
    padding: 70px 0;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 300;
}

.Address {
    display: flex;
    justify-content: center;
}
.Address div {
    padding: 0 30px;
}
.Address h3 {
    color: #55bd89;
    font-weight: 200;
}
.Address p, .Address a{
    color: #1c3a24;
    font-weight: 300;
    font-size: 16px;
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.3s ease-in-out;
}
.Address p:hover, .Address a:hover{
    opacity: 0.7;
}
.borDer_right{
    border-right: 1px solid #8ad2ae;
}
.copyright {
    background: #fff;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    right: 0;
    border-top: 1px solid #88b8a066;
}
.copyright p, .copyright a{
    color: #1c3a24;
    font-size: 15px;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-decoration: none;
    margin: 0;
    font-weight: 300;
    transition: all 0.5s ease-in-out;
}
.textRight a{
    color: #1c3a24;
    font-size: 17px;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-decoration: none;
    margin: 0;
    font-weight: 300;
    transition: all 0.5s ease-in-out;
}
.textRight {
    text-align: right;
}
.copyright a:hover{
    color: #55bd89;
}
.all_center{
    margin-top: -40px;
}
.textRight {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
.textRight a{
    position: relative;
}
.textRight a svg{
    transition: all 300ms ease-out;
    margin-left: 6px;
}
.before_arow {
    position: absolute;
    top: 5px;
    right: -12px;
}
.after_arow {
    opacity: 0;
    position: absolute;
    top: 13px;
}
.textRight a:hover .before_arow {
    opacity: 0;
    right: -10px;
    top: -8px;
}
.textRight a:hover .after_arow {
    opacity: 1;
    top: 4px;
}

.copyright .Link {
    cursor: pointer;
    position: relative;
}
.copyright .Link::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    height: 1.3px;
    margin-bottom: -2px;
    transition: width 0.5s;
}
.copyright .Link::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #55bd89;
    height: 1.3px;
    margin-bottom: -2px;
    transition: width 0.5s;
}
.copyright .Link:hover:after {
    width: 100%;
}
.copyright .Link:hover:before{
    display: none;
}

@media (max-width: 1200px){
    .copyright {
        position: relative;
    }
    .all_center{
        margin-top: 0px;
    }
}

@media (max-width: 1560px){
    .title .tagline {
        font-size: 32px;
        line-height: 36px;
        padding: 40px 0;
    }
    
}
@media (max-width: 767px){
    .textRight{
        justify-content: flex-start;
        padding-top: 20px;
    }
    .container-fluid.px-5{
        padding: 0 15px !important;
    }
    .Address{
        display: block;
    }
    .borDer_right{
        border: none;
    }
    .header_btns {
        text-align: center;
        margin-bottom: 30px;
    }
    .logo {
        width: 150px;
        height: auto;
    }
    .title .tagline {
        font-size: 24px;
        line-height: 30px;
        padding: 35px 0px;
    }
    .title .tagline{
        padding-top: 70px !important;
    }
    .Address {
        padding-top: 40px;
    }
    .Address div {
        padding: 25px 0px;
    }
    .Address h3 {
        font-size: 24px;
    }
    .textRight, .copyright p{
        text-align: center;
    }
    .copyright p, .copyright a{
        font-size: 14px;
    }
    .title .tagline{
        margin-bottom: 0px;
    }
    .copyright{
        padding: 18px 0;
    }
    .Address p, .Address a{
        margin-bottom: 0;
    }
    .all_center {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding:90px 0 80px;
    }
    body, html {
        height: auto;
    }
    .title .tagline {
        font-size: 32px;
        line-height: 42px;
        padding: 15px 0;
    }
    .Address p, .Address a {
        color: #1c3a24;
        font-weight: 300;
        font-size: 16px;
        letter-spacing: 0;
        text-decoration: none;
        margin-top: 12px;
        line-height: 24px;
    }
}
@media (max-width: 410px){
    .logo {
        width: 160px;
        height: auto;
    }
    .all_center{
        padding-top: 50px;
    }
}
@media (max-width: 374px){
    .title .tagline {
        font-size: 18px;
        line-height: 28px;
        padding: 15px 0px;
    }
    .Address{
        text-align: center;
    }
    body, html {
        height: auto;
    }
    .Address {
        display: block;
        justify-content: center;
    }
    .all_center {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 65px 0 80px 0;
    }
    .borDer_right{
        border: none;
        margin-bottom: 10px;
    }
    .Address p, .Address a {
        color: #1c3a24;
        font-weight: 300;
        font-size: 14px;
        letter-spacing: 0;
        text-decoration: none;
        margin-top: 12px;
        line-height: 18px;
    }
    .copyright p, .copyright a {
        font-size: 12px;
    }
    .copyright {
        padding: 6px 0;
    }
    .header_btns a {
        background: #55bd89;
        color: #fff;
        border-radius: 40px;
        padding: 7px 20px;
        display: inline-block;
        text-decoration: none;
        font-size: 14px;
    }
    .title .tagline {
        font-size: 25px;
        line-height: 35px;
        padding: 15px 0px;
    }
    .Address p, .Address a {
        color: #1c3a24;
        font-weight: 300;
        font-size: 16px;
        letter-spacing: 0;
        text-decoration: none;
        margin-top: 12px;
        line-height: 24px;
    }
}