.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 1000000000000000000;
    display: flex;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#preloader:after {
    left: auto;
    right: 0;
}

#preloader .loader_line {
    margin: auto;
    width: 1px;
    height: 250px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.loader_line:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards;
}

.loader_line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #999999;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms;
}

@keyframes lineheight {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

@keyframes lineround {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
}

/*hiding all*/
.preloaded .loader_line:after {
    opacity: 0;
}

.preloaded .loader_line {
    opacity: 0;
    height: 100% !important;
}

.preloaded:before,
.preloaded:after {
    -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@keyframes preloadedzero {
    0% {
        width: 50%;
    }

    100% {
        width: 0%;
    }
}

body {
    margin: 0;
    background-image: url("primary-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page {
    min-width: calc(100vw - 30px);
    min-height: calc(100vh - 30px - 80px);
    padding: 15px 0 ;
}

.page_wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    max-width: 800px;
    margin: auto;
    text-align: center;
    min-height: 70vh;
    padding-top: 35px;
}

.page__personal-img {
    margin-bottom: 30px;
}

.page__personal-img img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.page__logo {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 30px;
}

.page__logo a {
    display: inline-flex;
    margin: auto;
}

.page__logo img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.page__info h1 {
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 500;
    color: black;
    margin-bottom: 8px;
}

.page__info h3 {
    color: #7b7b7b;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.page__contact {}

.page__contact ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page__contact ul li {
    display: inline-block;


}

.page__contact ul li a {
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
    background-color: #cc9900;
    color: white;
    display: inline-flex;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.2s all ease-in-out;
}

.page__contact ul li a:hover {
    background-color: #00213b;
}

.page__contact ul li a i {
    font-size: 20px;
}

.page__contact__download-contact a {
    background-color: #00213b;
    justify-content: center;
    align-items: center;
    color: white;
    display: inline-flex;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.2s all ease-in-out;
    font-size: 18px;
    padding: 10px 15px;
    min-width: 180px;
    max-width: 100%;
}
.page__contact__download-contact a:hover {
    background-color: #000000;
}
.background__layer{
    /* background-color: #886a0e; */
    background-color: #00213b;
    width: 100%;
    height: 40px;
}

@media only screen and (max-width: 600px) {
    .page__logo img{
        max-width: 240px;
    }
    .page__personal-img , .page__logo ,.page__contact ul , .page__contact__download-contact{
        padding: 0 15px;

    }
    .page__personal-img img{
        width: 240px;
        height: 240px;
    }
    .page__contact ul{
        margin-bottom: 20px;
    }
    .page__contact ul li{
        margin-bottom: 10px;
    }
  }
