@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');


:root {
    --color-body: #b6cbce;
    --color-heading: #eef3db;
    --color-base: #373838;
    --color-base2: #1d1d1b;
    --color-brand: #cf2744;
    --color-brand2: #f0f0f8;
    --color-parahead:#2c2b2b;
    --sidbar-width: 240px;
    --font-base: "Bai Jamjuree";
}


body {
    background-color: var(--color-base2);
    color: var(--color-body);
    font-family: var(--font-base), sans-serif;
}

.subcontainer{
    width:85%;
    margin:auto;
}

.golfballicon{
    color:#eef3db;
    font-size: 40px;
    margin-top:100px;
}

#cookies{
    width:100%;
    position: fixed;
    bottom:0;
    background-color:rgba(207, 39, 68, 0.9);
    padding:10px;
    z-index: 1;
    display: none;
}
.iconcookie{
    font-size: 35px;
    color: white;
}
.cookies{
    min-height: 70px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap:10px;
    color: white;
    font-weight: 500;
}

#cookies-btn{
    border-radius: 5px;
    padding:8px 12px 8px 12px;
    margin: 20px;
    font-size: 16px;
    font-weight: 600;
    background-color: #1d1d1b;
    color: #eef3db;
    border: #eef3db 2px solid;
}

h1,h2,h3,h4,h5,h6 {
    color: var(--color-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--color-body);
    transition: all 0.4s ease;
}

a:hover {
    color: var(--color-brand);
}

img {
    width: 100%;
}

.aboutme-img{
    border-radius: 15px;
    margin-top:5px;
    margin-bottom: 15px;
}
.whatisplk-img{
    border-radius: 15px;
    margin-top:5px;
    margin-bottom: 5px;
    max-width: 450px;
    display: flex;
}
.text-brand {
    color: var(--color-brand);
}

.text-parahead {
    background-color: var(--color-parahead);
    display: inline-block;
    width: 100%;
    padding:10px;
    border-radius: 0px 15px 15px 0px;
    border:solid 2px var(--color-brand);
    font-weight: 500;
}

.bg-base {
    background-color: var(--color-base);
}

.aboutcardheight{
    min-height: 780px;
}
.full-height {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid rgba(255,255,255, 0.1);
}

.shadow-effect {
    transition: all 0.5s;
}

.shadow-effect:hover {
    box-shadow: -6px 6px 0 0 var(--color-brand);
}
.service{
    min-height: 350px;
}
.iconbox {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: var(--color-brand);
    color: var(---color-brand2);
}
.insireCards{
    min-height: 400px;
}

.plkInspTextpara2{
    padding: 10px 0px 10px 10px;
}
.quoteLarge{
    color:#cf2744;
    font-size: 30px;
}
.quote{
    text-align: center;
    background-color:#2c2b2b;
    padding: 10px;
    border-radius: 0px 15px 15px 0px;
    border-left: solid 3px #cf2744;
}
.footerText{
    font-size: 14px;
}
.footerTextRed{
    color:#cf2744;
    font-size: 20px;
}

.footerImage{
    float: right;
    padding-bottom: 20px;
}

/* VENTURES */

.venturesimages{
    border:#cf2744 5px solid;
}


/* NAVBAR */
.navbar {
    background-color: var(--color-base);
}

.navbar .nav-link {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.navbar .nav-link:hover {
    color: var(--color-brand);
}

.navbar .nav-link.active {
    color: var(--color-brand);
}

/* BTN */
.btn {
    padding: 12px 28px;
    font-weight: 700;
}

.btn-brand {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: var(--color-brand2);
}

.btn-brand:hover,
.btn-brand:focus {
    background-color: var(--color-brand2);
    color: var(--color-base);
    border-color: var(--color-brand2);
}

.link-custom {
    font-weight: 700;
    position: relative;
}

.link-custom::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--color-brand);
    position: absolute;
    left: 0;
    top: 110%;
    transition: all 0.4s;
}

.link-custom:hover::after {
    width: 100%;
}

/* CARD */
.card-custom{
    min-height: 850px;
}

.card-custom .card-custom-image {
    overflow: hidden;
}

.card-custom .card-custom-image img {
    transition: all 0.4s ease;
    max-height: 400px;
}

.card-custom:hover .card-custom-image img {
    transform: scale(1.1);
}


/* TIMELINE */
.timelineposth4announcement{
  border: orange 2px solid;
  border-radius: 15px 15px 0px  0px;
  padding:10px;  
}


.timelineposth4future{
    border: aqua 2px solid;
    border-radius: 15px 15px 0px  0px;
    padding:10px;  
}

.timelineposth4achieved{
    border: lime 2px solid;
    border-radius: 15px 15px 0px  0px;
    padding:10px;  
}


.timelineposttitle{
    font-style: italic;
    padding-left: 15px;
    font-size: 18px;
}

.fontannouncement{
    color: orange;
}

.fontachieved{
    color:lime;
}
.fontfuture{
    color:aqua;
}

.timelineiconannouncement{
    padding-right: 10px;
    color: orange;
}

.timnelineiconachieved{
    padding-right: 10px;
    color:lime;

}
.timelineiconfuture{
    padding-right: 10px;
    color:aqua;
}

.timelinecaret{
    color:#cf2744;
    font-size: 25px;
    text-align: center;
}
.timelineseperator{
    padding:10px;
}


/* CONTACT */
#contact .form-control {
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: var(--color-body);
}

#contact .form-control:focus {
    border-color: var(--color-brand);
    box-shadow: none;
}

#contact .form-control::placeholder {
    color: var(--color-body);
}

#contact input.form-control {
    height: 44px;
}
.btn-maxwidth{
    max-width: 250px;
}
.msgimgage{
    max-width: 350px;
    max-height: 300px;
    border:#cf2744 3px solid;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
}

.patmobphoto{
    max-width: 75px;
    max-height:75px;
    border: #cf2744 3px solid;
    margin-right:10px;
}

/* SOCIAL ICONS */
.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-base);
    border-radius: 100px;
    font-size: 24px;
}


@media (min-width: 992px) {
    .navbar {
        min-height: 100vh;
        width: var(--sidbar-width);
        background-size: cover;
        background-position: center;
    }

    .navbar-brand img {
        border: 8px solid var(--color-brand);
    }
    /* CONTENT WRAPPER */
    #content-wrapper {
        padding-left: var(--sidbar-width);
    }
}
