/*!
 * Start Bootstrap - Landing Page v5.0.9 (https://startbootstrap.com/theme/landing-page)
 * Copyright 2013-2020 Start Bootstrap
 * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-landing-page/blob/master/LICENSE)
 */

body {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
}

p {
  font-size: large;
}

p.pspace {
  white-space: pre;
}

/* header.masthead {
  position: relative;
  background-color: #343a40;
  background: url("../img/bg-masthead.jpg") no-repeat center center;
  background-size: cover;
  padding-top: 8rem;
  padding-bottom: 8rem;
} */


section.masthead2 {
  position: relative;
  /* background-color: #687e92; */
  background-color: #7ca0db;
  background-size: cover;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.pi-card {
  display: inline-block;
  width: 45%;
  max-width: 100%;
  vertical-align: top;
  position: relative;
  left: 50px;
}

.image-tv {
  display: inline-block;
  width: 30%;
  vertical-align: top;
  position: relative;
  left: 200px;
}

@media screen and (max-width: 992px) {
  .image-tv {
    display: inline-block;
    width: 40%;
    vertical-align: top;
    position: relative;
    left: 100px;
  }
}

@media screen and (max-width: 768px) {
  .image-tv {
    display: block;
    width: 40%;
    position: relative;
    left: 100px;
  }
}

.para-1 {
  width: 100%;
  vertical-align: top;
  text-align: justify;
  text-justify: inter-word;
}

.image-tv-hat {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.image-n1 {
  float:right;
  display: block;
  width: 60%;
  margin-right: 30px;
}

.image-n1-2 {
  float:right;
  display: block;
  width: 73%;
  margin-right: 10px;
}

.image-r4 {
  display: inline-block;
  width: 110%;
  vertical-align: top;
}

.image-400-plus {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.title-1 {
  width: 100%;
  vertical-align: top;
}

.title-2{
  display: block;
  width: 100%;
}

.justify {
  text-align: justify;
  text-justify: inter-word;
}

.card-columns {
  column-count: 4;
}

.card-columns-3 {
  column-count: 3;
}

.spec-columns {
  column-count: 3;
}

.spec-columns-2 {
  column-count: 2;
}

header.masthead .overlay {
  position: absolute;
  background-color: #212529;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

header.masthead h1 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  header.masthead {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  header.masthead h1 {
    font-size: 3rem;
  }
}


.showcase .showcase-text {
  padding: 3rem;
}

.showcase .showcase-img {
  min-height: 30rem;
  background-size: cover;
}

@media (min-width: 768px) {
  .showcase .showcase-text {
    padding: 7rem;
  }
}

.features-icons {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.features-icons .features-icons-item {
  max-width: 20rem;
}

.features-icons .features-icons-item .features-icons-icon {
  height: 7rem;
}

.features-icons .features-icons-item .features-icons-icon i {
  font-size: 4.5rem;
}

.features-icons .features-icons-item:hover .features-icons-icon i {
  font-size: 5rem;
}

.testimonials {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.testimonials .testimonial-item {
  max-width: 18rem;
}

.testimonials .testimonial-item img {
  max-width: 12rem;
  box-shadow: 0px 5px 5px 0px #adb5bd;
}

.call-to-action {
  position: relative;
  background-color: #343a40;
  background: url("../img/bg-masthead.jpg") no-repeat center center;
  background-size: cover;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.call-to-action .overlay {
  position: absolute;
  background-color: #212529;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

footer.footer {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* my custom styles: */

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}

/* ######### for js popup: ############*/

/* Popup container -*/
.popup {
  position: relative;
  /* display: inline-block; */
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  /* width: 1100px; */
  width: 400%;
  height: 1500%;
  background-color: rgb(207, 172, 172);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -950px;
  white-space: pre-line;
  /* overflow-x: auto; */
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgb(204, 170, 170) transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

/* ########## Modal popup ####################### */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  z-index: 1; /* Sit on top */
  bottom: 0;
  left: 0;
  width: 350px;
  height: 400px;
  padding: 5px 15px;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(53, 57, 63, 0.774);
  text-align: justify;
  border-radius: 40px;
  position: fixed;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%,-50%);
  -moz-transform:translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  white-space: pre-line;
}

.modal_right {
  display: none; /* Hidden by default */
  z-index: 1; /* Sit on top */
  bottom: 0;
  left: 0;
  width: 350px;
  height: 400px;
  padding: 5px 15px;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(53, 57, 63, 0.774);
  text-align: justify;
  border-radius: 40px;
  position: fixed;
  left: 70%;
  top: 50%;
  -ms-transform: translate(-50%,-50%);
  -moz-transform:translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  white-space: pre-line;
}

.height-100 {
  height: 100px;
}

.height-140 {
  height: 140px;
}

.height-230 {
  height: 230px;
}

.height-240 {
  height: 240px;
}

.height-280 {
  height: 280px;
}

.width-300 {
  width: 300px;
}

.text-center{
  text-align: center;
}

/* ######## my custom CSS ############ */

.btn-delete{
  margin-bottom:10px;
}

.hide {
  display: none;
}

.myDIV:hover + .popup {
  display: block;
  color: red;
}

.inter-programmes {
  position: relative;
  width: 100%;
  height: 25px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
}

.icon {
  width: 100%;
  border-radius: 20px;
}

.icon_50 {
  width: 50%;
  border-radius: 20px;
}

.borderad {
  border-radius: 20px;
}

.underline {
  text-decoration: underline
}

.mail {
  color: rgb(28, 52, 73);
}

.fakeButtons {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid #000;
  position: relative;
  top: 0px;
  left: 6px;
  background-color: #ff3b47;
  border-color: #9d252b;
  display: inline-block;
}

.fakeMinimize {
  left: 11px;
  background-color: #ffc100;
  border-color: #9d802c;
}

.fakeZoom {
  left: 16px;
  background-color: #00d742;
  border-color: #049931;
}

.fakeMenu, .fakeMenuLong {
  width: 750px;
  box-sizing: border-box;
  height: 25px;
  background-color: #bbb;
  margin: 0 auto;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  margin-left: 0%;
}

.fakeScreen, .fakeScreenLong {
  background-color: #151515;
  box-sizing: border-box;
  width: 750px;
  height: auto;
  margin: 0 auto;
  padding: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-left: 0%;
  overflow: hidden;
}

.fakeScreenLong {
  width: 1070px;
}

.fakeMenuLong {
  width: 1070px;
}

@media only screen
and (min-device-width : 200px)
and (max-device-width : 450px) {
  .fakeScreen {
    height: 120px;
    width: 250px;
  }
  .fakeScreenLong {
    height: 180px;
    width: 250px;
  }
  .fakeMenu, .fakeMenuLong {
    width: 250px;
  }
}

@media only screen
and (min-device-width : 450px)
and (max-device-width : 840px) {
  .fakeScreen, .fakeScreenLong {
    height: 120px;
    width: 450px;
  }
  .fakeMenu, .fakeMenuLong {
    width: 450px;
  }
}

@media only screen
and (min-device-width : 840px)
and (max-device-width : 1200px) {
  .fakeScreen {
    height: 120px;
    width: 600px;
  }
  .fakeScreenLong {
    height: 120px;
    width: 700px;
  }
  .fakeMenu {
    width: 600px;
  }
  .fakeMenuLong {
    width: 700px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap");

.command {
  font-family: "Courier Prime", monospace;
  color: #eee;
  font-size: 1.0rem;
  overflow-wrap: break-word;
}
.command::before {
  content: "$ ";
}
