* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background-color: white;
    color: #282e32;
    font-size: 18px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

.content {
    display: flex;
    height: 100vh;
}

.left {
    position: relative;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
}

.left-inner {
    width: 400px;
}

.right {
    width: 60%;
}

.right img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

h5 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: rgb(192, 226, 240);
    z-index: 999;
}

@media (max-width: 768px) {
    .left {
        width: 100%;
    }
}


/*  */

.form-style input,
i {
    border: 0;
    background-color: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgb(185, 184, 184);
}

.form-style input :hover {
    background-color: #ecf1f7;
}

.form-style input:focus {
    border-bottom: 1px solid #007bff;
    box-shadow: none;
    outline: 0;
    background-color: white;
}

.font-8 {
    font-size: 12px !important;
    font-family: 'Source Sans Pro', sans-serif;
    ;
}


/* .btn {
    background-color: #;
    color: white;
} */

.btn:hover {
    color: white;
}

.text-color {
    color: #2a69b2;
}

.title {
    font-size: 24px;
    color: #2a69b2;
}

.font-14 {
    font-size: 14px;
}

.icon-color {
    color: #2a69b2;
}

input.checkbox-width {
    width: 15px;
    height: 15px;
}

.card {
    margin: 2.5%;
    justify-content: center;
    display: flex;
}

#toggler {
    margin-top: 15px;
    border: none;
    margin-left: -29px;
}

.title:after {
    background-color: orangered;
    bottom: -6px;
    height: 3px;
    width: 60px;
    position: relative;
    content: "";
    display: block;
}

.bgtheme {
    /* background-color: rgb(230, 227, 227); */
    border: none;
    height: 40px;
    width: 30px;
}

.fab {
    color: #2a69b2;
}


/*  */

.circle {
    position: absolute;
    border-radius: 50%;
    background: skyblue;
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
}


/* topcorner */

.small1 {
    width: 174px;
    height: 174px;
    right: -100px;
    top: -100px;
    background-color: #2A69B2;
}

.medium1 {
    width: 400px;
    height: 400px;
    right: -200px;
    top: -200px;
}

.large1 {
    width: 477px;
    height: 477px;
    right: -300px;
    top: -300px;
    background-color: #4688D4;
}

.xlarge1 {
    width: 637px;
    height: 637px;
    right: -400px;
    top: -400px;
    background-color: #89B3E3;
}


/* bottom corner */

.small {
    width: 174px;
    height: 174px;
    left: -100px;
    bottom: -100px;
    background-color: #2A69B2;
}

.medium {
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -200px;
}

.large {
    width: 477px;
    height: 477px;
    left: -300px;
    bottom: -300px;
    background-color: #4688D4;
}

.xlarge {
    width: 637px;
    height: 637px;
    left: -400px;
    bottom: -400px;
    background-color: #89B3E3;
}

.shade1 {
    opacity: 0.2;
}

.shade2 {
    opacity: 0.5;
}

.shade3 {
    opacity: 0.5;
}

.shade4 {
    opacity: 0.8;
}

.shade5 {
    opacity: 0.9;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(0.8);
    }
}

.bottom-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
}

.text-orange {
    color: #ef7d18;
}

.icon i {
    font-size: 22px;
}