/* ? font poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ? font khmer  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Khmer:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

header {
    height: 70px;
    width: 100%;
    background-color: #008dda;
}

header .container-h {
    width: 90%;
    margin: auto;

}

header .container-h .nabvar-n {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container-h .nabvar-n .navbar-logo {
    margin-top: 20px;
    font-size: 25px;
    line-height: 70px;
    font-weight: 700;
    color: #f7eedd;
    text-decoration: none;
}

.logo-img {
    height: 100px;
    line-height: 100px;
}

header .container-h .nabvar-n .navbar-nav {
    display: flex;
    list-style: none;
}

header .container-h .nabvar-n .navbar-nav .nav-itemm .nav-Link {
    color: #f7eedd;
    text-decoration: none;
    font-size: 16px;
    padding: 20px;
    transition: 0.5s;
}

.navbar-search input {
    height: 30px;
    width: 200px;
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 0 10px;
}

.nabvar-n .navbar-nav .nav-itemm .nav-Link {
    display: block;
    position: relative;
}

.nabvar-n .navbar-nav .nav-itemm .nav-Link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease-in-out;
}

.nabvar-n .navbar-nav .nav-itemm .nav-Link:hover::after {
    width: 100%;
}

.nav-itemm p {
    display: none;
    position: absolute;
    top: 73px;
    color: #008dda;
    width: 100px;
    left: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.5s;
    z-index: 1;
}

.nabvar-n .navbar-nav .nav-itemm:hover p {
    display: block;
    transition: 0.5s;
}


.profile-dropdown {
    position: relative;
    width: fit-content;
  }
  
  .profile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    width: 150px;
    border-radius: 50px;
    color: dodgerblue;
    /* background-color: white;
    box-shadow: var(--shadow); */
  
    cursor: pointer;
  
    border: 1px solid #f7eedd;
    transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in,
      border 0.3s;
  }
  
  .profile-dropdown-btn:hover {
    background-color: rgba(30, 143, 255, 0.773);
    box-shadow: var(--shadow);
  }
  
  .profile-img {
    position: relative;
    width: 3rem;
    height: 3rem;
  
    border-radius: 50%;
   
    background-image: url(../assets/2024-05-01\ 11.22.09.jpg);
    background-position: center;
    background-repeat: no-repeat;
  
  
    background-size: cover;
  }
  
  a{
    text-decoration: none;
    color: white;
  }



#page-header {
    background-image: url(https://img.freepik.com/free-photo/aerial-view-business-team_53876-124515.jpg);
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat;
    flex-direction: column;
    padding: 14px;
}

#page-header h2 {
    color: #fff;
    font-size: 60px;
}


.aboutUs {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* background-color: beige; */
}

.aboutUs img {
    width: 550px;
    margin: 20px;
    border-radius: 10px;
}

.content {
    margin: 20px 0;
    /* background-color: black; */
}

.content h2 {
    font-size: 50px;
    color: #008dda;
}

.content h4 {
    font-size: 20px;
    color: #fff;
    margin: 10px 0;
}

.content h5 {
    margin-top: 20px;
}



.btn {
    font-weight: bold;
    border: 2px solid dodgerblue;
    cursor: pointer;
    padding: 10px 20px;
    color: white;
    margin-top: 30px;
    border-radius: 20px;
    transition: all 0.4s;
    background-color: dodgerblue;
}

.btn:hover {
    border: 2px solid dodgerblue;
    background: transparent;
    color: dodgerblue;
}







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

/* start: Globals */
* {
    font-family: sans-serif;
    box-sizing: border-box;
    font: inherit;
    font-family: 'Francois One', 'Bayon';
}

body {
    background-color: aliceblue;
}

.container {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 16px;
}

/* end: Globals */



/* start: Payment */
.payment-section {
    margin: 100px auto;
    padding: 48px 0;
}

.payment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.payment-header {

    text-align: center;
    height: 250px;
    padding: 24px;
    background-color: dodgerblue;
    border-radius: 12px;
    padding-bottom: 72px;
}

.payment-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: dodgerblue;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.payment-header-title {
    font-size: 30px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    margin-bottom: 4px;
}

.payment-header-description {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
}

.payment-content {
    padding: 24px;
    margin-top: -64px;
    position: relative;
}

.payment-content::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    height: 16px;
    border-radius: 4px;
    background-color: dodgerblue;
}

.payment-body {
    background-color: #fff;
    border-radius: 10px 10px 8px 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .05), inset 0 8px 0 rgba(0, 0, 0, .05);
    position: relative;
    padding-top: 8px;
    height: 283px;
    overflow: hidden;
}

.payment-plan-type img {
    border-radius: 25px;
    width: 180px;
    padding: 0 10px;
}

.payment-plan {
    background-color: rgba(169, 169, 169, 0.477);
    height: 90px;
    display: flex;
    align-items: center;
    padding: 12px;
}

.payment-plan-type {
    width: 40px;
    height: 40px;
    background-color: dodgerblue;
    color: white;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 8px;
}

.payment-plan-info-name a {
    color: #008DDA;
    text-decoration: none;
}

.payment-plan-info {
    margin: 60px;
    width: 100%;
    margin-right: 8px;
    display: grid;
}

.payment-plan-info-name {

    font-size: 13px;
    color: gray;
    margin-bottom: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.payment-plan-info-price {
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.payment-plan-change {
    color: dodgerblue;
    width: 90px;
    font-size: 12px;
    font-weight: 600;
    text-underline-offset: 2px;
}

.payment-plan-change:hover {
    color: dodgerblue;
}

.payment-summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
}

.payment-summary-name {
    font-size: 14px;
    color: #008DDA;
}

.payment-summary-price {
    font-weight: 500;
    font-size: 15px;
}

.payment-summary-divider {
    width: calc(100% - 16px);
    height: 0;
    margin: 12px auto;
    border-bottom: 1px dashed gray;
    position: relative;
}

.payment-summary-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: gray;
    box-shadow: inset 0 2px 16px rgba(0, 0, 0, .05);
}

.payment-summary-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: gray;
    box-shadow: inset 0 2px 16px rgba(0, 0, 0, .05);
}

.payment-summary-total {
    padding-bottom: 16px;
}

.payment-summary-total .payment-summary-name {
    color: gray;
}

.payment-summary-total .payment-summary-price {
    font-size: 16px;
    color: dodgerblue;
    font-weight: 600;
}

.payment-right {
    min-width: 0;
}

.payment-form {
    padding: 24px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
}

.payment-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.payment-method {
    display: flex;
    align-items: center;
    overflow-x: auto;
    padding: 6px 0;
    margin-bottom: 12px;
    width: 100%;
}

.payment-method input {
    display: none;
}

.payment-method-item {
    width: 80px;
    height: 80px;
    padding: 8px;
    border: 1px solid gray;
    border-radius: 8px;
    margin-right: 12px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

input:checked+.payment-method-item {
    border-color: dodgerblue;
}

input:checked+.payment-method-item::before {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: dodgerblue;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEwLjAwMDcgMTUuMTcwOUwxOS4xOTMxIDUuOTc4NTJMMjAuNjA3MyA3LjM5MjczTDEwLjAwMDcgMTcuOTk5M0wzLjYzNjcyIDExLjYzNTRMNS4wNTA5MyAxMC4yMjEyTDEwLjAwMDcgMTUuMTcwOVoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMSkiPjwvcGF0aD48L3N2Zz4=");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.payment-method-item>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment-form-group {
    position: relative;
    margin-bottom: 16px;
}

.payment-form-control {
    outline: transparent;
    border: 1px solid gray;
    border-radius: 8px;
    padding: 24px 16px 8px 16px;
    width: 100%;
    transition: all .15s ease-in-out;
}

.payment-form-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    color: gray;
    pointer-events: none;
    transition: all .1s ease-in-out;
}

.payment-form-control:focus {
    outline: 1px solid dodgerblue;
    border-color: dodgerblue;
}

.payment-form-control:focus+.payment-form-label,
.payment-form-control:not(:placeholder-shown)+.payment-form-label {
    top: 30%;
    font-size: 12px;
}

.payment-form-label-required::after {
    content: ' *';
    color: red;
}

.payment-form-group-flex {
    display: flex;
    align-items: center;
}

.payment-form-group-flex>* {
    width: 100%;
}

.payment-form-group-flex> :not(:last-child) {
    margin-right: 12px;
}

.payment-form-submit-button {
    text-decoration: none;
    background-color: dodgerblue;
    border-radius: 8px;
    outline: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: 600;
    padding: 16px;
    transition: all .15s ease-in-out;
}

.payment-form-submit-button:hover {
    background-color: dodgerblue;
}

.payment-form-submit-button>i {
    margin-right: 8px;
}

/* end: Payment */



/* start: Breakpoints */
@media screen and (max-width: 767px) {
    .payment-wrapper {
        grid-template-columns: 1fr;
    }

    .payment-content {
        padding: 16px;
    }

    .payment-content::before {
        top: 16px;
        width: calc(100% - 20px);
    }

    .payment-form-group-flex {
        display: block;
    }
}

/* end: Breakpoints */











.row {
    display: flex;
    flex-wrap: wrap;
}

.container-foter {
    max-width: 1170px;
    margin: auto;
}

ul {
    list-style: none;
}

.footer {
    background-color: #008eda;
    padding: 70px 0;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;

    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #F7EEDD !important;
    text-decoration: none;
    font-weight: 300;

    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}


.fot-img {
    width: 90%;
    margin: 100px auto;
    /* background-color: rgba(240, 248, 255, 0.592); */

    height: 400px;


    display: flex;
    flex-wrap: wrap;
}

.fot-1 {
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    position: relative;
    border-radius: 3.5px;

    overflow: hidden;
    transform: translate(-50%, -50%);

    top: 145px;
    left: 170px;



    width: 25%;
    height: 100%;

    margin-left: 100px;
}

.imgbox img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
}

.social {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    margin: 0;
    padding: 0;
}

.social li {
    list-style: none;
}

.social li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;

    text-align: center;
    background: dodgerblue;
    color: white;
    margin: 10px 5px;
    bottom: 0;
    border-radius: 4px;
    transition: 0.5s;
    transform: translate(200px);
    opacity: 0;

}

.social li a i {
    margin-top: 5px;
}

.fot-1:hover .social li a {
    transform: translate(0px);
    opacity: 1;
}

.fot-1 .social li a .fa {
    transition: .5s;
    font-size: 20px;

}

.fot-1 .text {
    width: 100%;
    height: 20%;
    background-color: white;
    position: absolute;
    z-index: 4;
    bottom: 0;

}

.text h3 {
    padding: 10px 20px;
}

.text span {
    padding: 0px 20px;
    color: gray;
    margin-top: 0;



}



.fot-2 {
    width: 25%;
    height: 100%;
    margin-left: 25px;




    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    position: relative;
    border-radius: 3.5px;
    overflow: hidden;
    transform: translate(-50%, -50%);

    top: 145px;

    left: 170px;

}

.imgbox img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
}

.social {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    margin: 0;
    padding: 0;
}

.social li {
    list-style: none;
}

.social li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;

    text-align: center;
    background: dodgerblue;
    color: white;
    margin: 10px 5px;
    bottom: 0;
    border-radius: 4px;
    transition: 0.5s;
    transform: translate(200px);
    opacity: 0;

}

.social li a i {
    margin-top: 5px;
}

.fot-2:hover .social li a {
    transform: translate(0px);
    opacity: 1;
}

.fot-2 .social li a .fa {
    transition: .5s;
    font-size: 20px;

}

.fot-2 .text {
    width: 100%;
    height: 20%;
    background-color: white;
    position: absolute;
    z-index: 4;
    bottom: 0;

}

.text h3 {
    padding: 10px 20px;
}

.text p {
    padding: 0px 20px;
    margin-top: 0;
    color: gray;




}





























.fot-3 {
    width: 25%;
    height: 100%;

    margin-left: 25px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    position: relative;
    border-radius: 3.5px;

    overflow: hidden;
    transform: translate(-50%, -50%);

    top: 145px;

    left: 170px;


}

.imgbox img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
}

.social {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    margin: 0;
    padding: 0;
}

.social li {
    list-style: none;
}

.social li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;

    text-align: center;
    background-color: dodgerblue;
    color: white;
    margin: 10px 5px;
    bottom: 0;
    border-radius: 4px;
    transition: 0.5s;
    transform: translate(200px);
    opacity: 0;

}

.social li a i {
    margin-top: 5px;
}

.fot-3:hover .social li a {
    transform: translate(0px);
    opacity: 1;
}

.fot-3 .social li a .fa {
    transition: .5s;
    font-size: 20px;

}

.fot-3 .text {
    width: 100%;
    height: 20%;
    background-color: white;
    position: absolute;
    z-index: 4;
    bottom: 0;

}

.text h3 {
    padding: 10px 20px;
}

.text p {
    padding: 0px 20px;
    margin-top: 0;
    color: gray;




}











.fot-4 {
    width: 20%;
    height: 100%;

    margin-left: 25px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    position: relative;
    border-radius: 3.5px;

    overflow: hidden;
    transform: translate(-50%, -50%);

    top: 145px;

    left: 170px;


}

.imgbox img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
}

.social {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    margin: 0;
    padding: 0;
}

.social li {
    list-style: none;
}

.social li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;

    text-align: center;
    background: dodgerblue;
    color: white;
    margin: 10px 5px;
    bottom: 0;
    border-radius: 4px;
    transition: 0.5s;
    transform: translate(200px);
    opacity: 0;

}

.social li a i {
    margin-top: 5px;
}

.fot-4:hover .social li a {
    transform: translate(0px);
    opacity: 1;
}

.fot-4 .social li a .fa {
    transition: .5s;
    font-size: 20px;

}

.fot-4 .text {
    width: 100%;
    height: 20%;
    background-color: white;
    position: absolute;
    z-index: 4;
    bottom: 0;

}

.text h3 {
    padding: 10px 20px;
}

.text p {
    padding: 0px 20px;
    margin-top: 0;
    color: gray;



}