/* Font Family*/
@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");
/* ========================= Css Variables Start ======================== */
:root {
  /* Font Family */
    --heading-font: "Poppins", sans-serif;
    --body-font: "Poppins", sans-serif;
  /* ========================= Theme Color Start ============================= */
    --base-h: 21;
    --base-s: 100%;
    --base-l: 55%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
    --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
    --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
  /* ========================= Theme Color End ============================= */
  /* ========================= Color Variables Start =========================== */
    --body-color: 0 0% 44%;
    --heading-color: 0 0% 4%;
    --section-bg: 33 17% 90%;
}

/* ========================= Css Variables End =========================== */
/* ================================= Common Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: #fff;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px 0;
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    font-weight: 700;
}

a {
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
    color: hsl(var(--heading-color));
}

a:hover {
    color: hsl(var(--base));
}

img {
    max-width: 100%;
    height: auto;
}

select {
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ================================= Common Typography Css End =========================== */
/* ======================  Style Section Start  ======================*/
.profile__wrap {
    max-width: 430px;
    width: 100%;
    margin-inline: auto;
    padding-top: 4px;
    padding-inline: 20px;
    position: relative;
    z-index: 1;
}

.profile__wrap::after {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 4px;
    content: "";
    background-image: -webkit-gradient(linear, left top, right top, from(#FF6C1B), to(#FFAA70));
    background-image: linear-gradient(to right, #FF6C1B, #FFAA70);
}

.profile__topbar {
    padding-top: 54px;
    padding-bottom: 44px;
    text-align: center;
    border-bottom: 1px solid hsl(var(--base));
}

.profile__topbar img {
    width: 240px;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    -webkit-box-shadow: 0 8px 28px hsl(var(--base)/0.28);
    box-shadow: 0 8px 28px hsl(var(--base)/0.28);
    margin-bottom: 27px;
}

.profile__topbar h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
}

.profile__topbar p {
    font-size: 11px;
    font-weight: 700;
    color: hsl(var(--base));
    text-transform: uppercase;
}

.profile__contact {
    margin-top: 20px;
}

.profile__contact ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.profile__contact ul li span {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #FFF5F0;
    border: 1px solid hsl(var(--base)/0.15);
    border-radius: 9px;
}

.profile__contact ul li h4 {
    font-size: 10px;
    font-weight: 500;
    color: hsl(var(--body-color));
    margin-bottom: 2px;
}

.profile__contact ul li a {
    font-size: 13px;
    font-weight: 600;
}

.profile__contact ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.profile__contact ul li:last-child span {
    background-color: #F6F4F1;
    border-color: rgba(10, 102, 194, 0.15);
}

.profile__bottom {
    margin-top: 60px;
    text-align: center;
}

.profile__bottom img {
    width: 266px;
}

.profile__buttons {
    margin-top: 32px;
    padding-inline: 66px;
    padding-top: 20px;
    padding-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 38px;
    width: 100%;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(70%, #F6F4F1), to(transparent));
    background-image: linear-gradient(to top, #F6F4F1 70%, transparent);
}

.profile__step span {
    width: 6px;
    height: 6px;
    background-color: hsl(var(--section-bg));
    border-radius: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.profile__step span.active {
    background-color: hsl(var(--base));
    width: 18px;
}

.profile__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
}

.common__btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background-color: #FF6C1B;
    -webkit-box-shadow: 0 4px 16px hsl(var(--base)/0.28);
    box-shadow: 0 4px 16px hsl(var(--base)/0.28);
    padding: 11px 21px;
    border-radius: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
}

.common__btn svg {
    width: 20px;
}

.common__btn:hover {
    color: #fff;
}

/* ======================  Style Section End  ======================*/
/*# sourceMappingURL=main.css.map */
