/* -----------------
global settings 
------------------*/

@import url('poppins-fonts.css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    outline: none;
}

::before,
::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Helvetica, Sans-Serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

.wrapper {
    width: 100%;
    height: 100vh;
    padding: 0 50px;
    background-color: #2b2b2b;
}

.inner-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    background-color: #fff;
}

/*Master Header Styles*/
.wrapper .mast-head {
    width: 100%;
    height: 8vh;
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    column-gap: 40px;
    padding: 5px 20px;
    background-color: #7697ca;
}

.wrapper .mast-head .name {
    /*width: 45%;*/
}

.wrapper .mast-head .name p {
    font-size: clamp(18px, 2.5vw, 40px);
    line-height: 1;
    margin-top: -5px;
    margin-bottom: 0;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
}

.wrapper .mast-head .name p a {
    color: #fff !important;
}

.wrapper .mast-head .desc {
    /*width: 55%;*/
}

.wrapper .mast-head .desc .heading {
    font-family: "Times New Roman", Sans-Serif;
    font-size: clamp(18px, 1.5vw, 24px);
    margin: 0;
    line-height: 16px;
    color: #2a2a2a;
    text-transform: capitalize;
}

.wrapper .mast-head .desc .sub-heading {
    font-size: clamp(10px, 1.2vw, 14px);
    color: #2a2a2a;
    font-weight: 500;
    font-family: 'Poppins';
    margin-top: 7px;
    margin-bottom: 0;
    line-height: 1.2;
}

/*Menu Styles*/
.wrapper .menu {
    width: 100%;
    height: 5vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 20px;
    background-color: black;
}

.wrapper .menu ul {
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
}

.wrapper .menu ul li {
    display: inline-block;
    margin-right: 25px;
}

.wrapper .menu>ul>li>a {
    font-size: 15px;
    color: #ffffff;
    font-family: 'Poppins';
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.wrapper .menu ul li a:hover {
    opacity: 0.8;
}

.wrapper .menu ul li.dropdown-btn {
    position: relative;
}

.wrapper .menu ul li.dropdown-btn i {
    margin-left: 5px;
    font-size: 10px;
    position: relative;
    top: -2px;
}

.wrapper .menu ul li .dropdown-content {
    display: none;
    min-width: 300px;
    position: absolute;
    top: calc(100% + 5px);
    background-color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 5px;
    border: 1px solid #000000;
    text-align: left;
}

.wrapper .menu ul li.dropdown-btn:hover .dropdown-content {
    display: block;
}

.wrapper .menu ul li .dropdown-content li {
    display: block;
    width: 100%;
}

.wrapper .menu ul li .dropdown-content li a {
    position: relative;
    font-size: 14px;
    color: #000000;
    padding: 3px 10px;
    display: block;
    height: 28px;
    border: 1px solid #fff;
}

.wrapper .menu ul li .dropdown-content li a:hover {
    background-color: #000;
    color: #fff;
}

/*Main Styles*/
.wrapper .main {
    /* border: 1px solid red; */
    width: 100%;
    height: 81vh;
    display: flex;
    flex-wrap: wrap;
    /*overflow: hidden;*/
}

.wrapper .main .center {
    width: 75%;
    padding: 3vh;
    background-color: #ffffff;
}

.wrapper .main .center img.page-image {
    width: 100%;
    height: 74vh;
}

.wrapper .main .advert {
    width: 25%;
    padding: 3vh 3vh 3vh 0;
    background-color: #ffffff;
}

.wrapper .main .advert:not(.sidebar1) a {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.wrapper .main .advert.sidebar1 {
    position: relative;
}

.wrapper .main .advert.sidebar1 a {
    position: absolute;
    display: block !important;
    height: 35px;
    width: 200px;
    left: 50%;
    transform: translateX(-56%);
}

.wrapper .main .advert.sidebar1 .anchor1 {
    bottom: calc(3vh + 65px);
}

.wrapper .main .advert.sidebar1 .anchor2 {
    bottom: calc(3vh + 11px);
}

.wrapper .main .advert img {
    width: 100%;
    height: 74vh;
}

/* Homepage */

.wrapper .main .homepage {
    position: relative;
}

.wrapper .main .homepage a {
    position: absolute;
    display: block !important;
    height: 25px;
    width: 140px;
}

.wrapper .main .homepage .anchor1 {
    bottom: 36.5vh;
    right: 13%;
}

.wrapper .main .homepage .anchor2 {
    bottom: 10.5vh;
    left: 20.5%;
}

.form-widget .form-widget-head h5 {
    background-color: #000;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 5px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.form-widget .input-wrapper {
    background-color: #fdfdd9;
    padding: 10px 20px 4px;
}

.form-widget {
    position: absolute;
    bottom: calc(3vh + 4%);
    right: 3.5vw;
    width: 400px;
    height: 29vh;
}

#register-form .two-column {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 16px;
}

#register-form input:not([type="submit"]) {
    border: 2px solid transparent !important;
    background-color: #fff !important;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 14px;
    height: 40px;
    padding-left: 8px;
    box-shadow: none !important;
    outline: none !important;
}

#register-form input:not([type="submit"]):focus {
    border-color: #395A9A !important;
}

#register-form input[type="submit"] {
    background-color: #395A9A !important;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    border: none;
    box-shadow: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1;
    padding: 8px 10px;
}

.footer {
    background-color: grey;
    height: 6vh;
    padding: 1.5vh;

}

.footer p {
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    font-size: 16px;
}

.footer p a {
    color: #fff !important;
}

.footer p a:hover {
    text-decoration: underline !important;
}

@media only screen and (max-width: 1300px) {
    .form-widget {
        transform: scale(0.85, 0.85);
        bottom: calc(3vh + 5%);
        right: 2vw;
    }
}