@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@font-face {
    font-family: 'Haffer'; /* Name of the font */
    src: url('../fonts/Haffer-Regular.woff') format('woff'); /* Path to the .woff file */
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Haffer'; /* Name of the font */
    src: url('../fonts/Haffer-Medium.woff') format('woff'); /* Path to the .woff file */
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Haffer'; /* Name of the font */
    src: url('../fonts/Haffer-SemiBold.woff') format('woff'); /* Path to the .woff file */
    font-weight: 600;
    font-style: normal;
}

:root{
    --primary: #0d6efd;
    --dark: #21252f;
    --body: #888;
    --white: #ffffff;
    --box-shadow: 0 8px 22px rgba(0,0,0,0.1);
    --max-width: 1130px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    line-height: 0px;
}

body{
    font-family: 'Haffer', sans-serif;
    line-height: 1.7;
    background-color: #fffbf4;
}

h1, h2, h3, h4, h5, h6, .display-4 {
    color: var(--dark);
    font-weight: 700;
}
img{
    width: 100%;
    padding: 0;
    margin: 0;
    line-height: 0px;
}

a {
    color: var(--dark);
    text-decoration: none;
}
.marginAuto{
    margin: 0 auto !important;
}

/* HEAD SECTION */

.topBanner {
  background-color:#d4edda;
  color: #155274;
  text-align: center;
  padding: 20px 0px;
  z-index: 5;
}
.pSection_fluid_container {
    max-width: 100%;
    margin: auto;
    padding: 10px 20px;

}
.pSection_container {
    max-width: var(--max-width);
    margin: auto;
    padding: 10px 20px;
}

.pHeader {
    padding-top: 20px;
    padding-bottom: 10px;
}
.pLogo{
    width: 100%;
    margin-top: 25px;
    margin-bottom: 20px;
    max-width: 190px;
    height: auto;
}

.topHero {
    position: relative;
    z-index: 2;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0px;
    overflow: hidden; /* Ensures the image doesn't exceed container boundaries */
}

.topHeroImg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes sure the image behaves like a background image */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.topHeroInner {
    width: 100%;
    max-width: 700px;
    padding: 30px 40px;
}

.topHeroTitle {
    color: #fff;
    font-size: 62px;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 30px;
    position: relative;
}

.pHero{
    background-image: url(../assets/heroImg.png);
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed; */
    position: relative;
    z-index: 2;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0px;
}
.pHero::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background-color: rgba(21, 20, 51, 0.8); */
    z-index: -1;
}
.pHeroInner{
    width: 100%;
    max-width: 700px;
    padding: 30px 40px;
}
.pHeroTitle{
    color: #fff;
    font-size: 62px;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 30px;
    position: relative;
}
.markLine {
    display: inline-block;
    position: relative;
}

.markLine::after {
    content: url('../assets/mark-line.png');
    position: absolute;
    left: 57%;
    transform: translateX(-50%);
    top: 30%;
    margin-top: 23px;
}
.markIcon {
    display: inline-block;
    position: relative;
}

.markIcon::after {
    content: url('../assets/union.png');
    position: absolute;
    left: 104%;
    transform: translateX(-50%);
    top: -38%;
    margin-top: -27px;
}
.pAppointBtn{
    background-color: #FFC056;
    border-radius: 6px;
    color: #1F1F1F;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    padding: 10px 18px 12px 18px;
    box-shadow:0 8px 22px rgba(0,0,0,.1);
    transition:all .8s
}
.pAppointBtn:hover {
    background-color: #7c3cff;
    color: #fff;
    box-shadow: none;
    transform:translateY(-5px)
}
.pAppointText{
    margin-top: 85px;
    margin-bottom: 30px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
}
.pSponsors{
    margin-top: 15px;
    background-color: #FFF2DC;
    border-radius: 10px;
}
.pSponsorsLogo{
    padding: 15px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.pSponsorsLogoTwo{
    padding: 15px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.pSponsorsLogoThree{
    padding: 15px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.pLogoSection{
    display: flex;
    padding: 15px 20px;
}
.pTwo_Col{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}
.pTwo_Col .pLeft_Col{
    flex-basis: 52%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.pTwo_Col .pRight_Col{
    flex-basis: 46%;
    background-color: #D8F4E2;
    border-radius: 10px;
    padding: 15px 25px;
    margin-left: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.pLeft_Col_Inner h2{
    font-size: 36px;
    line-height: 1.18;
    font-weight: 500;
    margin-bottom: 15px;
}
.pLeft_Col_Inner p{
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    color: #1F1F1F;
    margin-bottom: 15px;
}
.pTextSection{
    text-align: center;
}
.pTextSection p {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    background-color: #FFFFFF;
    color: #1F1F1F;
    display: inline-block;
    padding: 7px 35px 10px 35px;
    border-radius: 21px;
    margin-top: 20px;
    margin-bottom: 35px;
}
.pRight_Col_Inner .pPerCol{
    display: flex;
    align-items: center;
    margin-left: -42px;
    /*margin-top: 35px;*/
    margin-bottom: 60px;
    padding-right: 40px;
}
.pRight_Col_Inner .pPerCol:last-child{
    margin-bottom: 30px;
}
.pPerColLogo {
    background-color: #2A5B5D;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    margin-right: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pPerColText p{
    font-size: 16px;
    line-height: 1.6;
    color: #1F1F1F;
    font-weight: 500;
}

/*HERO TWO*/
.pHeroTwo{
    background-image: url(../assets/hero_2.png);
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed; */
    position: relative;
    z-index: 2;
    border-radius: 8px;
}
.pHeroTwoInner{
    width: 100%;
    max-width: 700px;
    padding: 30px 40px 50px;
}
.pHeroTwoInner h2{
    color: #fff;
    font-size: 47px;
    line-height: 1.18;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 30px;
}
.pMiniLogo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
    margin-top: 50px;
}
.pMiniLogo img{
    padding-right: 15px;
}

.pTitle h2{
    font-size: 36px;
    line-height: 1.18;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 15px;
}
.pPara p{
    font-size: 26px;
    line-height: 2;
    font-weight: 400;
    color: #1F1F1F;
    
}
.pPara p:first-child{
    margin-top: 28px;
    margin-bottom: 30px;
}
.pWhy h2{
    text-align: center;
    padding-top: 10px;
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.5;
    font-weight: 600;
}
.pWhyPara, .pWhyText{
    position: relative;
    font-size: 30px;
    line-height: 1.36;
    font-weight: 500;
}
.pWhyIcon{
    display: inline-block;
    position: relative;
}
.pWhyIcon::after {
    content: url('../assets/why-icon.png');
    position: absolute;
    left: 102%;
    transform: translateX(-50%);
    top: -30%;
    margin-top: -17px;
}
.pWhyBorder {
    border: 1px solid #1F1F1F;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.pWhyBorderLeft {
    flex-basis: 25%;
}
.pWhyBorderCenter {
    flex-basis: 10%;
}
.pWhyBorderRight {
    flex-basis: 35%;
}
.pWhyBorderLeft p, .pWhyBorderRight p {
    color: #1F1F1F;
    font-size: 30px;
    line-height: 1.36;
}
.pWhyText{
    position: relative; 
}
.highlight {
    display: inline-block; /* Allows positioning of the image below */
    position: relative; /* Relative to itself */
}

.highlight::after {
    content: url('../assets/line-1.png');
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30%;
    margin-top: 10px;
}
.pLocationInner{
    background-color: #FFEBCA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pLocationInner .pTextSide{
    flex-basis: 35%;
    padding-left: 65px;
    padding-right: 65px;
}
.pTextSide p{
    font-size: 36;
    line-height: 1.18;
    font-weight: 600;
}
.pLocationInner .pImgSide{
    flex-basis: 65%
}
.pLocationInner p{
    color: #1F1F1F;
    font-size: 36px;
    line-height: 1.18;
    font-weight: bold;
    max-width: 200px;
}
.pLocations{
    padding-top: 20px;
    padding-bottom: 30px;
    color: #1F1F1F;
    font-size: 21px;
    line-height: 1.18;
    font-weight: 400;
    text-align: center;
}
.pBorder{
    border-bottom: 1px solid #000000;
    margin-bottom: 20px;
}
.pSection_FullWidth{
    background-color: #D8F4E2;
}
.pService h1{
    text-align: center;
    font-size: 63px;
    line-height: 1.18;
    font-weight: 600;
    padding-top: 30px;
}
.pService h2{
    text-align: center;
    font-size: 24px;
    line-height: 1.18;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 20px;
}
.pServiceItems {
    width: 95%;
    max-width: 920px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.pServiceItem {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 65px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.pServiceItemImg {
    background-color: #D8F4E2;
    width: 72px;
    min-width: 72px;
    height: 72px;
    min-height: 72px;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}
.pServiceItemText p{
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: #1F1F1F;
}
.pFluid{
    display: flex;
}
.pFluidLeft{
    flex-basis: 45%;
    background-color: #E1EFFF;
    padding: 30px 10px;
}
.pFluidLeftInner{
    width: 480px;
    float: right;
}
.pFluidRight{
    flex-basis: 55%;
    background-color: #FFEBCA;
    padding: 30px 15px;
}
.pFluidRightInner{
    width: 600px;
    padding-top: 25px;
    padding-left: 50px;
    padding-bottom: 20px;
}
.pFluidLeftInner h2{
    color: #143B65;
    font-size: 23px;
    line-height: 1.15;
    font-weight: 500;
}
.pFluidLeftInner p{
    color: #143B65;
    font-size: 16px;
    line-height: 2.13;
    font-weight: 400;
}
.pFluidRightInner h2{
    color: #1F1F1F;
    font-size: 36px;
    line-height: 1.18;
    font-weight: 600;
}
.pList{
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 30px;
}
.pList ol li{
    color: #1F1F1F;
    font-size: 24px;
    line-height: 2;
    font-weight: 500;
}
.pFullSecColor{
    background-color: #143B65;
}
.pFooterText {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px 0px 15px 0px;
}
.pContact {
    padding-top: 13px;
    padding-right: 15px;
}
.pContact p{
    font-size: 24px; line-height: 1.18; text-transform: uppercase; font-weight: 400; letter-spacing: 2px;
}
.pDetails p{
    font-size: 55px; line-height: 1.18; font-weight: 400;
}
.pDetails p a{
    font-size: 55px; line-height: 1.18; font-weight: 500; text-decoration: none; color: #fff; white-space: nowrap;
}

.footerBottomText p{
    font-size: 24px; line-height: 1.18; font-weight: 400; color: #fff; border-top: 1px solid #fff; padding-top: 20px; padding-bottom: 40px;
}
.footerBottomText p a{
    font-size: 24px; line-height: 1.3; font-weight: 400; color: #fff; white-space: nowrap; margin-right: 25px;
}
.footerBottomText p a:first-child{ margin-left: 25px; }
.footerBottomText p a:last-child{ margin-right: 0px !important; }
.footerBottomText p a:hover{text-decoration: underline;}

@media (min-width: 1200px) {
    .pSponsorsLogoTwo{ max-width: 70%; margin: 0 auto; }
    .pSponsorsLogoThree{ max-width: 80%; margin: 0 auto; }
}

/* For desktops and laptops (≥ 992px and < 1200px) */
@media (min-width: 992px) and (max-width: 1199px) {
    
    .pWhyBorderLeft { flex-basis: 35%; }
    .pWhyBorderCenter { flex-basis: 15%; }
    .pWhyBorderRight { flex-basis: 40%; }
    
    .pTwo_Col .pRight_Col { padding: 15px 10px 15px 15px; margin-left: 50px; }
    .pRight_Col_Inner .pPerCol { padding-right: 10px; }
    
    br{ display: none; }
    .pFluidLeftInner { width: 100%; float: left; padding: 20px;}
    .pFluidRightInner { width: 100%; padding-top: 0px; padding-left: 10px; }
    .footerBottomText p a{ margin-right: 10px; }
    .footerBottomText p a:first-child{ margin-left: 10px; }

}

/* For tablets (≥ 768px and < 992px) */
@media (min-width: 768px) and (max-width: 991px) {
    .pLocationInner .pTextSide{ flex-basis: 45%; padding-left: 35px; padding-right: 35px; padding-bottom: 35px; }
    .pLocationInner .pImgSide{ flex-basis: 55% }
    .pLocationInner p{ max-width: 100%; }
    
    .pServiceItem{ padding: 25px; }
    
    .pWhyBorderLeft { flex-basis: 35%; }
    .pWhyBorderCenter { flex-basis: 15%; }
    .pWhyBorderRight { flex-basis: 40%; }
    
    .pTwo_Col { display: flex; flex-direction: column; }
    .pTwo_Col .pLeft_Col, .pTwo_Col .pRight_Col {flex-basis: 100%;}
    .pRight_Col_Inner .pPerCol { margin-bottom: 25px; }
    .pTwo_Col .pRight_Col { padding: 15px 10px 15px 15px; margin-left: 50px; }
    .pRight_Col_Inner .pPerCol { padding-right: 10px; }
    
    br{ display: none; }
    .pFluidLeftInner { width: 100%; float: left;}
    .pFluidRightInner { width: 100%; padding-top: 0px; padding-left: 10px; }

    .footerBottomText p a{ margin-right: 10px; }
    .footerBottomText p a:first-child{ margin-left: 10px; }
}

/* For smartphones (≥ 576px and < 768px) */
@media (min-width: 576px) and (max-width: 767px) {
    .pLogo{ margin-top: 15px; margin-bottom: 10px; }
    .pSponsorsLogoTwo { flex-direction: column; align-items: center; }
    .pLocationInner { display: flex; flex-direction: column; }
    .pLocationInner .pTextSide{ flex-basis: 100%; padding-left: 35px; padding-right: 35px; padding-bottom: 35px; }
    .pLocationInner .pImgSide{ flex-basis: 100% }
    .pLocationInner p{ max-width: 100%; }
    
    .pServiceItem{ padding: 25px; }
    
    .pWhyBorder { display: flex; flex-direction: column; }
    .pWhyBorderLeft { flex-basis: 100%; margin-top: 15px; margin-bottom: 15px; }
    .pWhyBorderCenter { flex-basis: 15%; margin-top: 15px; margin-bottom: 15px; }
    .pWhyBorderRight { flex-basis: 100%; margin-top: 15px; margin-bottom: 15px; }
    .pWhyText, .pWhyPara { text-align: center; }
    
    .pTwo_Col { display: flex; flex-direction: column; }
    .pTwo_Col .pLeft_Col, .pTwo_Col .pRight_Col {flex-basis: 100%;}
    .pRight_Col_Inner .pPerCol { margin-bottom: 25px; }
    .pTwo_Col .pRight_Col { padding: 15px 10px 15px 15px; margin-left: 50px; }
    .pRight_Col_Inner .pPerCol { padding-right: 10px; }
    
    br{ display: none; }
    .pFluid { display: flex; flex-direction: column; }
    .pFluidLeftInner { width: 100%; float: left; padding: 20px;}
    .pFluidRightInner { width: 100%; padding-top: 0px; padding-left: 10px; }
    
    .pFooterText { justify-content: center; }
    .pContact p{ text-align: center; }
    .pDetails p{ text-align: center; }
    .pDnone{ display: none; }

    .footerBottomText p a{ margin-right: 10px; }
    .footerBottomText p a:first-child{ margin-left: 10px; }
    
}

/* For smaller smartphones (less than 576px) */
@media (max-width: 575px) {
    .pLogo{ margin-top: 15px; margin-bottom: 10px; }
    .pHeroInner{ padding: 20px; }
    .pHeroTwoInner{ padding: 10px 20px 40px 20px; }
  
  	.pSponsorsLogoTwo { flex-direction: column; align-items: center; }
    
    .pMiniLogo { display: flex; align-items: flex-start; justify-content: flex-start; flex-direction: row; flex-wrap: wrap; }
    .pMiniLogo>div {padding: 10px 0px;}
    
    .pDesktopOnly{display: none !important;}
    .pMobileOnly{display: block !important;}
    
    .pLocationInner { display: flex; flex-direction: column; }
    .pLocationInner .pTextSide{ flex-basis: 100%; padding-left: 35px; padding-right: 35px; padding-bottom: 35px; }
    .pLocationInner .pImgSide{ flex-basis: 100% }
    .pLocationInner p{ max-width: 100%; }
    
    .pServiceItem{ padding: 25px; }
    
    .pWhyBorder { display: flex; flex-direction: column; }
    .pWhyBorderLeft { flex-basis: 100%; margin-top: 15px; margin-bottom: 15px; }
    .pWhyBorderCenter { flex-basis: 15%; margin-top: 15px; margin-bottom: 15px; }
    .pWhyBorderRight { flex-basis: 100%; margin-top: 15px; margin-bottom: 15px; }
    .pWhyText, .pWhyPara { text-align: center; }
    
    .pTwo_Col { display: flex; flex-direction: column; }
    .pTwo_Col .pLeft_Col, .pTwo_Col .pRight_Col {flex-basis: 100%;}
    .pRight_Col_Inner .pPerCol { margin-bottom: 25px; }
    .pTwo_Col .pRight_Col { padding: 15px 10px 15px 15px; margin-left: 30px; }
    .pRight_Col_Inner .pPerCol { padding-right: 10px; }
    
    br{ display: none; }
    .pFluid { display: flex; flex-direction: column; }
    .pFluidLeftInner { width: 100%; float: left; padding: 20px;}
    .pFluidRightInner { width: 100%; padding-top: 0px; padding-left: 10px; }
    
    .pFooterText { justify-content: center; }
    .pContact p{ text-align: center; }
    .pDetails p{ text-align: center; }
    .pDnone{ display: none; }
    
    .pHeroTitle, .pHeroTwoInner h2, .pService h1 { font-size: 40px; }
    .pLeft_Col_Inner h2, .pTitle h2, .pFluidRightInner h2, .pService h2, .pLocationInner p { font-size: 25px; }
    .pAppointText { margin-top: 45px; font-size: 20px; }
    .pDetails p a { font-size: 40px; line-height: 1.1; }
    .pLocations { font-size: 18px; }
    .pPara p, .pServiceItemText p { font-size: 18px; line-height: 1.5; }
    .pList ol li { font-size: 18px; line-height: 2; }
    
    .footerBottomText p a{ margin-right: 10px; }
    .footerBottomText p a:first-child{ margin-left: 10px; }
}