@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

:root {
    --blue: #0071E3;
    --blue-hover: #0071E3; 
    --blue-100: #EBF5FF;
    --blue-200: #C2E0FF;
    --blue-300: #99CCFF;
    --blue-400: #70B8FF;
    --blue-500: #47A3FF;
    --blue-600: #1F8FFF;
    --blue-800: #005CB8;
    --blue-900: #00478F;
    --blue-1000: #003366;
    --blue-1100: #001F3D;
    --blue-1200: #000A14;
    --white: #fff;
    --white-hover: #f5f5f5;
    --black: #000;
    --black-hover: #333;
    --borderColor: #80808054;
    --font-instrument: "Instrument Sans", sans-serif;
    --font-inter: "Inter", sans-serif;
}

.sk-container {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.sk-section-padding-y {
    padding: 100px 0;
}

.sk-img {
    width: 100%;
    height: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.sk-btn {
    display: flex;
    flex-direction: row;
    gap: 7px;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 7px;
    background-color: var(--blue);
    width: 100%;
    border: 1px solid #ffffff00;
    max-height: 46px;
    color: var(--white);
    transition: .3s;
}

.sk-btn-sec {
    background-color: (var(--white));
    color: var(--black-hover);
    border: 1px solid var(--borderColor);
    white-space: nowrap;
}

.sk-btn:hover {
    background-color: var(--blue-800);
    color: var(--white);
}

.sk-btn-sec:hover {
    background-color: var(--white-hover);
    cursor: pointer;
}

.sk-btn p {
    color: var(--white);
    font-size: 16px;
}

.sk-btn-sec:hover p,
.sk-btn-sec:hover {
    color: var(--black);
}

.sk-btn svg {
    fill: var(--white);
}

.sk-btn-sec svg {
    fill: var(--black-hover);
}

.sk-btn-2 {
    color: var(--white);
    text-transform: capitalize;
    background-color: #5287cc1a;
    border-radius: 100px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 9px 20px;
    font-weight: 600;
    line-height: 26px;
    transition: all .4s;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -4px 12px #5287cc1a, inset 0 1px 8px #3778af;
    border: none;
}

.sk-input-design {
    padding: 10px;
    outline: none;
    border: 1px solid rgba(128, 128, 128, 0.45);
    border-radius: 4px;
}

@media all and (max-width: 1320px){
    .sk-container {
        max-width: 700px;
    }
}

@media all and (max-width: 700px){
    .sk-container {
        max-width: 400px;
    }
}

@media all and (max-width: 400px){
    .sk-container {
        max-width: 95%;
    }
}