*,
figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
select {
  border: none;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #636466;
  line-height: 1.4;
  font-weight: 400;
  overflow-x: hidden;
  background: #fff;
}
body.hiddenoverflow {
  overflow: hidden;
}

.container-fluid {
  padding: 0 100px;
}
@media screen and (max-width: 1499px) {
  .container-fluid {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .container-fluid {
    padding: 0 15px;
  }
}

.sticky-header {
  position: fixed;
  left: 0px;
  top: 0;
  width: 100%;
  padding: 20px 0px;
  transition: all 0.5s ease;
  z-index: 99;
}
@media screen and (max-width: 1499px) {
  .sticky-header {
    padding: 20px 0;
  }
}
.sticky-header .navbar {
  padding: 0;
}
.sticky-header .navbar-brand {
  transition: all 0.5s ease;
}
.sticky-header .navbar-brand svg {
  width: 190px;
  fill: #ffffff;
}
@media screen and (max-width: 767px) {
  .sticky-header .navbar-brand svg {
    width: 160px;
  }
}
.sticky-header ul.navbar-nav li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 991px) {
  .sticky-header ul.navbar-nav li {
    margin-right: 10px;
  }
}
.sticky-header ul.navbar-nav li:last-child {
  margin-right: 0;
}
.sticky-header ul.navbar-nav li a {
  display: block;
  padding: 10px 0 5px;
  white-space: nowrap;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  line-height: 27px;
  position: relative;
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 1499px) {
  .sticky-header ul.navbar-nav li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .sticky-header ul.navbar-nav li a {
    font-size: 14px;
  }
}
.sticky-header ul.navbar-nav li a:hover, .sticky-header ul.navbar-nav li a.active {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.sticky-header ul.navbar-nav li a svg {
  width: 22px;
  fill: #ffffff;
}
.sticky-header ul.navbar-nav li.search a {
  padding: 15px 0 0;
}
.sticky-header ul.navbar-nav li.search a:hover {
  border: none;
}
.sticky-header .searchopen {
  margin-right: 25px;
  padding: 5px;
  cursor: pointer;
}
.sticky-header .searchopen svg {
  width: 20px;
  fill: #ffffff;
}
.sticky-header .megamenuopen {
  height: 23px;
  width: 40px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  position: relative;
  display: none;
}
@media screen and (max-width: 767px) {
  .sticky-header .megamenuopen {
    width: 30px;
    display: block;
  }
}
.sticky-header .megamenuopen span {
  height: 1px;
  width: 100%;
  position: absolute;
  top: 10px;
  background: #ffffff;
}
.sticky-header.sticky, .sticky-header.innersticky {
  top: 0;
  padding: 10px 0;
  background: #003F62;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .sticky-header.sticky, .sticky-header.innersticky {
    padding: 5px 0;
  }
}

.sidebarmenu {
  background: #003F62;
  position: fixed;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100%;
  z-index: 999;
  transition: all 0.5s ease-in-out;
  padding: 45px;
  box-shadow: -10px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 991px) {
  .sidebarmenu {
    right: -70%;
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .sidebarmenu {
    right: -105%;
    width: 100%;
  }
}
.sidebarmenu.opened {
  right: 0;
}
.sidebarmenu .closesidebar {
  position: absolute;
  top: 15px;
  right: 30px;
  cursor: pointer;
}
.sidebarmenu .closesidebar svg {
  fill: #ffffff;
  width: 24px;
}
.sidebarmenu .sidebarwrap {
  height: 100%;
}
.sidebarmenu .sidebarwrap ul {
  border-left: 1px solid #ffffff;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .sidebarmenu .sidebarwrap ul {
    border: none;
    padding: 0;
  }
}
.sidebarmenu .sidebarwrap ul li {
  display: block;
}
.sidebarmenu .sidebarwrap ul li a {
  font-size: 28px;
  padding: 10px 0;
  color: #ffffff;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .sidebarmenu .sidebarwrap ul li a {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .sidebarmenu .sidebarwrap ul li a {
    font-size: 20px;
  }
}
.sidebarmenu .sidebarwrap ul li a:hover {
  color: #cccccc;
}

section {
  padding: 110px 0;
}
@media screen and (max-width: 1499px) {
  section {
    padding: 70px 0;
  }
}
@media screen and (max-width: 991px) {
  section {
    padding: 55px 0;
  }
}
section.graypatch {
  background: #f3f3f3;
}

.clickbtn {
  padding: 12px 5px;
  width: 240px;
  text-align: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  font-size: 15px;
  display: inline-block;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1499px) {
  .clickbtn {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 767px) {
  .clickbtn {
    width: 190px;
  }
}
.clickbtn:hover {
  background: #ffffff;
  color: #003F62;
}
.clickbtn.filled {
  background: #003F62;
  color: #ffffff !important;
  border-color: #003F62;
}
.clickbtn.filled:hover {
  background: #003F62;
  border-color: #003F62;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.downloadpdf svg {
  width: 40px;
}
@media screen and (max-width: 991px) {
  .downloadpdf svg {
    width: 30px;
  }
}

.homebanner {
  position: relative;
}
.homebanner::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 63, 98, 0.2);
  content: "";
  z-index: 1;
}
.homebanner .homecaption {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 991px) {
  .homebanner .homecaption {
    text-align: center;
  }
}
.homebanner .homecaption h1 {
  color: #ffffff;
  font-size: 22px;
  margin: 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .homebanner .homecaption h1 {
    font-size: 16px;
  }
}
.homebanner .homecaption p {
  font-size: 40px;
  color: #00d8ff;
  margin: 0;
  font-weight: 600;
}
@media screen and (max-width: 1499px) {
  .homebanner .homecaption p {
    font-size: 34px;
  }
}
@media screen and (max-width: 1199px) {
  .homebanner .homecaption p {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .homebanner .homecaption p {
    font-size: 22px;
  }
}
.homebanner .homecaption p span {
  font-size: 200%;
  display: block;
  line-height: 1;
}
.homebanner .goldbar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 50%;
  width: auto;
  transform: translateY(-50%);
}
.homebanner .bannercta {
  position: absolute;
  bottom: 30px;
  right: 30px;
  padding: 7px 20px;
  background: #ffffff;
  color: #003F62;
  font-family: "Roboto Slab", serif;
  z-index: 5;
  font-size: 24px;
  border-radius: 5px;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .homebanner .bannercta {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
  }
}
.homebanner .bannercta:hover {
  background: #D8D8D8;
}

.clearboth {
  clear: both;
}

.allissue {
  width: 175px;
  position: relative;
  float: right;
  margin-top: -149px;
  z-index: 3;
}
@media screen and (max-width: 1499px) {
  .allissue {
    margin-top: -140px;
  }
}
@media screen and (max-width: 991px) {
  .allissue {
    margin-top: -135px;
  }
}
@media screen and (max-width: 767px) {
  .allissue {
    width: 100%;
    float: none;
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.allissue svg {
  width: 15px;
  fill: #003F62;
  position: relative;
  top: 0px;
}
.allissue .issuedropdown {
  width: 175px;
  display: block;
  position: relative;
  padding: 3px 0 5px 0;
  text-align: right;
  color: #003F62;
}
.allissue .issuedropdown span {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .allissue .issuedropdown {
    width: 100%;
    text-align: center;
    padding: 0 0 5px 0;
  }
}
.allissue ul {
  position: absolute;
  top: 28px;
  background: #ffffff;
  width: 100%;
  padding: 5px;
  right: 0;
  text-align: left;
  display: none;
}
@media screen and (max-width: 767px) {
  .allissue ul {
    position: relative;
    top: 10px;
  }
}
.allissue ul li {
  display: block;
}
.allissue ul li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  color: #636466;
  padding: 3px 10px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .allissue ul li a {
    font-size: 12px;
  }
}
.allissue ul li a:hover {
  background: #003F62;
  color: #ffffff;
}

.btm_arrow {
  position: absolute;
  width: 17px;
  height: 40px;
  bottom: 2rem;
  left: 50%;
  z-index: 3;
  border-radius: 10px;
  border: 2px solid #ffffff;
  transform: translateX(-50%);
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
  .btm_arrow {
    display: none;
  }
}
.btm_arrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  left: 4px;
  animation: bannerDownArrow 1s infinite linear;
}
.btm_arrow small {
  position: absolute;
  top: -18px;
  font-size: 10px;
  color: #ffffff;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 300;
  text-transform: uppercase;
}

@keyframes bannerDownArrow {
  0% {
    bottom: 25px;
    opacity: 1;
  }
  100% {
    bottom: 4px;
    opacity: 0;
  }
}
.ibmvideo {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 1199px) {
  .ibmvideo {
    height: 240px;
  }
}
@media screen and (max-width: 991px) {
  .ibmvideo {
    height: 350px;
    width: 88%;
    margin-top: 100px;
  }
}
@media screen and (max-width: 499px) {
  .ibmvideo {
    width: 100%;
    height: 250px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 369px) {
  .ibmvideo {
    height: 200px;
  }
}

.bannerdesk {
  display: block;
}
@media screen and (max-width: 991px) {
  .bannerdesk {
    display: none;
  }
}

.bannermob {
  display: none;
}
@media screen and (max-width: 991px) {
  .bannermob {
    display: block;
  }
}

.ibakeycontact {
  font-family: "Roboto Slab", serif;
  color: #003F62;
  font-size: 16px;
}

.section-heading {
  font-size: 42px;
  margin-bottom: 50px;
  line-height: 55px;
  font-family: "Roboto Slab", serif;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
  color: #003F62;
}
@media screen and (max-width: 1499px) {
  .section-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .section-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .section-heading {
    font-size: 22px;
    line-height: 30px;
  }
}
.section-heading::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 130px;
  height: 2px;
  left: 50%;
  margin-left: -65px;
  background: #003F62;
}
@media screen and (max-width: 1499px) {
  .section-heading::after {
    width: 100px;
    margin-left: -50px;
  }
}
.section-heading.col-white {
  color: #ffffff;
}
.section-heading.col-white::after {
  background: #ffffff;
}
.section-heading.text-start::after {
  left: 0;
  margin-left: 0;
}

.section-para {
  margin-bottom: 50px;
  padding: 0 18%;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .section-para {
    padding: 0 10%;
  }
}
@media screen and (max-width: 991px) {
  .section-para {
    padding: 0;
    font-size: 14px;
  }
}

.graypatch {
  background: #f3f3f3;
}
.graypatch.innerpage {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .graypatch.innerpage {
    margin-top: 62px;
  }
}

.ibm-partners ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ibm-partners ul li {
  width: 20%;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .ibm-partners ul li {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .ibm-partners ul li {
    width: 50%;
  }
}
.ibm-partners ul li .ibmpartbox {
  position: relative;
  overflow: hidden;
  padding: 15px 15px 30px 15px;
  height: 100%;
}
.ibm-partners ul li .ibmpartbox figure {
  overflow: hidden;
}
.ibm-partners ul li .ibmpartbox img {
  width: 100%;
  background: #cdd9df;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.ibm-partners ul li .ibmpartbox:hover {
  box-shadow: 0 0 10px rgba(98, 128, 145, 0.3);
}
.ibm-partners ul li .ibmpartbox:hover img {
  transform: scale(1.05);
}
.ibm-partners ul li .ibmpartbox h3 {
  font-size: 16px;
  font-family: "Roboto Slab", serif;
  color: #003F62;
  margin-top: 10px;
  font-weight: 500;
  margin-bottom: 5px;
}
.ibm-partners ul li .ibmpartbox .network {
  position: absolute;
  left: 15px;
  bottom: 10px;
}
@media screen and (max-width: 374px) {
  .ibm-partners ul li .ibmpartbox .network {
    position: relative;
    bottom: 0;
    left: 0;
    padding-bottom: 5px;
  }
}
.ibm-partners ul li .ibmpartbox .viewprofile {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  right: 15px;
  font-size: 14px;
  color: #003F62;
  cursor: pointer;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .ibm-partners ul li .ibmpartbox .viewprofile {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .ibm-partners ul li .ibmpartbox .viewprofile {
    position: relative;
    margin-top: 5px;
    bottom: 0;
    right: 0;
  }
}
.ibm-partners ul li::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #D8D8D8;
  content: "";
}
.ibm-partners ul li:last-child::after {
  display: none !important;
}
.ibm-partners ul li:nth-child(5n)::after {
  display: none;
}
@media screen and (max-width: 991px) {
  .ibm-partners ul li:nth-child(5n)::after {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .ibm-partners ul li:nth-child(3n)::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .ibm-partners ul li:nth-child(3n)::after {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .ibm-partners ul li:nth-child(2n)::after {
    display: none;
  }
}

.profileview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 999;
}
.profileview .closequickview {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 30px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .profileview .closequickview {
    top: 10px;
    right: 10px;
  }
}
.profileview .closequickview svg {
  width: 30px;
  fill: #ffffff;
}
.profileview .profilewrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  max-height: 85%;
  background: #ffffff;
  border: 5px solid #013552;
  padding: 20px;
  display: flex;
}
@media screen and (max-width: 1440px) {
  .profileview .profilewrap {
    max-width: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .profileview .profilewrap {
    display: block;
    overflow: hidden;
    overflow-y: scroll;
  }
}
.profileview .profilewrap figure {
  border: 1px solid #013552;
  height: -moz-max-content;
  height: max-content;
  min-width: 300px;
}
@media screen and (max-width: 911px) {
  .profileview .profilewrap figure {
    min-width: 200px;
  }
}
.profileview .profilewrap figure img {
  width: 100%;
}
.profileview .profilewrap .profiledes {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .profileview .profilewrap .profiledes {
    padding-left: 0;
    padding-top: 20px;
  }
}
.profileview .profilewrap .profiledes h2 {
  font-size: 24px;
  color: #003F62;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}
.profileview .profilewrap .profiledes h3 {
  font-size: 15px;
  margin-bottom: 20px;
}
.profileview.opened {
  display: block;
}

.aboutstates {
  width: 100%;
  background: #eee;
  padding: 30px 15px;
  text-align: center;
  border-radius: 10px;
  color: #000000;
  height: 100%;
  transition: all 0.2s ease-in-out;
}
.aboutstates p {
  color: #003F62;
  font-size: 50px;
  font-weight: 700;
  margin: 10px 0;
  transition: all 0.2s ease-in-out;
}
.aboutstates h3 {
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}
.aboutstates:hover {
  background: #003F62;
}
.aboutstates:hover h3, .aboutstates:hover p {
  color: #ffffff;
}

.dossierslider a {
  display: block;
  font-size: 18px;
}
.dossierslider a figure {
  overflow: hidden;
}
.dossierslider a figure img {
  width: 100%;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  transform-origin: left center;
}
.dossierslider a span {
  display: block;
  text-align: center;
  color: #003F62;
  padding: 15px 10px;
}
.dossierslider a:hover figure img {
  transform: scale(1.05);
}

.subscribe {
  padding-top: 5px;
}
.subscribe input {
  background: transparent;
  border-radius: 0;
  color: #ffffff;
  font-size: 15px;
  padding: 10px;
  color: #ffffff;
}
.subscribe input:focus {
  outline: none;
  color: #ffffff;
  background: none;
  box-shadow: none;
}
.subscribe button {
  background: #ffffff;
  color: #003F62;
  border: 1px solid #ffffff;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.subscribe button:focus {
  outline: none;
  box-shadow: none;
}
.subscribe button:hover {
  color: #003F62;
  border-color: #D8D8D8;
  background: #D8D8D8;
}

.kmsubscription {
  padding: 0 200px;
}
@media screen and (max-width: 1199px) {
  .kmsubscription {
    padding: 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .kmsubscription {
    padding: 0;
  }
}
.kmsubscription h3 {
  color: #003F62;
  font-family: "Roboto Slab", serif;
  text-transform: uppercase;
}
.kmsubscription label {
  font-family: "Roboto Slab", serif;
  color: #003F62;
  font-size: 16px;
}
.kmsubscription input {
  color: #636466;
  padding: 10px;
  border: 1px solid #636466;
  border-radius: 0;
}
.kmsubscription input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #636466;
}
.kmsubscription .selectwraper {
  border: none;
}
.kmsubscription .selectwraper select {
  color: #636466;
  padding: 0 10px;
  height: 38px !important;
  border: 1px solid #636466;
  border: 1px solid #636466;
  border-radius: 0;
  display: block;
}
.kmsubscription .selectwraper select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #636466;
}
.kmsubscription button {
  background: #003F62;
  color: #ffffff;
  border-color: #003F62;
}

.backtotop {
  position: fixed;
  z-index: 99;
  bottom: -70px;
  right: 20px;
  padding: 10px;
  background: #013552;
  transition: all 0.3s ease-in-out;
}
.backtotop.show {
  bottom: 20px;
}

.disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  animation: moveup 1s linear;
}
.disclaimer .disclaimerwrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .disclaimer .disclaimerwrap {
    display: block;
  }
}
.disclaimer a {
  color: #003F62;
}
.disclaimer a:hover {
  text-decoration: underline;
}
.disclaimer h3 {
  font-size: 16px;
  color: #003F62;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.disclaimer button {
  padding: 10px 20px;
  background: #003F62;
  color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .disclaimer button {
    margin-left: 0;
  }
}

@keyframes moveup {
  0% {
    bottom: -50%;
  }
  100% {
    bottom: 0;
  }
}
.copyright {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  background: #013552;
  padding: 20px 0;
  margin: 15px 0 0;
}

.network a {
  margin-right: 5px;
}
.network a svg {
  width: 15px;
  fill: #003F62;
}
.network a:hover svg {
  fill: #013552;
}

@media screen and (max-width: 991px) {
  .owl-carousel.aboutthumbslider {
    margin-top: 30px;
  }
}
.owl-carousel.aboutthumbslider .owl-dots {
  padding: 10px 0;
  text-align: center;
}
.owl-carousel.aboutthumbslider .owl-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 3px;
  background: #D8D8D8;
}
.owl-carousel.aboutthumbslider .owl-dots button.active {
  background: #003F62;
}

.owl-carousel.dossierslider .owl-nav {
  padding: 10px 0;
  text-align: center;
}
.owl-carousel.dossierslider .owl-nav button {
  width: 40px;
  height: 40px;
  margin: 0 3px;
  background: #D8D8D8;
}
.owl-carousel.dossierslider .owl-nav button svg {
  width: 30px;
  fill: #003F62;
}
.owl-carousel.dossierslider .owl-nav button:hover {
  background: #003F62;
}
.owl-carousel.dossierslider .owl-nav button:hover svg {
  fill: #ffffff;
}

.insightwraper {
  display: block;
  padding: 0 50px;
}
@media screen and (max-width: 1499px) {
  .insightwraper {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1199px) {
  .insightwraper {
    padding: 0 20px;
  }
}
@media screen and (max-width: 991px) {
  .insightwraper {
    padding: 0;
  }
}
.insightwraper img {
  width: 100%;
}/*# sourceMappingURL=stylesheet.css.map */