/* @import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap"); */
:root {
  --color-black: hsl(0, 0%, 10%);
  --color-white: hsl(0, 0%, 100%);
  --color-light-white: hsl(0, 0%, 95%);
  --color-dark-cyan: hsl(192, 28%, 21%);
  --dark-grayish-blue: hsl(200, 2%, 28%);
  --color-darken: hsl(206, 16%, 9%);
  --color-yellow: hsl(42, 99%, 53%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  color: var(--color-black);
  background: var(--color-white);
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.container {
  max-width: 85rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.brand {
  font-family: "Rubik", sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -1px;
  color: var(--color-yellow);
  text-transform: uppercase;
}

.header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 1.75rem 0;
  z-index: 100;
  background: var(--color-darken);
  -webkit-box-shadow: var(--shadow-medium);
          box-shadow: var(--shadow-medium);
		  margin-bottom:120px;
}
.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.header-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
}
.header-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
}
.header-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
}

.header-item-right span#nav-search-close-button {
    position: absolute;
    top: 0px;
    z-index: 999;
    right: 95px;
    color: #feb710;
    cursor: pointer;
}
.header-item-right input[type="search"]::-webkit-search-cancel-button {
  display: none;
}
.header-item-right form#search-form {
    display: none;
}
.header-item-right input[type="search"]::placeholder {
    color: #feb710;
}
.header-item-right input[type="search"] {
    position: absolute;
    right: 79px;
    top: -7px;
    padding: 10px 5px 10px 15px;
    border-radius: 43px;
    outline: none;
    color: #feb710;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    z-index: 9;
    box-shadow: 0 0 5px 0 #B7B7B7;
    border: none;
}
.header-item-right .menu-icon {
  margin-left: 1rem;
}
.header-item-right .menu-icon > img {
  width: 25px;
}
.header .menu > ul > li {
  display: inline-block;
  line-height: 3.125rem;
  margin-left: 1.5rem;
}
.header .menu > ul > li > a {
  position: relative;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  border: none;
  outline: none;
  color: var(--color-white);
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  z-index:99;
}
.header .menu > ul > li .menu-subs {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  z-index: 109;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  border-top: 3px solid var(--color-yellow);
  background: var(--color-darken);
  -webkit-box-shadow: var(--shadow-medium);
          box-shadow: var(--shadow-medium);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .menu > ul > li .menu-subs > ul > li {
  line-height: 1;
}
.header .menu > ul > li .menu-subs > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: var(--color-white);
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .menu > ul > li .menu-column-1 {
  min-width: 16rem;
  max-width: 20rem;
}
.header .menu > ul > li .menu-subs.menu-mega {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
  display: block;
  line-height: 1;
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.5rem 0;
  border: none;
  outline: none;
  color: var(--color-white);
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .menu > ul > li .menu-subs.menu-column-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 68rem;
  width: 100%;
  padding: 1.25rem 1rem;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 1rem;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0;
  color: var(--color-yellow);
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
  text-align: center;
}
.header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
.header .menu > ul > li .menu-subs > ul > li > a:hover {
  color: var(--color-yellow);
}
.header-item-right a:hover,
.header .menu > ul > li:hover > a {
  color: var(--color-yellow);
}
.header .menu-mobile-header,
.header .menu-mobile-toggle {
  display: none;
}


/* Main Social Media Icon */
ul.main_social_icon {
	position: static;
	display: flex;
	justify-content: center;
}
  ul.main_social_icon li{
  list-style: none;
  margin: 0 40px;
  
  }
  ul.main_social_icon li .fa{
  font-size: 40px;
  color: #262626;
  line-height: 80px;
  transition: .5s;
  
  }
  ul.main_social_icon li a{
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  background-color: #fff;
  text-align: center;
  transform: perspective(100px) rotate(-30deg) skew(25deg) translate(0,0);
  transition: .5s;
  box-shadow: -20px 20px 10px rgb(0, 0, 0, 0.5);
  }
  ul.main_social_icon li a::before{
  content: "";
  position: absolute;
  top: 10px;
  left: -20px;
  height: 100%;
  width: 20px;
  background: #b1b1b1;
  transition: .5s;
  transform: rotate(0deg) skewY(-45deg);
  }
  ul.main_social_icon li a::after{
  content: "";
  position: absolute;
  top: 80px;
  left: -11px;
  height: 20px;
  width: 100%;
  background: #b1b1b1;
  transition: .5s;
  transform: rotate(0deg) skewX(-45deg);
  }
  ul.main_social_icon li a:hover{
  transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
  box-shadow: -50px 50px 50px rgb(0, 0, 0, 0.5);
  }
  ul.main_social_icon li:hover .fa{
  color: #fff;
  }
  ul.main_social_icon li a:hover{
  transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
  box-shadow: -50px 50px 50px rgb(0, 0, 0, 0.5);
  }
  ul.main_social_icon li:hover:nth-child(1) a{
  background: #3b5999;
  }
  
  ul.main_social_icon li:hover:nth-child(1) a:before{
  background: #2e4a86;
  }
  ul.main_social_icon li:hover:nth-child(1) a:after{
  background: #4a69ad;
  }
  ul.main_social_icon li:hover:nth-child(2) a{
  background: #55acee;
  }
  ul.main_social_icon li:hover:nth-child(2) a:before{
  background: #4184b7;
  }
  ul.main_social_icon li:hover:nth-child(2) a:after{
  background: #4d9fde;
  }
  ul.main_social_icon li:hover:nth-child(3) a{
  background: rgb(0, 136, 204);
  }
  
  ul.main_social_icon li:hover:nth-child(3) a:before{
  background: rgb(0, 136, 204);
  }
  ul.main_social_icon li:hover:nth-child(3) a:after{
  background: rgb(0, 136, 204);
  }
  
  ul.main_social_icon li:hover:nth-child(4) a{
  background: #0077B5;
  }
  
  ul.main_social_icon li:hover:nth-child(4) a:before{
  background: #036aa0;
  }
  ul.main_social_icon li:hover:nth-child(4) a:after{
  background: #0d82bf;
  }
  
  ul.main_social_icon li:hover:nth-child(5) a{
  background: #e4405f;
  }
  
  ul.main_social_icon li:hover:nth-child(5) a:before{
  background: #d02d4c;
  }
  ul.main_social_icon li:hover:nth-child(5) a:after{
  background: #f1395c;
  }
  #main_social_midia_icon {
    position: relative;
    width: 100%;
    padding: 50px 0px;
    display: block;
    background-color: #fafafa;
	z-index:1;
  }


/* footer wrapper start */

.footer {
  width: 100%;
  background-color: #1c2c31;
  padding-bottom: 40px;
  padding-top: 50px;
  display: block;
  color: white;
}
.footer_inner_wrapper{
	width: 100%;
  display: block;
}
.footer_col_1{
	width:30%;
	display:inline-block;
	box-sizing: border-box;
	padding-right:35px;
}
.footer_col {
    width: 22.5%;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
}

.footer_logo img{
	width:230px;
	object-fit:cover;
	padding-bottom:30px;
}
.footer_logo p{
	font-size:22px;
	line-height:40px;
}
.footer_col_heading{
	padding-left:90px;
}
.footer_col_heading h2{
	text-transform:uppercase;
	font-size:24px;
	padding-bottom:20px;
}
.footer_col_heading p{
	font-size:21px;
	font-weight:400;
	padding-bottom:12px;
}
.footer_col_heading a{
	color:white;
}
.footer_col_heading a:hover{
	color:#feb710;
	text-decoration:underline;
}
.footer_social_inner_wrapper {
  display: block;
  width: 100%;
  color: var(--color-white);
}
.footer_social_col{
	display:inline-block;
	width:33%;
	box-sizing: border-box;
}
.footer_social_heading h1{
		font-size:26px;
		color:white;
		text-transform:uppercase;
		font-weight:700;
		padding-bottom:20px;
}
.social_links img{
	display:inline;
	width:50px;
	padding-right:12px;
}
.footer_social_middle p {
  font-size: 22px;
  text-align: center;
  padding-top:20px;
}
.footer_social_card{
	text-align:right;
}
.card_images img{
	width:55px;
	border-radius:4px;
	height:35px;
	display:inline-block;
	object-fit: fill;
	margin-right:5px;
}
/* footer wrapper end */








/* Search Box Bar */
#searchbox {
  position: absolute;
  right: 110px;
}
.searchbox{
  position:relative;
  min-width:0px;
  width:0%;
  height:50px;
  float:right;
  overflow:hidden;
  
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}

.searchbox-input{
  top:0;
  right:0;
  border:0;
  outline:0;
  background:#dcddd8;
  width:100%;
  height:50px;
  margin:0;
  padding:0px 55px 0px 20px;
  font-size:20px;
  color: var(--color-yellow);
}
.searchbox-input::-webkit-input-placeholder {
  color: var(--color-yellow);
}
.searchbox-input:-moz-placeholder {
  color: var(--color-yellow);
}
.searchbox-input::-moz-placeholder {
  color: var(--color-yellow);
}
.searchbox-input:-ms-input-placeholder {
  color: var(--color-yellow);
}

.searchbox-icon, .searchbox-submit {
  display: block;
  top: 17px;
  font-size: 22px;
  right: 80px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  color: #dcddd8;
  background: var(--color-darken);
}


@media screen and (min-width: 993px) {
  .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 992px) {
  .header-item-center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header-item-left, .header-item-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }

  .wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    padding: 0.5rem 0;
  }

  .header .menu-mobile-toggle {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.75rem;
    height: 1rem;
    border: none;
    outline: none;
    margin-left: 1.25rem;
    margin-top: -0.25rem;
    background: none;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .header .menu-mobile-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: var(--color-white);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header .menu-mobile-toggle span:nth-child(1) {
    top: 0;
  }
  .header .menu-mobile-toggle span:nth-child(2), .header .menu-mobile-toggle span:nth-child(3) {
    top: 0.5rem;
  }
  .header .menu-mobile-toggle span:nth-child(4) {
    top: 1rem;
  }
  .header-item-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 111;
    overflow: hidden;
    background: var(--color-darken);
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .header .menu.active {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  .header .menu > ul > li {
    display: block;
    line-height: 1;
    margin: 0;
  }
  .header .menu > ul > li > a {
    display: block;
    line-height: 3.125rem;
    height: 3.125rem;
    padding: 0 3.125rem 0 1rem;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
  }
  .header .menu > ul > li > a i.ion {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3.125rem;
    top: 0;
    right: 0;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header .menu .menu-mobile-header {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 0;
    height: 3.125rem;
    z-index: 110;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    background: var(--color-darken);
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding-left: 15px;
}
  .header .menu .menu-mobile-header .menu-mobile-arrow {
    display: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    text-align: center;
    border-right: 1px solid rgb(255 255 255 / 10%);
    color: var(--color-white);
  }
 .header .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: block;
    position: absolute;
    left: 60px;
}
  .header .menu .menu-mobile-header .menu-mobile-title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    color: var(--color-black);
    text-transform: capitalize;
  }
  .header .menu .menu-mobile-header .menu-mobile-close {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    border-left: 1px solid rgb(255 255 255 / 10%);
    color: var(--color-white);
  }
  .header .menu .menu-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
	
  }
  .header .menu > ul > li .menu-subs {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.menu-mega {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.active {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
    margin-top: 0;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
    margin-bottom: 1.25rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
    margin-bottom: 0rem;
  }
  .header .menu > ul > li .menu-subs > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
    margin-bottom: 1rem;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    display: block;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.65);
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .header {
    padding: 0.75rem 0;
    
}
.header-item-right input[type="search"] {
    top: 31px;
}
.header-item-right span#nav-search-close-button {
    top: 34px;
}
}



@media only screen and (max-width:767px){
    ul.main_social_icon {
        position: static;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    ul.main_social_icon li {
        list-style: none;
        margin: 25px 0px;
    }
    #main_social_midia_icon {
        padding: 15px 0px;
    }

    
	
/* footer wrapper start */

.footer_col_1{
	width:100%;
	padding-bottom:20px;
}
.footer_col{
	width:100%;
	padding-bottom:30px;
}
.footer_col_heading{
	padding-left:0px;
}
.footer_logo p {
    font-size: 15px;
    line-height: 32px;
}
.footer_col_heading h2 {
    font-size: 20px;
}
.footer_col_heading p {
    font-size: 15px;
}
.footer_social_inner_wrapper {
    display: block;
    width: 100%;
    padding-top: 5px;
}
.footer_social_col{
	display:inline-block;
	width:99%;
	box-sizing: border-box;
	padding-bottom:30px;
}
.footer_social_heading h1 {
    font-size: 18px;
	padding-bottom: 4px;
}
.social_links img {
    display: inline;
    width: 28px;
    padding-right: 5px;
}
.footer_social_middle p {
    font-size: 15px;
    text-align:left; 
}
.card_images img {
    width: 40px;
    border-radius: 4px;
    height: 25px;
    display: inline-block;
    object-fit: fill;
    margin-right: 3px;
}
.footer_social_card{
	text-align:left;
}
.footer_col_heading h2 {
    padding-bottom: 10px;
}
.most_popular_heading {
	padding-left: 0;
}
.footer_wrapper {
	padding-bottom: 15px;
	padding-top: 15px;
}
}
/* footer wrapper end */

@media only screen and (min-width:767px)and (max-width:1200px){

.footer_col_1 {
    width: 50%;
    display: inline-block;
    box-sizing: border-box;
    padding-right: 0px;
	padding-bottom:30px;
}
.footer_col {
    width: 48.5%;
    display: inline-block;
    box-sizing: border-box;
	padding-bottom:10px;
}
.footer_logo p {
    padding-right: 70px;
}
.footer_col_heading {
    padding-left: 0px;
}
.footer_social_col{
	display:inline-block;
	width:32%;
	box-sizing: border-box;
}
.footer_social_heading h1 {
    font-size: 20px;
}
.footer_social_inner_wrapper {
    padding-top: 15px;
}
.social_links img {
    display: inline;
    width: 35px;
    padding-right: 5px;
}
.footer_social_middle p {
    font-size: 21px;
    text-align: center;
}
.card_images img {
    width: 35px;
    height: 25px;
}
ul.main_social_icon li {
    margin: 0 34px;
}
}
@media only screen and (min-width:993px)and (max-width:1200px){
.header .menu > ul > li {
    margin-left: 6px;
}
.header .menu > ul > li > a {
	font-size:15px;
}
}
