:root {
    --default-font-size: 16px;
    --default-border-radius: 10px;
    --font-size-large: 22px;
    --font-size-medium: 20px;
    --font-size-small: 14px;
    --h1-size: 32px;
    --h2-size: 28px;
    --h3-size: 26px;
    --color-blackish: #12141d;
    /* --color-green: #22cc74; */
    --color-green: #2e6ace;
}
* {
    outline: unset;
    margin: unset;
    padding: unset;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: var(--default-font-size);
    text-decoration: none;
    color: inherit;
    line-height: 2;
    max-width: 100%;
}
body {
    scroll-behavior: smooth;
    background-color: linear-gradient(180deg, #fcfcfc 0%, #fbfbfb 100%);
}
/* ..........UTILITIES............ */
section {
    padding: 40px 0;
}
.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 10px;
    margin-inline: auto;
}
.d-flex {
    display: flex;
}
.content-center {
    justify-content: center;
}
.align-center {
    align-items: center;
}
.text-center {
    text-align: center;
}
.h1,
h1 {
    font-size: var(--h1-size);
}
.h2,
h2 {
    font-size: var(--h2-size);
}
.h3,
h3 {
    font-size: var(--h3-size);
}
.text {
    color: #12141d;
}
.d-none {
    display: none;
}
.px-2rem {
    padding-left: 2rem;
    padding-right: 2rem;
}
.text-green {
    color: var(--color-green);
}
.content-img {
    width: 100%;
}
.pointer {
    cursor: pointer;
}
.d-none {
    display: none !important;
}
.border-unset {
    border: unset !important;
}
.pt-0 {
    padding-top: unset !important;
}
label {
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}
textarea {
    resize: vertical;
}
#exampleLoad {
    background: 0 0;
    border: 1px solid #e2e2e2;
    box-shadow: 0 4px 4px 0 #0000000d;
    border-radius: 6px;
    height: 30px;
    width: 30px;
}
.form-control {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s,
        -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
/* ................HEADER ............*/
header {
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    box-shadow: 0px 5px 10px 0px #2328690d;
}

nav {
    max-width: 1400px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
}
.logo-div {
    display: flex;
    gap: 10px;
    align-items: center;
}
.logo {
    width: 30px;
}
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.menu a {
    display: block;
    padding: 5px 10px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.2s all ease-in-out;
    color: black;
}
/* .menu:hover a {
    opacity: 0.4;
}

.menu a:hover {
    opacity: 1;
    color: black;
} */

.menu-icon {
    display: none;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked ~ .menu {
    transform: scale(1, 1);
}
/* .......DROPDOWN........ */

/* Dropdown */

.dropdown {
    display: inline-block;
    position: relative;
}

.dd-button {
    display: inline-block;
    border: 1px solid gray;
    border-radius: 4px;
    padding: 0px 30px 0px 20px;
    background-color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    color: black;
}

.dd-button:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black;
}

.dd-button:hover {
    background-color: #eeeeee;
}

.dd-input {
    display: none;
}

.dd-menu {
    position: absolute;
    top: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0;
    margin: 2px 0 0 0;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    list-style-type: none;
    min-width: fit-content;
    width: 100%;
    max-height: 150px;
    overflow: auto;
}

.dd-input + .dd-menu {
    display: none;
}

.dd-input:checked + .dd-menu {
    display: block;
    z-index: 999;
}

.dd-menu li {
    padding: 3px 10px;
    cursor: pointer;
    white-space: nowrap;
}

.dd-menu li:hover {
    background-color: #f6f6f6;
}

.dd-menu li a {
    display: block;
    padding: unset;
    font-size: 14px;
}

.dd-menu li.divider {
    padding: 0;
    border-bottom: 1px solid #cccccc;
}
.sign-up-btn {
    color: white !important;
    background-color: black;
    padding: 5px 15px !important;
    border-radius: 8px;
}
.black-btn {
    color: white !important;
    background-color: black;
    padding: 10px 15px !important;
    border-radius: 8px;
    margin-top: 1rem;
}
/* .......DROPDOWN END........ */
/* .................HEADER END ...................*/

/* HOME STYLE */
.hero-section {
    background-color: linear-gradient(180deg, #e8f3fa 0%, #ffffff 100%);
    min-height: 300px;
}

.home-hero-section {
    min-height: 350px;
    padding: 1rem;
    background: linear-gradient(256.19deg, #1dcfcf -1.94%, #5d68f3 73.1%);
    color: white;
}

.home-hero-section :is(*) {
    color: inherit;
}

.search-container {
    position: relative;
    max-width: 600px;
    width: 90%;
    margin-inline: auto;
}
.search__box {
    display: flex;
    width: 100%;
    background-color: white;
    border-radius: 1rem;
    align-items: center;
    margin-top: 2rem;
    margin-inline: auto;
    padding: 1rem 2rem;
    outline: unset;
    border: unset;
    position: relative;
    color: black;
}
.search__icon {
    position: absolute;
    right: 10px;
    top: 35%;
}

/* HOME STYLE END */
/* FOOTER STYLE */
/* FOOTER */
.footer {
    width: 100%;
    background: #00121b;
    display: block;
}

.inner-footer {
    width: 95%;
    margin: auto;
    padding: 30px 10px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: center;
}

.footer-items {
    width: 25%;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #fff;
}
.footer-items p {
    color: #a1a1aa;
}

.footer-items h1 {
    color: #fff;
}

.footer-items h3 {
    font-size: initial;
    color: #ffffff;
}
.border1 {
    height: 3px;
    width: 40px;
    background: #ff9800;
    color: #ff9800;
    background-color: #ff9800;
    border: 0px;
}

ul {
    list-style: none;
    /* color: #fff; */
    font-size: 15px;
    letter-spacing: 0.5px;
}

.footer ul a {
    text-decoration: none;
    outline: none;
    color: #a1a1aa;

    transition: 0.3s;
}

.footer ul a:hover {
    color: #ff9800;
}

.footer ul li {
    margin: 10px 0;
    height: 25px;
}

.footer li i {
    margin-right: 20px;
}

.social-media {
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.social-media a {
    text-decoration: none;
}

.social-media i {
    height: 25px;
    width: 25px;
    margin: 20px 10px;
    padding: 4px;
    color: #fff;
    transition: 0.5s;
}

.social-media i:hover {
    transform: scale(1.5);
}

.footer-bottom {
    padding: 10px;
    background: #00121b;
    color: #a1a1aa;
    border-top: 1px solid #1e293b;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.social_links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social_link {
    padding: 10px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social_link img {
    min-width: 15px;
    height: 15px;
}
.social_link:hover {
    background-color: #44b0ff;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.725rem;
    font-size: var(--font-size-large);
}

/* for tablet mode view */
/* FOOTER */
.locales {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
a.locale-tag {
    font-size: 16px;
    padding: 5px 10px;
    box-shadow: 0px 4px 8px #aaaaaa61;
}
/* FOOTER END */

/* FOOTER STYLE END */
/* ........MEDIA QUERIES...... */
/* FOOTER END */
@media screen and (max-width: 1275px) {
    .footer-items {
        width: 50%;
    }
}

@media (width <= 992px) {
    .menu {
        flex-direction: column;
        background-color: white;
        align-items: start;
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        z-index: 1;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .menu li:not(.dd-item) {
        margin-bottom: 10px;
        margin-left: 1rem;
    }

    .menu-icon {
        display: block;
        color: black;
        font-size: 28px;
        cursor: pointer;
    }
    .menu-center {
        display: none;
    }
}

/* for mobile screen view */

@media screen and (max-width: 660px) {
    .footer-items {
        width: 100%;
    }
}
