body {
  line-height: 1.5;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  min-height: 100vh;
  transition: all 0.2s ease;
  background-color: var(--white-color);
}
body.hidden-scrolling {
  overflow-y: hidden;
}
* {
  margin: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1350px;
  margin: auto;
}

.header-content {
  max-width: 1350px;
  margin: auto;
  margin-top: -155px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
/*header*/

:root {
  --primary-color: #f7f7f7;
  --secondary-color: #050505;
  --box-color: #7e1d1d11;
  --nextlink-color: rgb(126, 15, 15);
  --hover-color: #e4e4e4;
  --content-text: #313030;
  --white-color: white;
  --history-color: #d199009a;
  --red-text: #751414;
  --ssl-color: #a1887f;
  --text-color: #1f1f1f;
  --banner-color: gray;
  --banner-text: #751414;
}

.dark-theme {
  --primary-color: #1a1919;
  --secondary-color: #fdfdfd;
  --hover-color: rgb(104, 16, 16);
  --nextlink-color: rgb(255, 193, 23);
  --white-color: #1a1919;
  --content-text: #fdfdfd;
  --history-color: #222020d0;
  --red-text: #b93e3e;
  --ssl-color: #9c614b;
  --text-color: #fcf8f8;
  --banner-color: rgb(131, 37, 37);
  --banner-text: #b93e3e;
}

.header {
  position: fixed;
  height: 60px;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: var(--primary-color);
  box-shadow: 0px 0.7px 5px 0px rgb(149, 149, 149);
  transition: all 0.2s ease;
}
.header-main {
  background-color: var(--primary-color);
  display: flex;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: all 0.2s ease;
}

.wrap-search {
  display: flex;
  flex-direction: row;
}

.wrap-search2 {
  display: none;
}

form {
  margin-top: 8px;
  right: 0;
  margin-right: 30px;
}

input[type="text"] {
  height: 30px;
}

#icon {
  width: 45px;
  cursor: pointer;
  right: 0;
  margin-right: 50px;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0px 5px 9px 0px rgb(196, 191, 191);
}

#icon:hover {
  opacity: 0.8;
  transition-duration: 300ms;
}

.ion-md-arrow-dropdown {
  color: #a19297;
}
.header .logo {
  padding: 0 15px;
}
.header .logo a {
  font-size: 19px;
  text-transform: capitalize;
  color: var(--secondary-color);
  margin-left: 50px;
}

.header .nav-menu {
  padding: 0 15px;
  float: left;
  margin-left: 140px;
  position: absolute;
}

.header .active {
  border-left: #dddcdc 0.7px solid;
}
.header .menu > .menu-item {
  display: inline-block;
  margin-left: -4px;
  position: relative;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 19px 0;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14.5px;
  color: var(--secondary-color);
  text-transform: capitalize;
  border-right: #dddcdc 0.7px solid;
  transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a {
  background-color: var(--hover-color);
}
.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 250px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--white-color);
  padding: 0px 0;
  border-left: 3px solid rgb(134, 30, 30);
  transform: translateY(10px);
  transition: all 0.1s ease;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 10px 10px;
  font-size: 14.5px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: var(--secondary-color);
  position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}
.header .open-nav-menu span:after {
  top: 7px;
}
.header .close-nav-menu {
  height: 40px;
  width: 40px;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.header .close-nav-menu img {
  width: 16px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.sub-menu2 {
  box-shadow: 7px 6px 10px -4px rgb(19, 18, 18);
  margin-top: -50px;
  margin-left: 247px;
  width: 100%;
  padding: 15px;
  padding-bottom: 1px;
  padding-top: 3px;
  border-left: 3px solid rgb(134, 30, 30);
  background-color: var(--primary-color);
  display: none;
  position: absolute;
}

.sub-menu2 li {
  padding: 10px;
  padding-top: 9px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  padding: fit-content;
  margin-top: 0;
  line-height: 20px;
  width: 100%;
  color: var(--secondary-color);
  text-transform: capitalize;
  text-align: left;
  z-index: 100;
  margin-left: -10px;
}

.sub-menu2 a {
  color: var(--secondary-color);
  padding: 10px;
  margin-left: -15px;
  padding-left: 10px;
  padding-right: fit-content;
  padding-top: 13px;
  padding-bottom: 13px;
  white-space: nowrap;
}

.sub-menu2 a:hover {
  background-color: var(--hover-color);
}

nav ul li:hover > ul {
  display: block;
  transition: 0.1s;
  transition-duration: 500ms;
}

.header2 {
  width: 100%;
  margin-top: 60px;
  height: 150px;
}
.header2 img {
  width: 100%;
  height: 150px;
}
.sdo-logo img {
  height: 130px;
  margin-top: -6px;
  margin-left: 40px;
  position: absolute;
}

.header-text {
  margin-top: 20px;
  margin-left: 185px;
  color: white;
}

.header-text h6 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  font-weight: 550;
}

.header-text h2 {
  color: #fff;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: 600;
  width: fit-content;
  font-size: 35px;
  border-top: white solid;
  position: relative;
}
.header-text h6 {
  color: white;
  font-size: 17px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
}

.large-3 {
  right: 0;
  margin-right: 20px;
  font-size: 15px;
  color: white;
  margin-top: -30px;
  position: relative;
  float: right;
}

.main-banner-wrap {
  width: 100%;
  margin-top: 28px;
}

.main-title-container {
  transform: translate(-50%);
  margin-left: 50%;
  width: 100%;
  margin-top: 0px;
  box-shadow: 0px 0.7px 3px 0px rgb(167, 155, 155);
}

.main-title {
  max-width: 1350px;
  width: 100%;
  margin: auto;
  padding: 30px;
}

.main-title h2 {
  color: var(--secondary-color);
  width: 100%;
  position: relative;
  margin-left: 0px;
  font-size: 22px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.banner3-container {
  max-width: 1390px;
  margin: auto;
}

.banner3-wrap {
  margin: auto;
  margin-top: 15px;
  width: 95%;
  padding: 10px;
  background-color: #dacbcb86;
  border-radius: 8px;
}

.banner3 {
  width: 100%;
  padding-top: 0;
}

.banner3 p {
  color: #000000;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: inline-block;
  font-size: 13px;
  padding-left: 10px;
  padding-top: 0px;
  font-weight: 500;
  margin-top: 0;
}

.banner3 a {
  color: #000000;
}

.banner-content {
  padding: 10px;
  padding-top: 0;
}

.banner-content p {
  margin-top: 10px;
  width: 100%;
  padding: 8px;
  font-weight: bold;
  border-radius: 10px;
  background-color: #851d1d;
  color: #ffc811;
}

.banner3-wrap p a:hover {
  color: rgb(255, 182, 23);
  text-decoration: underline;
}

/*home section*/
.home-section {
  max-width: 1350px;
  margin: auto;
  margin-top: 35px;
  display: block;
  background-position: center top;
}

#slider {
  position: relative;
  width: 900px;
  margin: auto;
  margin-top: 40px;
  height: 430px;
  border-radius: 5px;
  border: #f9a825 2px solid;
  overflow: hidden;
  box-shadow: 0px 5px 9px 0px rgb(139, 136, 136);
  object-fit: contain;
  z-index: 10;
}

#slider ul {
  position: relative;
  list-style: none;
  height: 100%;
  width: 10000%;
  padding: 0;
  margin: 0;
  transition: all 750ms ease;
  left: 0;
}
#slider ul li {
  position: relative;
  height: 100%;
  float: left;
}
#slider ul li img {
  width: 900px;
  height: 430px;
}

#slider #prev,
#slider #next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  text-align: center;
  color: white;
  text-decoration: none;
  position: absolute;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: all 150ms ease;
}
#slider #prev:hover,
#slider #next:hover {
  background-color: rgba(0, 0, 0, 0.5);
  text-shadow: 0;
}
#slider #prev {
  left: 10px;
}
#slider #next {
  right: 10px;
}

.innovation_image img {
  width: 100%;
  border-radius: 5px;
  padding: 0px;
  box-shadow: 0px 5px 9px 0px rgb(173, 169, 169);
}
.onward-container img {
  width: 100%;
  border-radius: 5px;
  padding: 0px;
  box-shadow: 0px 5px 9px 0px rgb(173, 169, 169);
}

.mid-wrap {
  max-width: 1350px;
}

#container {
  width: 95%;
  margin: 40px auto;
}

#primary {
  margin-top: 0;
  width: 23%;
  margin-left: -75%;
  display: inline-block;
  line-height: 0;
}

.left1,
.right1 {
  border-radius: 4px;
  border: #a8a8a8 1px solid;
  padding: 15px;
}

#primary .left1 img {
  width: 59%;
  transform: translate(-50%);
  margin-left: 50%;
}

.left2,
.left3,
.left4,
.left5,
.right2,
.right3,
.right4 {
  border-radius: 4px;
  padding: 15px;
  border: #a8a8a8 1px solid;
  margin-top: 15px;
}

.right5 {
  margin-top: 20px;
}

.right5 h3 {
  line-height: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  color: var(--secondary-color);
}

.right5 img {
  border: #a8a8a8 1px solid;
  margin-top: 20px;
  padding: 10px;
}

#primary img,
#secondary img {
  width: 100%;
}

#content {
  float: left;
  width: 50%;
  margin: auto;
  margin-left: 25%;
  border-radius: 4px;
}

.banner-container {
  max-width: 1350px;
  margin: auto;
  margin-top: 40px;
}

.banner-design-wrap {
  max-width: 1300px;
  margin: auto;
}
.shadow {
  border-radius: 6px;
  margin-left: 7.3%;
  width: 82.7%;
  color: #827717;
}

.shadow p {
  color: #827717;
  padding: 15px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 18px;
  text-align: center;
  visibility: hidden;
  font-weight: bold;
}

.shadow2-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
}

.content-banner {
  width: 83%;
  margin: auto;
  border-radius: 6px;
  color: white;
  padding: 15px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 18px;
  box-shadow: 0px 5px 9px 0px rgb(145, 143, 143);
  text-align: center;
  font-weight: bold;
  margin-top: -48px;
}

.mid1 {
    margin-top:15px;
}

.mid1,
.mid2,
.mid3,
.mid4,
.mid5 {
  background-color: #7e1d1d1c;
  border-radius: 4px;
  box-shadow: 0px 5px 6px 0px rgb(204, 198, 198);
}

.mid1 p {
  color: var(--secondary-color);
  border-radius: 4px;
  margin-left: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  padding: 15px;
  word-spacing: 8px;
  line-height: 25px;
}
#secondary {
  float: right;
  width: 23%;
  line-height: 0;
}

#primary a img:hover,
#secondary a img:hover {
  opacity: 0.8;
  transition: 0.2s;
  transition-duration: 200ms;
}

#footer {
  clear: both;
}

/*---------------------------back to top-----------------------------*/
#button {
  display: inline-block;
  background-color: #8a0202;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.3em;
  margin-top: -5px;
  margin-left: -10px;
  position: absolute;
  line-height: 50px;
  color: rgb(240, 188, 16);
}
#button:hover {
  cursor: pointer;
  background-color: rgba(51, 51, 51, 0.507);
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/*---------------------------back to top end-----------------------------*/

.footer {
  margin-top: 20px;
  width: 100%;
  height: 570px;
  background-color: #efefef;
  left: 0;
  position: absolute;
}

.footer-content {
  max-width: 1350px;
  margin: auto;
  margin-top: 350px;
}

.rp-container img {
  margin-top: 30px;
  margin-left: 30px;
  position: absolute;
  width: 150px;
}

.col-1 {
  margin-top: 30px;
  margin-left: 200px;
  width: 18%;
}

.col-1 p:nth-of-type(1),
.col-2 p:nth-of-type(1),
.col-3 p:nth-of-type(1) {
  margin-top: 0;
  color: #494949;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 10px;
}

.col-1 p:nth-of-type(2) {
  margin-top: 5px;
  color: #494949;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
}

.col-2 {
  margin-top: -54px;
  transform: translateX(-50%);
  margin-left: 50%;
  width: 20%;
}

.col-2 p:nth-of-type(2) {
  color: #494949;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
}

.col-2 p a {
  color: #494949;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
}

.col-3 {
  margin-top: -173px;
  margin-right: 180px;
  float: right;
  width: 20%;
}

.col-3 a {
  color: #494949;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  line-height: 20px;
}

.col-2 a:hover,
.col-3 a:hover {
  text-decoration: underline;
}

.CI {
  margin-top: -470px;
  margin-left: 440px;
  width: 25%;
}

.CI h1 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: rgb(41, 38, 38);
  font-size: 25px;
}

.CI p {
  color: rgb(41, 38, 38);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
}

.CI a {
  color: #811616;
}

.CI a:hover {
  text-decoration: underline;
}

.rnp-container img {
  width: 200px;
  margin-top: -220px;
  position: absolute;
  margin-left: 100px;
}

.infosystem {
  margin-top: -230px;
  transform: translateX(-50%);
  margin-left: 80%;
  width: 23%;
}

#IS-links {
  font-size: 30px;
  margin-top: 0;
}

.infosystem h1 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: rgb(41, 38, 38);
  font-size: 25px;
}

.infosystem #IS-links a {
  color: #811616;
  font-size: 18px;
  font-weight: 100;
}

.infosystem #IS-links a:hover {
  text-decoration: underline;
}

/* responsive */

@media (max-width: 991px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .header .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: var(--white-color);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a {
    color: var(--secondary-color);
    padding: 12px 15px;
  }
  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #8d0f0f;
  }

  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: var(--white-color);
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0px;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 39px;
    color: var(--secondary-color);
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }

  nav .sub-menu2 {
    display: none;
  }

  nav ul li > ul .ion-md-arrow-dropdown {
    display: none;
  }

  nav ul li:hover > .sub-menu2 {
    display: none;
  }

  .sub-menu2 {
    display: none;
    margin-left: 10px;
    margin-top: 0px;
  }

  nav .sub-menu2:hover {
    display: none;
  }

  .sub-menu2 a {
    padding: 15px;
    color: black;
    background-color: #f7f7f7;
  }

  .wrap-search {
    display: block;
    float: left;
  }

  form {
    float: left;
    margin-left: 0;
    left: 0;

    display: block;
    position: relative;
  }
}

@media (max-width: 1194px) {
  .header-main {
    height: 110px;
  }

  .header .nav-menu {
    top: 0;
  }

  .header .logo a {
    top: 18px;
    position: absolute;
  }

  .wrap-search {
    margin-top: 55px;
  }

  .header2 {
    margin-top: 110px;
  }
}

@media (max-width: 1024px) {
  .footer {
    height: 550px;
  }

  .rnp-container img {
    display: none;
  }

  .rp-container img {
    margin-top: 180px;
    width: 250px;
  }

  .col-1 {
    width: 90%;
    margin-left: 48%;
    margin-top: 480px;
    transform: translate(-50%);
    position: absolute;
  }

  .col-2 {
    width: 90%;
    margin-left: 48%;
    margin-top: 530px;
    transform: translate(-50%);
    position: absolute;
  }

  .col-3 {
    width: 40%;
    margin-left: 64%;
    margin-top: 470px;
    transform: translate(-50%);
    position: absolute;
  }

  .CI {
    top: 200px;
    position: relative;
    margin-left: 50%;
    width: 30%;
    transform: translate(-50%);
  }

  .infosystem {
    top: 200px;
    position: relative;
    margin-left: 81%;
    width: 30%;
  }
}

@media (max-width: 991px) {
  .wrap-search {
    display: none;
  }

  form {
    margin-top: 20px;
  }

  #icon2 {
    width: 45px;
    cursor: pointer;
    right: 0;
    margin-right: 220px;
    margin-top: 10px;
    position: absolute;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 5px 9px 0px rgb(196, 191, 191);
  }

  #icon2:hover {
    opacity: 0.8;
    transition-duration: 300ms;
  }

  .wrap-search2 {
    display: block;
  }

  input[type="text"] {
    margin-left: 85px;
  }

  .header-main {
    height: 40.84px;
  }

  .header {
    height: 40.84px;
    position: absolute;
  }

  .header .logo a {
    top: 10px;
    font-size: 16px;
    font-weight: 550;
    margin-left: 0;
  }

  .header2 {
    margin-top: 42px;
  }
}

@media (max-width: 840px) {
  .footer {
    height: 795px;
  }

  .rp-container img {
    float: right;
    margin-top: -320px;
    position: relative;
  }

  .CI {
    margin-left: 31%;
    margin-top: -180px;
    width: 55%;
    position: absolute;
  }

  .infosystem {
    margin-left: 31%;
    margin-top: 60px;
    width: 55%;
    position: absolute;
  }

  .col-1 {
    margin-top: 20px;
    margin-left: 49%;
  }

  .col-2 {
    margin-top: 80px;
    margin-left: 49%;
  }

  .col-3 {
    margin-top: 260px;
    margin-left: 49%;
    width: 90%;
  }
}

@media (max-width: 821px) {
  .right5 h3 span {
    margin-top: 20px;
    margin-left: -120px;
    position: absolute;
  }

  .right5 img {
    margin-top: 40px;
  }
}

@media (max-width: 721px) {
  .header2 img {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .sdo-logo img {
    transform: translate(-50%);
    margin-left: 50%;
    margin-top: 10px;
  }

  .header-text {
    margin-top: 150px;
    position: absolute;
    transform: translate(-50%);
    margin-left: 50%;
    width: 100%;
  }

  .header-text h6 {
    position: relative;
    margin: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 500px;
  }

  .header-text h2 {
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: auto;
    max-width: 500px;
  }

  .large-3 {
    margin-top: 330px;
  }

  .header2 img {
    height: 370px;
  }

  .banner {
    margin-top: 400px;
  }

  #slider {
    margin-top: 30px;
  }

  .main-title {
    margin-top: 375px;
  }
}

@media (max-width: 639px) {
  .trnsprncy-container {
    width: 100%;
    border: #a8a8a8 1px solid;
    border-radius: 4px;
    margin-bottom: 7px;
  }

  .trnsprncy-container img {
    border: none;
    margin-bottom: -3px;
    margin-left: 34%;
    width: 35%;
  }

  .right-side {
    margin-top: 16px;
    width: 95%;
    position: relative;
    margin-left: 5.5%;
  }
}

@media (max-width: 556px) {
  .rp-container img {
    width: 150px;
    margin-right: 10px;
  }
}

@media (max-width: 526px) {
  .footer {
    height: 755px;
  }

  .CI {
    white-space: nowrap;
  }
  .CI h1 {
    font-size: 23px;
  }

  .CI p {
    font-size: 16px;
    margin-top: 0;
  }

  .infosystem {
    margin-top: 20px;
    white-space: nowrap;
  }

  .infosystem h1 {
    font-size: 23px;
  }

  .infosystem p {
    font-size: 16px;
    margin-top: 0;
  }

  .infosystem #IS-links a {
    font-size: 15px;
  }

  .col-1 {
    margin-top: -30px;
  }

  .col-2 {
    margin-top: 20px;
  }

  .col-3 {
    margin-top: 210px;
  }
}

@media (max-width: 262px) {
  .header2 img {
    height: 450px;
  }

  .large-3 {
    margin-top: 400px;
  }
}

/*---------------responsive slider------------------*/

@media (max-width: 960px) {
  #slider {
    width: 800px;
  }

  #slider ul li img {
    width: 800px;
  }
}

@media (max-width: 870px) {
  #slider {
    width: 750px;
    height: 400px;
  }

  #slider ul li img {
    width: 750px;
    height: 400px;
  }
}

@media (max-width: 810px) {
  #slider {
    width: 700px;
    height: 380px;
  }

  #slider ul li img {
    width: 700px;
    height: 380px;
  }
}

@media (max-width: 760px) {
  #slider {
    width: 670px;
    height: 370px;
  }

  #slider ul li img {
    width: 670px;
    height: 370px;
  }
}

@media (max-width: 720px) {
  #slider {
    width: 640px;
    height: 350px;
  }

  #slider ul li img {
    width: 640px;
    height: 350px;
  }
}

@media (max-width: 696px) {
  #slider {
    width: 610px;
    height: 300px;
  }

  #slider ul li img {
    width: 610px;
    height: 300px;
  }
}

@media (max-width: 662px) {
  #slider {
    width: 580px;
    height: 280px;
  }

  #slider ul li img {
    width: 580px;
    height: 280px;
  }
}
@media (max-width: 636px) {
  #slider {
    width: 550px;
    height: 250px;
  }

  #slider ul li img {
    width: 550px;
    height: 250px;
  }
}
@media (max-width: 598px) {
  #slider {
    width: 520px;
    height: 220px;
  }

  #slider ul li img {
    width: 520px;
    height: 220px;
  }
}

@media (max-width: 554px) {
  #slider {
    width: 480px;
    height: 220px;
  }

  #slider ul li img {
    width: 480px;
    height: 220px;
  }
}

@media (max-width: 520px) {
  #slider {
    width: 430px;
  }

  #slider ul li img {
    width: 430px;
  }
}

@media (max-width: 480px) {
  #slider {
    width: 400px;
  }

  #slider ul li img {
    width: 400px;
  }
}

@media (max-width: 434px) {
  #slider {
    width: 370px;
  }

  #slider ul li img {
    width: 370px;
  }
}

@media (max-width: 411px) {
  #slider {
    width: 330px;
  }

  #slider ul li img {
    width: 330px;
  }
}

@media (max-width: 377px) {
  #slider {
    width: 310px;
    height: 190px;
  }

  #slider ul li img {
    width: 310px;
    height: 190px;
  }
}

@media (max-width: 347px) {
  #slider {
    width: 290px;
    height: 180px;
  }

  #slider ul li img {
    width: 290px;
    height: 180px;
  }
}

@media (max-width: 323px) {
  #slider {
    width: 270px;
    height: 170px;
  }

  #slider ul li img {
    width: 270px;
    height: 170px;
  }
}

@media (max-width: 305px) {
  #slider {
    width: 250px;
    height: 160px;
  }

  #slider ul li img {
    width: 250px;
    height: 160px;
  }
}
@media (max-width: 269px) {
  #slider {
    width: 240px;
    height: 140px;
  }

  #slider ul li img {
    width: 240px;
    height: 140px;
  }
}

/*--------------responsive slider end------------*/

/*--------------responsive content start-----------*/
@media (max-width: 639px) {
  #container {
    width: 93%;
    margin: 40px auto;
  }

  #content {
    width: 100%;
    margin: auto;
  }

  #primary {
    width: 100%;
    margin: auto;
    margin-top: 20px;
  }
  .next-link p {
    width: fit-content;
  }

  #primary .left1 img {
    width: 40%;
    transform: translate(-50%);
    margin-left: 50%;
  }

  #secondary {
    width: 100%;
    margin: auto;
    margin-top: 15px;
  }

  .right5 h3 span {
    margin-top: 0px;
    margin-left: 0px;
  }

  .right5 img {
    margin-top: 20px;
  }
}

/*--------------responsive content end-----------*/
