/*!
 * © 2026 Post Ajans | www.postajans.com.tr
 * Developer: Berat Celik
*/
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
  /* Colors: */
  --color-4b9ea6: #4B9EA6;
  --color-ffffff: #FFFFFF;
  --color-6f818f: #6F818F;
  --color-dde1e4: #DDE1E4;
  --color-00295d: #00295D;
  --color-354248: #354248;
  --color-F6FAFB: #F6FAFB;
  --color-DFF2F7: #DFF2F7;
  --color-B5CBCC: #B5CBCC;
}

body{ font-family: "Titillium Web", sans-serif !important;}
a {text-decoration: none !important;}

/*** Properties ***/
.site-container { width: 90%; margin: 0 auto;}
.site-margin{margin-top: 5%; margin-bottom: 5%;}
.site-padding{padding-top: 7%; padding-bottom: 7%;}
/*** Properties End ***/

/* Font-Sizes */
.fs-256 { font-size: clamp(120px, 13.3vw, 256px); line-height: clamp(120px, 13.3vw, 256px); }
.fs-108 { font-size: clamp(56px, 5.6vw, 108px); line-height: clamp(56px, 5.4vw, 104px); }
.fs-72 { font-size: clamp(36px, 3.75vw, 72px); line-height: clamp(48px, 5.7vw, 110px); } 
.fs-60 { font-size: clamp(32px, 3.1vw, 60px); line-height: clamp(40px, 3.75vw, 72px); } 
.fs-55 { font-size: clamp(30px, 2.85vw, 55px); line-height: clamp(44px, 4.3vw, 83px); }
.fs-48 { font-size: clamp(26px, 2.5vw, 48px); line-height: clamp(32px, 2.8vw, 54px); } 
.fs-36 { font-size: clamp(20px, 1.9vw, 36px); line-height: clamp(28px, 2.5vw, 48px); } 
.fs-24 { font-size: clamp(16px, 1.25vw, 24px); line-height: clamp(28px, 2.5vw, 48px); } 
.fs-20 { font-size: clamp(14px, 1.05vw, 20px); line-height: clamp(18px, 1.25vw, 24px); } 
.fs-16 { font-size: clamp(13px, 0.85vw, 16px); line-height: clamp(18px, 1.25vw, 24px); } 
.fs-12 { font-size: clamp(11px, 0.65vw, 12px); line-height: normal; }

.fw-extra-bold{font-weight: 900 !important;}
/* Font Sizes End */ 

/* Colors */
.color-4b9ea6{ color: var(--color-4b9ea6)}
.color-ffffff{ color: var(--color-ffffff)}
.color-6f818f{ color: var(--color-6f818f)}
.color-dde1e4{ color: var(--color-dde1e4)}
.color-00295d{ color: var(--color-00295d)}
.color-354248{ color: var(--color-354248)}
.color-F6FAFB{ color: var(--color-F6FAFB)}
.color-DFF2F7{ color: var(--color-DFF2F7)}
.color-B5CBCC{ color: var(--color-B5CBCC)}

.bg-4b9ea6{ background-color: var(--color-4b9ea6)}
.bg-ffffff{ background-color: var(--color-ffffff)}
.bg-6f818f{ background-color: var(--color-6f818f)}
.bg-dde1e4{ background-color: var(--color-dde1e4)}
.bg-00295d{ background-color: var(--color-00295d)}
.bg-354248{ background-color: var(--color-354248)}
.bg-F6FAFB{ background-color: var(--color-F6FAFB)}
.bg-DFF2F7{ background-color: var(--color-DFF2F7)}
/* Colors End */

/** Buttons **/
.button-one{
  padding: 10px 25px;
  border-radius: 30px;
  transition: all .4s;
}
.primary{background-color: var(--color-4b9ea6); border: 1px solid var(--color-4b9ea6); color: var(--color-ffffff);}
.primary:hover{background-color: var(--color-ffffff); color: var(--color-4b9ea6);}
.primary svg {fill: var(--color-ffffff);transition: fill .4s;}
.primary:hover svg {fill: var(--color-4b9ea6);}

.secondary{background-color: rgba(75, 158, 166, .15); color: var(--color-4b9ea6);}

/* Line Buttons */
.button-line{transition: all .4s; padding: 10px 15px;}

.button-line.white-line{border-bottom: 1px solid var(--color-ffffff); color: var(--color-ffffff);}
.button-line.white-line:hover{border-bottom: 1px solid var(--color-4b9ea6); color: var(--color-4b9ea6);}
.button-line.white-line svg {fill: var(--color-ffffff);transition: fill .4s;}
.button-line.white-line:hover svg {fill: var(--color-4b9ea6);}

.button-line.primary-line{border-bottom: 1px solid var(--color-4b9ea6); color: var(--color-4b9ea6);}
.button-line.primary-line:hover{border-bottom: 1px solid var(--color-354248); color: var(--color-354248);}
.button-line.primary-line svg {fill: var(--color-4b9ea6);transition: fill .4s;}
.button-line.primary-line:hover svg {fill: var(--color-354248);}
/* Line Buttons End */

/* Owl Button */
.owl-btn{
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.owl-btn.category-prev{
  background-color: var(--color-4b9ea6); border: 1px solid var(--color-4b9ea6) !important; color: var(--color-ffffff); transition: .4s;
}
.owl-btn.category-prev:hover{
  background-color: var(--color-354248); border: 1px solid var(--color-354248) !important; color: var(--color-ffffff); transition: .4s;
}
.owl-btn.category-prev svg {fill: var(--color-ffffff);transition: fill .4s;}
.owl-btn.category-next{
  background-color: transparent; border: 1px solid var(--color-354248) !important; color: var(--color-354248); transition: .4s;
}
.owl-btn.category-next:hover{
  background-color: var(--color-4b9ea6); border: 1px solid var(--color-4b9ea6) !important; color: var(--color-ffffff);
}
.owl-btn.category-next:hover svg{fill: var(--color-ffffff);}
/* Owl Button End */

/** Buttons End **/

.divider{width: 70%; height: 1px; margin: auto;}

/* Whatsapp */
.wp-button{
  background-color: #6ACD73;
  color: #fff;
  border: 0;
  border-radius: 10px 10px 0 0;
  padding: 15px 25px;
  min-width: 445px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  right: 1%;
  bottom: 0;
  cursor: pointer;
  z-index: 99;
}

/* Chat box */
.wp-chat{
  position: fixed;
  right: 1%;
  bottom: 45px;
  width: 445px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  padding: 15px;
  padding-bottom: 50px;
  display: none;
  z-index: 98;
}
.message{
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.message.left{justify-content: flex-start;}

.message.right{
  justify-content: flex-end;
  text-align: end;
}
.bubble{
  max-width: 200px;
  background: #efefee;
  padding: 10px 15px;
  font-size: 14px;
}
.message.left .bubble{border-radius: 0 15px 15px 15px ;}
.message.right .bubble{border-radius: 15px 0 15px 15px ;}

.name{
  display: block;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 5px;
}
.avatar{
  width: 35px;
  height: 35px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 8px;
}
.wp{
  background: linear-gradient(90deg, #4dab56, #6ACD73);
  color: #fff;
  border-radius: 10px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 410px;
  margin: auto;
}
/* Whatsapp End */


/* Menu */
.navbar {
  background-color: var(--color-F6FAFB) !important;
  height: 150px;
}
.navbar-brand{
  background-color: var(--color-4b9ea6);
  height: 150px;
  padding-left: 120px;
  display: flex; align-items: center; justify-content: end;
  position: relative;
}
.navbar-brand::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -100px;
  width: 0px;
  border-top: 0px solid transparent;
  border-bottom: 150px solid transparent;
  border-left: 100px solid var(--color-4b9ea6);
}
.navbar-toggler {right: 5%;position: absolute;}
.logo {width: 230px;}
.navbar .nav-item {padding: 0 15px; font-size: 14px;}
.navbar .nav-link {color: var(--color-354248); transition: all .4s !important;}
.navbar .nav-link:hover {color: var(--color-4b9ea6) !important;}
.navbar .nav-link:focus {color: var(--color-4b9ea6) !important;}

.nav-icon-left,
.nav-icon-right {
  padding:0 5px;
  opacity: 0;
  transition: opacity .4s, transform .4s;
}
.nav-icon-left {transform: translateX(-10px);}
.nav-icon-right {transform: translateX(10px);}

.navbar .nav-link:hover .nav-icon-left,
.navbar .nav-link:hover .nav-icon-right {
  opacity: 1;
  transform: translateX(0);
}

.navbar-collapse-end, .nav-contact { right: 5%; }
.dropdown-menu {
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  border-radius: 20px !important;
  background-color: rgba(255,255,255,.3) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 1px solid var(--color-4b9ea6) !important;
  transition: all .4s !important;
}
.dropdown-item:focus,.dropdown-item:hover {
  transition: all .4s !important;
  color: var(--color-4b9ea6) !important;
  background-color: transparent !important
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
  position: absolute;
  z-index: 10;
  min-width: 210px;
}
.navbar-toggler {
  padding: 0;
  line-height: 0;
  border: none !important;
  background-color: var(--white) !important;
  border-radius: 50px !important;
  width: 48px !important;
  height: 48px !important;
}
.navbar-toggler:focus {box-shadow: none !important;}
.search-btn{
  width: 30px; height: 30px;
  border-radius: 50%;
  color: var(--color-4b9ea6) !important;
  border: 1px solid var(--color-4b9ea6) !important;
  margin-right: -25px;
}
.flag-wrap{
  width: 30px;
  height: 30px;
  z-index: 10;
  transition: all .4s;
}
.flag-border{
  background-color: transparent;
  border: 1px solid var(--color-4b9ea6);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transition: all 1s;
}
.flag-border:hover{background-color: var(--color-ffffff);}
.flag-border > a img{
  width: 30px;
  height: 30px;
  padding: 5px;
  display: block;
  margin-left: -1px;
}
.langs{
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: all .4s
}

.flag-border:hover .langs{
  max-height: 300px;
  transition: all 1s;
}
.langs img{
  width: 30px;
  height: 30px;
  padding: 5px;
  margin-left: -1px;
}
/* Menu End */

/* Slider */
.main-slider, .slider-item, .slider-item img, .slider-item video{ height: 930px; overflow: hidden;}
.slider-img{ object-fit: cover; }
.slider-item video{ object-fit: cover; object-position: center center; width: 100vw}

.slider-text-box{
  color: var(--color-ffffff);
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  z-index: 2;
}
.stroke-title {
  position: absolute;
  left: 5%;
  top: 15%;
  width: 50%;
  font-size: clamp(72px, 7.5vw, 144px); 
  line-height: clamp(72px, 7.5vw, 144px);
  color: transparent;
  -webkit-text-stroke: 1px var(--color-F6FAFB);
  mix-blend-mode: soft-light;
}

.slider-bottom{
  position: absolute;
  bottom: 17%;
  left: 5%;
  right: 5%;
}
.slider-social-media{
  border: 1px solid var(--color-ffffff);
  color: var(--color-ffffff);
  padding: 10px 20px; border-radius: 50px;
  position: absolute;
  left: 0;
  z-index: 2;
  font-size: 20px;
}
.slider-social-media a{
  color: var(--color-ffffff);
  margin: 0 20px;
  transition: all .4s;
}
.slider-social-media a:hover{
  color: var(--color-4b9ea6);
}
.slogan{left: 20%; position: absolute;}
/* Slider End */

/* Scrolling Text */
.scroll-wrapper {
  width: 100vw;
  overflow: hidden;
}
.scrolling-text {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Scrolling Text End */

/* Corporate */
.corporate-area{
  margin-top: -8%;
  position: relative;
  z-index: 2;
}
.corporate-card {
  position: absolute;
  z-index: 2;
  height: 510px;
  width: 80%;
  background-color: var(--color-F6FAFB);
  border-radius: 30px 0 0 30px;
  overflow: visible;
  clip-path: path("M627.521,506.708H29.068a38.513,38.513,0,0,1-11.1-1.588,30.786,30.786,0,0,1-9.061-4.354,21.513,21.513,0,0,1-6.138-6.515,15.706,15.706,0,0,1-2.265-8.073l.183-446A38.055,38.055,0,0,1,3.828,25.028a39.651,39.651,0,0,1,8.628-12.571A40.791,40.791,0,0,1,41.113.708H931.548a27.706,27.706,0,0,1,13.8,3.168,16.656,16.656,0,0,1,7.522,8.581,22.521,22.521,0,0,1,.777,12.571,45.258,45.258,0,0,1-6.324,15.146l-278.413,446a33.922,33.922,0,0,1-7.307,8.073,52.875,52.875,0,0,1-10.207,6.515,59.835,59.835,0,0,1-11.781,4.354,49.455,49.455,0,0,1-12.088,1.588");
}
.corporate-img{
  width: 100%;
  height: 502px;
  padding-top: 3px;
  object-fit: cover;
  border-radius: 0px 30px 30px 0px;
}
/* Corporate End */

/* Categories */
.category-card{height: 550px;}
.owl-carousel .category-text{background-color: var(--color-ffffff);}
.category-text{
  color: var(--color-354248);
  border-radius: 30px;
  position: relative;
  z-index: 2;
  height: 470px;
  width: 100%;
  transition: all .4s;
}
.category-img{
    width: 290px !important;
    height: 290px;
    object-fit: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  bottom: 0;
}
.go-btn{
  width: 47px; height: 47px;
  border-radius: 50%;
  border: 1px solid var(--color-ffffff);
  display: flex; align-items: center; justify-content: center;
}
.stroke-text{
  font-size: clamp(56px, 5.5vw, 105px);
  line-height: clamp(56px, 5.5vw, 105px);
  color: transparent;
  -webkit-text-stroke: 1px var(--color-DFF2F7);
  max-width: calc(100% - 32px);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.category-card:hover .category-text{background-color: var(--color-4b9ea6); color: var(--color-ffffff);}
.category-card:hover .go-btn svg{fill: var(--color-ffffff);}
/* Categories End */

/* Parallax */
.parallax-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 750px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.parallax-card{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  height: 510px;
  width: 70%;
  background-color: rgba(0,0,0,.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px 0 0 30px;
  overflow: visible;
  clip-path: path("M627.521,506.708H29.068a38.513,38.513,0,0,1-11.1-1.588,30.786,30.786,0,0,1-9.061-4.354,21.513,21.513,0,0,1-6.138-6.515,15.706,15.706,0,0,1-2.265-8.073l.183-446A38.055,38.055,0,0,1,3.828,25.028a39.651,39.651,0,0,1,8.628-12.571A40.791,40.791,0,0,1,41.113.708H931.548a27.706,27.706,0,0,1,13.8,3.168,16.656,16.656,0,0,1,7.522,8.581,22.521,22.521,0,0,1,.777,12.571,45.258,45.258,0,0,1-6.324,15.146l-278.413,446a33.922,33.922,0,0,1-7.307,8.073,52.875,52.875,0,0,1-10.207,6.515,59.835,59.835,0,0,1-11.781,4.354,49.455,49.455,0,0,1-12.088,1.588");
}
/* Parallax End */

/* Media Cards */
.media-card{
  height: 285px; border-radius: 24px;
  position: relative;
}
.media-card img{
  width: 100%; object-fit: cover;
  height: 285px; border-radius: 24px;
}
.media-overlay{
  position: absolute;
  z-index: 1;
  top: 0; left: 0; right: 0;
  height: 100%;
  width: 100%;
  background-color: #535353;
  opacity: .8;
  mix-blend-mode: multiply;
  border-radius: 24px;
}
/* Media Cards End */

/* Search Modal */
#searchModal .modal-content {
  background-color: var(--color-F6FAFB);
  border: 0;
  border-radius: 30px;
  outline: 0;
}
/* Search Modal End */

/* Footer */
footer{background-color: var(--color-F6FAFB);}
footer a{color: var(--color-4b9ea6); transition: all .4s;}
footer a:hover{color: var(--color-354248);}
footer .logo{width: 400px;}
.footer-social-media a{ margin: 0 10px; font-size: 20px;}

footer ul>li>.fs-12{color: var(--color-4b9ea6);}

footer input, .search-form input{
  background-color: rgba(75, 158, 166, .15);
  border-radius: 15px;
  padding: 15px 25px;
  width: 100%;
  border: none;
  margin: 10px 0;
}
footer input:focus, .search-form input:focus{
  border: none;
  outline: 0;
}
footer input::placeholder, .search-form input::placeholder{
  color: var(--color-4b9ea6);
}
/* Footer End */

/* Breadcrumb */
.custom-breadcrumb {
  padding: 10px 16px;
  background-color: var(--color-DFF2F7);
  position: relative;
  transition: all .4s;
}
.custom-breadcrumb a{transition: all .4s;}
.custom-breadcrumb a:hover{color: var(--color-354248);}
/* .custom-breadcrumb::after {
  content: "";
  position: absolute;
  top: 0px;
  left: -30px;
  width: 0px;
  border-top: 44px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 30px solid var(--color-DFF2F7);
} */
 .custom-breadcrumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 30px;
  height: 100%;
  background-color: var(--color-DFF2F7);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.custom-breadcrumb ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.custom-breadcrumb li {
  position: relative;
  white-space: nowrap;
}
.custom-breadcrumb li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -16px;
  color: var(--color-4b9ea6);
}

/* Breadcrumb End */

/* FAQ */
.faq-card{ border-bottom: 1px dashed var(--color-6f818f);}
.faq-card p{transition: all .4s;}
.faq-card .row{border-radius: 10px; transition: all .4s;}
.faq-card .row:hover{background-color: var(--color-4b9ea6);}
.faq-card .row:hover p{color: var(--color-ffffff) !important;}
/* FAQ End */

/* Documents */
.documents{
  height: 510px;
  background-color: var(--color-4b9ea6);
  width: 50%;
  position: absolute;
  right: 0; 
  border-radius: 10px 0 0 10px ;
}
.document-height{min-height:510px;}
.files img{
  height: 400px;
  object-fit: contain;
}
.files-prev, .files-next{
  border-radius: 30px;
  padding: 10px 15px;
  transition: all .4s;
}
.files-prev{
  border: 1px solid var(--color-ffffff);
  color: var(--color-4b9ea6);
  background-color: var(--color-ffffff);
}
.files-prev svg{fill: var(--color-4b9ea6);}
.files-next{
  border: 1px solid var(--color-354248);
  color: var(--color-354248);
  background-color: transparent;
}
.files-prev svg{fill: var(--color-354248);}
.files-prev:hover{
  background-color: transparent;
  color: var(--color-ffffff);
}
.files-next:hover{
  background-color: var(--color-354248);
  color: var(--color-ffffff);
}
.files-prev:hover svg, .files-next:hover svg{fill: var(--color-ffffff);}
/* Documents End */

/** Products Page **/
.category-list {
  position: relative;
  background-color: var(--color-F6FAFB);
  padding: 35px 0;
  border-radius: 10px;
  position: sticky;
  top: 30px;
}
.category-list li a{
  padding: 20px 35px;
  position: relative;
  color: var(--color-4b9ea6) !important;
}
.has-sub {
  position: relative;
}
.sub-category {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--color-DFF2F7);
  /* background: linear-gradient(350deg, var(--color-F6FAFB) 0%, var(--color-4b9ea6) 70%); */
  padding: 20px 0;
  border-radius: 10px;
  list-style: none;
  min-width: 300px;
  z-index: 999;
}

.has-sub:hover > .sub-category {
  display: block;
}

.has-sub::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 15px;
  height: 100%;
}
.sub-category li a{
  padding: 10px 35px;
  position: relative;
  color: var(--color-00295d) !important;
}
.sub-category li i{opacity: 0; transition: .3s;}
.sub-category li a:hover i{opacity: 1;}
.has-sub:hover > .sub-category {display: block;}

.product-card{
  background-color: var(--color-F6FAFB);
  border-radius: 10px;
  padding: 40px 45px;
  transition: all .4s;
  border: 1px solid var(--color-4b9ea6);
}
.product-card:hover{
  background-color: var(--color-4b9ea6);
}
.product-card:hover p{color: var(--color-ffffff) !important;}
.product-card:hover .primary-border{border: 1px solid var(--color-ffffff) !important;}
.product-card img{
  height: 195px;
  object-fit: contain;
  display: block; margin: auto;
}

#listView .product-card{
  padding: 20px 25px;
  transition: all .4s;
}
#listView .product-card img{
  height: 150px;
}
/** Products Page End **/

/** Product Detail Page **/
.p-detail-img{
  border-radius: 30px;
  height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p-detail-img .carousel,
.p-detail-img .carousel-inner,
.p-detail-img .carousel-item {
  width: 100%;
  height: 100%;
}

.p-detail-img img{
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin: auto;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#productImageCarousel button svg{
  fill: var(--color-4b9ea6) !important;
}

/* Table */
.table-responsive {border-radius: 20px;}
table thead tr:first-child th {
  background-color: var(--color-DFF2F7);
  font-size: 18px;
  font-weight: 700;
}
td, th {color: var(--color-4b9ea6) !important;}
td {font-size: 16px; font-weight: 700;}
tbody tr:nth-child(odd) td {background-color: var(--color-F6FAFB);}
tbody tr:nth-child(even) td {background-color: var(--color-DFF2F7);}
/* Table End */

/* Feature Cards */
.feature-card{
  height: 185px;
  padding: 0 80px;
  gap: 40px;
  border-radius: 30px;
}
.feature-card img{
  width: 185px; height: 185px; object-fit: cover;
}
/* Feature Cards End */
/** Product Detail Page End **/

/* Media Page */
.media-film-banner{
  height: 350px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.media-film-banner img{
  height: 350px;
  object-fit: cover;
}

.media-overlay {
  background: rgba(75, 158, 166, .6) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 0;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: all .4s;
}

/* News */
.news-card img{
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.video-overlay{
  height: 320px;
  object-fit: cover;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,.5);
}
/* News End */
/* Media Page End */

/** Contact Page **/
.contact-info i{
  color: var(--color-4b9ea6) !important;
}
.contact-form input, .contact-form textarea{
  width: 100%;
  border: 1px solid var(--color-354248);
  padding: 15px 25px;
  border-radius: 10px;
}
.contact-form input:focus, .contact-form textarea:focus{
  border: 1px solid var(--color-4b9ea6);
  outline: none;
}
.contact-info a{transition: all .4s; color: var(--color-4b9ea6);}
.contact-info a:hover{color: var(--color-354248);}
/** Contact Page End **/

/* News Detail */
.latest-news{
  width: 30%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.news-list-card{
  background-color: var(--color-F6FAFB);
  border: 1px solid var(--color-F6FAFB);
  transition: all .4s;
}
.news-list-card:hover{
  border: 1px solid var(--color-4b9ea6);
}

/* News Detail End */