@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: #000000;
}

html,
body {
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 400px;
    font-size: 14px;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background: #28b4df;
}

body::-webkit-scrollbar-thumb:hover {
    background: #1b89aa;
}

form {
    padding: 30px 0px 50px 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat";
    font-weight: 900;
    font-style: normal;
}

.clr-1 {
    color: #1AB0EC;
}

.clr-5 {
    color: rgb(255, 0, 0);
}

.f-55 {
    font-size: 55px;
}

.f-46 {
    font-size: 46px;
}

.f-42 {
    font-size: 42px;
}

.f-34 {
    font-size: 34px;
}

.f-30 {
    font-size: 30px;
}

.f-24 {
    font-size: 24px;
}

.f-20 {
    font-size: 18px;
}

.f-12 {
    font-size: 12px;
}

.fw-400 {
    font-weight: 400;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.p-tb-20 {
    padding: 20px 0px !important;
}

.marg-0 {
    margin: 0px !important;
}

.marg-20-0 {
    margin: 20px 0px !important;
}

.img-size-4 {
    height: 400px;
    width: auto !important;
}

label {
    padding: 6px 0px;
}

table {
    width: 100%;
}

table,
th,
td {
    border: 1px solid black;
    padding: 20px;
}

textarea {
    padding: 12px 15px;
    background: #e9e9e9;
    color: #000;
    border: unset;
    transition-duration: .8s;
    height: auto;
    border-radius: 5px;
    outline: none;
    width: 100%;
}

input {
    border-bottom: 1px solid #000;
    outline: none;
    padding: 12px 15px;
    background: #e9e9e9;
    color: #000;
    border: unset;
    transition-duration: .8s;
    height: auto;
    border-radius: 5px;
    width: 100%;
}

input[type="checkbox"] {
    width: auto !important;
}

input[type="radio"] {
    width: auto !important;
}

.submit-btn {
    color: #fff;
    border: none;
    background: #00000000;
    font-size: 15px;
    font-weight: 500 !important;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    transition: all 0.2s;
    z-index: 9;
}

.theme-btn2 {
    height: 52px;
    width: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background: #1AB0EC;
    cursor: pointer !important;
    transition: all 0.3s;

    &:hover {
        background-color: #ffffff;
    }
}

.theme-btn2 span {
    position: relative;
    z-index: 99;
    color: #ffffff;
}

svg.btn2-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    top: 0;
    fill: transparent;
}

rect.btn2-border {
    stroke-width: 4;
    stroke: #1AB0EC;
    stroke-dasharray: 500, 500;
    stroke-dashoffset: 0;
    transition: 2s;
}

.theme-btn2:hover rect.btn2-border {
    stroke-dasharray: 100, 400;
    stroke-dashoffset: 318;
}

.theme-btn2:hover .submit-btn {
    color: #1AB0EC !important;
    font-weight: 800 !important;
}

.logo {
    width: 220px;
}

header {
    padding: 50px;
}

.logo img {
    width: 100%;
}

/*--------book-cover Section-----------*/

.book-cover-body {
    margin: 20px 0px;
}

.book-cover div {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #000;
}

.book-cover div img {
    height: 100%;
    width: 100%;
    opacity: 0.7;
    transform: scale(1.3);
    transition: transform 0.5s, opacity 0.5s;
}

.book-cover div img:hover {
    transform: scale(1.0);
    opacity: 1;
}

.book-cover{
    position: relative;
}

.book-cover input[type="radio"] {
    display: none !important;
}

.book-cover label {
    border: 1px solid #fff;
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
}

.book-cover label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

.book-cover label img {
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

.book-cover input:checked+label {
    border-color: #ddd;
}

.book-cover input:checked+label:before {
    content: "✓";
    background-color: #1AB0EC;
    transform: scale(1);
}

.book-cover input:checked+label img {
    transform: scale(0.9);
    box-shadow: 0 0 5px #333;
    z-index: -1;
}

/*----- Desktop and Mobile Standard Resolution Responsive -----*/

@media only screen and (max-width: 1366px) {
    .f-55 {
        font-size: 44px;
    }
    
    .f-24 {
        font-size: 22px;
    }
    
    .f-30 {
        font-size: 24px;
    }
    
    header {
        padding: 50px 0px 20px 0px;
    }
}
@media only screen and (max-width: 1200x) {}
@media only screen and (max-width: 1024px) {
    .f-55 {
        font-size: 38px;
    }
    .f-24 {
        font-size: 21px;
    }
    .theme-btn2 {
        height: 48px;
    }
    .f-20 {
        font-size: 17px;
    }
    .img-size-4 {
        height: 334px;
    }
}
@media only screen and (max-width: 768px) {
    .f-24 {
        font-size: 20px;
    }
    .f-55 {
        font-size: 34px;
    }
    .logo img {
        width: 90%;
    }
    .theme-btn2 {
        height: 44px;
    }
}
@media only screen and (max-width: 767px) {
    table, th, td {
        padding: 6px;
    }
    .img-size-4 {
        height: 180px;
        width: 100% !important;
    }
}
@media only screen and (max-width: 575px) {

    .theme-btn2 {
        margin-left: 15px !important;
    }
    .f-24 {
        font-size: 19px;
    }
    .f-30 {
        font-size: 22px;
    }
    .submit-btn {
        font-size: 14px;
    }
    .f-55 {
        font-size: 32px;
    }
    .logo-img-sec img {
        width: 100%;
    }
    .img-size-4 {
        height: 148px;
    }
    
}