/*------ Normalise CSS ------*/
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}button:focus, textarea:focus, div:focus {outline: 0 !important;}select:focus {outline: none;}a, a:hover {text-decoration: none;color: inherit;}button{background: transparent;border: 0;padding: 0;line-height: 0;}button:focus{outline: none;box-shadow: none;}input::placeholder,textarea::placeholder{color:var(--placeholder)!important}input::-moz-placeholder,textarea::-moz-placeholder{color:var(--placeholder)!important;opacity:1}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:var(--placeholder)!important;opacity:1}input:focus{outline:0!important}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield;appearance: textfield;}ul{list-style-type:none;padding:0;margin:0}a:hover{text-decoration:none}p{margin:0}button{border:0}button:focus{outline:0}

/*------ Main CSS ------*/
* {
    box-sizing: border-box;
}
:root {
    --primary: #0849a5;
    --secondary: #019ee3;
    --ternary: #f07300;
    --head-color: #3d3d3d;
    --text-color: #5b5b5b;
    --grey: #999191;
    --black: #000000;
    --white: #FFFFFF;
    --bg: #f7f7f7;
    --grey: #848484;
}
body {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-color);
    background: var(--bg);
	padding: 0;
    margin: 0;
    overflow-x: hidden;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}
.wrapper {
    width: 100%;
    height: 100%;
}

/* Header */
.header-block {
    width: 100%;
    height: 100px;
    background-color: rgb(20 20 17 / 55%);
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
    z-index: 9;
}
.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.navigation-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand-logo {
    width: 165px;    
    display: block
}
.brand-logo img {
    width: 100%;
    object-fit: contain;
}
.tag-line {
    width: 100%;
    text-align: center;
    display: block;
    color: var(--white);
    font-size: 12px;
}
.navigation-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.navigation-link {
    font-family: "Prata", serif;
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    color: var(--white);
    transition: .3s ease-out;
}
.navigation-link:hover {
    color: var(--secondary);
}
.navigation-link.active {
    color: var(--secondary);
}
/* Carousel */
.o-carousel {
    width: 100%;
    height: 100vh;
}
.o-carousel .carousel-inner, 
.o-carousel .carousel-item {
    height: 100%;
}
.o-carousel .carousel-item:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 53%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.o-carousel .carousel-item img {
    height: 100%;
    object-fit: cover;
}
.o-carousel .carousel-caption {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.carousel-caption h1 {
    font-family: "Prata", serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.3;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 40%);
}
.carousel-caption p {
    font-size: 22px;
    font-weight: 100;
    line-height: 1.3;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 40%);
}
.content-area {
    padding: 60px 0;
}
/* Button */
.o-button {
    font-size: 16px;
    font-weight: 300;
    background-color: var(--secondary);
    border-bottom: 2px solid var(--ternary);
    padding: 8px 16px;
    border-radius: 30px;
    transition: .3s ease-out;
    
}
.o-button:hover,
.o-button:active{
    border-color: var(--ternary) !important;
    background-color: var(--ternary) !important;
}
/* Section */
.section-header {
    width: 100%;
    margin-bottom: 40px;
}
.section-header .title {
    font-family: "Prata", serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--head-color);
}
.o-card {
    height: 100%;
    border: 0;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
}
.o-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}
.o-card-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
}
.text-content {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color);
}
.o-nav-tab .nav-link {
    display: flex;
    align-items: center;
    gap: 8px; 
    padding: 8px 16px;
    line-height: normal;
    border-bottom: 2px solid transparent;
    border-radius: 30px;
    color: var(--text-color);    
    font-weight: 500;
}
.o-nav-tab .nav-link.active {
    border-color: var(--secondary);
    background-color: var(--ternary);
}
.type-content h5 {
    font-size: 24px;
    line-height: normal;
    color: var(--secondary);
}
.type-content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    line-height: normal;
}
.type-content ul{
    width: 100%;
    padding-left: 16px;
    list-style-type: disc;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.type-content ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
.h-400 {
    height: 400px;
    object-fit: cover;
}
.theme-color {
    color: var(--secondary) !important;
}
.social-links li img {
    width: 24px;
    height: 24px;
}
.wa-link {
    width: 64px;
    height: 64px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
}
.footer-block {
    padding: 40px 0;
    height: auto;
    background-color: #1d1d1d;
}
.copyright-text p {
    line-height: normal;
}
.open-modal .modal-content {
    border-radius: 0;
    border: 0;
}
.open-modal .close {
    width: 30px;
    height: 30px;
    color: #1d1d1d;
    font-size: 29px;
    position: absolute;
    right: -12px;
    top: -14px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    padding: 0;
    border-radius: 30px;
    border: 2px solid #1d1d1d;
}
.open-modal .close span {
    line-height: normal;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -2px;
}
.h-500 {
    height: 500px;
    background-color: #1d1d1d;
    border-bottom: 2px solid var(--ternary);
    border-radius: 0;
}
.modal-h1 {
    font-size: 30px;
    line-height: normal;
    font-family: "Prata", sans-serif;
    text-transform: uppercase;
    color: white;
}
.modal-p {
    font-family: "Prata", sans-serif;
    font-size: 18px;
    color: white;
}
.modal-sm-p {
    font-size: 16px;
    font-family: system-ui;
    line-height: normal;
    color: white;
    margin-bottom: 8px;
    margin-top: 8px;
    text-align: center;
    max-width: 300px;
}
.secondary-color {
    color: var(--secondary);
}
.ternary-color {
    color: var(--ternary);
}

/* Media Queries */

@media (max-width: 1024px) {
    .mobile-gap {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {

    .header-block {
        height: 85px;
    }
    .brand-logo {
        width: 120px;
    }
    .carousel-caption h1 {
        font-size: 35px;
    }
    .carousel-caption p {
        font-size: 20px;
    }
    .content-area {
        padding: 30px 0;
    }
    .section-header {
        margin-bottom: 20px;
    }
    .section-header .title {
        font-size: 30px;
    }
    .text-content {
        font-size: 14px;
    }
    .o-nav-tab .nav-link {
        font-size: 14px;
    }
    .type-content h5 {
        font-size: 22px;
    }
    
}

