/*!
 * Name: layout.css
 * Date: 2021-12-31
 * Credits: Mohammed Ba'ashar, https://www.bytsnbytes.com
 * Email: mabaashar@gmail.com;
 */
/*-----------------------------------------------------------------------------------
  0. UI
  1. components
  2. Backgrounds
  3. cards
  4. effects
  6. buttons
----------------------------------------------------------------------------------- */


/*
=========================================
0. UI (user interface)
=========================================
*/

html,body{
  height: 100%;

}
/*logo*/

.logo img{
  max-width: 100px;
  height: auto;
}

.rel_col{
  position: relative;
}

.brand_img{
  width: 150px;
  height: auto;
}

.inline-list li{
    display: inline;
}


/*
=========================================
1. components
=========================================
*/

/*page loader*/
 .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
}
 .overlay .overlayDoor:before , .overlay .overlayDoor:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: yellow;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    transition-delay: 0.8s;
}

 .overlay .overlayDoor:before {
    left: 0;
}
 .overlay .overlayDoor:after {
    right: 0;
}
 .overlay.loaded .overlayDoor:before {
    left: -50%;
}
 .overlay.loaded .overlayDoor:after {
    right: -50%;
}
 .overlay.loaded .overlayContent {
    opacity: 0;
    margin-top: -15px;
}
 .overlay .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
 .overlay .overlayContent .skip {
    display: block;
    width: 130px;
    text-align: center;
    margin: 50px auto 0;
    cursor: pointer;
    color: #fff;
    font-family: 'Nunito';
    font-weight: 700;
    padding: 12px 0;
    border: 2px solid #fff;
    border-radius: 3px;
    transition: 0.2s ease;
}
 .overlay .overlayContent .skip:hover {
    background: #ddd;
    color: #444;
    border-color: #ddd;
}
 .loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}
 .loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spinInner 1s linear infinite;
}
 @keyframes spin {
    0% {
       transform: rotate(0deg);
   }
    100% {
       transform: rotate(360deg);
   }
}
 @keyframes spinInner {
    0% {
       transform: rotate(0deg);
   }
    100% {
       transform: rotate(-720deg);
   }
}

/*tags*/
.tags > a{
  background-color: #D8D8D8;
  border-radius: 0.1875rem;
  padding: 5px 5px;
  margin: 5px 8px 5px 0;
  text-transform: uppercase;
  font-size: 10px !important;
  color: #575757;
  text-decoration: none;
  font-weight: 500;
}
.tags > a:hover{
  color: #ffffff;
  background-color: #ffc107;
  transition: 0.3s;
}

/*feature*/
.feature {
  margin: 15px 0 15px 0;
  width: 60%;
  margin: 0 auto;
  padding: 0 3px 5px 3px;
  transition: transform 250ms;

}
.feature:hover {
  background-color: #FFFFFF !important;
  background-image: none !important;
  color: #000 !important;
  transform: translateY(-10px);
}
.feature_light {
  margin: 15px 0 15px 0;
  width: 60%;
  margin: 0 auto;
  padding: 0 3px 5px 3px;
  transition: transform 250ms;

}
.feature_light:hover {
  background-color: #FFA900 !important;
  background-image: none !important;
  color: #262626 !important;
  transform: translateY(-10px);
}
.feature_dark {
  margin: 15px 0 15px 0;
  width: 60%;
  margin: 0 auto;
  padding: 0 3px 5px 3px;
  transition: transform 250ms;

}
.feature_dark:hover {
  background-color: #000 !important;
  background-image: none !important;
  color: #FFFFFF !important;
  transform: translateY(-10px);
}

/*accordion*/
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion:hover {
  background-color: #ccc;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/*video div*/
::-webkit-scrollbar {
   width: 20px;
}
 ::-webkit-scrollbar-thumb {
   background: lightgray;
   border-radius: 5px;
}

 .video {
   width: 100%;
   height: 400px;
   margin: auto;
   display: block;
   border: none;

}
.video_info{
  left: 35%;
  top: 45%;
  }

.video_info_2{
  position: absolute;
  top: 70%;
  left:23%;
}
  .close-btn {
   width: 100px;
   height: 50px;
   display: block;
   margin: 50px auto;
   cursor: pointer;
   border: 2px solid black;
   background-color: white;
}

.popup-btn{ 
 left: 45%;
 top: 45%;
 padding: 15px;
 margin-bottom: 50px;
}
 .video-popup {
   display: none;
   width: 100%;
   height: 100vh;
   margin: auto;
   position: fixed;
   top: 0;
   boxshadow: 10px 10px 10px 10px black;
   z-index: 99999;
}
 .popup-content {
   background: black;
   position:fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 800px;
   height: auto;
}
 .popup-title {
   padding: 30px;
   margin: 0 auto;
   color: red;
   text-transform: uppercase;
}

/*circles*/
.circle1{
  color: darkviolet;

}
.circle2{
    color: darkorange;

}
.circle3{
    color: darkgreen;

}
.circle4{
    color: crimson;

}
.circle5{
  color: cyan;
  
}
.circle6{
  color: yellow;
  
}

.tasks_right{
  font-size: 13px;
}
 /* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99999;
}

.show_btn{
  position: fixed;
  top: 45%;
  z-index: 99999;
  display: none;
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
} 
/*
=========================================
2. Backgrounds
=========================================
*/
             
.seen_bg_1{
  background-color: #FDBA4D;

}
.seen_bg_2{
  background-color: #2E4D8E;
}
.bg_clipped_1{
  clip-path: polygon(0% 15%, 0 0, 15% 0%, 85% 0%, 100% 0, 100% 15%, 98% 78%, 54% 95%, 45% 84%, 20% 100%, 15% 85%, 0 100%);
}
.t_dark{
  background-color: rgba(0, 0, 0, .5);
}
.wallpaper_responsive {
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.bg_light_gradient1{
background: linear-gradient(97deg, rgba(20,33,61,1) 60%, rgba(252,163,17,1) 60%); 
}
.bg_light_gradient2{
background: linear-gradient(97deg, rgba(20,33,61,1) 0%, rgba(252,163,17,1) 62%); 
}
.bg_light_gradient3{
background: linear-gradient(90deg, rgba(253,29,29,1) 2%, rgba(252,72,17,1) 43%, rgba(252,163,17,1) 65%, rgba(255,219,190,1) 85%);
}
.bg_dark_gradient1 {
  background: -webkit-linear-gradient(70deg, #343A40 50%, #ADB5BD 40%);
  background: -o-linear-gradient(70deg, #343A40  50%, #ADB5BD 40%);
  background: -moz-linear-gradient(70deg, #343A40  50%, #ADB5BD 40%);
  background: linear-gradient(70deg, #343A40 50%, #ADB5BD 40%);
}
.bg_dark_gradient2{
  background: linear-gradient(220deg, rgba(52,58,64,1) 0%, rgba(99,103,108,1) 35%, rgba(142,148,154,1) 100%); 
}

/*
=========================================
3. cards
=========================================
*/


/*person card 5*/
.sg_person_card_5 .profile_pic {
  max-width: 100%;
}

.sg_person_card_5 .name {
  font-weight: bold;
  font-size: 25px;
}

.sg_person_card_5 a {
  color: inherit;
}

.sg_person_card_5 .about_p {
  font-size: 15px;
}

.sg_person_card_5 .fab {
  font-size: 18px;
  width: 40px;
  height: 40px;
  padding-top: 10px;
}

.sg_person_card_5 .fab:hover {
  border-color: #ffffff;
  color: #ffffff;
}
.sg_person_card_5_bg {
  -webkit-filter: blur(4px);
  filter: blur(4px);
  position: absolute;
}

/*
=========================================
4. effects
=========================================
*/

  /*frosted glass*/
  .frosted_g {
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 5px;
    z-index: 1;
    position: relative;
    background: inherit;
    overflow: hidden;
    border: solid 1px #797D62;
  }

  .frosted_g:before {
    content: "";
    position: absolute;
    background: inherit;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    filter: blur(7px);
    margin: -20px;
  }
  .frosted_g_2 {
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    border-radius: 5px;
    z-index: 1;
    position: relative;
    background: inherit;
    overflow: hidden;
    border: solid 1px #797D62;
  }

  .frosted_g_2:before {
    content: "";
    position: absolute;
    background: inherit;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    filter: blur(2px);
    margin: -20px;
  }

.circle_avatar {
  z-index: 5;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #ccc;
  border: 3px solid #fff;
}

.circle_avatar_left {
  z-index: 5;
  width: 100px;
  height: 100px;
  float: left;
  border-radius: 50%;
  overflow: hidden;
  background: #ccc;
  border: 3px solid #fff;
}

.circle_avatar_right {
  z-index: 5;
  width: 100px;
  height: 100px;
  float: right;
  border-radius: 50%;
  overflow: hidden;
  background: #ccc;
  border: 3px solid #fff;
}

.rounded_c{
  border-radius: 25px;
}

.tag_shape{
clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0 100%);
}


.bg_tra_black{
  background-color: rgba(0, 0, 0,0.4);
}

/*Particle div*/
.wrapper {
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  overflow: hidden;
}
.circle_container {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 10px;
  transform-origin: left center;
}
.circle_container .circle {
  position: absolute;
  border-radius: 100%;
  background: rgba(33, 55, 255, 0.9);
  left: 0;
  opacity: 0;
  animation-name: move;
  animation-duration: 20s;
  animation-iteration-count: infinite;
}
@keyframes move {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(70vmin);
    opacity: 0;
  }
}
.wrapper .name_container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80vmin;
  height: 80vmin;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  box-shadow: inset 0px 0px 30px 30px rgba(200, 200, 200, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wrapper .name_container > div {
  font-family: 'Pacifico', cursive;
  color: rgba(255, 255, 255, 0.7);
}
.wrapper .name_container .name {
  font-size: 5.5vmax;
}
.wrapper .name_container .designation {
  margin-top: 10px;
  font-size: 2vmax;
}


/*
=========================================
5. buttons
=========================================
*/

.btn_seen1{
  background-color: #EA9102 !important;
  color: #FFFFFF;
  border-color: #000 !important;
}
.btn_seen1:hover{
  background-color: #213766 !important;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
 .btn_seen3:hover {
   cursor: pointer;
   color: transparent;
}
 .btn_seen3:hover:before {
   left: 100%;
   width: 25%;
}
 .btn_seen3:hover:after {
   left: 100%;
   width: 70%;
}
 .btn_seen3:hover .icon-right.after:after {
   left: -80px;
   color: white;
   transition: 0.2s 0.2s ease all;
}
 .btn_seen3:hover .icon-right.after:before {
   left: -104px;
   top: 14px;
   opacity: 0.2;
   color: white;
}

.hb_btn {
  margin: 10px auto;
  border: yellow;
  padding: 5px 5px;
  font-size: 14px;
  position: relative;
}

.hb_btn::before {
  transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  content: '';
  width: 20%;
  height: 100%;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
}

.hb_btn-text {
  color: #ffffff;
  mix-blend-mode: difference;
}

.hb_btn:hover::before {
  background: #FFFFFF;
  width: 100%;
}

.hb_btn.rounded {
  border-radius: 50px;
}

.hb_btn.rounded .text-green {
  color: #00F0B5;
  mix-blend-mode: difference;
}

.hb_btn.rounded::before {
  border-radius: 50px;
  width: 25%;
  background: #00F0B5;
}

.hb_btn.rounded:hover::before {
  background: #00F0B5;
  width: 100%;
}



 .icon-right {
   position: absolute;
   top: 0;
   right: 0;
}
 .icon-right:after {
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   content: '\f144';
   font-size: 24px;
   display: inline-block;
   position: relative;
   top: 26px;
   transform: translate3D(0, -50%, 0);
}
 .icon-right.after:after {
   left: -250px;
   color: black;
   transition: 0.15s 0.25s ease left, 0.5s 0.05s ease color;
}
 .icon-right.after:before {
   content: 'Play';
   position: absolute;
   left: -230px;
   top: 14px;
   opacity: 0;
   transition: 0.2s ease-in all;
}
/*============================*/


 body .content {
  margin-top: 100px;
   width: 33.33%;
   display: inline-block;
   left: 25%;
   right: -25%;
   position: relative;
   height: 300px;
   max-width: 300px;
}
 body .circle_inner__layer {
   width: 600px;
   height: 200px;
   transition: all 0.4s;
   position: absolute;
   top: 0;
   left: -200px;
}
 body .circle_inner__layer img {
   width: 100%;
   position: absolute;
   bottom: 0;
}
 body .circle {
   position: absolute;
   left: 0;
   right: 0;
   margin: auto;
   top: 50%;
   width: 200px;
   transform: translateY(-50%);
   transition: all 0.5s;
   cursor: pointer;
}
 body .circle:hover .circle_shine {
   top: 330px;
   left: -200px;
}
 body .circle_shine {
   background: white;
   width: 600px;
   transition: 0.3s;
   height: 200px;
   opacity: 0.2;
   top: -10px;
   left: -90px;
   transform: rotate(45deg);
   position: absolute;
   z-index: 2;
}
 body .circle:hover h2, body .circle:hover h3 {
   opacity: 1;
   top: -36px;
}
 body .circle:hover .content_shadow {
   transform: scale(1.1);
   top: -22px;
}
 body .circle:hover h3 {
   transition: all 0.2s 0.04s;
}
 body .circle:hover h2 {
   transition: all 0.2s;
}
 body .circle .circle_inner__layer:nth-of-type(1) {
   top: 0px;
   left: 0px;
}
 body .circle .circle_inner__layer:nth-of-type(2) {
   top: 0px;
   left: -210px;
}
 body .circle .circle_inner__layer:nth-of-type(3) {
   top: 0px;
   left: -440px;
}
 body .circle_title {
   text-align: center;
}
 body .circle_title h2, body .circle_title h3 {
   opacity: 0;
   color: #4a7479;
   margin: 0;
   transition: all 0.2s 0.04s;
   position: relative;
   top: -10px;
}
 body .circle_title h3 {
   transition: all 0.2s;
   color: #b0d5d6;
   font-size: 15px;
}
 body .circle_inner {
   border-radius: 200px;
   background: #b0d5d6;
   overflow: hidden;
   margin: auto;
   width: 200px;
   z-index: 1;
   height: 200px;
   position: relative;
}
 body .circle_inner:hover {
   transform: scale(1.1);
}
 body .circle_inner:hover .circle_inner__layer:nth-of-type(1) {
   left: -80px;
   transition: all 4s linear;
}
 body .circle_inner:hover .circle_inner__layer:nth-of-type(2) {
   left: -400px;
   transition: all 4s linear;
}
 body .circle_inner:hover .circle_inner__layer:nth-of-type(3) {
   left: -140px;
   transition: all 4s linear;
}
 body .content_shadow {
   width: 200px;
   box-shadow: 0px 31px 19px -2px #e0e8f9;
   height: 20px;
   border-radius: 70%;
   position: relative;
   top: -44px;
   transition: all 0.3s;
   z-index: 0;
}
 
/*======RESPONSIVE CSS=========*/

/* X-Small devices (portrait phones, less than 576px)
 No media query for `xs` since this is the default in Bootstrap*/

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {

    .video_info{
    left: 40%;
  }

  .video_info_2{
    left: 30%;
  }

}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {

  .video_info{
    left: 40%;
  }

  .video_info_2{
    left: 30%;
  }

}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

  .video_info{
    left: 44%;
  }

  .video_info_2{
    left: 36%;
  }


}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

    .video_info{
    left: 44%;
  }

  .video_info_2{
    left: 38%;
  }

}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {}
