/*--------------------------------------------------------------
 ** Google Fonts Integration
----------------------------------------------------------------*/

@font-face {
    font-family: "Sora";
    src: url("../fonts/Lexend/static/Lexend-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Sora";
    src: url("../fonts/Lexend/static/Lexend-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Sora";
    src: url("../fonts/Lexend/static/Lexend-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Sora";
    src: url("../fonts/Lexend/static/Lexend-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/*--------------------------------------------------------------
** All Variable
----------------------------------------------------------------*/
:root {
    --white-01-color: #fff;
    --white-02-color: #f2f2f2;
    --white-03-color: #f9f9f9;
    --primary-color: #0272DB;
    --Secondary-color: #8CC94B;
    --body-color: #555;
    --blue01-color: #00154E;
    --blue02-color: #01248C;
    --blue03-color: #CEDDFF;
    --blue04-color: #F1F4FC;
    --black-01_color: #131313;
    --black-02_color: #00001B;
    --gray-03-color: #888888;
    --gray-04-color: #A4A3A1;
    --gray-05-color: #DDDDDD;
    --gray-06-color: #E9E9E9;
    --heading-font: "Lexend", sans-serif;
    --body-font: "Lexend", sans-serif;

}

/*--------------------------------------------------------------
1. Typography
----------------------------------------------------------------*/
body {
    margin: 0;
    padding-top: 65px;
}

body,
html {
    color: var(--body-color);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    overflow-x: clip;
}

body {
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    color: var(--heading-color);
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2em;
    font-family: var(--heading-font);
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 15px;
    color: var(--body-color);
}

ul {
    margin: 0 0 25px 0;
    padding-left: 20px;
    list-style: square outside none;
}

ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 15px;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6em;
    margin: 0;
}

address {
    margin: 0 0 15px;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;

}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

button {
    color: inherit;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: var(--accent-color);
}

table {
    width: 100%;
    margin-bottom: 25px;
}

table th {
    font-weight: 600;
    color: var(--body-color);
}

table td,
table th {
    border-top: 1px solid var(--border-color);
    padding: 11px 10px;
}

dl {
    margin-bottom: 25px;
}

dl dt {
    font-weight: 600;
}

b,
strong {
    font-weight: bold;
}

pre {
    color: var(--body-color);
    border: 1px solid var(--border-color);
    font-size: 18px;
    padding: 25px;
    border-radius: 5px;
}

kbd {
    font-size: 100%;
    background-color: var(--body-color);
    border-radius: 5px;
}

input,
textarea {
    color: var(--heading-color);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/*--------------------------------------------------------------
2. Animation
----------------------------------------------------------------*/
@-webkit-keyframes particalAnimation {

    0%,
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    20% {
        -webkit-transform: translate(50px, -10px);
        transform: translate(50px, -10px);
    }

    40% {
        -webkit-transform: translate(100px, 60px);
        transform: translate(100px, 60px);
    }

    60% {
        -webkit-transform: translate(60px, 90px);
        transform: translate(60px, 90px);
    }

    80% {
        -webkit-transform: translate(-30px, 60px);
        transform: translate(-30px, 60px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes particalAnimation {

    0%,
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    20% {
        -webkit-transform: translate(50px, -10px);
        transform: translate(50px, -10px);
    }

    40% {
        -webkit-transform: translate(100px, 60px);
        transform: translate(100px, 60px);
    }

    60% {
        -webkit-transform: translate(60px, 90px);
        transform: translate(60px, 90px);
    }

    80% {
        -webkit-transform: translate(-30px, 60px);
        transform: translate(-30px, 60px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes animo-x {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateX(44px);
        transform: translateX(44px);
    }
}

@keyframes animo-x {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateX(44px);
        transform: translateX(44px);
    }
}

@-webkit-keyframes animo-y {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@keyframes animo-y {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.55, 0, 0.2, 1);
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@-webkit-keyframes rotate-anim {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-anim {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes semi-rotate-anim {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(25px) rotate(-53deg);
        transform: translateY(25px) rotate(-53deg);
    }
}

@keyframes semi-rotate-anim {
    50% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(25px) rotate(-53deg);
        transform: translateY(25px) rotate(-53deg);
    }
}

@-webkit-keyframes up-down-anim {
    40% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(40px) rotate(-1deg);
        transform: translateY(40px) rotate(-1deg);
    }
}

@keyframes up-down-anim {
    40% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(40px) rotate(-1deg);
        transform: translateY(40px) rotate(-1deg);
    }
}

@-webkit-keyframes swing-anim {
    65% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(-48px) rotate(-75deg);
        transform: translateY(-48px) rotate(-75deg);
    }
}

@keyframes swing-anim {
    65% {
        -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transform: translateY(-48px) rotate(-75deg);
        transform: translateY(-48px) rotate(-75deg);
    }
}

@-webkit-keyframes spinAnimaiton {
    0% {
        -webkit-transform: rotateX(-20deg) rotateY(0deg);
        transform: rotateX(-20deg) rotateY(0deg);
    }

    75% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }

    100% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
}

@keyframes spinAnimaiton {
    0% {
        -webkit-transform: rotateX(-20deg) rotateY(0deg);
        transform: rotateX(-20deg) rotateY(0deg);
    }

    75% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }

    100% {
        -webkit-transform: rotateX(-20deg) rotateY(360deg);
        transform: rotateX(-20deg) rotateY(360deg);
    }
}

/*--------------------------------------------------------------
3. Preloader
----------------------------------------------------------------*/
.td_preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.td_preloader::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--accent-color);
    opacity: 0.2;
}

.td_preloader_in {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 3;
}

.td_preloader_in span {
    background-color: var(--accent-color);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: 0.5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.td_preloader_in span:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/*--------------------------------------------------------------
4. Spacing
----------------------------------------------------------------*/
.td_mb_1 {
    margin-bottom: 1px;
}

.td_mb_2 {
    margin-bottom: 2px;
}

.td_mb_3 {
    margin-bottom: 3px;
}

.td_mb_4 {
    margin-bottom: 4px;
}

.td_mb_5 {
    margin-bottom: 5px;
}

.td_mb_6 {
    margin-bottom: 6px;
}

.td_mb_7 {
    margin-bottom: 7px;
}

.td_mb_8 {
    margin-bottom: 8px;
}

.td_mb_9 {
    margin-bottom: 9px;
}

.td_mb_10 {
    margin-bottom: 10px;
}

.td_mb_11 {
    margin-bottom: 11px;
}

.td_mb_12 {
    margin-bottom: 12px;
}

.td_mb_13 {
    margin-bottom: 13px;
}

.td_mb_14 {
    margin-bottom: 14px;
}

.td_mb_15 {
    margin-bottom: 15px;
}

.td_mb_16 {
    margin-bottom: 16px;
}

.td_mb_17 {
    margin-bottom: 17px;
}

.td_mb_18 {
    margin-bottom: 18px;
    text-align: justify;
}

.td_mb_19 {
    margin-bottom: 19px;
}

.td_mb_20 {
    margin-bottom: 20px;
}

.td_mb_21 {
    margin-bottom: 21px;
}

.td_mb_22 {
    margin-bottom: 22px;
}

.td_mb_23 {
    margin-bottom: 23px;
}

.td_mb_24 {
    margin-bottom: 24px;
}

.td_mb_25 {
    margin-bottom: 25px;
}

.td_mb_26 {
    margin-bottom: 26px;
}

.td_mb_27 {
    margin-bottom: 27px;
}

.td_mb_28 {
    margin-bottom: 28px;
}

.td_mb_29 {
    margin-bottom: 29px;
}

.td_mb_30 {
    margin-bottom: 30px;
}

.td_mb_31 {
    margin-bottom: 31px;
}

.td_mb_32 {
    margin-bottom: 32px;
}

.td_mb_33 {
    margin-bottom: 33px;
}

.td_mb_34 {
    margin-bottom: 34px;
    text-align: justify;
}

.td_mb_35 {
    margin-bottom: 35px;
}

.td_mb_36 {
    margin-bottom: 36px;
}

.td_mb_37 {
    margin-bottom: 37px;
}

.td_mb_38 {
    margin-bottom: 38px;
}

.td_mb_39 {
    margin-bottom: 39px;
}

.td_mb_40 {
    margin-bottom: 40px;
}

.td_mb_41 {
    margin-bottom: 41px;
}

.td_mb_42 {
    margin-bottom: 42px;
}

.td_mb_43 {
    margin-bottom: 43px;
}

.td_mb_44 {
    margin-bottom: 44px;
}

.td_mb_45 {
    margin-bottom: 45px;
}

.td_mb_46 {
    margin-bottom: 46px;
}

.td_mb_47 {
    margin-bottom: 47px;
}

.td_mb_48 {
    margin-bottom: 48px;
}

.td_mb_49 {
    margin-bottom: 49px;
}

.td_mb_50 {
    margin-bottom: 50px;
    text-align: justify;
}

.td_mb_51 {
    margin-bottom: 51px;
}

.td_mb_52 {
    margin-bottom: 52px;
}

.td_mb_53 {
    margin-bottom: 53px;
}

.td_mb_54 {
    margin-bottom: 54px;
}

.td_mb_55 {
    margin-bottom: 55px;
}

.td_mb_56 {
    margin-bottom: 56px;
}

.td_mb_57 {
    margin-bottom: 57px;
}

.td_mb_58 {
    margin-bottom: 58px;
}

.td_mb_59 {
    margin-bottom: 59px;
}

.td_mb_60 {
    margin-bottom: 60px;
}


@media screen and (min-width: 992px) {
    .td_height_1 {
        height: 1px;
    }

    .td_height_2 {
        height: 2px;
    }

    .td_height_3 {
        height: 3px;
    }

    .td_height_4 {
        height: 4px;
    }

    .td_height_5 {
        height: 5px;
    }

    .td_height_6 {
        height: 6px;
    }

    .td_height_7 {
        height: 7px;
    }

    .td_height_8 {
        height: 8px;
    }

    .td_height_9 {
        height: 9px;
    }

    .td_height_10 {
        height: 10px;
    }

    .td_height_11 {
        height: 11px;
    }

    .td_height_12 {
        height: 12px;
    }

    .td_height_13 {
        height: 13px;
    }

    .td_height_14 {
        height: 14px;
    }

    .td_height_15 {
        height: 15px;
    }

    .td_height_16 {
        height: 16px;
    }

    .td_height_17 {
        height: 17px;
    }

    .td_height_18 {
        height: 18px;
    }

    .td_height_19 {
        height: 19px;
    }

    .td_height_20 {
        height: 20px;
    }

    .td_height_21 {
        height: 21px;
    }

    .td_height_22 {
        height: 22px;
    }

    .td_height_23 {
        height: 23px;
    }

    .td_height_24 {
        height: 24px;
    }

    .td_height_25 {
        height: 25px;
    }

    .td_height_26 {
        height: 26px;
    }

    .td_height_27 {
        height: 27px;
    }

    .td_height_28 {
        height: 28px;
    }

    .td_height_29 {
        height: 29px;
    }

    .td_height_30 {
        height: 30px;
    }

    .td_height_31 {
        height: 31px;
    }

    .td_height_32 {
        height: 32px;
    }

    .td_height_33 {
        height: 33px;
    }

    .td_height_34 {
        height: 34px;
    }

    .td_height_35 {
        height: 35px;
    }

    .td_height_36 {
        height: 36px;
    }

    .td_height_37 {
        height: 37px;
    }

    .td_height_38 {
        height: 38px;
    }

    .td_height_39 {
        height: 39px;
    }

    .td_height_40 {
        height: 40px;
    }

    .td_height_41 {
        height: 41px;
    }

    .td_height_42 {
        height: 42px;
    }

    .td_height_43 {
        height: 43px;
    }

    .td_height_44 {
        height: 44px;
    }

    .td_height_45 {
        height: 45px;
    }

    .td_height_46 {
        height: 46px;
    }

    .td_height_47 {
        height: 47px;
    }

    .td_height_48 {
        height: 48px;
    }

    .td_height_49 {
        height: 49px;
    }

    .td_height_50 {
        height: 50px;
    }

    .td_height_51 {
        height: 51px;
    }

    .td_height_52 {
        height: 52px;
    }

    .td_height_53 {
        height: 53px;
    }

    .td_height_54 {
        height: 54px;
    }

    .td_height_55 {
        height: 55px;
    }

    .td_height_56 {
        height: 56px;
    }

    .td_height_57 {
        height: 57px;
    }

    .td_height_58 {
        height: 58px;
    }

    .td_height_59 {
        height: 59px;
    }

    .td_height_60 {
        height: 60px;
    }

    .td_height_61 {
        height: 61px;
    }

    .td_height_62 {
        height: 62px;
    }

    .td_height_63 {
        height: 63px;
    }

    .td_height_64 {
        height: 64px;
    }

    .td_height_65 {
        height: 65px;
    }

    .td_height_66 {
        height: 66px;
    }

    .td_height_67 {
        height: 67px;
    }

    .td_height_68 {
        height: 68px;
    }

    .td_height_69 {
        height: 69px;
    }

    .td_height_70 {
        height: 70px;
    }

    .td_height_71 {
        height: 71px;
    }

    .td_height_72 {
        height: 72px;
    }

    .td_height_73 {
        height: 73px;
    }

    .td_height_74 {
        height: 74px;
    }

    .td_height_75 {
        height: 75px;
    }

    .td_height_76 {
        height: 76px;
    }

    .td_height_77 {
        height: 77px;
    }

    .td_height_78 {
        height: 78px;
    }

    .td_height_79 {
        height: 79px;
    }

    .td_height_80 {
        height: 80px;
    }

    .td_height_81 {
        height: 81px;
    }

    .td_height_82 {
        height: 82px;
    }

    .td_height_83 {
        height: 83px;
    }

    .td_height_84 {
        height: 84px;
    }

    .td_height_85 {
        height: 85px;
    }

    .td_height_86 {
        height: 86px;
    }

    .td_height_87 {
        height: 87px;
    }

    .td_height_88 {
        height: 88px;
    }

    .td_height_89 {
        height: 89px;
    }

    .td_height_90 {
        height: 90px;
    }

    .td_height_91 {
        height: 91px;
    }

    .td_height_92 {
        height: 92px;
    }

    .td_height_93 {
        height: 93px;
    }

    .td_height_94 {
        height: 94px;
    }

    .td_height_95 {
        height: 95px;
    }

    .td_height_96 {
        height: 96px;
    }

    .td_height_97 {
        height: 97px;
    }

    .td_height_98 {
        height: 98px;
    }

    .td_height_99 {
        height: 99px;
    }

    .td_height_100 {
        height: 100px;
    }

    .td_height_101 {
        height: 101px;
    }

    .td_height_102 {
        height: 102px;
    }

    .td_height_103 {
        height: 103px;
    }

    .td_height_104 {
        height: 104px;
    }

    .td_height_105 {
        height: 105px;
    }

    .td_height_106 {
        height: 106px;
    }

    .td_height_107 {
        height: 107px;
    }

    .td_height_108 {
        height: 108px;
    }

    .td_height_109 {
        height: 109px;
    }

    .td_height_110 {
        height: 110px;
    }

    .td_height_111 {
        height: 111px;
    }

    .td_height_112 {
        height: 112px;
    }

    .td_height_113 {
        height: 113px;
    }

    .td_height_114 {
        height: 114px;
    }

    .td_height_115 {
        height: 115px;
    }

    .td_height_116 {
        height: 116px;
    }

    .td_height_117 {
        height: 117px;
    }

    .td_height_118 {
        height: 118px;
    }

    .td_height_119 {
        height: 119px;
    }

    .td_height_120 {
        height: 120px;
    }

    .td_height_121 {
        height: 121px;
    }

    .td_height_122 {
        height: 122px;
    }

    .td_height_123 {
        height: 123px;
    }

    .td_height_124 {
        height: 124px;
    }

    .td_height_125 {
        height: 125px;
    }

    .td_height_126 {
        height: 126px;
    }

    .td_height_127 {
        height: 127px;
    }

    .td_height_128 {
        height: 128px;
    }

    .td_height_129 {
        height: 129px;
    }

    .td_height_130 {
        height: 130px;
    }

    .td_height_131 {
        height: 131px;
    }

    .td_height_132 {
        height: 132px;
    }

    .td_height_133 {
        height: 133px;
    }

    .td_height_134 {
        height: 134px;
    }

    .td_height_135 {
        height: 135px;
    }

    .td_height_136 {
        height: 136px;
    }

    .td_height_137 {
        height: 137px;
    }

    .td_height_138 {
        height: 138px;
    }

    .td_height_139 {
        height: 139px;
    }

    .td_height_140 {
        height: 140px;
    }

    .td_height_141 {
        height: 141px;
    }

    .td_height_142 {
        height: 142px;
    }

    .td_height_143 {
        height: 143px;
    }

    .td_height_144 {
        height: 144px;
    }

    .td_height_145 {
        height: 145px;
    }

    .td_height_146 {
        height: 146px;
    }

    .td_height_147 {
        height: 147px;
    }

    .td_height_148 {
        height: 148px;
    }

    .td_height_149 {
        height: 149px;
    }

    .td_height_150 {
        height: 150px;
    }
}

@media screen and (max-width: 991px) {
    .td_mb_lg_1 {
        margin-bottom: 1px;
    }

    .td_mb_lg_2 {
        margin-bottom: 2px;
    }

    .td_mb_lg_3 {
        margin-bottom: 3px;
    }

    .td_mb_lg_4 {
        margin-bottom: 4px;
    }

    .td_mb_lg_5 {
        margin-bottom: 5px;
    }

    .td_mb_lg_6 {
        margin-bottom: 6px;
    }

    .td_mb_lg_7 {
        margin-bottom: 7px;
    }

    .td_mb_lg_8 {
        margin-bottom: 8px;
    }

    .td_mb_lg_9 {
        margin-bottom: 9px;
    }

    .td_mb_lg_10 {
        margin-bottom: 10px;
    }

    .td_mb_lg_11 {
        margin-bottom: 11px;
    }

    .td_mb_lg_12 {
        margin-bottom: 12px;
    }

    .td_mb_lg_13 {
        margin-bottom: 13px;
    }

    .td_mb_lg_14 {
        margin-bottom: 14px;
    }

    .td_mb_lg_15 {
        margin-bottom: 15px;
    }

    .td_mb_lg_16 {
        margin-bottom: 16px;
    }

    .td_mb_lg_17 {
        margin-bottom: 17px;
    }

    .td_mb_lg_18 {
        margin-bottom: 18px;
    }

    .td_mb_lg_19 {
        margin-bottom: 19px;
    }

    .td_mb_lg_20 {
        margin-bottom: 20px;
    }

    .td_mb_lg_21 {
        margin-bottom: 21px;
    }

    .td_mb_lg_22 {
        margin-bottom: 22px;
    }

    .td_mb_lg_23 {
        margin-bottom: 23px;
    }

    .td_mb_lg_24 {
        margin-bottom: 24px;
    }

    .td_mb_lg_25 {
        margin-bottom: 25px;
    }

    .td_mb_lg_26 {
        margin-bottom: 26px;
    }

    .td_mb_lg_27 {
        margin-bottom: 27px;
    }

    .td_mb_lg_28 {
        margin-bottom: 28px;
    }

    .td_mb_lg_29 {
        margin-bottom: 29px;
    }

    .td_mb_lg_30 {
        margin-bottom: 30px;
    }

    .td_mb_lg_31 {
        margin-bottom: 31px;
    }

    .td_mb_lg_32 {
        margin-bottom: 32px;
    }

    .td_mb_lg_33 {
        margin-bottom: 33px;
    }

    .td_mb_lg_34 {
        margin-bottom: 34px;
    }

    .td_mb_lg_35 {
        margin-bottom: 35px;
    }

    .td_mb_lg_36 {
        margin-bottom: 36px;
    }

    .td_mb_lg_37 {
        margin-bottom: 37px;
    }

    .td_mb_lg_38 {
        margin-bottom: 38px;
    }

    .td_mb_lg_39 {
        margin-bottom: 39px;
    }

    .td_mb_lg_40 {
        margin-bottom: 40px;
    }

    .td_mb_lg_41 {
        margin-bottom: 41px;
    }

    .td_mb_lg_42 {
        margin-bottom: 42px;
    }

    .td_mb_lg_43 {
        margin-bottom: 43px;
    }

    .td_mb_lg_44 {
        margin-bottom: 44px;
    }

    .td_mb_lg_45 {
        margin-bottom: 45px;
    }

    .td_mb_lg_46 {
        margin-bottom: 46px;
    }

    .td_mb_lg_47 {
        margin-bottom: 47px;
    }

    .td_mb_lg_48 {
        margin-bottom: 48px;
    }

    .td_mb_lg_49 {
        margin-bottom: 49px;
    }

    .td_mb_lg_50 {
        margin-bottom: 50px;
    }

    .td_mb_lg_51 {
        margin-bottom: 51px;
    }

    .td_mb_lg_52 {
        margin-bottom: 52px;
    }

    .td_mb_lg_53 {
        margin-bottom: 53px;
    }

    .td_mb_lg_54 {
        margin-bottom: 54px;
    }

    .td_mb_lg_55 {
        margin-bottom: 55px;
    }

    .td_mb_lg_56 {
        margin-bottom: 56px;
    }

    .td_mb_lg_57 {
        margin-bottom: 57px;
    }

    .td_mb_lg_58 {
        margin-bottom: 58px;
    }

    .td_mb_lg_59 {
        margin-bottom: 59px;
    }

    .td_mb_lg_60 {
        margin-bottom: 60px;
    }

    .td_height_lg_1 {
        height: 1px;
    }

    .td_height_lg_2 {
        height: 2px;
    }

    .td_height_lg_3 {
        height: 3px;
    }

    .td_height_lg_4 {
        height: 4px;
    }

    .td_height_lg_5 {
        height: 5px;
    }

    .td_height_lg_6 {
        height: 6px;
    }

    .td_height_lg_7 {
        height: 7px;
    }

    .td_height_lg_8 {
        height: 8px;
    }

    .td_height_lg_9 {
        height: 9px;
    }

    .td_height_lg_10 {
        height: 10px;
    }

    .td_height_lg_11 {
        height: 11px;
    }

    .td_height_lg_12 {
        height: 12px;
    }

    .td_height_lg_13 {
        height: 13px;
    }

    .td_height_lg_14 {
        height: 14px;
    }

    .td_height_lg_15 {
        height: 15px;
    }

    .td_height_lg_16 {
        height: 16px;
    }

    .td_height_lg_17 {
        height: 17px;
    }

    .td_height_lg_18 {
        height: 18px;
    }

    .td_height_lg_19 {
        height: 19px;
    }

    .td_height_lg_20 {
        height: 20px;
    }

    .td_height_lg_21 {
        height: 21px;
    }

    .td_height_lg_22 {
        height: 22px;
    }

    .td_height_lg_23 {
        height: 23px;
    }

    .td_height_lg_24 {
        height: 24px;
    }

    .td_height_lg_25 {
        height: 25px;
    }

    .td_height_lg_26 {
        height: 26px;
    }

    .td_height_lg_27 {
        height: 27px;
    }

    .td_height_lg_28 {
        height: 28px;
    }

    .td_height_lg_29 {
        height: 29px;
    }

    .td_height_lg_30 {
        height: 30px;
    }

    .td_height_lg_31 {
        height: 31px;
    }

    .td_height_lg_32 {
        height: 32px;
    }

    .td_height_lg_33 {
        height: 33px;
    }

    .td_height_lg_34 {
        height: 34px;
    }

    .td_height_lg_35 {
        height: 35px;
    }

    .td_height_lg_36 {
        height: 36px;
    }

    .td_height_lg_37 {
        height: 37px;
    }

    .td_height_lg_38 {
        height: 38px;
    }

    .td_height_lg_39 {
        height: 39px;
    }

    .td_height_lg_40 {
        height: 40px;
    }

    .td_height_lg_41 {
        height: 41px;
    }

    .td_height_lg_42 {
        height: 42px;
    }

    .td_height_lg_43 {
        height: 43px;
    }

    .td_height_lg_44 {
        height: 44px;
    }

    .td_height_lg_45 {
        height: 45px;
    }

    .td_height_lg_46 {
        height: 46px;
    }

    .td_height_lg_47 {
        height: 47px;
    }

    .td_height_lg_48 {
        height: 48px;
    }

    .td_height_lg_49 {
        height: 49px;
    }

    .td_height_lg_50 {
        height: 50px;
    }

    .td_height_lg_51 {
        height: 51px;
    }

    .td_height_lg_52 {
        height: 52px;
    }

    .td_height_lg_53 {
        height: 53px;
    }

    .td_height_lg_54 {
        height: 54px;
    }

    .td_height_lg_55 {
        height: 55px;
    }

    .td_height_lg_56 {
        height: 56px;
    }

    .td_height_lg_57 {
        height: 57px;
    }

    .td_height_lg_58 {
        height: 58px;
    }

    .td_height_lg_59 {
        height: 59px;
    }

    .td_height_lg_60 {
        height: 60px;
    }

    .td_height_lg_61 {
        height: 61px;
    }

    .td_height_lg_62 {
        height: 62px;
    }

    .td_height_lg_63 {
        height: 63px;
    }

    .td_height_lg_64 {
        height: 64px;
    }

    .td_height_lg_65 {
        height: 65px;
    }

    .td_height_lg_66 {
        height: 66px;
    }

    .td_height_lg_67 {
        height: 67px;
    }

    .td_height_lg_68 {
        height: 68px;
    }

    .td_height_lg_69 {
        height: 69px;
    }

    .td_height_lg_70 {
        height: 70px;
    }

    .td_height_lg_71 {
        height: 71px;
    }

    .td_height_lg_72 {
        height: 72px;
    }

    .td_height_lg_73 {
        height: 73px;
    }

    .td_height_lg_74 {
        height: 74px;
    }

    .td_height_lg_75 {
        height: 75px;
    }

    .td_height_lg_76 {
        height: 76px;
    }

    .td_height_lg_77 {
        height: 77px;
    }

    .td_height_lg_78 {
        height: 78px;
    }

    .td_height_lg_79 {
        height: 79px;
    }

    .td_height_lg_80 {
        height: 80px;
    }

    .td_height_lg_81 {
        height: 81px;
    }

    .td_height_lg_82 {
        height: 82px;
    }

    .td_height_lg_83 {
        height: 83px;
    }

    .td_height_lg_84 {
        height: 84px;
    }

    .td_height_lg_85 {
        height: 85px;
    }

    .td_height_lg_86 {
        height: 86px;
    }

    .td_height_lg_87 {
        height: 87px;
    }

    .td_height_lg_88 {
        height: 88px;
    }

    .td_height_lg_89 {
        height: 89px;
    }

    .td_height_lg_90 {
        height: 90px;
    }

    .td_height_lg_91 {
        height: 91px;
    }

    .td_height_lg_92 {
        height: 92px;
    }

    .td_height_lg_93 {
        height: 93px;
    }

    .td_height_lg_94 {
        height: 94px;
    }

    .td_height_lg_95 {
        height: 95px;
    }

    .td_height_lg_96 {
        height: 96px;
    }

    .td_height_lg_97 {
        height: 97px;
    }

    .td_height_lg_98 {
        height: 98px;
    }

    .td_height_lg_99 {
        height: 99px;
    }

    .td_height_lg_100 {
        height: 100px;
    }

    .td_height_lg_101 {
        height: 101px;
    }

    .td_height_lg_102 {
        height: 102px;
    }

    .td_height_lg_103 {
        height: 103px;
    }

    .td_height_lg_104 {
        height: 104px;
    }

    .td_height_lg_105 {
        height: 105px;
    }

    .td_height_lg_106 {
        height: 106px;
    }

    .td_height_lg_107 {
        height: 107px;
    }

    .td_height_lg_108 {
        height: 108px;
    }

    .td_height_lg_109 {
        height: 109px;
    }

    .td_height_lg_110 {
        height: 110px;
    }

    .td_height_lg_111 {
        height: 111px;
    }

    .td_height_lg_112 {
        height: 112px;
    }

    .td_height_lg_113 {
        height: 113px;
    }

    .td_height_lg_114 {
        height: 114px;
    }

    .td_height_lg_115 {
        height: 115px;
    }

    .td_height_lg_116 {
        height: 116px;
    }

    .td_height_lg_117 {
        height: 117px;
    }

    .td_height_lg_118 {
        height: 118px;
    }

    .td_height_lg_119 {
        height: 119px;
    }

    .td_height_lg_120 {
        height: 120px;
    }

    .td_height_lg_121 {
        height: 121px;
    }

    .td_height_lg_122 {
        height: 122px;
    }

    .td_height_lg_123 {
        height: 123px;
    }

    .td_height_lg_124 {
        height: 124px;
    }

    .td_height_lg_125 {
        height: 125px;
    }

    .td_height_lg_126 {
        height: 126px;
    }

    .td_height_lg_127 {
        height: 127px;
    }

    .td_height_lg_128 {
        height: 128px;
    }

    .td_height_lg_129 {
        height: 129px;
    }

    .td_height_lg_130 {
        height: 130px;
    }

    .td_height_lg_131 {
        height: 131px;
    }

    .td_height_lg_132 {
        height: 132px;
    }

    .td_height_lg_133 {
        height: 133px;
    }

    .td_height_lg_134 {
        height: 134px;
    }

    .td_height_lg_135 {
        height: 135px;
    }

    .td_height_lg_136 {
        height: 136px;
    }

    .td_height_lg_137 {
        height: 137px;
    }

    .td_height_lg_138 {
        height: 138px;
    }

    .td_height_lg_139 {
        height: 139px;
    }

    .td_height_lg_140 {
        height: 140px;
    }

    .td_height_lg_141 {
        height: 141px;
    }

    .td_height_lg_142 {
        height: 142px;
    }

    .td_height_lg_143 {
        height: 143px;
    }

    .td_height_lg_144 {
        height: 144px;
    }

    .td_height_lg_145 {
        height: 145px;
    }

    .td_height_lg_146 {
        height: 146px;
    }

    .td_height_lg_147 {
        height: 147px;
    }

    .td_height_lg_148 {
        height: 148px;
    }

    .td_height_lg_149 {
        height: 149px;
    }

    .td_height_lg_150 {
        height: 150px;
    }
}

/* 
1...NAVBAR...... */
.navbar {
    padding: 15px 30px;
    transition: background-color 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    font-size: 16px;
    background-color: transparent;

}

.navbar.scrolled {
    background-color: var(--blue03-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: white;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--black-02_color);
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 10px;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--Secondary-color);

}

.btn-outline-primary {
    border-color: var(--white-01-color);
    color: var(--white-01-color);
    font-weight: 600;
    margin-left: 10px;
    border-radius: 13px;
    width: fit-content;
}

.btn-outline-primary:hover {
    background-color: var(--Secondary-color);
    color: white;
    border: none;
}

.btn-primary {
    background-color: var(--Secondary-color);
    font-weight: 500;
    margin-left: 10px;
    border-radius: 15px;
    border: none;
}

.btn-primary:hover {
    background-color: var(--blue01-color);
    color: var(--primary-color);
    background-color: var(--white-01-color);
}

.navbar .dropdown-toggle::after {
    display: none;
}

.navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar-nav .dropdown:hover>.nav-link i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--blue02-color);
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
        /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    }

    .navbar-nav .nav-link {
        color: var(--white-01-color);
        margin: 8px 0;
        border-bottom: 1px solid rgba(148, 144, 144, 0.2);
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .btn-container {
        margin-top: 15px;
    }
}


/* ......................HERO SECTION..................... */

.hero-section {
    position: relative;
    overflow: visible;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 45vh;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-logo-box {
    bottom: -40px;
    left: 120px;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.8) !important;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-logo-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


@media (max-width: 768px) {
    .hero-image {
        height: 20vh;
    }

    .hero-logo-box {
        bottom: -25px;
        left: 40px;
        width: 80px;
        height: 80px;
        padding: 10px;
    }
}

/* ...............................ABOUT SECTION...................... */

.partner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.About-title {
    color: var(--primary-color);
    font-size: 30px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-btn i {
    font-size: 18px;
}

.back-btn:hover {
    color: #007bff;
}

.content {
    text-align: justify;
}

.card {
    background: #fff;
    padding: 25px 30px;
    border-radius: 22px !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-06-color);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black-02_color);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--body-color);
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 28px;
}

.contact-info i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--body-color);
    font-size: 18px;
}

@media (max-width: 576px) {

    .About-title {
        font-size: 24px;
        text-align: center;
    }

    .back-btn {
        font-size: 15px;
        text-align: center;
    }

}

/* .........................FACALITY SECTION........................ */

.section-title .highlight {
    color: var(--primary-color);
}

.section-title {
    font-size: 40px;
    color: var(--black-02_color);
}

.section-subtitle {
    width: 60%;
    color: var(--body-color);
}

.banner-title {
    font-size: 40px;
    font-weight: 700;
}

.facilities-section {
    background-color: var(--blue04-color);
    padding: 60px;
}

.facilities-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: none;
    color: #111;
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
    width: fit-content;
    font-size: 15px;

}

.facilities-nav .nav-link img {
    width: 24px;
    height: 24px;
}

.facilities-nav .nav-link.active {
    background-color: var(--primary-color);
    color: #fff !important;
}

.facilities-nav .nav-link.active img {
    filter: brightness(0) invert(1);
}

.facility-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    justify-content: space-between;
}

.facility-content {
    flex: 1 1 55%;
}

.facilities-nav .nav-link.active svg {
    fill: #fff;
}

.facility-desc {
    color: var(--body-color);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.Default-btn {
    background-color: var(--Secondary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
}

.Default-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-01-color);
}

.facility-image img {
    border-radius: 12px;
    width: 380px;
    height: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    font-weight: 500;

    border-radius: 12px;
    border: none;

}

.btn-primary:hover {
    background-color: var(--Secondary-color);
    color: var(--white-01-color);
}

@media (max-width: 991px) {
    .facility-card {
        flex-direction: column;
        text-align: center;
    }

    .facilities-nav .nav-link {
        font-size: 15px;
    }

    .facility-image img {
        width: 100%;
    }
}


@media (max-width: 575.98px) {
    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .card-title {
        font-size: 16px;
        text-align: center;
        margin-bottom: 40px;
    }

    .section-subtitle {
        width: 100%;
        font-size: 15px;
        text-align: center;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .section-title {
        font-size: 32px;
    }

    .members-name .card-subtitle {
        text-align: center;
    }

    .section-subtitle {
        width: 80%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .section-title {
        font-size: 36px;
    }

    .card-subtitle {
        text-align: center;
        font-size: 12px;
    }

    .members-name {
        text-align: center;
        font-size: 15px;
    }

    .section-subtitle {
        width: 80%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .section-title {
        font-size: 38px;
    }

}

@media (min-width: 1200px) {
    .section-title {
        font-size: 40px;
    }

}

/* .........................PRODUCT SECTION........................ */

.product-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 12px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-05-color);
    width: 100%;

}

.product-img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 12px;
}

.card-text {
    font-size: 15px;
}

@media (max-width: 575.98px) {

    .product-img {
        height: 120px;
    }
}

/* ...................FOOTER SECTION..................... */

.footer {
    background-color: rgba(0, 33, 65, 1) !important;
    color: #fff;
    font-size: 14px;
    padding: 60px 0;
}

.footer h6 {
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 16px !important;
}

.footer p,
.footer a {
    color: #fff;
    font-size: 14px;
}

.footer-links li {
    position: relative;
    margin-bottom: 15px;
}

.footer-links li a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--Secondary-color);
}

.footer-logo-img {
    max-width: 90px !important;
}

.footer-logo {
    max-width: 40px;
}

.footer a i {
    transition: transform 0.3s, color 0.3s;
}

.footer a:hover i {
    color: var(--Secondary-color);
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }

    .footer .d-flex {
        justify-content: center;
    }

    .footer-links li {
        padding-left: 0;
    }

    .footer-links li::before {
        left: -15px;
    }
}

/* ......................BREADCRUMBS.................... */

.breadcrumb {
    background: transparent;
    margin-top: 10px;
    padding: 0;
}

.breadcrumb-item {
    position: relative;
}

.breadcrumb-item a {
    color: #fff;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 20px;
}

.breadcrumb-item a:hover {
    color: #ddd;
    background-color: rgba(255, 255, 255, 0.1);
}

.breadcrumb-item.active {
    background-color: rgba(221, 239, 255, 1);
    color: var(--primary-color) !important;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 15px;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    color: #fff;
    font-weight: bold;
    padding: 0 10px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: none;
}


@media (max-width: 768px) {

    .breadcrumb-item a,
    .breadcrumb-item.active {
        padding: 4px 12px;
        font-size: 0.9rem;
    }

    .banner-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .breadcrumb-item a,
    .breadcrumb-item.active {
        padding: 3px 10px;
        font-size: 0.85rem;
    }

    .members-name,
    .card-subtitle {
        text-align: center;
    }

    .breadcrumb-item:not(:last-child)::after {
        padding: 0 8px;
        right: -12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .breadcrumb {
        font-size: 0.95rem;
    }

    .breadcrumb-item a {
        color: #fff !important;
    }
}


@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .breadcrumb {
        font-size: 1rem;
    }
}

.profile-img {
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    display: block;
    margin-left: 0;
}

.members-name {
    font-size: 16px;
    margin-top: 10px;
    color: var(--black-02_color);
}

.card-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
}

/* ....................PRODUCT PAGE..................... */
.box-title {
    font-size: 17px;
    color: var(--body-color);
    font-weight: 500;
}

.nav-pills .nav-link {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-align: left;
    width: 220px;
    margin-bottom: 10px;
    border: 1px solid var(--primary-color);
    padding-right: 2rem;
    justify-content: space-between;
    align-items: center;
    position: relative;
    display: flex;

}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    width: 220px;
    color: #fff !important;
}

.nav-pills .nav-link:hover {
    background-color: var(--Secondary-color);
    color: var(--white-01-color);
}

.nav-pills .nav-link::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--body-color);
    font-size: 16px;
    margin-right: -15px;
}

.nav-pills .nav-link.active::after {
    color: #fff;
}

.nav-pills .nav-link:hover::after {
    color: var(--primary-color);
}

.btn-sm[data-alpha] {
    border-radius: 6px;
    font-size: 16px;
    padding: 1px 6px !important;
    border: 2px solid var(--gray-04-color);
    margin: -2px;
}

.btn-sm[data-alpha].active {
    background-color: var(--Secondary-color);
    color: #fff;
    border: none;
    padding: 2px 8px !important;

}

@media (max-width: 992px) {
    .nav-pills {
        flex-direction: row !important;
        overflow-x: auto;
        gap: 0.5rem;
    }

    .nav-pills .nav-link {
        white-space: nowrap;
    }
}

#filterTabs,
#resetFilter,
.box-title {
    position: sticky;
    top: 40px;
    z-index: 10;
}


.col-lg-3.mb-4 {
    position: sticky;
    top: 20px;
    align-self: start;
}

.col-lg-3.mb-4 .nav {
    margin-bottom: 1rem;
}

.pagination {
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    border-radius: 6px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
    border: none;
    font-size: 16px;
    background-color: var(--gray-05-color);
    padding: 0;
}

.pagination .page-link:hover {
    background-color: var(--Secondary-color);
    color: #fff;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color);
}


.pagination .page-link i {
    pointer-events: none;
}

/* ...............................CONTACT PAGE.................................. */

.contact-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.contact-card p {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    color: var(--body-color);
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-form {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: auto !important;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    padding: 10px 12px;
}


/* ...............................PRODUCT DETAIL PAGE.................................. */

.product-image {
    width: 280px;
    border-radius: 10px;
}

.product-title {
    font-weight: 700;
    font-size: 28px;
}

.product-info li {
    font-size: 15px;
    margin-bottom: 4px;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    color: var(--body-color);
    background: #f8f8f8;
    border: 1px solid var(--gray-05-color) !important;
    font-weight: 500;
    border-radius: 6px 6px 6px 6px;
    margin-right: 6px;
}

.nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: #fff !important;
}

.table {
    border-color: #e0e0e0;
    font-size: 15px;
}

.related-card {
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.related-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sm-title {
    font-size: 17px;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--primary-color);
}

.pharma-info p {
    text-align: justify;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    margin-left: 20px;
}

.black-bullets {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.black-bullets li {
    margin-bottom: 0.6rem;
    line-height: 1.5;
    text-align: justify;
    color: #000;
}

/* ...............................CPD PROVIDERS .................................. */
.Services-section {
    background-color: var(--blue04-color);
    padding: 60px;
}

.courses-section {
    background-color: rgba(241, 244, 252, 1);
    padding: 40px;
}

.course-card {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    height: 280px;
    transition: transform 0.3s;
}
.course-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; 
  background: linear-gradient(to top, rgba(2, 114, 219, 1), transparent);
  pointer-events: none; 
  border-radius: 0 0 12px 12px;
  z-index: 1;
}
.course-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bottom-title {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 2;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    transition: opacity 0.3s;
}

.course-footer {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 0 10px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.course-footer .btn {
    font-size: 12px;
    flex: 1;
}

.course-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 3;
}

.course-type,
.course-duration,
.course-credits {
    font-size: 12px;
}
.course-subtitle{
    font-size: 12px;
    color: var(--white-01-color);
}
.course-detail{
    font-size: 12px;
}
.course-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 114, 219, 0.8);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.course-card:hover .overlay {
    opacity: 1;
}

.course-card:hover .course-info {
    opacity: 1;
}

.course-card:hover .bottom-title {
    opacity: 0;
}

.course-card:hover .course-footer {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .course-footer {
        flex-direction: column;
        gap: 5px;
    }
}

.btn {
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 10px !important;
    border-radius: 12px;
}


.btn-outline {
    border: 2px solid var(--white-01-color);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--blue02-color);
}

.btn-Secondary {
    background-color: var(--Secondary-color);
    border: none;
    color: #fff;
}

.btn-Secondary:hover {
    background-color: var(--blue01-color);
    color: var(--white-01-color);
}

.course-footer .btn {
    flex: 0 0 auto;
}

.Training-section{
    background-color: var(--blue04-color);
    padding: 60px;
}

.Primary-badge {
  background-color: var(--Secondary-color) !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: none !important;
  padding: 7px, 16px !important;
}

.Secondary-badge {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;

}
.Affiliation-text{
    font-size: 14px;
}
.Coordinators-name{
    font-size: 17px;
    color: black;
    font-weight: 600;
}

.topic-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.topic-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.topic-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--body-color);
  font-weight: bold;
}

.nav-tabs .nav-link {
    color: var(--body-color);               
    font-weight: 500;           
    background-color: transparent; 
    border: none;               
    padding: 5px 10px;
    transition: all 0.3s ease;
    border-radius: 12px !important;
    border-radius: 0;           
}
.nav-tabs .nav-link:hover {
    color: var(--primary-color);            
    background-color: rgba(0,123,255,0.1); 
}
.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color); 
    font-weight: 600;
}

.nav-tabs .nav-link:focus {
    box-shadow: none;
}


@media (max-width: 576px) {
    .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}
.course-img {
    height: 400px;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 35px; 
    height: 35px;
    top: 50%;
    border-radius: 16px;
    transform: translateY(-50%);
    background: var(--blue04-color) !important;
    color: var(--primary-color) !important;
    border: none;
}
