-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.php
More file actions
163 lines (158 loc) · 8.25 KB
/
about.php
File metadata and controls
163 lines (158 loc) · 8.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>
About MS&F | Commercial Real Estate Lending
</title><?php include 'css_js.php'; ?>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-66442825-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="aboutBody">
<div id="wrapper">
<?php include_once('header.php'); ?>
<div id="contentWrapper">
<h1>
About MS&F
</h1>
<div id="squareWrapper">
<div class="aboutSquares">
<h2>
COMPANY
</h2><a href="#"><span class="company"><!--Image Replacement --></span></a>
</div>
<div class="aboutSquares">
<h2>
MARKET
</h2><a href="#"><span class="market"><!--Image Replacement --></span></a>
</div>
<div class="aboutSquares">
<h2>
STAFF
</h2><a href="#"><span class="staff"><!--Image Replacement --></span></a>
</div>
<div class="aboutSquares">
<h2>
SERVICING
</h2><a href="#"><span class="service"><!--Image Replacement --></span></a>
</div>
</div>
<div class="company_info info">
<h3>
COMPANY
</h3>
<p>
Since 1984, MS&F has financed over $6.49 billion of commercial real estate in nearly every state
in the continental U.S.. We stand out for our ability, as real estate investors ourselves, to
anticipate and address challenges before they become issues.
</p>
<br>
<p>
Our clients say we are true team members from the very beginning through the very end, and we
take pride in proactively managing the small details that keep the process moving smoothly.
</p>
<br>
<p>
Over the past decade, our full-service commercial real estate mortgage banking firm has tripled
in size and diversified its business lines to provide financing for all types of commercial and
investment real estate properties throughout the United States. We have accomplished this
incredible growth through continual emphasis on increasing and strengthening our lender
relationships, expanding our marketing and customer service efforts, bringing on quality
personnel, and adopting cutting-edge lending and servicing technologies.
</p>
<br>
<p>
MS&F is nationally ranked by the Mortgage Bankers Association as one of the nation’s top
commercial mortgage bankers by loan origination and loan servicing.
</p>
</div>
<div class="market_info info">
<h3>
MARKET TERRITORIES
</h3>
<p>
MS&F has clients with assets in 22 states, and many of our relationships have developed over
10, 15 or even 30 years. We do not engage in one-off transactions, but, instead we build
relationships. We follow our clients across geographies to serve them wherever they need us.
MS&F integrates into our clients’ businesses from day one through post-closing, communicating
their stories and serving as an extension of their own teams.
</p>
<br>
<p>
MS&F is headquartered in Columbus, Ohio from which we are
easily able to travel to meet our clients where they need us.
</p>
<p>
</div>
<div class="staff_info info">
<h3>
OUR PEOPLE
</h3>
<p>
MS&F’s team of professionals has diverse commercial real estate investment experience among
them. They combine owners’ perspectives with proven track records in all areas of commercial
real estate financing, including origination, underwriting, closing, and loan servicing.
</p>
<br>
<p>
Our leadership regularly gives back to the community through various charities. They also
provide industry education, having lectured for both the Mortgage Bankers of America and for
the MBA Real Estate Finance classes at The Ohio State University.
</p>
<br>
<p>
<a href="key-personnel.php">Learn more about our Key Personnel here.</a>
</p>
</div>
<div class="service_info info">
<h3>
EXPERT SERVICE
</h3>
<p>
Mortgage loan servicing has become an integral component of MS&F, as most correspondent lending
relationships have had increased demands placed on them by rating and regulatory agencies. We
currently service upward of $1 billion in commercial loans in 22 states.
</p>
<br>
<p>
Our servicing team prides itself in the personalized attention offered to each client. When you
close your loan with MS&F, our servicing department will collect your payments, coordinate
annual property inspections/financial reporting requirements, remit your tax/insurance
payments, and handle any other issue or problem that needs to be addressed.
</p>
<br>
<p>
MS&F has also stayed abreast of the latest in loan servicing technology and employs REALSynergy
to ensure our loan customers and represented lending institutions have access to the best
monitoring, processing and reporting available.
</p>
<br>
<p>
In addition to loan servicing, MS&F can assist in a variety of commercial real estate
capacities including, among others, asset management, loan workouts, consulting, capital
raises, equity participation and acquisition/disposition analysis.
</p>
</div>
<div class="clearfix"></div>
</div>
</div><?php include_once('footer.php'); ?><script type="text/javascript">
$(document).ready(function(){
$('div.aboutSquares a').click(function() {
var infoType = $(this).children().first().attr('class');
// Remove any existing info popups and hover states
$('div.info').hide();
$('.hoverStick').removeClass('hoverStick');
// Add the hover state
$('.' + infoType).toggleClass('hoverStick');
$('div.' + infoType + '_info').show();
});
});
</script>
</body>
</html>