* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*:focus {
    outline: none;
}

:root {
    /* COLORS */
    --bg: #FCFCFC;
    --bg-text: #FCFCFC;
    --color-text: rgb(0, 0, 0);
    --hearder-text: #FCFCFC;
    --onscroll-text-color: rgba(0,0,0,1);
    --drop-menu-background: rgba(0, 0, 0, 0.95);
    --main-header-onscroll: rgba(0, 0, 0, 0.9);
    --main-header-shadow-color: rgba(102, 101, 101, 0.5);
    --card-color: #39393b;
  
    /* FONT */
    --main-header-font-family: "librebaskerville-bold", "Times New Roman", Times, serif, 'sans-serif';

    /* MAIN HEADER */
    --main-header-menu-width: 450px;
    --main-header-menu-button-height: 40px;
    --main-header-menu-button-width: 80px;

    /* TRASITION */
    --main-header-transition: all 0.35s ease;
}

html[data-theme='dark'] {
    --bg: #333333;
    --bg-text: rgba(0,0,0,1);
    --color-text: rgb(255, 255, 255);
    --card-color: #3a404b;
}
body{
    height: 100%;
    margin: 0;
    background: var(--bg);
}

/* Menu start */
.main-header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
    height: 70px;
    font-family: var(--main-header-font-family); 
    font-weight: bold;
    border: none;   
    text-transform: uppercase;
    transition: var(--main-header-transition);
    z-index: 1000;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1140px;
}
.main-header-logo {
    margin: 20px;
    max-height: 70px;
}
.main-header-menu {
    display: none;
    font-weight: 100;
    width: var(--main-header-menu-width);
}
.main-header-menu ul {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;    
    list-style-type: none;
}
.main-header-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: var(--main-header-secondary-color);*/
    background: transparent;
    color: var(--hearder-text);
    width: var(--main-header-menu-button-width);
    height: var(--main-header-menu-button-height);
    border-radius: 5px;
    margin: 5px;
    transition: var(--main-header-transition);
    text-decoration: none;
}
.main-header-menu a:hover {
    background: var(--main-header-shadow-color);
}

/* DROPDOWN MENU */
.dropdown-menu {
    display: flex;
    width: 100%;
}
.dropdown-menu ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    height: 0;
    top: 70px;
    left: 0;
    background: var(--drop-menu-background);
    overflow: hidden;
    transition: var(--main-header-transition);
}
.dropdown-menu a {
    height: calc(var(--main-header-menu-button-height) * 1.8);
    width: 100%;
    margin: 0;
    border: none;
    border-radius: unset;
    border-bottom: 1px solid black;
}
.dropdown-menu a:hover {
    box-shadow: unset;
}

/* DROPDOWN BUTTON */
.main-header-dropdown-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: var(--main-header-menu-button-height);
    min-width: Var(--main-header-menu-button-height);
    margin: 20px;
    margin-left: 0;
    margin-top: 15px;
    /*background: var(--main-header-secondary-color);
    border-radius: 5px;*/
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--main-header-transition);
    box-shadow: none;
    
}
.main-header-dropdown-button:hover {
    box-shadow: 0px 4px 10px var(--main-header-shadow-color);
}

  
.main-header-dropdown-button .bar1, .main-header-dropdown-button .bar2, .main-header-dropdown-button .bar3 {
    /*width: 35px;*/
    height: 5px;
    background-color: rgb(255, 255, 255);
    transition: 0.4s;
    border-radius: 5px;
}

.bar1{width: 30px; margin: 6px 0 6px 5px;}
.bar2{width: 15px; margin: 6px 0 6px 20px;}
.bar3{width: 35px; margin: 6px 0 0 0;}
  
.change .bar1 {
    width: 35px;
    margin: 6px 0;
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
  
.change .bar2 {opacity: 0;}
  
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

/* MEDIA QUERIES MAIN HEADER */
@media (min-width: 768px) {
    .main-header-menu {
        display: flex;
    }
    .dropdown-menu {
        display: none;
    }
    .main-header-dropdown-button {
        display: none;
    }
}

.toggle-container{
    height: auto;
    width: auto;
    position: relative;
    padding: 20px;
}
 
.switch{
    -webkit-appearance: none;
    position: relative;
    width: 50px;
    height: 25px;
    background-image: url(https://i.postimg.cc/857jHw2q/Screenshot-2020-04-16-at-1-07-06-PM.png);
    background-size: cover;
    border-radius: 50px;
    outline: none;
    transition: background-image .90s;
    box-shadow: 0px 2px 5px 1px gray;
    cursor: pointer;
}
  
.switch:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: navy;
    border-radius: 50px;
    transition: all .9s;
    background-color: #F7CA33;
}
  
.switch:checked{
    background-image: url(https://i.postimg.cc/Hn0nstVK/Screenshot-2020-04-16-at-1-07-19-PM.png);
    transition: background-image .90s;
  
}
.switch:checked:before {
    transform: translate(100%);
    transition: all .9s;
    background-color: #ECF0F3;
}
/*menu end*/

/*body start*/
.page_start{
    text-decoration: none;
}

.begin{
    padding-top: 70px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.5)), url("rect856.png");
    z-index: -5;
    transform: translate3d(0px, 0px, 0px);
    background-position-x: left;
    background-position-y: center;
    background-size: auto;
    height: 420px;
    position: relative;
}

.body{
    margin: 0px;
    padding: 0px;
    color: var(--color-text);
}
.align_current_page{
    position: absolute;
    right: 10%;
    top: 35%;
    margin: 0 auto;
    text-align: right;
}

.align_current_page p{
    font-size: 60px;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: white;
}

.current_page{
    height: 50px;
    background-color: transparent;
    border: 2px solid white;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
    width: auto;
    padding: 15px 15px;
    border-radius: 30px; 
    position: absolute;
    right: 0;
}
/*body end*/

/*footer start*/
.footer_box{
    background-color: rgb(199, 60, 60);
    text-align: center;
    padding: 5px 0px 20px 0px;
    margin-top: 0;
}

.share_btn2{
    display: inline-block;
    text-decoration: none;
    width: 40px;
	margin:2px;
    height: 40px;
    line-height: 40px;
    font-size: 30px;
	color: rgba(17, 14, 14, 0.911);;
    border-radius: 12px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    font-weight: bold;
    transition: .3s;
}
.share_btn2 .fa {line-height:40px}

.shfb:hover, .shtw:hover{
    color: #125688;
}
.shli:hover{
    background: #3B5998; 
    color: white;
} 
.shin:hover{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);;
    color: white;
}
.share_btn2.shtw:hover {
    background: rgb(99, 136, 218);
    color: white;
}
.share_btn2.shfb:hover {
    background: #3B5998;
    color: bisque;
}

.footor_logo{
	margin: 10px 10px 0px 8px;
	width: 112px;
}
.footer_box h3{
    margin: 0px 10px 0px 10px;
}

.footer_box p a{
    color: black;
}

/*footer end*/

@media (max-width: 767px){
    .begin{
        background-position-x: 30%;
    }  
}